From patchwork Mon Dec 29 00:00:41 2008 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Rothwell X-Patchwork-Id: 15843 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from ozlabs.org (localhost [127.0.0.1]) by ozlabs.org (Postfix) with ESMTP id A6514DDDF3 for ; Mon, 29 Dec 2008 11:01:34 +1100 (EST) X-Original-To: linuxppc-dev@ozlabs.org Delivered-To: linuxppc-dev@ozlabs.org Received: from smtps.tip.net.au (chilli.pcug.org.au [203.10.76.44]) by ozlabs.org (Postfix) with ESMTP id 74C6ADDD0B for ; Mon, 29 Dec 2008 11:00:42 +1100 (EST) Received: from ash.ozlabs.ibm.com (ta-1-1.tip.net.au [203.11.71.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by smtps.tip.net.au (Postfix) with ESMTP id 33FAC368005; Mon, 29 Dec 2008 11:00:41 +1100 (EST) Date: Mon, 29 Dec 2008 11:00:41 +1100 From: Stephen Rothwell To: "David S. Miller" , Neil Horman Subject: linux-next: origin tree build failure Message-Id: <20081229110041.0eca977a.sfr@canb.auug.org.au> X-Mailer: Sylpheed 2.5.0 (GTK+ 2.12.11; i486-pc-linux-gnu) Mime-Version: 1.0 Cc: netdev@vger.kernel.org, linux-next@vger.kernel.org, Linus , LKML , ppc-dev X-BeenThere: linuxppc-dev@ozlabs.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@ozlabs.org Errors-To: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@ozlabs.org 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? :-() 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;