public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Staging: benet: convert netif_rx_* to napi_*
@ 2009-02-04 12:38 Alexander Beregalov
  0 siblings, 0 replies; only message in thread
From: Alexander Beregalov @ 2009-02-04 12:38 UTC (permalink / raw)
  To: Sathya Perla, Greg Kroah-Hartman, linux-kernel

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

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2009-02-04 12:38 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-04 12:38 Staging: benet: convert netif_rx_* to napi_* Alexander Beregalov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox