Staging: hv: remove PAGE_SIZE and PAGE_SHIFT and __builtin functions
authorGreg Kroah-Hartman <gregkh@suse.de>
Wed, 15 Jul 2009 18:06:01 +0000 (11:06 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 15 Sep 2009 19:01:47 +0000 (12:01 -0700)
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>
drivers/staging/hv/BlkVsc.c
drivers/staging/hv/NetVsc.c
drivers/staging/hv/RndisFilter.c
drivers/staging/hv/StorVsc.c
drivers/staging/hv/Vmbus.c
drivers/staging/hv/include/osd.h

index fe5edaf..dc91aae 100644 (file)
@@ -21,6 +21,7 @@
  */
 
 #include <linux/kernel.h>
+#include <linux/mm.h>
 #include "StorVsc.c"
 
 static const char* gBlkDriverName="blkvsc";
index ba83b2c..ca0348a 100644 (file)
@@ -23,6 +23,7 @@
 #define KERNEL_2_6_27
 
 #include <linux/kernel.h>
+#include <linux/mm.h>
 #include "include/logging.h"
 #include "NetVsc.h"
 #include "RndisFilter.h"
index 7478fdb..92fc052 100644 (file)
@@ -24,6 +24,7 @@
 #define KERNEL_2_6_27
 
 #include <linux/kernel.h>
+#include <linux/mm.h>
 #include "include/logging.h"
 
 #include "include/NetVscApi.h"
index 9cbd064..2d7f2ca 100644 (file)
@@ -24,6 +24,8 @@
 #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"
index 3803915..080594d 100644 (file)
@@ -22,6 +22,7 @@
  */
 
 #include <linux/kernel.h>
+#include <linux/mm.h>
 #include "include/logging.h"
 #include "VersionInfo.h"
 #include "VmbusPrivate.h"
index dfc20c3..fa0ae8c 100644 (file)
 // 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)))