diff options
author | Steve French <stfrench@microsoft.com> | 2023-06-20 03:45:33 +0200 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2023-06-21 06:03:03 +0200 |
commit | acf35d79ee8c1cce0f879efe6446cf81e5491c36 (patch) | |
tree | d698a2df9f08225644322f4083cec80671d203cb /fs/smb | |
parent | smb: client: fix warning in cifs_smb3_do_mount() (diff) | |
download | linux-acf35d79ee8c1cce0f879efe6446cf81e5491c36.tar.xz linux-acf35d79ee8c1cce0f879efe6446cf81e5491c36.zip |
cifs: print more detail when invalidate_inode_mapping fails
We had seen cases where cifs_invalidate_mapping was logging:
"Could not invalidate inode ..."
if invalidate_inode_pages2 fails but this message does not show what
the rc is. Update the logged message to also log the return code.
Suggested-by: Shyam Prasad N <sprasad@microsoft.com>
Reviewed-by: Shyam Prasad N <sprasad@microsoft.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/smb')
-rw-r--r-- | fs/smb/client/inode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/smb/client/inode.c b/fs/smb/client/inode.c index 1087ac6104a9..c3eeae07e139 100644 --- a/fs/smb/client/inode.c +++ b/fs/smb/client/inode.c @@ -2344,8 +2344,8 @@ cifs_invalidate_mapping(struct inode *inode) if (inode->i_mapping && inode->i_mapping->nrpages != 0) { rc = invalidate_inode_pages2(inode->i_mapping); if (rc) - cifs_dbg(VFS, "%s: Could not invalidate inode %p\n", - __func__, inode); + cifs_dbg(VFS, "%s: invalidate inode %p failed with rc %d\n", + __func__, inode, rc); } return rc; |