diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2006-10-02 10:28:05 -0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2006-10-02 10:28:05 -0400 |
commit | d00223f1693173c7b51f867dd52049955a92d0ed (patch) | |
tree | 0bae54ad9011e7f7e4426044ff1ff3b901cc7223 /fs | |
parent | 930cc237d67dc62464fe71529631d16f51d7aee3 (diff) |
[GFS2] Fix code style/indent in ops_file.c
Fix a couple of minor issues.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/gfs2/ops_file.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/fs/gfs2/ops_file.c b/fs/gfs2/ops_file.c index f2d0bd80a1c7..fafa48b9105e 100644 --- a/fs/gfs2/ops_file.c +++ b/fs/gfs2/ops_file.c | |||
@@ -606,15 +606,16 @@ static int gfs2_flock(struct file *file, int cmd, struct file_lock *fl) | |||
606 | if (fl->fl_type == F_UNLCK) { | 606 | if (fl->fl_type == F_UNLCK) { |
607 | do_unflock(file, fl); | 607 | do_unflock(file, fl); |
608 | return 0; | 608 | return 0; |
609 | } else | 609 | } else { |
610 | return do_flock(file, cmd, fl); | 610 | return do_flock(file, cmd, fl); |
611 | } | ||
611 | } | 612 | } |
612 | 613 | ||
613 | const struct file_operations gfs2_file_fops = { | 614 | const struct file_operations gfs2_file_fops = { |
614 | .llseek = gfs2_llseek, | 615 | .llseek = gfs2_llseek, |
615 | .read = do_sync_read, | 616 | .read = do_sync_read, |
616 | .aio_read = generic_file_aio_read, | 617 | .aio_read = generic_file_aio_read, |
617 | .write = do_sync_write, | 618 | .write = do_sync_write, |
618 | .aio_write = generic_file_aio_write, | 619 | .aio_write = generic_file_aio_write, |
619 | .unlocked_ioctl = gfs2_ioctl, | 620 | .unlocked_ioctl = gfs2_ioctl, |
620 | .mmap = gfs2_mmap, | 621 | .mmap = gfs2_mmap, |