[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20200721204720.7818-1-trix@redhat.com>
Date: Tue, 21 Jul 2020 13:47:20 -0700
From: trix@...hat.com
To: wensong@...ux-vs.org, horms@...ge.net.au, ja@....bg,
davem@...emloft.net, kuznet@....inr.ac.ru, yoshfuji@...ux-ipv6.org,
kuba@...nel.org, pablo@...filter.org, kim.andrewsy@...il.com
Cc: netdev@...r.kernel.org, lvs-devel@...r.kernel.org,
linux-kernel@...r.kernel.org, Tom Rix <trix@...hat.com>
Subject: [PATCH] ipvs: add prameter name to ip_vs_enqueue_expire_nodest_conns
From: Tom Rix <trix@...hat.com>
Compile error here
In file included from net/netfilter/ipvs/ip_vs_conn.c:37:
ip_vs.h: In function ‘ip_vs_enqueue_expire_nodest_conns’:
ip_vs.h:1536:54: error: parameter name omitted
So add parameter name
Fixes: 04231e52d355 ("ipvs: queue delayed work to expire no destination connections if expire_nodest_conn=1")
Signed-off-by: Tom Rix <trix@...hat.com>
---
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.18.1
Powered by blists - more mailing lists