From: Ben Hutchings Date: Fri, 10 Feb 2012 23:01:48 +0000 (+0000) Subject: sfc: Use proper function to test for RX channel in efx_poll() X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=9d9a6973a890c5b2258e717e4aae716720e60fcb;p=sagit-ice-cold%2Fkernel_xiaomi_msm8998.git sfc: Use proper function to test for RX channel in efx_poll() Signed-off-by: Ben Hutchings --- diff --git a/drivers/net/ethernet/sfc/efx.c b/drivers/net/ethernet/sfc/efx.c index ccfb43c9968d..eda2272bc4c0 100644 --- a/drivers/net/ethernet/sfc/efx.c +++ b/drivers/net/ethernet/sfc/efx.c @@ -279,7 +279,7 @@ static int efx_poll(struct napi_struct *napi, int budget) spent = efx_process_channel(channel, budget); if (spent < budget) { - if (channel->channel < efx->n_rx_channels && + if (efx_channel_has_rx_queue(channel) && efx->irq_rx_adaptive && unlikely(++channel->irq_count == 1000)) { if (unlikely(channel->irq_mod_score <