Rayagond Kokatanur <rayagond.kokata...@gmail.com> : > This patch initialize the cur_rx_qnum upon occurence of rx interrupt, > without this initialization driver will not work with multiple rx queues > configurations. > > NOTE: This patch is not tested on actual hw.
(your patch should include a Signed-off-by) Imho the driver needs more changes to support multiple rx queues. - rx interrupt for queue A -> priv->cur_rx_qnum = A - rx interrupt for queue B -> priv->cur_rx_qnum = B - rx napi processing -> Err... Please start turning priv->cur_rx_qnum into a SXGBE_RX_QUEUES sized bitmap. -- Ueimor