aboutsummaryrefslogtreecommitdiffstats
path: root/fs/lockd/svclock.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/lockd/svclock.c')
-rw-r--r--fs/lockd/svclock.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/lockd/svclock.c b/fs/lockd/svclock.c
index ce754efe2841..d2b66bad7d50 100644
--- a/fs/lockd/svclock.c
+++ b/fs/lockd/svclock.c
@@ -309,14 +309,13 @@ restart:
309 * Loop over all blocks and perform the action specified. 309 * Loop over all blocks and perform the action specified.
310 * (NLM_ACT_CHECK handled by nlmsvc_inspect_file). 310 * (NLM_ACT_CHECK handled by nlmsvc_inspect_file).
311 */ 311 */
312int 312void
313nlmsvc_traverse_blocks(struct nlm_host *host, struct nlm_file *file, int action) 313nlmsvc_traverse_blocks(struct nlm_host *host, struct nlm_file *file, int action)
314{ 314{
315 if (action == NLM_ACT_MARK) 315 if (action == NLM_ACT_MARK)
316 nlmsvc_act_mark(host, file); 316 nlmsvc_act_mark(host, file);
317 else 317 else
318 nlmsvc_act_unlock(host, file); 318 nlmsvc_act_unlock(host, file);
319 return 0;
320} 319}
321 320
322/* 321/*