mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 05:32:00 +00:00
scsi: mpi3mr: Fix the type used for pointers to bitmap
Bitmaps are "unsigned long[]", so better use "unsigned long *" instead of a plain "void *" when dealing with pointers to bitmaps. This is more informative. Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Link: https://lore.kernel.org/r/8bdf9148ce1a5d01aac11c46c8617b477813457e.1683473011.git.christophe.jaillet@wanadoo.fr Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
2e2fe5ac69
commit
144679dfb5
@ -1133,18 +1133,18 @@ struct mpi3mr_ioc {
|
||||
u32 chain_buf_count;
|
||||
struct dma_pool *chain_buf_pool;
|
||||
struct chain_element *chain_sgl_list;
|
||||
void *chain_bitmap;
|
||||
unsigned long *chain_bitmap;
|
||||
spinlock_t chain_buf_lock;
|
||||
|
||||
struct mpi3mr_drv_cmd bsg_cmds;
|
||||
struct mpi3mr_drv_cmd host_tm_cmds;
|
||||
struct mpi3mr_drv_cmd dev_rmhs_cmds[MPI3MR_NUM_DEVRMCMD];
|
||||
struct mpi3mr_drv_cmd evtack_cmds[MPI3MR_NUM_EVTACKCMD];
|
||||
void *devrem_bitmap;
|
||||
unsigned long *devrem_bitmap;
|
||||
u16 dev_handle_bitmap_bits;
|
||||
void *removepend_bitmap;
|
||||
unsigned long *removepend_bitmap;
|
||||
struct list_head delayed_rmhs_list;
|
||||
void *evtack_cmds_bitmap;
|
||||
unsigned long *evtack_cmds_bitmap;
|
||||
struct list_head delayed_evtack_cmds_list;
|
||||
|
||||
u32 ts_update_counter;
|
||||
|
@ -1134,7 +1134,7 @@ static int mpi3mr_issue_and_process_mur(struct mpi3mr_ioc *mrioc,
|
||||
static int
|
||||
mpi3mr_revalidate_factsdata(struct mpi3mr_ioc *mrioc)
|
||||
{
|
||||
void *removepend_bitmap;
|
||||
unsigned long *removepend_bitmap;
|
||||
|
||||
if (mrioc->facts.reply_sz > mrioc->reply_sz) {
|
||||
ioc_err(mrioc,
|
||||
|
Loading…
Reference in New Issue
Block a user