mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 14:42:37 +02:00
IB/iser: Fix dma_nents type definition
[ Upstream commitc1545f1a20] The retured value from ib_dma_map_sg saved in dma_nents variable. To avoid future mismatch between types, define dma_nents as an integer instead of unsigned. Fixes:57b26497fa("IB/iser: Pass the correct number of entries for dma mapped SGL") Reported-by: Dan Carpenter <dan.carpenter@oracle.com> Reviewed-by: Israel Rukshin <israelr@mellanox.com> Signed-off-by: Max Gurtovoy <maxg@mellanox.com> Acked-by: Sagi Grimberg <sagi@grimberg.me> Reviewed-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Jason Gunthorpe <jgg@mellanox.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
e2a5ad5ac8
commit
7e782544fd
|
|
@ -197,7 +197,7 @@ struct iser_data_buf {
|
|||
struct scatterlist *sg;
|
||||
int size;
|
||||
unsigned long data_len;
|
||||
unsigned int dma_nents;
|
||||
int dma_nents;
|
||||
};
|
||||
|
||||
/* fwd declarations */
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user