From patchwork Sat Oct 24 14:56:01 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: kbuild test robot X-Patchwork-Id: 535415 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id BC301141325 for ; Sun, 25 Oct 2015 01:57:15 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753130AbbJXO5J (ORCPT ); Sat, 24 Oct 2015 10:57:09 -0400 Received: from mga14.intel.com ([192.55.52.115]:51714 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753124AbbJXO5I (ORCPT ); Sat, 24 Oct 2015 10:57:08 -0400 Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga103.fm.intel.com with ESMTP; 24 Oct 2015 07:57:07 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,193,1444719600"; d="scan'208";a="834131631" Received: from bee.sh.intel.com (HELO bee) ([10.239.97.14]) by orsmga002.jf.intel.com with ESMTP; 24 Oct 2015 07:57:07 -0700 Received: from kbuild by bee with local (Exim 4.83) (envelope-from ) id 1Zq0Fa-000FVN-W2; Sat, 24 Oct 2015 22:56:55 +0800 Date: Sat, 24 Oct 2015 22:56:01 +0800 From: kbuild test robot To: kbuild-internal@linux.intel.com, lkp@eclists.intel.com Cc: kbuild-all@01.org, netdev@vger.kernel.org Subject: [RFC PATCH net-next] tipc: link_is_bc_sndlink() can be static Message-ID: <20151024145600.GA2937@lkp-hsx03> References: <201510242238.2cwVlzRz%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <201510242238.2cwVlzRz%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: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org TO: "David S. Miller" CC: netdev@vger.kernel.org CC: Jon Maloy CC: Ying Xue CC: tipc-discussion@lists.sourceforge.net CC: linux-kernel@vger.kernel.org Signed-off-by: Fengguang Wu Acked-by: Jon Maloy --- link.c | 8 ++++---- node.c | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe netdev" 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/net/tipc/link.c b/net/tipc/link.c index 4449fa0..9efbdbd 100644 --- a/net/tipc/link.c +++ b/net/tipc/link.c @@ -163,12 +163,12 @@ bool tipc_link_is_blocked(struct tipc_link *l) return l->state & (LINK_RESETTING | LINK_PEER_RESET | LINK_FAILINGOVER); } -bool link_is_bc_sndlink(struct tipc_link *l) +static bool link_is_bc_sndlink(struct tipc_link *l) { return !l->bc_sndlink; } -bool link_is_bc_rcvlink(struct tipc_link *l) +static bool link_is_bc_rcvlink(struct tipc_link *l) { return ((l->bc_rcvlink == l) && !link_is_bc_sndlink(l)); } @@ -1364,8 +1364,8 @@ static bool tipc_link_build_bc_proto_msg(struct tipc_link *l, bool bcast, * Give a newly added peer node the sequence number where it should * start receiving and acking broadcast packets. */ -void tipc_link_build_bc_init_msg(struct tipc_link *l, - struct sk_buff_head *xmitq) +static void tipc_link_build_bc_init_msg(struct tipc_link *l, + struct sk_buff_head *xmitq) { struct sk_buff_head list; diff --git a/net/tipc/node.c b/net/tipc/node.c index 7493506..20cddec 100644 --- a/net/tipc/node.c +++ b/net/tipc/node.c @@ -1083,7 +1083,7 @@ int tipc_node_xmit_skb(struct net *net, struct sk_buff *skb, u32 dnode, * * Invoked with no locks held. */ -void tipc_node_bc_rcv(struct net *net, struct sk_buff *skb, int bearer_id) +static void tipc_node_bc_rcv(struct net *net, struct sk_buff *skb, int bearer_id) { int rc; struct sk_buff_head xmitq;