From patchwork Wed Mar 25 15:53:33 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fengguang Wu X-Patchwork-Id: 6093371 Return-Path: X-Original-To: patchwork-linux-rdma@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 93C49BF90F for ; Wed, 25 Mar 2015 15:54:23 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id CC4B820379 for ; Wed, 25 Mar 2015 15:54:22 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id DA38B2035D for ; Wed, 25 Mar 2015 15:54:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753951AbbCYPxi (ORCPT ); Wed, 25 Mar 2015 11:53:38 -0400 Received: from mga01.intel.com ([192.55.52.88]:33221 "EHLO mga01.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753543AbbCYPxg (ORCPT ); Wed, 25 Mar 2015 11:53:36 -0400 Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga101.fm.intel.com with ESMTP; 25 Mar 2015 08:53:36 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.11,465,1422950400"; d="scan'208";a="697645797" Received: from bee.sh.intel.com (HELO bee) ([10.239.97.14]) by fmsmga002.fm.intel.com with ESMTP; 25 Mar 2015 08:53:34 -0700 Received: from kbuild by bee with local (Exim 4.83) (envelope-from ) id 1Yancb-000Xbz-L5; Wed, 25 Mar 2015 23:53:33 +0800 Date: Wed, 25 Mar 2015 23:53:33 +0800 From: kbuild test robot To: Erez Shitrit Cc: kbuild-all@01.org, Roland Dreier , Sean Hefty , Hal Rosenstock , Doug Ledford , Alex Estrin , Or Gerlitz , linux-rdma@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH amirv] IB/ipoib: Prepare the napi in the RX flow [ib-next: ipoib_rx_poll() can be static Message-ID: <20150325155333.GA54248@lkp-sb04> References: <201503252315.8wVkJr4n%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <201503252315.8wVkJr4n%fengguang.wu@intel.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: fengguang.wu@intel.com X-SA-Exim-Scanned: No (on bee); SAEximRunCond expanded to false Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Fengguang Wu --- ipoib_ib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/infiniband/ulp/ipoib/ipoib_ib.c b/drivers/infiniband/ulp/ipoib/ipoib_ib.c index af52a01..8f31a93 100644 --- a/drivers/infiniband/ulp/ipoib/ipoib_ib.c +++ b/drivers/infiniband/ulp/ipoib/ipoib_ib.c @@ -375,7 +375,7 @@ static int poll_tx(struct ipoib_dev_priv *priv) return n == MAX_SEND_CQE; } -int ipoib_rx_poll(struct napi_struct *napi, int budget) +static int ipoib_rx_poll(struct napi_struct *napi, int budget) { struct ipoib_dev_priv *priv = container_of(napi, struct ipoib_dev_priv, napi_rx); struct net_device *dev = priv->dev;