
hulk inclusion category: bugfix bugzilla: https://gitee.com/src-openeuler/kernel/issues/IBWVJK CVE: CVE-2025-21868 -------------------------------- Revert the kabi change introduced by including <net/gro.h>. Fixes: 14ad6ed30a10 ("net: allow small head cache usage with large MAX_SKB_FRAGS values") Signed-off-by: Wang Liang <wangliang74@huawei.com> --- net/core/skbuff.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/net/core/skbuff.c b/net/core/skbuff.c index 65547ee397b7..ea5e9d46d4c4 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c @@ -67,7 +67,9 @@ #include <net/dst.h> #include <net/sock.h> #include <net/checksum.h> +#ifndef __GENKSYMS__ #include <net/gro.h> +#endif #include <net/gso.h> #include <net/ip6_checksum.h> #include <net/xfrm.h> -- 2.34.1