Re: [PATCH] scsi: Fix a double free in myrs_cleanup

2021-03-15 Thread Martin K. Petersen
On Wed, 10 Mar 2021 22:30:05 -0800, Lv Yunlong wrote: > In myrs_cleanup, cs->mmio_base will be freed twice by > iounmap(). Applied to 5.12/scsi-fixes, thanks! [1/1] scsi: Fix a double free in myrs_cleanup https://git.kernel.org/mkp/scsi/c/2bb817712e2f -- Martin K. Petersen Oracle Li

Re: [PATCH] scsi: Fix a double free in myrs_cleanup

2021-03-11 Thread Hannes Reinecke
On 3/11/21 7:30 AM, Lv Yunlong wrote: > In myrs_cleanup, cs->mmio_base will be freed twice by > iounmap(). > > Fixes: 77266186397c6 ("scsi: myrs: Add Mylex RAID controller (SCSI > interface)") > Signed-off-by: Lv Yunlong > --- > drivers/scsi/myrs.c | 2 +- > 1 file changed, 1 insertion(+), 1 de

[PATCH] scsi: Fix a double free in myrs_cleanup

2021-03-10 Thread Lv Yunlong
In myrs_cleanup, cs->mmio_base will be freed twice by iounmap(). Fixes: 77266186397c6 ("scsi: myrs: Add Mylex RAID controller (SCSI interface)") Signed-off-by: Lv Yunlong --- drivers/scsi/myrs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/myrs.c b/drivers/scs