mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-11-19 05:06:53 +00:00
selinux: Cleanup printk logging in netif
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
d006469d3f
commit
0d3a115429
1 changed files with 4 additions and 7 deletions
|
|
@ -145,9 +145,8 @@ static int sel_netif_sid_slow(struct net *ns, int ifindex, u32 *sid)
|
||||||
|
|
||||||
dev = dev_get_by_index(ns, ifindex);
|
dev = dev_get_by_index(ns, ifindex);
|
||||||
if (unlikely(dev == NULL)) {
|
if (unlikely(dev == NULL)) {
|
||||||
printk(KERN_WARNING
|
pr_warn("SELinux: failure in %s(), invalid network interface (%d)\n",
|
||||||
"SELinux: failure in sel_netif_sid_slow(),"
|
__func__, ifindex);
|
||||||
" invalid network interface (%d)\n", ifindex);
|
|
||||||
return -ENOENT;
|
return -ENOENT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -177,10 +176,8 @@ out:
|
||||||
spin_unlock_bh(&sel_netif_lock);
|
spin_unlock_bh(&sel_netif_lock);
|
||||||
dev_put(dev);
|
dev_put(dev);
|
||||||
if (unlikely(ret)) {
|
if (unlikely(ret)) {
|
||||||
printk(KERN_WARNING
|
pr_warn("SELinux: failure in %s(), unable to determine network interface label (%d)\n",
|
||||||
"SELinux: failure in sel_netif_sid_slow(),"
|
__func__, ifindex);
|
||||||
" unable to determine network interface label (%d)\n",
|
|
||||||
ifindex);
|
|
||||||
kfree(new);
|
kfree(new);
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue