projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c7f172d
)
[SCSI] hpsa: Fix hpsa_find_scsi_entry so that it doesn't try to dereference NULL...
author
Stephen M. Cameron
<scameron@beardog.cce.hp.com>
Thu, 4 Feb 2010 14:43:36 +0000
(08:43 -0600)
committer
James Bottomley
<James.Bottomley@suse.de>
Wed, 17 Feb 2010 19:23:03 +0000
(13:23 -0600)
Signed-off-by: Stephen M. Cameron <scameron@beardog.cce.hp.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
drivers/scsi/hpsa.c
patch
|
blob
|
history
diff --git
a/drivers/scsi/hpsa.c
b/drivers/scsi/hpsa.c
index 42295c49682fcc09a6f89cccf9137bc9863cf2aa..2764cb6056938f78fd2e11b40217a0ffb7367d09 100644
(file)
--- a/
drivers/scsi/hpsa.c
+++ b/
drivers/scsi/hpsa.c
@@
-776,6
+776,8
@@
static int hpsa_scsi_find_entry(struct hpsa_scsi_dev_t *needle,
#define DEVICE_CHANGED 1
#define DEVICE_SAME 2
for (i = 0; i < haystack_size; i++) {
+ if (haystack[i] == NULL) /* previously removed. */
+ continue;
if (SCSI3ADDR_EQ(needle->scsi3addr, haystack[i]->scsi3addr)) {
*index = i;
if (device_is_the_same(needle, haystack[i]))