ntb: intel: fix return value for ndev_vec_mask()
[ Upstream commit 7756e2b5d68c36e170a111dceea22f7365f83256 ]
ndev_vec_mask() should be returning u64 mask value instead of int.
Otherwise the mask value returned can be incorrect for larger
vectors.
Fixes: e26a5843f7
("NTB: Split ntb_hw_intel and ntb_transport drivers")
Signed-off-by: Dave Jiang <dave.jiang@intel.com>
Tested-by: Lucas Van <lucas.van@intel.com>
Signed-off-by: Jon Mason <jdmason@kudzu.us>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
e348885bd4
commit
ea8db54207
1 changed files with 1 additions and 1 deletions
|
@ -330,7 +330,7 @@ static inline int ndev_db_clear_mask(struct intel_ntb_dev *ndev, u64 db_bits,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int ndev_vec_mask(struct intel_ntb_dev *ndev, int db_vector)
|
static inline u64 ndev_vec_mask(struct intel_ntb_dev *ndev, int db_vector)
|
||||||
{
|
{
|
||||||
u64 shift, mask;
|
u64 shift, mask;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue