diff options
-rw-r--r-- | drivers/scsi/libsas/sas_expander.c | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/drivers/scsi/libsas/sas_expander.c b/drivers/scsi/libsas/sas_expander.c index 8603ae65213d..8727436b222d 100644 --- a/drivers/scsi/libsas/sas_expander.c +++ b/drivers/scsi/libsas/sas_expander.c | |||
@@ -507,14 +507,21 @@ static int sas_dev_present_in_domain(struct asd_sas_port *port, | |||
507 | int sas_smp_get_phy_events(struct sas_phy *phy) | 507 | int sas_smp_get_phy_events(struct sas_phy *phy) |
508 | { | 508 | { |
509 | int res; | 509 | int res; |
510 | u8 *req; | ||
511 | u8 *resp; | ||
510 | struct sas_rphy *rphy = dev_to_rphy(phy->dev.parent); | 512 | struct sas_rphy *rphy = dev_to_rphy(phy->dev.parent); |
511 | struct domain_device *dev = sas_find_dev_by_rphy(rphy); | 513 | struct domain_device *dev = sas_find_dev_by_rphy(rphy); |
512 | u8 *req = alloc_smp_req(RPEL_REQ_SIZE); | ||
513 | u8 *resp = kzalloc(RPEL_RESP_SIZE, GFP_KERNEL); | ||
514 | 514 | ||
515 | if (!resp) | 515 | req = alloc_smp_req(RPEL_REQ_SIZE); |
516 | if (!req) | ||
516 | return -ENOMEM; | 517 | return -ENOMEM; |
517 | 518 | ||
519 | resp = alloc_smp_resp(RPEL_RESP_SIZE); | ||
520 | if (!resp) { | ||
521 | kfree(req); | ||
522 | return -ENOMEM; | ||
523 | } | ||
524 | |||
518 | req[1] = SMP_REPORT_PHY_ERR_LOG; | 525 | req[1] = SMP_REPORT_PHY_ERR_LOG; |
519 | req[9] = phy->number; | 526 | req[9] = phy->number; |
520 | 527 | ||