diff options
author | Benjamin Coddington <bcodding@redhat.com> | 2015-10-22 13:38:14 -0400 |
---|---|---|
committer | Jeff Layton <jeff.layton@primarydata.com> | 2015-10-22 14:57:36 -0400 |
commit | 4f6563677ae833baad8003e14353241bc25da4fc (patch) | |
tree | 6b54bdaa39f67c13cea45933dedc39f138051de9 /fs/lockd | |
parent | e55c34a66f87e78fb1fc6b623b78c5ad74b475af (diff) |
Move locks API users to locks_lock_inode_wait()
Instead of having users check for FL_POSIX or FL_FLOCK to call the correct
locks API function, use the check within locks_lock_inode_wait(). This
allows for some later cleanup.
Signed-off-by: Benjamin Coddington <bcodding@redhat.com>
Signed-off-by: Jeff Layton <jeff.layton@primarydata.com>
Diffstat (limited to 'fs/lockd')
-rw-r--r-- | fs/lockd/clntproc.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/fs/lockd/clntproc.c b/fs/lockd/clntproc.c index acd394716349..112952037933 100644 --- a/fs/lockd/clntproc.c +++ b/fs/lockd/clntproc.c | |||
@@ -474,18 +474,7 @@ static void nlmclnt_locks_init_private(struct file_lock *fl, struct nlm_host *ho | |||
474 | 474 | ||
475 | static int do_vfs_lock(struct file_lock *fl) | 475 | static int do_vfs_lock(struct file_lock *fl) |
476 | { | 476 | { |
477 | int res = 0; | 477 | return locks_lock_file_wait(fl->fl_file, fl); |
478 | switch (fl->fl_flags & (FL_POSIX|FL_FLOCK)) { | ||
479 | case FL_POSIX: | ||
480 | res = posix_lock_file_wait(fl->fl_file, fl); | ||
481 | break; | ||
482 | case FL_FLOCK: | ||
483 | res = flock_lock_file_wait(fl->fl_file, fl); | ||
484 | break; | ||
485 | default: | ||
486 | BUG(); | ||
487 | } | ||
488 | return res; | ||
489 | } | 478 | } |
490 | 479 | ||
491 | /* | 480 | /* |