mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-06-14 13:22:02 +00:00
zebra: add RTM_xxxCHAIN message codes, ignore
We may receive some xxxCHAIN netlink messages, but we ignore
them (currently). Add them to the basic handler callback so
that we don't log errors about them.
Signed-off-by: Mark Stapp <mjs@labn.net>
(cherry picked from commit 620daa36c5
)
This commit is contained in:
parent
bbad836f51
commit
a32e39da2d
@ -425,6 +425,12 @@ static int netlink_information_fetch(struct nlmsghdr *h, ns_id_t ns_id,
|
||||
case RTM_DELVLAN:
|
||||
return netlink_vlan_change(h, ns_id, startup);
|
||||
|
||||
/* Messages we may receive, but ignore */
|
||||
case RTM_NEWCHAIN:
|
||||
case RTM_DELCHAIN:
|
||||
case RTM_GETCHAIN:
|
||||
return 0;
|
||||
|
||||
/* Messages handled in the dplane thread */
|
||||
case RTM_NEWADDR:
|
||||
case RTM_DELADDR:
|
||||
|
Loading…
Reference in New Issue
Block a user