Commit e30bd4f8 authored by Ioana Radulescu's avatar Ioana Radulescu Committed by Greg Kroah-Hartman
Browse files

staging: fsl-dpaa2/eth: Refactor interrupt arming in NAPI poll



Take into consideration the return value of napi_complete_done(),
since there might be an indication that it's not suitable to
enable driver interrupts yet.

Signed-off-by: default avatarBogdan Purcareata <bogdan.purcareata@nxp.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8658094a
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -948,8 +948,7 @@ static int dpaa2_eth_poll(struct napi_struct *napi, int budget)
			break;
	}

	if (cleaned < budget) {
		napi_complete_done(napi, cleaned);
	if (cleaned < budget && napi_complete_done(napi, cleaned)) {
		/* Re-enable data available notifications */
		do {
			err = dpaa2_io_service_rearm(NULL, &ch->nctx);