Staging: benet: convert netif_rx_* to napi_*

From: Alexander Beregalov
Date: Wed Feb 04 2009 - 07:39:52 EST


*netif_rx_* functions were removed by 288379f ("net: Remove redundant NAPI
functions")

Signed-off-by: Alexander Beregalov <a.beregalov@xxxxxxxxx>
---

drivers/staging/benet/be_int.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/benet/be_int.c b/drivers/staging/benet/be_int.c
index cba95d0..38bf61c 100644
--- a/drivers/staging/benet/be_int.c
+++ b/drivers/staging/benet/be_int.c
@@ -717,7 +717,7 @@ int be_poll(struct napi_struct *napi, int budget)

/* All consumed */
if (work_done < budget) {
- netif_rx_complete(napi);
+ napi_complete(napi);
/* enable intr */
be_notify_cmpl(pnob, work_done, pnob->rx_cq_id, 1);
} else {
@@ -752,7 +752,7 @@ static inline u32 process_events(struct be_net_object *pnob)
rid = AMAP_GET_BITS_PTR(EQ_ENTRY, ResourceID, eqp);
if (rid == pnob->rx_cq_id) {
adapter->be_stat.bes_rx_events++;
- netif_rx_schedule(&pnob->napi);
+ napi_schedule(&pnob->napi);
} else if (rid == pnob->tx_cq_id) {
process_nic_tx_completions(pnob);
} else if (rid == pnob->mcc_cq_id) {
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/