aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs/file.c
diff options
context:
space:
mode:
authorSteve French <stfrench@microsoft.com>2020-02-06 16:04:59 -0600
committerSteve French <stfrench@microsoft.com>2020-02-06 17:21:23 -0600
commit2391ca41b476078da5cf72c2fe82ae9f03da8b38 (patch)
treea725478e0c9573feafbbc5e1b98c7bf33c9f8cdb /fs/cifs/file.c
parentcifs: fix mode bits from dir listing when mounted with modefromsid (diff)
downloadlinux-dev-2391ca41b476078da5cf72c2fe82ae9f03da8b38.tar.xz
linux-dev-2391ca41b476078da5cf72c2fe82ae9f03da8b38.zip
smb3: add one more dynamic tracepoint missing from strict fsync path
We didn't have a dynamic trace point for catching errors in file_write_and_wait_range error cases in cifs_strict_fsync. Since not all apps check for write behind errors, it can be important for debugging to be able to trace these error paths. Suggested-and-reviewed-by: Pavel Shilovsky <pshilov@microsoft.com> Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/cifs/file.c')
-rw-r--r--fs/cifs/file.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/cifs/file.c b/fs/cifs/file.c
index 99ea7b2a06a5..bc9516ab4b34 100644
--- a/fs/cifs/file.c
+++ b/fs/cifs/file.c
@@ -2593,8 +2593,10 @@ int cifs_strict_fsync(struct file *file, loff_t start, loff_t end,
struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
rc = file_write_and_wait_range(file, start, end);
- if (rc)
+ if (rc) {
+ trace_cifs_fsync_err(inode->i_ino, rc);
return rc;
+ }
xid = get_xid();