From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Rothwell Subject: linux-next: origin tree build failure Date: Mon, 29 Dec 2008 11:00:41 +1100 Message-ID: <20081229110041.0eca977a.sfr@canb.auug.org.au> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from chilli.pcug.org.au ([203.10.76.44]:41343 "EHLO smtps.tip.net.au" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751573AbYL2AAn (ORCPT ); Sun, 28 Dec 2008 19:00:43 -0500 Sender: linux-next-owner@vger.kernel.org List-ID: To: "David S. Miller" , Neil Horman Cc: linux-next@vger.kernel.org, LKML , Linus , netdev@vger.kernel.org, ppc-dev Hi Dave, Neil, Today's linux-next build (powerpc ppc64_defconfig) failed like this: drivers/net/ibmveth.c: In function 'ibmveth_poll': drivers/net/ibmveth.c:1034: warning: passing argument 1 of 'netif_rx_reschedule' from incompatible pointer type drivers/net/ibmveth.c:1034: error: too many arguments to function 'netif_rx_reschedule' Another miss in commit 908a7a16b852ffd618a9127be8d62432182d81b4 ("net: Remove unused netdev arg from some NAPI interfaces"). I have added the following patch for today. (I wonder how many more there will be? :-() -- Cheers, Stephen Rothwell sfr@canb.auug.org.au http://www.canb.auug.org.au/~sfr/ From: Stephen Rothwell Date: Mon, 29 Dec 2008 10:56:00 +1100 Subject: [PATCH] net: ibmveth NAPI interface cleanup fix Commit 908a7a16b852ffd618a9127be8d62432182d81b4 ("net: Remove unused netdev arg from some NAPI interfaces") missed one spot. Signed-off-by: Stephen Rothwell --- drivers/net/ibmveth.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/net/ibmveth.c b/drivers/net/ibmveth.c index 1f055a9..9bc0f17 100644 --- a/drivers/net/ibmveth.c +++ b/drivers/net/ibmveth.c @@ -1031,7 +1031,7 @@ static int ibmveth_poll(struct napi_struct *napi, int budget) netif_rx_complete(napi); if (ibmveth_rxq_pending_buffer(adapter) && - netif_rx_reschedule(netdev, napi)) { + netif_rx_reschedule(napi)) { lpar_rc = h_vio_signal(adapter->vdev->unit_address, VIO_IRQ_DISABLE); goto restart_poll; -- 1.6.0.5