
hulk inclusion category: bugfix bugzilla: https://gitee.com/openeuler/kernel/issues/ICK7RZ -------------------------------- 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. Add KABI_FILL_HOLE 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, 1 insertion(+), 1 deletion(-) diff --git a/net/8021q/vlan.h b/net/8021q/vlan.h index c7ffe591d593..5389020a77c8 100644 --- a/net/8021q/vlan.h +++ b/net/8021q/vlan.h @@ -33,7 +33,7 @@ struct vlan_info { struct vlan_group grp; struct list_head vid_list; unsigned int nr_vids; - bool auto_vid0; + KABI_FILL_HOLE(bool auto_vid0) struct rcu_head rcu; }; -- 2.25.1