]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
ntb: use 64-bit arithmetic for the MSI doorbell mask
authorFedor Pchelkin <pchelkin@ispras.ru>
Wed, 15 Jan 2025 18:28:17 +0000 (21:28 +0300)
committerJon Mason <jdmason@kudzu.us>
Tue, 18 Mar 2025 14:34:47 +0000 (10:34 -0400)
commitfd5625fc86922f36bedee5846fefd647b7e72751
treec340c0aa3608c6ba6f143b1ac1354fca8f2adf5d
parent1991934ce5fbaa6e9f4b879461f9bd06bfdbd409
ntb: use 64-bit arithmetic for the MSI doorbell mask

msi_db_mask is of type 'u64', still the standard 'int' arithmetic is
performed to compute its value.

While most of the ntb_hw drivers actually don't utilize the higher 32
bits of the doorbell mask now, this may be the case for Switchtec - see
switchtec_ntb_init_db().

Found by Linux Verification Center (linuxtesting.org) with SVACE static
analysis tool.

Fixes: 2b0569b3b7e6 ("NTB: Add MSI interrupt support to ntb_transport")
Cc: stable@vger.kernel.org
Signed-off-by: Fedor Pchelkin <pchelkin@ispras.ru>
Reviewed-by: Dave Jiang <dave.jiang@intel.com>
Signed-off-by: Jon Mason <jdmason@kudzu.us>
drivers/ntb/ntb_transport.c