Skip to content

Commit 31e1ff2

Browse files
committed
ANDROID: Fix up unneeded crc break in af_vsock.c
In commit 8093dd7 ("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: 8093dd7 ("vsock: read from socket's error queue") Signed-off-by: Greg Kroah-Hartman <gregkh@google.com> Change-Id: I839a0b8328298b535250798300c3c4585e8438c9
1 parent 8a7ce2e commit 31e1ff2

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

net/vmw_vsock/af_vsock.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,9 @@
8989
#include <linux/types.h>
9090
#include <linux/bitops.h>
9191
#include <linux/cred.h>
92+
#ifndef __GENKSYMS__
9293
#include <linux/errqueue.h>
94+
#endif
9395
#include <linux/init.h>
9496
#include <linux/io.h>
9597
#include <linux/kernel.h>

0 commit comments

Comments
 (0)