diff options
author | Colin Ian King <colin.king@canonical.com> | 2021-04-09 16:07:26 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-04-12 23:13:57 +0300 |
commit | e701a25840360706fe4cf5de0015913ca19c274b (patch) | |
tree | f76ccaed5c82dfa885e96df8a450dee81ad3f53d /tools/perf/scripts/python/export-to-sqlite.py | |
parent | dd2c79677375c37f8f9f8d663eb4708495d595ef (diff) | |
download | linux-e701a25840360706fe4cf5de0015913ca19c274b.tar.xz |
net: thunderx: Fix unintentional sign extension issue
The shifting of the u8 integers rq->caching by 26 bits to
the left will be promoted to a 32 bit signed int and then
sign-extended to a u64. In the event that rq->caching is
greater than 0x1f then all then all the upper 32 bits of
the u64 end up as also being set because of the int
sign-extension. Fix this by casting the u8 values to a
u64 before the 26 bit left shift.
Addresses-Coverity: ("Unintended sign extension")
Fixes: 4863dea3fab0 ("net: Adding support for Cavium ThunderX network controller")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'tools/perf/scripts/python/export-to-sqlite.py')
0 files changed, 0 insertions, 0 deletions