Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1240880
| From | James Bottomley <James.Bottomley@HansenPartnership.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCHv3 1/1] SCSI: update hosts module to use idr index management |
| Date | 2015-10-06 21:30 +0200 |
| Message-ID | <qgG5Z-73b-47@gated-at.bofh.it> (permalink) |
| References | <qgFMB-6Ge-7@gated-at.bofh.it> <qgFMC-6Ge-21@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Tue, 2015-10-06 at 12:08 -0700, Lee Duncan wrote: > Update the SCSI hosts module to use idr to manage > its host_no index instead of an ATOMIC integer. This > also allows using idr_find() to look up the SCSI > host structure given the host number. > > This means that the SCSI host number will now > be reclaimable. > > Signed-off-by: Lee Duncan <lduncan@suse.com> > Reviewed-by: Hannes Reinecke <hare@suse.com> > --- > drivers/scsi/hosts.c | 61 ++++++++++++++++++++++++++-------------------------- > 1 file changed, 31 insertions(+), 30 deletions(- > > diff --git a/drivers/scsi/hosts.c b/drivers/scsi/hosts.c > index 8bb173e01084..afe7bd962ddb 100644 > --- a/drivers/scsi/hosts.c > +++ b/drivers/scsi/hosts.c [...] > + spin_lock(&host_index_lock); > + shost = idr_find(&host_index_idr, hostnum); > + spin_unlock(&host_index_lock); > + > + return shost ? scsi_host_get(shost) : NULL; So the thing I don't like here is that there's a race between scsi_host_get() and the final put. What could happen is that idr_find() returns the host just before but scsi_host_dev_release() is executed before the return. In that instance, we'll reference freed memory in scsi_host_get() ... probably completely harmlessly, but it will show up occasionally on some of the traces ... particularly the ones doing a fuzz/stress test around host create/destroy. James -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCHv3 0/1] Update SCSI hosts to use idr for host number mgmt Lee Duncan <lduncan@suse.com> - 2015-10-06 21:10 +0200
[PATCHv3 1/1] SCSI: update hosts module to use idr index management Lee Duncan <lduncan@suse.com> - 2015-10-06 21:10 +0200
Re: [PATCHv3 1/1] SCSI: update hosts module to use idr index management James Bottomley <James.Bottomley@HansenPartnership.com> - 2015-10-06 21:30 +0200
Re: [PATCHv3 1/1] SCSI: update hosts module to use idr index management Lee Duncan <lduncan@suse.com> - 2015-10-06 23:50 +0200
Re: [PATCHv3 0/1] Update SCSI hosts to use idr for host number mgmt Lee Duncan <lduncan@suse.com> - 2015-10-08 02:00 +0200
csiph-web