diff options
Diffstat (limited to 'sys/dev/ixgbe/ixgbe.h')
-rw-r--r-- | sys/dev/ixgbe/ixgbe.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/ixgbe/ixgbe.h b/sys/dev/ixgbe/ixgbe.h index 7991b69..ab0ebf8 100644 --- a/sys/dev/ixgbe/ixgbe.h +++ b/sys/dev/ixgbe/ixgbe.h @@ -296,6 +296,7 @@ struct tx_ring { IXGBE_QUEUE_WORKING, IXGBE_QUEUE_HUNG, } queue_status; + u32 process_limit; int watchdog_time; union ixgbe_adv_tx_desc *tx_base; struct ixgbe_dma_alloc txdma; @@ -338,6 +339,7 @@ struct rx_ring { bool vtag_strip; u32 next_to_refresh; u32 next_to_check; + u32 process_limit; char mtx_name[16]; struct ixgbe_rx_buf *rx_buffers; bus_dma_tag_t tag; @@ -444,7 +446,6 @@ struct adapter { struct rx_ring *rx_rings; int num_rx_desc; u64 que_mask; - u32 rx_process_limit; /* Multicast array memory */ u8 *mta; |