selinux: Cleanup printk logging in netnode
Replace printk with pr_* to avoid checkpatch warnings. Signed-off-by: Peter Enderborg <peter.enderborg@sony.com> Signed-off-by: Paul Moore <paul@paul-moore.com>
This commit is contained in:
parent
07c81ac2ad
commit
67b0b4e498
|
@ -238,9 +238,8 @@ static int sel_netnode_sid_slow(void *addr, u16 family, u32 *sid)
|
||||||
out:
|
out:
|
||||||
spin_unlock_bh(&sel_netnode_lock);
|
spin_unlock_bh(&sel_netnode_lock);
|
||||||
if (unlikely(ret)) {
|
if (unlikely(ret)) {
|
||||||
printk(KERN_WARNING
|
pr_warn("SELinux: failure in %s(), unable to determine network node label\n",
|
||||||
"SELinux: failure in sel_netnode_sid_slow(),"
|
__func__);
|
||||||
" unable to determine network node label\n");
|
|
||||||
kfree(new);
|
kfree(new);
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in New Issue