diff options
author | peter enderborg <peter.enderborg@sony.com> | 2018-06-12 10:09:12 +0200 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2018-06-19 13:49:10 -0400 |
commit | 67b0b4e4988f296ecc69fc8d09a2ce2741653ee0 (patch) | |
tree | 6d25d3e8017dfec0f0ebbdbd7ee3bfdc314a72db /security/selinux | |
parent | 07c81ac2adccbdfe8cc48fe4ad347cd37520c504 (diff) | |
download | blackbird-obmc-linux-67b0b4e4988f296ecc69fc8d09a2ce2741653ee0.tar.gz blackbird-obmc-linux-67b0b4e4988f296ecc69fc8d09a2ce2741653ee0.zip |
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>
Diffstat (limited to 'security/selinux')
-rw-r--r-- | security/selinux/netnode.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/security/selinux/netnode.c b/security/selinux/netnode.c index 6dd89b89bc1f..afa0d432436b 100644 --- a/security/selinux/netnode.c +++ b/security/selinux/netnode.c @@ -238,9 +238,8 @@ static int sel_netnode_sid_slow(void *addr, u16 family, u32 *sid) out: spin_unlock_bh(&sel_netnode_lock); if (unlikely(ret)) { - printk(KERN_WARNING - "SELinux: failure in sel_netnode_sid_slow()," - " unable to determine network node label\n"); + pr_warn("SELinux: failure in %s(), unable to determine network node label\n", + __func__); kfree(new); } return ret; |