bnx2x: do not allocate FCoE ring if disabled
Signed-off-by: Dmitry Kravkov <dmitry@broadcom.com> Signed-off-by: Vladislav Zolotarov <vladz@broadcom.com> Signed-off-by: Eilon Greenstein <eilong@broadcom.com> Signed-off-by: David S. Miller <davem@conan.davemloft.net>
This commit is contained in:
parent
59e5137357
commit
8eef2af182
@ -2621,7 +2621,12 @@ static int bnx2x_alloc_fp_mem_at(struct bnx2x *bp, int index)
|
|||||||
#ifdef BCM_CNIC
|
#ifdef BCM_CNIC
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
set_sb_shortcuts(bp, index);
|
|
||||||
|
/* FCoE Queue uses Default SB and doesn't ACK the SB, thus no need to
|
||||||
|
* set shortcuts for it.
|
||||||
|
*/
|
||||||
|
if (!IS_FCOE_IDX(index))
|
||||||
|
set_sb_shortcuts(bp, index);
|
||||||
|
|
||||||
/* Tx */
|
/* Tx */
|
||||||
if (!skip_tx_queue(bp, index)) {
|
if (!skip_tx_queue(bp, index)) {
|
||||||
@ -2698,9 +2703,13 @@ int bnx2x_alloc_fp_mem(struct bnx2x *bp)
|
|||||||
if (bnx2x_alloc_fp_mem_at(bp, 0))
|
if (bnx2x_alloc_fp_mem_at(bp, 0))
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
#ifdef BCM_CNIC
|
#ifdef BCM_CNIC
|
||||||
/* FCoE */
|
if (!NO_FCOE(bp))
|
||||||
if (bnx2x_alloc_fp_mem_at(bp, FCOE_IDX))
|
/* FCoE */
|
||||||
return -ENOMEM;
|
if (bnx2x_alloc_fp_mem_at(bp, FCOE_IDX))
|
||||||
|
/* we will fail load process instead of mark
|
||||||
|
* NO_FCOE_FLAG
|
||||||
|
*/
|
||||||
|
return -ENOMEM;
|
||||||
#endif
|
#endif
|
||||||
/* RSS */
|
/* RSS */
|
||||||
for_each_nondefault_eth_queue(bp, i)
|
for_each_nondefault_eth_queue(bp, i)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user