ANDROID: Fix up unneeded crc break in af_vsock.c
In commit8093dd759e
("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:8093dd759e
("vsock: read from socket's error queue") Signed-off-by: Greg Kroah-Hartman <gregkh@google.com> Change-Id: I839a0b8328298b535250798300c3c4585e8438c9
This commit is contained in:
parent
8a7ce2ee18
commit
31e1ff253d
@ -89,7 +89,9 @@
|
||||
#include <linux/types.h>
|
||||
#include <linux/bitops.h>
|
||||
#include <linux/cred.h>
|
||||
#ifndef __GENKSYMS__
|
||||
#include <linux/errqueue.h>
|
||||
#endif
|
||||
#include <linux/init.h>
|
||||
#include <linux/io.h>
|
||||
#include <linux/kernel.h>
|
||||
|
Loading…
Reference in New Issue
Block a user