From: Eric W. Biederman Date: Wed, 6 Feb 2013 08:44:13 +0000 (-0800) Subject: cifs: Convert from a kuid before printing current_fsuid X-Git-Tag: v3.9-rc1~85^2~8 X-Git-Url: http://pileus.org/git/?a=commitdiff_plain;h=dbfb98af18194cff87d4c1dea8d43faf14eae2e7;p=~andy%2Flinux cifs: Convert from a kuid before printing current_fsuid Cc: Steve French Signed-off-by: "Eric W. Biederman" --- diff --git a/fs/cifs/cifsproto.h b/fs/cifs/cifsproto.h index 0060ec2124b..feb9b6e2ab5 100644 --- a/fs/cifs/cifsproto.h +++ b/fs/cifs/cifsproto.h @@ -46,7 +46,8 @@ extern void _free_xid(unsigned int); ({ \ unsigned int __xid = _get_xid(); \ cFYI(1, "CIFS VFS: in %s as Xid: %u with uid: %d", \ - __func__, __xid, current_fsuid()); \ + __func__, __xid, \ + from_kuid(&init_user_ns, current_fsuid())); \ __xid; \ })