diff options
author | Christian Brauner <christian.brauner@ubuntu.com> | 2021-08-23 17:13:55 +0200 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2021-09-04 06:29:45 +0200 |
commit | eb5784f0c6efbe0db720ad7e34e097cea51c1afc (patch) | |
tree | 8013051f49a49932737d8702412230a3036efaf6 /fs/ksmbd | |
parent | ndr: fix translation in ndr_encode_posix_acl() (diff) | |
download | linux-eb5784f0c6efbe0db720ad7e34e097cea51c1afc.tar.xz linux-eb5784f0c6efbe0db720ad7e34e097cea51c1afc.zip |
ksmbd: ensure error is surfaced in set_file_basic_info()
It seems the error was accidently ignored until now. Make sure it is
surfaced.
Cc: Steve French <stfrench@microsoft.com>
Cc: Christoph Hellwig <hch@infradead.org>
Cc: Namjae Jeon <namjae.jeon@samsung.com>
Cc: Hyunchul Lee <hyc.lee@gmail.com>
Cc: Sergey Senozhatsky <senozhatsky@chromium.org>
Cc: linux-cifs@vger.kernel.org
Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
Signed-off-by: Namjae Jeon <linkinjeon@kernel.org>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/ksmbd')
-rw-r--r-- | fs/ksmbd/smb2pdu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ksmbd/smb2pdu.c b/fs/ksmbd/smb2pdu.c index 1b0a9242be88..1148e52a4037 100644 --- a/fs/ksmbd/smb2pdu.c +++ b/fs/ksmbd/smb2pdu.c @@ -5531,7 +5531,7 @@ static int set_file_basic_info(struct ksmbd_file *fp, char *buf, rc = notify_change(user_ns, dentry, &attrs, NULL); inode_unlock(inode); } - return 0; + return rc; } static int set_file_allocation_info(struct ksmbd_work *work, |