diff options
author | J. Bruce Fields <bfields@fieldses.org> | 2006-03-20 23:24:13 -0500 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-03-20 23:24:13 -0500 |
commit | f3ee439f43381e45b191cf721b4a51d41f33301f (patch) | |
tree | 1ac11992c5ec5669c0d6ed68a9881dd51a01220f /fs/lockd/svcsubs.c | |
parent | eaa82edf20d738a7ae31f4b0a5f72f64c14a58df (diff) | |
download | linux-3.10-f3ee439f43381e45b191cf721b4a51d41f33301f.tar.gz linux-3.10-f3ee439f43381e45b191cf721b4a51d41f33301f.tar.bz2 linux-3.10-f3ee439f43381e45b191cf721b4a51d41f33301f.zip |
LOCKD: nlmsvc_traverse_blocks return is unused
Note that we never return non-zero.
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/lockd/svcsubs.c')
-rw-r--r-- | fs/lockd/svcsubs.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/lockd/svcsubs.c b/fs/lockd/svcsubs.c index 601e5b3dfe2..2043011a1a2 100644 --- a/fs/lockd/svcsubs.c +++ b/fs/lockd/svcsubs.c @@ -224,8 +224,9 @@ nlm_inspect_file(struct nlm_host *host, struct nlm_file *file, int action) if (file->f_count || file->f_blocks || file->f_shares) return 1; } else { - if (nlmsvc_traverse_blocks(host, file, action) - || nlmsvc_traverse_shares(host, file, action)) + nlmsvc_traverse_blocks(host, file, action); + + if (nlmsvc_traverse_shares(host, file, action)) return 1; } return nlm_traverse_locks(host, file, action); |