diff options
author | Enzo Matsumiya | 2022-05-18 11:41:04 -0300 |
---|---|---|
committer | Steve French | 2022-05-20 17:46:22 -0500 |
commit | 71081e7ac16c93acdd18afa65daa468620bb1b64 (patch) | |
tree | 535da9a47003c6119eb76f49e489d41ca61b9c67 /fs/cifs/connect.c | |
parent | 337b8b0e4343567221ef8d88aac5e418208d4ac1 (diff) |
cifs: print TIDs as hex
Makes these debug messages easier to read
Signed-off-by: Enzo Matsumiya <ematsumiya@suse.de>
Reviewed-by: Paulo Alcantara (SUSE) <pc@cjr.nz>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/cifs/connect.c')
-rw-r--r-- | fs/cifs/connect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c index 50eed49128aa..44dc66f21d83 100644 --- a/fs/cifs/connect.c +++ b/fs/cifs/connect.c @@ -1789,7 +1789,7 @@ cifs_setup_ipc(struct cifs_ses *ses, struct smb3_fs_context *ctx) goto out; } - cifs_dbg(FYI, "IPC tcon rc = %d ipc tid = %d\n", rc, tcon->tid); + cifs_dbg(FYI, "IPC tcon rc=%d ipc tid=0x%x\n", rc, tcon->tid); ses->tcon_ipc = tcon; out: |