Skip to content

Commit

Permalink
smb3: correct places where ENOTSUPP is used instead of preferred EOPN…
Browse files Browse the repository at this point in the history
…OTSUPP

[ Upstream commit ebc3d4e ]

checkpatch flagged a few places with:
     WARNING: ENOTSUPP is not a SUSV4 error code, prefer EOPNOTSUPP
Also fixed minor typo

Signed-off-by: Steve French <stfrench@microsoft.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
Steve French authored and gregkh committed Oct 6, 2023
1 parent 2259e19 commit 2132ea3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion fs/smb/client/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -2605,7 +2605,7 @@ int cifs_fiemap(struct inode *inode, struct fiemap_extent_info *fei, u64 start,
}

cifsFileInfo_put(cfile);
return -ENOTSUPP;
return -EOPNOTSUPP;
}

int cifs_truncate_page(struct address_space *mapping, loff_t from)
Expand Down
6 changes: 3 additions & 3 deletions fs/smb/client/smb2ops.c
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ smb2_adjust_credits(struct TCP_Server_Info *server,
cifs_server_dbg(VFS, "request has less credits (%d) than required (%d)",
credits->value, new_val);

return -ENOTSUPP;
return -EOPNOTSUPP;
}

spin_lock(&server->req_lock);
Expand Down Expand Up @@ -1155,7 +1155,7 @@ smb2_set_ea(const unsigned int xid, struct cifs_tcon *tcon,
/* Use a fudge factor of 256 bytes in case we collide
* with a different set_EAs command.
*/
if(CIFSMaxBufSize - MAX_SMB2_CREATE_RESPONSE_SIZE -
if (CIFSMaxBufSize - MAX_SMB2_CREATE_RESPONSE_SIZE -
MAX_SMB2_CLOSE_RESPONSE_SIZE - 256 <
used_len + ea_name_len + ea_value_len + 1) {
rc = -ENOSPC;
Expand Down Expand Up @@ -4721,7 +4721,7 @@ handle_read_data(struct TCP_Server_Info *server, struct mid_q_entry *mid,

if (shdr->Command != SMB2_READ) {
cifs_server_dbg(VFS, "only big read responses are supported\n");
return -ENOTSUPP;
return -EOPNOTSUPP;
}

if (server->ops->is_session_expired &&
Expand Down

0 comments on commit 2132ea3

Please sign in to comment.