mirror of https://gitee.com/openkylin/linux.git
[PATCH] fs/lockd/clntlock.c: add missing newlines to dprintk's
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>
This commit is contained in:
parent
a0f7b67ae4
commit
d019bcf0eb
|
@ -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;
|
||||
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue