diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2008-12-04 14:20:31 -0500 |
---|---|---|
committer | J. Bruce Fields <bfields@citi.umich.edu> | 2009-01-06 11:53:50 -0500 |
commit | 5acf43155d1bcc412d892c73f64044f9a826cde6 (patch) | |
tree | cc505431849be49a234f24bcc3290285a207e3fb /fs/lockd/mon.c | |
parent | a4846750f090702e2fb848ac4fe5827bcef34060 (diff) |
NSM: convert printk(KERN_DEBUG) to a dprintk()
Clean up: make the printk(KERN_DEBUG) in nsm_mon_unmon() a dprintk,
and add another dprintk to note if creating an RPC client for the
upcall failed.
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Diffstat (limited to 'fs/lockd/mon.c')
-rw-r--r-- | fs/lockd/mon.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fs/lockd/mon.c b/fs/lockd/mon.c index 6f6ff410341a..497dfea02e8a 100644 --- a/fs/lockd/mon.c +++ b/fs/lockd/mon.c | |||
@@ -52,6 +52,8 @@ nsm_mon_unmon(struct nsm_handle *nsm, u32 proc, struct nsm_res *res) | |||
52 | clnt = nsm_create(); | 52 | clnt = nsm_create(); |
53 | if (IS_ERR(clnt)) { | 53 | if (IS_ERR(clnt)) { |
54 | status = PTR_ERR(clnt); | 54 | status = PTR_ERR(clnt); |
55 | dprintk("lockd: failed to create NSM upcall transport, " | ||
56 | "status=%d\n", status); | ||
55 | goto out; | 57 | goto out; |
56 | } | 58 | } |
57 | 59 | ||
@@ -60,8 +62,8 @@ nsm_mon_unmon(struct nsm_handle *nsm, u32 proc, struct nsm_res *res) | |||
60 | msg.rpc_proc = &clnt->cl_procinfo[proc]; | 62 | msg.rpc_proc = &clnt->cl_procinfo[proc]; |
61 | status = rpc_call_sync(clnt, &msg, 0); | 63 | status = rpc_call_sync(clnt, &msg, 0); |
62 | if (status < 0) | 64 | if (status < 0) |
63 | printk(KERN_DEBUG "nsm_mon_unmon: rpc failed, status=%d\n", | 65 | dprintk("lockd: NSM upcall RPC failed, status=%d\n", |
64 | status); | 66 | status); |
65 | else | 67 | else |
66 | status = 0; | 68 | status = 0; |
67 | rpc_shutdown_client(clnt); | 69 | rpc_shutdown_client(clnt); |