From 31e1ff253d02c89ab772d1fee1848a9cc77c2202 Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Mon, 11 Dec 2023 16:31:06 +0000 Subject: [PATCH] ANDROID: Fix up unneeded crc break in af_vsock.c In commit 8093dd759ee2 ("vsock: read from socket's error queue"), some new .h files were added to the top of the net/vmw_vsock/af_vsock.c file, which caused some crc values of some public functions to change, eventhough nothing actually changed. Fix this up by #ifdef out the .h file addition if we are doing the crc build cycle to prevent the crc from actually changing. Bug: 161946584 Fixes: 8093dd759ee2 ("vsock: read from socket's error queue") Signed-off-by: Greg Kroah-Hartman Change-Id: I839a0b8328298b535250798300c3c4585e8438c9 --- net/vmw_vsock/af_vsock.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/net/vmw_vsock/af_vsock.c b/net/vmw_vsock/af_vsock.c index 84471745c082..587fac4ff57b 100644 --- a/net/vmw_vsock/af_vsock.c +++ b/net/vmw_vsock/af_vsock.c @@ -89,7 +89,9 @@ #include #include #include +#ifndef __GENKSYMS__ #include +#endif #include #include #include