Skip to content

Commit

Permalink
cnic: Allocate UIO resources only on devices that support iSCSI.
Browse files Browse the repository at this point in the history
Update version to 2.5.13.

Reviewed-by: Eddie Wai <eddie.wai@broadcom.com>
Reviewed-by: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
Signed-off-by: Michael Chan <mchan@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Michael Chan authored and David S. Miller committed Sep 10, 2012
1 parent 51a8f54 commit 82346a7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion drivers/net/ethernet/broadcom/cnic.c
Original file line number Diff line number Diff line change
Expand Up @@ -1303,6 +1303,9 @@ static int cnic_alloc_bnx2x_resc(struct cnic_dev *dev)
if (ret)
goto error;

if (cp->ethdev->drv_state & CNIC_DRV_STATE_NO_ISCSI)
return 0;

cp->bnx2x_def_status_blk = cp->ethdev->irq_arr[1].status_blk;

cp->l2_rx_ring_size = 15;
Expand Down Expand Up @@ -5351,7 +5354,7 @@ static void cnic_stop_hw(struct cnic_dev *dev)
/* Need to wait for the ring shutdown event to complete
* before clearing the CNIC_UP flag.
*/
while (cp->udev->uio_dev != -1 && i < 15) {
while (cp->udev && cp->udev->uio_dev != -1 && i < 15) {
msleep(100);
i++;
}
Expand Down
4 changes: 2 additions & 2 deletions drivers/net/ethernet/broadcom/cnic_if.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

#include "bnx2x/bnx2x_mfw_req.h"

#define CNIC_MODULE_VERSION "2.5.12"
#define CNIC_MODULE_RELDATE "June 29, 2012"
#define CNIC_MODULE_VERSION "2.5.13"
#define CNIC_MODULE_RELDATE "Sep 07, 2012"

#define CNIC_ULP_RDMA 0
#define CNIC_ULP_ISCSI 1
Expand Down

0 comments on commit 82346a7

Please sign in to comment.