diff options
author | Paulo Alcantara <pc@cjr.nz> | 2021-03-08 18:00:47 +0300 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2021-03-09 06:22:31 +0300 |
commit | bf1bc694b6b0cf49756cb06f8f38501b9b2c5527 (patch) | |
tree | 175f3595bec723265fa69a7cc86cdae4c40d2240 /fs/cifs/cifs_debug.c | |
parent | 88fd98a2306755b965e4f4567f84e73db3b6738c (diff) | |
download | linux-bf1bc694b6b0cf49756cb06f8f38501b9b2c5527.tar.xz |
cifs: print MIDs in decimal notation
The MIDs are mostly printed as decimal, so let's make it consistent.
Signed-off-by: Paulo Alcantara (SUSE) <pc@cjr.nz>
Reviewed-by: Aurelien Aptel <aaptel@suse.com>
Reviewed-by: Ronnie Sahlberg <lsahlber@redhat.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/cifs/cifs_debug.c')
-rw-r--r-- | fs/cifs/cifs_debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/cifs_debug.c b/fs/cifs/cifs_debug.c index 3aedc484e440..88a7958170ee 100644 --- a/fs/cifs/cifs_debug.c +++ b/fs/cifs/cifs_debug.c @@ -207,7 +207,7 @@ static int cifs_debug_files_proc_show(struct seq_file *m, void *v) from_kuid(&init_user_ns, cfile->uid), cfile->dentry); #ifdef CONFIG_CIFS_DEBUG2 - seq_printf(m, " 0x%llx\n", cfile->fid.mid); + seq_printf(m, " %llu\n", cfile->fid.mid); #else seq_printf(m, "\n"); #endif /* CIFS_DEBUG2 */ |