Skip to content

Commit

Permalink
[GFS2] Fix code style/indent in ops_file.c
Browse files Browse the repository at this point in the history
Fix a couple of minor issues.

Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
  • Loading branch information
Steven Whitehouse committed Oct 2, 2006
1 parent 930cc23 commit d00223f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions fs/gfs2/ops_file.c
Original file line number Diff line number Diff line change
Expand Up @@ -606,15 +606,16 @@ static int gfs2_flock(struct file *file, int cmd, struct file_lock *fl)
if (fl->fl_type == F_UNLCK) {
do_unflock(file, fl);
return 0;
} else
} else {
return do_flock(file, cmd, fl);
}
}

const struct file_operations gfs2_file_fops = {
.llseek = gfs2_llseek,
.read = do_sync_read,
.read = do_sync_read,
.aio_read = generic_file_aio_read,
.write = do_sync_write,
.write = do_sync_write,
.aio_write = generic_file_aio_write,
.unlocked_ioctl = gfs2_ioctl,
.mmap = gfs2_mmap,
Expand Down

0 comments on commit d00223f

Please sign in to comment.