Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 302459
b: refs/heads/master
c: a49e06d
h: refs/heads/master
i:
  302457: eee04e6
  302455: ce0cdcb
v: v3
  • Loading branch information
Jayamohan Kallickal authored and James Bottomley committed Apr 25, 2012
1 parent 3e0c628 commit 1792e88
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: db7f770968222c966e832eebc82b500b1e8ae6a1
refs/heads/master: a49e06d58d91f170594af3f05454f43dbccae249
7 changes: 3 additions & 4 deletions trunk/drivers/scsi/be2iscsi/be_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -541,8 +541,7 @@ static int be_ctrl_init(struct beiscsi_hba *phba, struct pci_dev *pdev)
&mbox_mem_alloc->dma);
if (!mbox_mem_alloc->va) {
beiscsi_unmap_pci_function(phba);
status = -ENOMEM;
return status;
return -ENOMEM;
}

mbox_mem_align->size = sizeof(struct be_mcc_mailbox);
Expand Down Expand Up @@ -3209,7 +3208,7 @@ static int hwi_init_port(struct beiscsi_hba *phba)
error:
shost_printk(KERN_ERR, phba->shost, "hwi_init_port failed");
hwi_cleanup(phba);
return -ENOMEM;
return status;
}

static int hwi_init_controller(struct beiscsi_hba *phba)
Expand Down Expand Up @@ -3284,7 +3283,7 @@ static int beiscsi_init_controller(struct beiscsi_hba *phba)

free_init:
beiscsi_free_mem(phba);
return -ENOMEM;
return ret;
}

static int beiscsi_init_sgl_handle(struct beiscsi_hba *phba)
Expand Down

0 comments on commit 1792e88

Please sign in to comment.