
hulk inclusion category: bugfix bugzilla: https://gitee.com/openeuler/kernel/issues/ICK7RZ CVE: NA -------------------------------- Patch "net: vlan: fix VLAN 0 refcount imbalance of toggling filtering during runtime" add auto_vid0 flag to vlan_info, which lead to kabi breakage. Use __GENKSYMS__ to fix kabi breakage. Fixes: 579d4f9ca9a9 ("net: vlan: fix VLAN 0 refcount imbalance of toggling filtering during runtime") Signed-off-by: Dong Chenchen <dongchenchen2@huawei.com> --- net/8021q/vlan.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/net/8021q/vlan.h b/net/8021q/vlan.h index 047c12629c0b..b42ca8ed7381 100644 --- a/net/8021q/vlan.h +++ b/net/8021q/vlan.h @@ -33,7 +33,9 @@ struct vlan_info { struct vlan_group grp; struct list_head vid_list; unsigned int nr_vids; +#ifndef __GENKSYMS__ bool auto_vid0; +#endif struct rcu_head rcu; }; -- 2.25.1