mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-18 11:56:14 +07:00
tuntap: log the unsigned informaiton with %u
Signed-off-by: Jason Wang <jasowang@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
810b6d7638
commit
1e5883382c
@ -1419,7 +1419,7 @@ static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
|
||||
if (!tun)
|
||||
goto unlock;
|
||||
|
||||
tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %d\n", cmd);
|
||||
tun_debug(KERN_INFO, tun, "tun_chr_ioctl cmd %u\n", cmd);
|
||||
|
||||
ret = 0;
|
||||
switch (cmd) {
|
||||
@ -1459,7 +1459,7 @@ static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
|
||||
break;
|
||||
}
|
||||
tun->owner = owner;
|
||||
tun_debug(KERN_INFO, tun, "owner set to %d\n",
|
||||
tun_debug(KERN_INFO, tun, "owner set to %u\n",
|
||||
from_kuid(&init_user_ns, tun->owner));
|
||||
break;
|
||||
|
||||
@ -1471,7 +1471,7 @@ static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
|
||||
break;
|
||||
}
|
||||
tun->group = group;
|
||||
tun_debug(KERN_INFO, tun, "group set to %d\n",
|
||||
tun_debug(KERN_INFO, tun, "group set to %u\n",
|
||||
from_kgid(&init_user_ns, tun->group));
|
||||
break;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user