mirror of
https://github.com/opnsense/src.git
synced 2026-02-04 03:00:53 -06:00
carp: Use static initializers
MFC after: 1 week (cherry picked from commit b7d5bda6f109e09d8999283a9b4e4a9668df9de9)
This commit is contained in:
parent
7ff16c1a2e
commit
6a7a20684a
@ -346,7 +346,7 @@ static void carp_ifa_delroute(struct ifaddr *);
|
||||
static void carp_send_ad_all(void *, int);
|
||||
static void carp_demote_adj(int, char *);
|
||||
|
||||
static LIST_HEAD(, carp_softc) carp_list;
|
||||
static LIST_HEAD(, carp_softc) carp_list = LIST_HEAD_INITIALIZER(carp_list);
|
||||
static struct mtx carp_mtx;
|
||||
static struct sx carp_sx;
|
||||
static struct task carp_sendall_task =
|
||||
@ -2525,7 +2525,6 @@ carp_mod_load(void)
|
||||
|
||||
mtx_init(&carp_mtx, "carp_mtx", NULL, MTX_DEF);
|
||||
sx_init(&carp_sx, "carp_sx");
|
||||
LIST_INIT(&carp_list);
|
||||
carp_get_vhid_p = carp_get_vhid;
|
||||
carp_forus_p = carp_forus;
|
||||
carp_output_p = carp_output;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user