Skip to content

Commit

Permalink
[PATCH] fs/lockd/clntlock.c: add missing newlines to dprintk's
Browse files Browse the repository at this point in the history
This patch adds missing newlines to dprintk's.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Adrian Bunk authored and Linus Torvalds committed Jan 30, 2007
1 parent a0f7b67 commit d019bcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fs/lockd/clntlock.c
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ reclaimer(void *ptr)
lock_kernel();
lockd_up(0); /* note: this cannot fail as lockd is already running */

dprintk("lockd: reclaiming locks for host %s", host->h_name);
dprintk("lockd: reclaiming locks for host %s\n", host->h_name);

restart:
nsmstate = host->h_nsmstate;
Expand Down Expand Up @@ -206,7 +206,7 @@ reclaimer(void *ptr)

host->h_reclaiming = 0;
up_write(&host->h_rwsem);
dprintk("NLM: done reclaiming locks for host %s", host->h_name);
dprintk("NLM: done reclaiming locks for host %s\n", host->h_name);

/* Now, wake up all processes that sleep on a blocked lock */
list_for_each_entry(block, &nlm_blocked, b_list) {
Expand Down

0 comments on commit d019bcf

Please sign in to comment.