lkml.org 
[lkml]   [2009]   [Feb]   [4]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
SubjectStaging: benet: convert netif_rx_* to napi_*
  *netif_rx_* functions were removed by 288379f ("net: Remove redundant NAPI
functions")

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

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) {

\
 
 \ /
  Last update: 2009-02-04 13:41    [W:0.038 / U:0.032 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site