Commit 9fae6c3f authored by Ilya Yanok's avatar Ilya Yanok Committed by David S. Miller

dnet: replace obsolete *netif_rx_* functions with *napi_*

*netif_rx_* functions is obsolete and removed in newer kernels so
we need to use corresponding *napi_* functions instead.
Signed-off-by: default avatarIlya Yanok <yanok@emcraft.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 6b7c5b94
...@@ -408,7 +408,7 @@ static int dnet_poll(struct napi_struct *napi, int budget) ...@@ -408,7 +408,7 @@ static int dnet_poll(struct napi_struct *napi, int budget)
* packets waiting * packets waiting
*/ */
if (!(dnet_readl(bp, RX_FIFO_WCNT) >> 16)) { if (!(dnet_readl(bp, RX_FIFO_WCNT) >> 16)) {
netif_rx_complete(napi); napi_complete(napi);
int_enable = dnet_readl(bp, INTR_ENB); int_enable = dnet_readl(bp, INTR_ENB);
int_enable |= DNET_INTR_SRC_RX_CMDFIFOAF; int_enable |= DNET_INTR_SRC_RX_CMDFIFOAF;
dnet_writel(bp, int_enable, INTR_ENB); dnet_writel(bp, int_enable, INTR_ENB);
...@@ -447,7 +447,7 @@ static int dnet_poll(struct napi_struct *napi, int budget) ...@@ -447,7 +447,7 @@ static int dnet_poll(struct napi_struct *napi, int budget)
if (npackets < budget) { if (npackets < budget) {
/* We processed all packets available. Tell NAPI it can /* We processed all packets available. Tell NAPI it can
* stop polling then re-enable rx interrupts */ * stop polling then re-enable rx interrupts */
netif_rx_complete(napi); napi_complete(napi);
int_enable = dnet_readl(bp, INTR_ENB); int_enable = dnet_readl(bp, INTR_ENB);
int_enable |= DNET_INTR_SRC_RX_CMDFIFOAF; int_enable |= DNET_INTR_SRC_RX_CMDFIFOAF;
dnet_writel(bp, int_enable, INTR_ENB); dnet_writel(bp, int_enable, INTR_ENB);
...@@ -507,7 +507,7 @@ static irqreturn_t dnet_interrupt(int irq, void *dev_id) ...@@ -507,7 +507,7 @@ static irqreturn_t dnet_interrupt(int irq, void *dev_id)
} }
if (int_current & DNET_INTR_SRC_RX_CMDFIFOAF) { if (int_current & DNET_INTR_SRC_RX_CMDFIFOAF) {
if (netif_rx_schedule_prep(&bp->napi)) { if (napi_schedule_prep(&bp->napi)) {
/* /*
* There's no point taking any more interrupts * There's no point taking any more interrupts
* until we have processed the buffers * until we have processed the buffers
...@@ -516,7 +516,7 @@ static irqreturn_t dnet_interrupt(int irq, void *dev_id) ...@@ -516,7 +516,7 @@ static irqreturn_t dnet_interrupt(int irq, void *dev_id)
int_enable = dnet_readl(bp, INTR_ENB); int_enable = dnet_readl(bp, INTR_ENB);
int_enable &= ~DNET_INTR_SRC_RX_CMDFIFOAF; int_enable &= ~DNET_INTR_SRC_RX_CMDFIFOAF;
dnet_writel(bp, int_enable, INTR_ENB); dnet_writel(bp, int_enable, INTR_ENB);
__netif_rx_schedule(&bp->napi); __napi_schedule(&bp->napi);
} }
handled = 1; handled = 1;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment