thunderbolt: Ensure left shift of 512 does not overflow a 32 bit int
authorColin Ian King <colin.king@canonical.com>
Tue, 30 Jun 2020 14:55:58 +0000 (15:55 +0100)
committerMika Westerberg <mika.westerberg@linux.intel.com>
Wed, 1 Jul 2020 10:46:47 +0000 (13:46 +0300)
commit4c767ce48cf858971545164c4c53d028e6241c07
tree3d3d39467783b85594a86c3c176d7f00c5f01e59
parentdacb12877d9222e0281b8391e3361fd4c7a7435a
thunderbolt: Ensure left shift of 512 does not overflow a 32 bit int

The 32 bit int value 512 is being left shifted and then used in a context
that expects the expression to be a larger unsigned long. There may be
a potential integer overflow, so make 512 a UL before shift to avoid
any such issues.

Addresses-Coverity: ("Uninintentional integer overflow")
Fixes: 3b1d8d577ca8 ("thunderbolt: Implement USB3 bandwidth negotiation routines")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
drivers/thunderbolt/usb4.c