lockd: Delete an error message for a failed memory allocation in reclaimer()
Omit an extra message for a memory allocation failure in this function. This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
This commit is contained in:
parent
03c6f7d64a
commit
58a69893a9
@ -235,12 +235,8 @@ reclaimer(void *ptr)
|
|||||||
struct net *net = host->net;
|
struct net *net = host->net;
|
||||||
|
|
||||||
req = kmalloc(sizeof(*req), GFP_KERNEL);
|
req = kmalloc(sizeof(*req), GFP_KERNEL);
|
||||||
if (!req) {
|
if (!req)
|
||||||
printk(KERN_ERR "lockd: reclaimer unable to alloc memory."
|
|
||||||
" Locks for %s won't be reclaimed!\n",
|
|
||||||
host->h_name);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
|
||||||
|
|
||||||
allow_signal(SIGKILL);
|
allow_signal(SIGKILL);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user