bnx2x: init FCOE FP only once
authorVladislav Zolotarov <vladz@broadcom.com>
Tue, 9 Aug 2011 03:08:09 +0000 (03:08 +0000)
committerDavid S. Miller <davem@davemloft.net>
Thu, 11 Aug 2011 14:14:53 +0000 (07:14 -0700)
Signed-off-by: Dmitry Kravkov <dmitry@broadcom.com>
Signed-off-by: Eilon Greenstein <eilong@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/bnx2x/bnx2x_cmn.c

index d724a18b5285dd13e9caffdbd14f907fd81b5d08..64df0ef97e022cde4b1c8237c643a1aff5831c48 100644 (file)
@@ -63,8 +63,9 @@ static inline void bnx2x_bz_fp(struct bnx2x *bp, int index)
        fp->disable_tpa = ((bp->flags & TPA_ENABLE_FLAG) == 0);
 
 #ifdef BCM_CNIC
-       /* We don't want TPA on FCoE, FWD and OOO L2 rings */
-       bnx2x_fcoe(bp, disable_tpa) = 1;
+       /* We don't want TPA on an FCoE L2 ring */
+       if (IS_FCOE_FP(fp))
+               fp->disable_tpa = 1;
 #endif
 }