bnx2x.h (508dc4f8eece1a70c493afc6511fdf5934fef567) bnx2x.h (26614ba5445fe31a69068a5e94266fa08b4ee345)
1/* bnx2x.h: Broadcom Everest network driver.
2 *
3 * Copyright (c) 2007-2012 Broadcom Corporation
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation.
8 *

--- 1694 unchanged lines hidden (view full) ---

1703
1704/* Skip forwarding FP */
1705#define for_each_rx_queue(bp, var) \
1706 for ((var) = 0; (var) < BNX2X_NUM_QUEUES(bp); (var)++) \
1707 if (skip_rx_queue(bp, var)) \
1708 continue; \
1709 else
1710
1/* bnx2x.h: Broadcom Everest network driver.
2 *
3 * Copyright (c) 2007-2012 Broadcom Corporation
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation.
8 *

--- 1694 unchanged lines hidden (view full) ---

1703
1704/* Skip forwarding FP */
1705#define for_each_rx_queue(bp, var) \
1706 for ((var) = 0; (var) < BNX2X_NUM_QUEUES(bp); (var)++) \
1707 if (skip_rx_queue(bp, var)) \
1708 continue; \
1709 else
1710
1711#define for_each_napi_rx_queue(bp, var) \
1712 for ((var) = 0; (var) < bp->num_napi_queues; (var)++)
1713
1714/* Skip OOO FP */
1715#define for_each_tx_queue(bp, var) \
1716 for ((var) = 0; (var) < BNX2X_NUM_QUEUES(bp); (var)++) \
1717 if (skip_tx_queue(bp, var)) \
1718 continue; \
1719 else
1720
1721#define for_each_nondefault_queue(bp, var) \

--- 486 unchanged lines hidden ---
1711/* Skip OOO FP */
1712#define for_each_tx_queue(bp, var) \
1713 for ((var) = 0; (var) < BNX2X_NUM_QUEUES(bp); (var)++) \
1714 if (skip_tx_queue(bp, var)) \
1715 continue; \
1716 else
1717
1718#define for_each_nondefault_queue(bp, var) \

--- 486 unchanged lines hidden ---