diff options
author | 2021-09-21 23:33:35 +0300 | |
---|---|---|
committer | 2021-09-21 20:51:50 -0500 | |
commit | e946d3c887a9dc33aa82a349c6284f4a084163f4 (patch) | |
tree | 733ed2ab3f3d856302b7aef5b1ff0557b0e5b2b3 /tools/perf/scripts/python/exported-sql-viewer.py | |
parent | Merge tag '5.15-rc1-smb3' of git://git.samba.org/sfrench/cifs-2.6 (diff) | |
download | linux-dev-e946d3c887a9dc33aa82a349c6284f4a084163f4.tar.xz linux-dev-e946d3c887a9dc33aa82a349c6284f4a084163f4.zip |
cifs: fix a sign extension bug
The problem is the mismatched types between "ctx->total_len" which is
an unsigned int, "rc" which is an int, and "ctx->rc" which is a
ssize_t. The code does:
ctx->rc = (rc == 0) ? ctx->total_len : rc;
We want "ctx->rc" to store the negative "rc" error code. But what
happens is that "rc" is type promoted to a high unsigned int and
'ctx->rc" will store the high positive value instead of a negative
value.
The fix is to change "rc" from an int to a ssize_t.
Fixes: c610c4b619e5 ("CIFS: Add asynchronous write support through kernel AIO")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'tools/perf/scripts/python/exported-sql-viewer.py')
0 files changed, 0 insertions, 0 deletions