summaryrefslogtreecommitdiffstats
path: root/package/valgrind
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2005-02-19 02:49:43 +0000
committerEric Andersen <andersen@codepoet.org>2005-02-19 02:49:43 +0000
commitbca6ae25ab244e767de45006644508cc0bf5b731 (patch)
tree1d9bb7e521ffc6f281e6d53065b1532832144a02 /package/valgrind
parenteb86ef270a6387f2cb66b1d90455967b8b7b75ea (diff)
downloadbuildroot-novena-bca6ae25ab244e767de45006644508cc0bf5b731.tar.gz
buildroot-novena-bca6ae25ab244e767de45006644508cc0bf5b731.zip
make valgrind compile with newer kernel headers
Diffstat (limited to 'package/valgrind')
-rw-r--r--package/valgrind/valgrind.patch22
1 files changed, 19 insertions, 3 deletions
diff --git a/package/valgrind/valgrind.patch b/package/valgrind/valgrind.patch
index 7de1767ab..3ef9db977 100644
--- a/package/valgrind/valgrind.patch
+++ b/package/valgrind/valgrind.patch
@@ -59,7 +59,7 @@ diff -urN y/valgrind-2.2.0/coregrind/vg_syscalls.c x/valgrind-2.2.0/coregrind/vg
#ifdef HAVE_LINUX_FB_H
case FBIOGET_VSCREENINFO: /* 0x4600 */
-@@ -3483,6 +3496,88 @@
+@@ -3483,6 +3496,87 @@
sizeof(struct timeval) );
break;
@@ -68,11 +68,10 @@ diff -urN y/valgrind-2.2.0/coregrind/vg_syscalls.c x/valgrind-2.2.0/coregrind/vg
+ SYSCALL_TRACK( pre_mem_write, tid, "ioctl(BLKSSZGET)", arg3,
+ sizeof(int));
+ break;
-+#ifndef BLKGETSIZE64
++#undef BLKGETSIZE64
+#undef _IOR
+#define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size))
+#define BLKGETSIZE64 _IOR(0x12,114,size_t)
-+#endif
+ case BLKGETSIZE64:
+ SYSCALL_TRACK( pre_mem_write, tid, "ioctl(BLKGETSIZE64)", arg3,
+ sizeof(uint64_t));
@@ -238,3 +237,20 @@ diff -urN y/valgrind-2.2.0/coregrind/vg_syscalls.c x/valgrind-2.2.0/coregrind/vg
/* We don't have any specific information on it, so
try to do something reasonable based on direction and
size bits. The encoding scheme is described in
+--- valgrind-2.2.0.orig/coregrind/vg_unsafe.h 2005-02-18 18:49:47.000000000 -0700
++++ valgrind-2.2.0/coregrind/vg_unsafe.h 2005-02-18 19:40:39.000000000 -0700
+@@ -72,7 +72,13 @@
+ #ifndef HAVE_U16
+ typedef unsigned short u16;
+ #endif
+-#include <linux/mii.h> /* for mii_* structs */
++/* Extracted from linux/mii.h for mii_* structs */
++struct mii_ioctl_data {
++ u16 phy_id;
++ u16 reg_num;
++ u16 val_in;
++ u16 val_out;
++};
+ #endif
+ #include <linux/ppdev.h> /* for PP* ioctls */
+