On 30/05/2022 03:43, Damien Le Moal wrote: > Make sure to always clear a scsi disk zone information, even for regular > disks. This ensures that there is no memory leak, even in the case of a > zoned disk changing type to a regular disk (e.g. with a reformat using > the FORMAT WITH PRESET command or other vendor proprietary command). > > This change also makes sure that the sdkp rev_mutex is never used while > not being initialized by gating sd_zbc_clear_zone_info() cleanup code > with a check on the zone_wp_update_buf field which is never NULL when > rev_mutex has been initialized. > > Signed-off-by: Damien Le Moal <damien.lemoal@xxxxxxxxxxxxxxxxxx> > --- > drivers/scsi/sd_zbc.c | 15 ++++++++++----- > 1 file changed, 10 insertions(+), 5 deletions(-) > > diff --git a/drivers/scsi/sd_zbc.c b/drivers/scsi/sd_zbc.c > index 5b9fad70aa88..6245205b1159 100644 > --- a/drivers/scsi/sd_zbc.c > +++ b/drivers/scsi/sd_zbc.c > @@ -788,6 +788,9 @@ static int sd_zbc_init_disk(struct scsi_disk *sdkp) > > static void sd_zbc_clear_zone_info(struct scsi_disk *sdkp) > { > + if (!sdkp->zone_wp_update_buf) > + return; > + > /* Serialize against revalidate zones */ > mutex_lock(&sdkp->rev_mutex); > > @@ -804,8 +807,7 @@ static void sd_zbc_clear_zone_info(struct scsi_disk *sdkp) > > void sd_zbc_release_disk(struct scsi_disk *sdkp) > { > - if (sd_is_zoned(sdkp)) > - sd_zbc_clear_zone_info(sdkp); > + sd_zbc_clear_zone_info(sdkp); > } Now sd_zbc_release_disk() has become a simple rename of sd_zbc_clear_zone_info(). I think it can go and we can use sd_zbc_clear_zone_info() in the callers instead.