summaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authorpeter enderborg <peter.enderborg@sony.com>2018-06-12 10:09:09 +0200
committerPaul Moore <paul@paul-moore.com>2018-06-19 13:43:01 -0400
commitd006469d3fac547743612170756ed1571edcf97e (patch)
tree217393749d54d1349ebb3f3d4d31f84aecbed843 /security
parentb21a695d9cba3a144cc833961457bdc6c987226e (diff)
downloadlinux-0-day-d006469d3fac547743612170756ed1571edcf97e.tar.gz
linux-0-day-d006469d3fac547743612170756ed1571edcf97e.tar.xz
selinux: Cleanup printk logging in netport
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')
-rw-r--r--security/selinux/netport.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/security/selinux/netport.c b/security/selinux/netport.c
index 9ed4c5064a5e7..7a141cadbffce 100644
--- a/security/selinux/netport.c
+++ b/security/selinux/netport.c
@@ -173,9 +173,8 @@ static int sel_netport_sid_slow(u8 protocol, u16 pnum, u32 *sid)
out:
spin_unlock_bh(&sel_netport_lock);
if (unlikely(ret)) {
- printk(KERN_WARNING
- "SELinux: failure in sel_netport_sid_slow(),"
- " unable to determine network port label\n");
+ pr_warn("SELinux: failure in %s(), unable to determine network port label\n",
+ __func__);
kfree(new);
}
return ret;