* [PATCH] scsi/csiostor : Correctly obtain the size of the data structure
@ 2024-03-31 10:49 flyingpenghao
0 siblings, 0 replies; only message in thread
From: flyingpenghao @ 2024-03-31 10:49 UTC (permalink / raw)
To: jejb, martin.petersen; +Cc: linux-scsi, Peng Hao
From: Peng Hao <flyingpeng@tencent.com>
The variable 'mbp' is a pointer. From the implementation of
csio_enqueue_evt, it is necessary to copy the size of the data
structure pointed to by 'mbp'.
Signed-off-by: Peng Hao <flyingpeng@tencent.com>
---
drivers/scsi/csiostor/csio_mb.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/scsi/csiostor/csio_mb.c b/drivers/scsi/csiostor/csio_mb.c
index 94810b19e747..4df8a4df4408 100644
--- a/drivers/scsi/csiostor/csio_mb.c
+++ b/drivers/scsi/csiostor/csio_mb.c
@@ -1551,7 +1551,7 @@ csio_mb_isr_handler(struct csio_hw *hw)
* Enqueue event to EventQ. Events processing happens
* in Event worker thread context
*/
- if (csio_enqueue_evt(hw, CSIO_EVT_MBX, mbp, sizeof(mbp)))
+ if (csio_enqueue_evt(hw, CSIO_EVT_MBX, mbp, sizeof(*mbp)))
CSIO_INC_STATS(hw, n_evt_drop);
return 0;
--
2.31.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2024-03-31 10:49 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-31 10:49 [PATCH] scsi/csiostor : Correctly obtain the size of the data structure flyingpenghao
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.