From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-10.0 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1615FC433E5 for ; Fri, 17 Jul 2020 17:37:16 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 0212520737 for ; Fri, 17 Jul 2020 17:37:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727942AbgGQRhO (ORCPT ); Fri, 17 Jul 2020 13:37:14 -0400 Received: from ja.ssi.bg ([178.16.129.10]:49496 "EHLO ja.ssi.bg" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1726232AbgGQRhN (ORCPT ); Fri, 17 Jul 2020 13:37:13 -0400 Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by ja.ssi.bg (8.15.2/8.15.2) with ESMTP id 06HHaalC011654; Fri, 17 Jul 2020 20:36:36 +0300 Date: Fri, 17 Jul 2020 20:36:36 +0300 (EEST) From: Julian Anastasov To: Andrew Sy Kim cc: Wensong Zhang , Simon Horman , Pablo Neira Ayuso , lvs-devel@vger.kernel.org, netfilter-devel@vger.kernel.org, Randy Dunlap , netdev@vger.kernel.org Subject: Re: [PATCH] ipvs: add missing struct name in ip_vs_enqueue_expire_nodest_conns when CONFIG_SYSCTL is disabled In-Reply-To: <20200717162450.1049-1-kim.andrewsy@gmail.com> Message-ID: References: <20200717162450.1049-1-kim.andrewsy@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Hello, On Fri, 17 Jul 2020, Andrew Sy Kim wrote: > Adds missing "*ipvs" to ip_vs_enqueue_expire_nodest_conns when > CONFIG_SYSCTL is disabled > > Signed-off-by: Andrew Sy Kim Acked-by: Julian Anastasov Pablo, please apply this too. > --- > include/net/ip_vs.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/net/ip_vs.h b/include/net/ip_vs.h > index 91a9e1d590a6..9a59a33787cb 100644 > --- a/include/net/ip_vs.h > +++ b/include/net/ip_vs.h > @@ -1533,7 +1533,7 @@ static inline void ip_vs_enqueue_expire_nodest_conns(struct netns_ipvs *ipvs) > > void ip_vs_expire_nodest_conn_flush(struct netns_ipvs *ipvs); > #else > -static inline void ip_vs_enqueue_expire_nodest_conns(struct netns_ipvs) {} > +static inline void ip_vs_enqueue_expire_nodest_conns(struct netns_ipvs *ipvs) {} > #endif > > #define IP_VS_DFWD_METHOD(dest) (atomic_read(&(dest)->conn_flags) & \ > -- > 2.20.1 Regards -- Julian Anastasov