From mboxrd@z Thu Jan 1 00:00:00 1970 From: kbuild test robot Subject: [RFC PATCH] rds: rds_rdma_cm_event_handler_cmn() can be static Date: Mon, 25 Jun 2018 21:39:30 +0800 Message-ID: <20180625133930.GA9164@lkp-wsm-ep2> References: <3b53ed6f18e697fe8e414907cbbba81834515a2a.1529922794.git.ka-cheong.poon@oracle.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: kbuild-all@01.org, netdev@vger.kernel.org, santosh.shilimkar@oracle.com, davem@davemloft.net, rds-devel@oss.oracle.com To: Ka-Cheong Poon Return-path: Received: from mga05.intel.com ([192.55.52.43]:53417 "EHLO mga05.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933961AbeFYNkh (ORCPT ); Mon, 25 Jun 2018 09:40:37 -0400 Content-Disposition: inline In-Reply-To: <3b53ed6f18e697fe8e414907cbbba81834515a2a.1529922794.git.ka-cheong.poon@oracle.com> Sender: netdev-owner@vger.kernel.org List-ID: Fixes: f58dbee41d61 ("rds: Changing IP address internal representation to struct in6_addr") Signed-off-by: kbuild test robot --- rdma_transport.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/net/rds/rdma_transport.c b/net/rds/rdma_transport.c index d7da115..3634ed5 100644 --- a/net/rds/rdma_transport.c +++ b/net/rds/rdma_transport.c @@ -39,9 +39,9 @@ static struct rdma_cm_id *rds_rdma_listen_id; -int rds_rdma_cm_event_handler_cmn(struct rdma_cm_id *cm_id, - struct rdma_cm_event *event, - bool isv6) +static int rds_rdma_cm_event_handler_cmn(struct rdma_cm_id *cm_id, + struct rdma_cm_event *event, + bool isv6) { /* this can be null in the listening path */ struct rds_connection *conn = cm_id->context;