Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 85e468cd authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

Staging: benet: fix netif api breakage



The netif_rx_complete() and netif_rx_schedule() functions have changed,
so fix up the build breakage in the benet driver.

Cc: Subbu Seetharaman <subbus@serverengines.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 479e2f44
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -728,7 +728,7 @@ int be_poll(struct napi_struct *napi, int budget)

	/* All consumed */
	if (work_done < budget) {
		netif_rx_complete(netdev, napi);
		netif_rx_complete(napi);
		/* enable intr */
		be_notify_cmpl(pnob, work_done, pnob->rx_cq_id, 1);
	} else {
@@ -763,7 +763,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(netdev, &pnob->napi);
			netif_rx_schedule(&pnob->napi);
		} else if (rid == pnob->tx_cq_id) {
			process_nic_tx_completions(pnob);
		} else if (rid == pnob->mcc_cq_id) {