The kernel provides all of this, and actually gets it correct, so don't
try to redefine these types of things.
Cc: Hank Janssen <hjanssen@microsoft.com>
Cc: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
*/
#include <linux/kernel.h>
+#include <linux/mm.h>
#include "StorVsc.c"
static const char* gBlkDriverName="blkvsc";
#define KERNEL_2_6_27
#include <linux/kernel.h>
+#include <linux/mm.h>
#include "include/logging.h"
#include "NetVsc.h"
#include "RndisFilter.h"
#define KERNEL_2_6_27
#include <linux/kernel.h>
+#include <linux/mm.h>
#include "include/logging.h"
#include "include/NetVscApi.h"
#define KERNEL_2_6_27
#include <linux/kernel.h>
+#include <linux/string.h>
+#include <linux/mm.h>
#include "include/logging.h"
#include "include/StorVscApi.h"
*/
#include <linux/kernel.h>
+#include <linux/mm.h>
#include "include/logging.h"
#include "VersionInfo.h"
#include "VmbusPrivate.h"
// Defines
//
-#ifndef PAGE_SIZE
-#define PAGE_SIZE 0x1000
-#endif
-
-#ifndef PAGE_SHIFT
-#define PAGE_SHIFT 12
-#endif
-
-#ifndef memcpy
-#define memcpy __builtin_memcpy
-#endif
-
-#ifndef memset
-#define memset __builtin_memset
-#endif
-
-#ifndef memcmp
-#define memcmp __builtin_memcmp
-#endif
-
-#ifndef strcpy
-#define strcpy __builtin_strcpy
-#endif
-
-//
-//#ifndef sprintf
-//#define sprintf __builtin_sprintf
-//#endif
#define STRUCT_PACKED __attribute__((__packed__))
#define STRUCT_ALIGNED(x) __attribute__((__aligned__(x)))