From 2785dc9dde9221ef43c5f7164883c8e870c2c3b9 Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Wed, 12 Mar 2025 07:22:32 +0000 Subject: [PATCH] ANDROID: GKI: Fix CRC issue with change to include/net/tcp.h In commit 87858bbf21da ("tcp: drop secpath at the same time as we currently drop dst"), a new .h file is added to include/net/tcp.h which causes lots of new CRC changes to also happen. Fix this up by using a __GENKSYMS__ guard. Fixes: 87858bbf21da ("tcp: drop secpath at the same time as we currently drop dst") Change-Id: I394b93430de576ce509f30e10db8c644f7d601db Signed-off-by: Greg Kroah-Hartman --- include/net/tcp.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/net/tcp.h b/include/net/tcp.h index a6896b373e99..90a01bbd48cf 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h @@ -40,7 +40,9 @@ #include #include #include +#ifndef __GENKSYMS__ #include +#endif #include #include