mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-28 13:46:32 +00:00
update valgrind to the latest and greatest
This commit is contained in:
parent
b746d35505
commit
a2c326396a
@ -4,9 +4,9 @@
|
|||||||
#
|
#
|
||||||
#############################################################
|
#############################################################
|
||||||
|
|
||||||
VALGRIND_SITE:=http://developer.kde.org/~sewardj/
|
VALGRIND_SITE:=http://valgrind.org/downloads/
|
||||||
VALGRIND_DIR:=$(BUILD_DIR)/valgrind-2.2.0
|
VALGRIND_DIR:=$(BUILD_DIR)/valgrind-2.4.0
|
||||||
VALGRIND_SOURCE:=valgrind-2.2.0.tar.bz2
|
VALGRIND_SOURCE:=valgrind-2.4.0.tar.bz2
|
||||||
|
|
||||||
$(DL_DIR)/$(VALGRIND_SOURCE):
|
$(DL_DIR)/$(VALGRIND_SOURCE):
|
||||||
$(WGET) -P $(DL_DIR) $(VALGRIND_SITE)/$(VALGRIND_SOURCE)
|
$(WGET) -P $(DL_DIR) $(VALGRIND_SITE)/$(VALGRIND_SOURCE)
|
||||||
@ -40,6 +40,7 @@ $(VALGRIND_DIR)/.configured: $(VALGRIND_DIR)/.patched
|
|||||||
--without-uiout --disable-valgrindmi \
|
--without-uiout --disable-valgrindmi \
|
||||||
--disable-tui --disable-valgrindtk \
|
--disable-tui --disable-valgrindtk \
|
||||||
--without-x --without-included-gettext \
|
--without-x --without-included-gettext \
|
||||||
|
--disable-tls \
|
||||||
);
|
);
|
||||||
touch $(VALGRIND_DIR)/.configured
|
touch $(VALGRIND_DIR)/.configured
|
||||||
|
|
||||||
|
@ -1,256 +1,134 @@
|
|||||||
diff -urN y/valgrind-2.2.0/coregrind/vg_libpthread.c x/valgrind-2.2.0/coregrind/vg_libpthread.c
|
diff -urN ../valgrind-2.4.0/coregrind/vg_syscalls.c valgrind-2.4.0/coregrind/vg_syscalls.c
|
||||||
--- valgrind-2.2.0/coregrind/vg_libpthread.c 2004-08-29 15:02:27.000000000 -0600
|
--- ../valgrind-2.4.0/coregrind/vg_syscalls.c 2005-03-23 03:22:03.000000000 -0700
|
||||||
+++ valgrind-2.2.0/coregrind/vg_libpthread.c 2005-01-21 03:42:19.000000000 -0700
|
+++ valgrind-2.4.0/coregrind/vg_syscalls.c 2005-07-22 03:42:01.000000000 -0600
|
||||||
@@ -3389,6 +3389,8 @@
|
@@ -3266,15 +3266,34 @@
|
||||||
pthread_mutex). So basically, this is completely broken on recent
|
SYS_PRE_MEM_WRITE( "ioctl(RTC_IRQP_READ)", arg3, sizeof(unsigned long));
|
||||||
glibcs. */
|
|
||||||
|
|
||||||
+#ifndef __UCLIBC__
|
|
||||||
+
|
|
||||||
#undef _IO_flockfile
|
|
||||||
void _IO_flockfile ( _IO_FILE * file )
|
|
||||||
{
|
|
||||||
@@ -3406,6 +3408,7 @@
|
|
||||||
weak_alias(_IO_funlockfile, funlockfile);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
+#endif
|
|
||||||
|
|
||||||
/* This doesn't seem to be needed to simulate libpthread.so's external
|
|
||||||
interface, but many people complain about its absence. */
|
|
||||||
diff -urN y/valgrind-2.2.0/coregrind/vg_syscalls.c x/valgrind-2.2.0/coregrind/vg_syscalls.c
|
|
||||||
--- valgrind-2.2.0/coregrind/vg_syscalls.c 2004-08-30 18:08:37.000000000 -0600
|
|
||||||
+++ valgrind-2.2.0/coregrind/vg_syscalls.c 2005-01-21 03:49:05.000000000 -0700
|
|
||||||
@@ -3323,6 +3323,16 @@
|
|
||||||
break;
|
break;
|
||||||
# endif /* BLKGETSIZE */
|
|
||||||
|
|
||||||
+ case BLKBSZSET:
|
+ case VKI_BLKRRPART:
|
||||||
+ SYSCALL_TRACK( pre_mem_write,tid, "ioctl(BLKBSZSET)", arg3,
|
+ case VKI_BLKFLSBUF:
|
||||||
+ sizeof(unsigned long));
|
|
||||||
+ break;
|
+ break;
|
||||||
+ case BLKRAGET:
|
case VKI_BLKGETSIZE:
|
||||||
+ SYSCALL_TRACK( pre_mem_write,tid, "ioctl(BLKRAGET)", arg3,
|
SYS_PRE_MEM_WRITE( "ioctl(BLKGETSIZE)", arg3, sizeof(unsigned long));
|
||||||
+ sizeof(unsigned long));
|
break;
|
||||||
|
+ case VKI_BLKGETSIZE64:
|
||||||
|
+ SYS_PRE_MEM_WRITE( "ioctl(BLKGETSIZE64)", arg3, sizeof(__vki_u64));
|
||||||
+ break;
|
+ break;
|
||||||
+ case BLKRASET:
|
+ case VKI_BLKSSZGET:
|
||||||
|
+ SYS_PRE_MEM_WRITE( "ioctl(BLKSSZGET)", arg3, sizeof(unsigned long));
|
||||||
+ break;
|
+ break;
|
||||||
|
+ case VKI_BLKBSZGET:
|
||||||
|
+ SYS_PRE_MEM_WRITE( "ioctl(BLKBSZGET)", arg3, sizeof(unsigned long));
|
||||||
|
+ break;
|
||||||
|
+ case VKI_BLKBSZSET:
|
||||||
|
+ SYS_PRE_MEM_READ( "ioctl(BLKBSZSET)", arg3, sizeof(unsigned long) );
|
||||||
|
+ break;
|
||||||
|
|
||||||
/* Hard disks */
|
/* Hard disks */
|
||||||
case HDIO_GET_IDENTITY: /* 0x030d */
|
case VKI_HDIO_GET_IDENTITY: /* 0x030d */
|
||||||
SYSCALL_TRACK( pre_mem_write,tid, "ioctl(HDIO_GET_IDENTITY)", arg3,
|
SYS_PRE_MEM_WRITE( "ioctl(HDIO_GET_IDENTITY)", arg3,
|
||||||
@@ -3375,6 +3385,7 @@
|
VKI_SIZEOF_STRUCT_HD_DRIVEID );
|
||||||
|
break;
|
||||||
|
+ case VKI_HDIO_GETGEO: /* 0x0301 */
|
||||||
|
+ SYS_PRE_MEM_WRITE( "ioctl(HDIO_GETGEO)", arg3,
|
||||||
|
+ sizeof(struct vki_hd_geometry) );
|
||||||
|
+ break;
|
||||||
|
|
||||||
|
/* CD ROM stuff (??) */
|
||||||
|
case VKI_CDROM_GET_MCN:
|
||||||
|
@@ -3332,6 +3351,7 @@
|
||||||
break;
|
break;
|
||||||
/* The following two are probably bogus (should check args
|
/* The following two are probably bogus (should check args
|
||||||
for readability). JRS 20021117 */
|
for readability). JRS 20021117 */
|
||||||
+ case CDROMEJECT:
|
+ case VKI_CDROMEJECT:
|
||||||
case CDROM_DRIVE_STATUS: /* 0x5326 */
|
case VKI_CDROM_DRIVE_STATUS: /* 0x5326 */
|
||||||
case CDROM_CLEAR_OPTIONS: /* 0x5321 */
|
case VKI_CDROM_CLEAR_OPTIONS: /* 0x5321 */
|
||||||
break;
|
break;
|
||||||
@@ -3383,10 +3394,12 @@
|
@@ -3931,14 +3951,31 @@
|
||||||
SYSCALL_TRACK( pre_mem_write,tid, "ioctl(FIGETBSZ)", arg3,
|
VG_TRACK( post_mem_write,arg3, sizeof(unsigned long));
|
||||||
sizeof(unsigned long));
|
|
||||||
break;
|
|
||||||
+#if 0
|
|
||||||
case FIBMAP:
|
|
||||||
SYSCALL_TRACK( pre_mem_read,tid, "ioctl(FIBMAP)", arg3,
|
|
||||||
sizeof(unsigned long));
|
|
||||||
break;
|
|
||||||
+#endif
|
|
||||||
|
|
||||||
#ifdef HAVE_LINUX_FB_H
|
|
||||||
case FBIOGET_VSCREENINFO: /* 0x4600 */
|
|
||||||
@@ -3483,6 +3496,87 @@
|
|
||||||
sizeof(struct timeval) );
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
+#define BLKSSZGET _IO(0x12,104)
|
+ case VKI_BLKRRPART:
|
||||||
+ case BLKSSZGET:
|
+ case VKI_BLKFLSBUF:
|
||||||
+ SYSCALL_TRACK( pre_mem_write, tid, "ioctl(BLKSSZGET)", arg3,
|
|
||||||
+ sizeof(int));
|
|
||||||
+ break;
|
+ break;
|
||||||
+#undef BLKGETSIZE64
|
case VKI_BLKGETSIZE:
|
||||||
+#undef _IOR
|
VG_TRACK( post_mem_write,arg3, sizeof(unsigned long));
|
||||||
+#define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size))
|
break;
|
||||||
+#define BLKGETSIZE64 _IOR(0x12,114,size_t)
|
+ case VKI_BLKGETSIZE64:
|
||||||
+ case BLKGETSIZE64:
|
+ VG_TRACK( post_mem_write,arg3, sizeof(__vki_u64));
|
||||||
+ SYSCALL_TRACK( pre_mem_write, tid, "ioctl(BLKGETSIZE64)", arg3,
|
|
||||||
+ sizeof(uint64_t));
|
|
||||||
+ break;
|
+ break;
|
||||||
+#define HDIO_GETGEO 0x0301 /* get device geometry */
|
+ case VKI_BLKSSZGET:
|
||||||
+ case HDIO_GETGEO:
|
+ VG_TRACK( post_mem_write,arg3, sizeof(unsigned long));
|
||||||
+ {
|
+ break;
|
||||||
+ struct hd_geometry {
|
+ case VKI_BLKBSZGET:
|
||||||
|
+ VG_TRACK( post_mem_write,arg3, sizeof(unsigned long));
|
||||||
|
+ break;
|
||||||
|
+ case VKI_BLKBSZSET:
|
||||||
|
+ break;
|
||||||
|
|
||||||
|
/* Hard disks */
|
||||||
|
case VKI_HDIO_GET_IDENTITY: /* 0x030d */
|
||||||
|
VG_TRACK( post_mem_write,arg3, VKI_SIZEOF_STRUCT_HD_DRIVEID );
|
||||||
|
break;
|
||||||
|
+ case VKI_HDIO_GETGEO: /* 0x0301 */
|
||||||
|
+ VG_TRACK( post_mem_write,arg3, sizeof(struct vki_hd_geometry) );
|
||||||
|
+ break;
|
||||||
|
|
||||||
|
/* CD ROM stuff (??) */
|
||||||
|
case VKI_CDROMSUBCHNL:
|
||||||
|
@@ -3967,6 +4004,7 @@
|
||||||
|
break;
|
||||||
|
/* The following two are probably bogus (should check args
|
||||||
|
for readability). JRS 20021117 */
|
||||||
|
+ case VKI_CDROMEJECT:
|
||||||
|
case VKI_CDROM_DRIVE_STATUS: /* 0x5326 */
|
||||||
|
case VKI_CDROM_CLEAR_OPTIONS: /* 0x5321 */
|
||||||
|
break;
|
||||||
|
diff -urN ../valgrind-2.4.0/include/linux/vki.h valgrind-2.4.0/include/linux/vki.h
|
||||||
|
--- ../valgrind-2.4.0/include/linux/vki.h 2005-03-10 23:28:14.000000000 -0700
|
||||||
|
+++ valgrind-2.4.0/include/linux/vki.h 2005-07-22 03:42:01.000000000 -0600
|
||||||
|
@@ -1389,7 +1389,14 @@
|
||||||
|
// From linux-2.6.8.1/include/linux/fs.h
|
||||||
|
//----------------------------------------------------------------------
|
||||||
|
|
||||||
|
-#define VKI_BLKGETSIZE _VKI_IO(0x12,96) /* return device size /512 (long *arg) */
|
||||||
|
+#define VKI_BLKGETSIZE _VKI_IO(0x12, 96) /* return device size /512 (long *arg) */
|
||||||
|
+#define VKI_BLKGETSIZE64 _VKI_IOR(0x12, 114, __vki_u64) /* return device size in bytes (u64 *arg) */
|
||||||
|
+#define VKI_BLKRRPART _VKI_IO(0x12, 95) /* re-read partition table */
|
||||||
|
+#define VKI_BLKFLSBUF _VKI_IO(0x12, 97) /* flush buffer cache */
|
||||||
|
+#define VKI_BLKSSZGET _VKI_IO(0x12, 104)/* get block device sector size */
|
||||||
|
+#define VKI_BLKBSZGET _VKI_IOR(0x12, 112, unsigned long)
|
||||||
|
+#define VKI_BLKBSZSET _VKI_IOW(0x12, 113, unsigned long)
|
||||||
|
+
|
||||||
|
|
||||||
|
#define VKI_FIBMAP _VKI_IO(0x00,1) /* bmap access */
|
||||||
|
#define VKI_FIGETBSZ _VKI_IO(0x00,2) /* get the block size used for bmap */
|
||||||
|
@@ -1464,6 +1471,7 @@
|
||||||
|
(struct cdrom_tochdr) */
|
||||||
|
#define VKI_CDROMREADTOCENTRY 0x5306 /* Read TOC entry
|
||||||
|
(struct cdrom_tocentry) */
|
||||||
|
+#define VKI_CDROMEJECT 0x5309 /* Ejects the cdrom media */
|
||||||
|
#define VKI_CDROMSUBCHNL 0x530b /* Read subchannel data
|
||||||
|
(struct cdrom_subchnl) */
|
||||||
|
#define VKI_CDROMREADMODE2 0x530c /* Read CDROM mode 2 data (2336 Bytes)
|
||||||
|
@@ -1674,12 +1682,20 @@
|
||||||
|
// From linux-2.6.8.1/include/linux/hdreg.h
|
||||||
|
//----------------------------------------------------------------------
|
||||||
|
|
||||||
|
+#define VKI_HDIO_GETGEO 0x0301 /* get device geometry */
|
||||||
|
#define VKI_HDIO_GET_IDENTITY 0x030d /* get IDE identification info */
|
||||||
|
|
||||||
|
// [[Nb: done like this because the original type is a huge struct that will
|
||||||
|
// always be the same size.]]
|
||||||
|
#define VKI_SIZEOF_STRUCT_HD_DRIVEID 512
|
||||||
|
|
||||||
|
+struct vki_hd_geometry {
|
||||||
+ unsigned char heads;
|
+ unsigned char heads;
|
||||||
+ unsigned char sectors;
|
+ unsigned char sectors;
|
||||||
+ unsigned short cylinders;
|
+ unsigned short cylinders;
|
||||||
+ unsigned long start;
|
+ unsigned long start;
|
||||||
+ };
|
|
||||||
+
|
|
||||||
+ SYSCALL_TRACK( pre_mem_write, tid, "ioctl(HDIO_GETGEO)", arg3,
|
|
||||||
+ sizeof(struct hd_geometry));
|
|
||||||
+ }
|
|
||||||
+ break;
|
|
||||||
+#define SCSI_IOCTL_GET_IDLUN 0x5382
|
|
||||||
+ case SCSI_IOCTL_GET_IDLUN:
|
|
||||||
+ {
|
|
||||||
+ struct scsi_idlun
|
|
||||||
+ {
|
|
||||||
+ int mux4;
|
|
||||||
+ int host_unique_id;
|
|
||||||
+
|
|
||||||
+ };
|
|
||||||
+
|
|
||||||
+ SYSCALL_TRACK( pre_mem_write, tid, "ioctl(SCSI_IOCTL_GET_IDLUN)", arg3,
|
|
||||||
+ sizeof(struct scsi_idlun));
|
|
||||||
+ }
|
|
||||||
+ break;
|
|
||||||
+#define SCSI_IOCTL_SEND_COMMAND 1
|
|
||||||
+ case SCSI_IOCTL_SEND_COMMAND:
|
|
||||||
+ SYSCALL_TRACK( pre_mem_write, tid, "ioctl(SCSI_IOCTL_SEND_COMMAND)", arg3,
|
|
||||||
+ ((2 * sizeof(unsigned int)) + 6 + 512));
|
|
||||||
+ break;
|
|
||||||
+#define SCSI_IOCTL_GET_BUS_NUMBER 0x5386
|
|
||||||
+ case SCSI_IOCTL_GET_BUS_NUMBER:
|
|
||||||
+ SYSCALL_TRACK( pre_mem_write, tid, "ioctl(SCSI_IOCTL_GET_BUS_NUMBER)", arg3,
|
|
||||||
+ sizeof(long));
|
|
||||||
+ break;
|
|
||||||
+#define SCSI_IOCTL_PROBE_HOST 0x5385
|
|
||||||
+ case SCSI_IOCTL_PROBE_HOST:
|
|
||||||
+ {
|
|
||||||
+ unsigned long xxxx;
|
|
||||||
+ char *array = (char*)arg3;
|
|
||||||
+ xxxx = array[0] + (array[1]<<8) + (array[2]<<16) + (array[3]<<24);
|
|
||||||
+ SYSCALL_TRACK( pre_mem_write, tid, "ioctl(SCSI_IOCTL_PROBE_HOST)", arg3,
|
|
||||||
+ sizeof(unsigned long));
|
|
||||||
+ }
|
|
||||||
+ break;
|
|
||||||
+#define BLKFLSBUF _IO(0x12,97)
|
|
||||||
+ case BLKFLSBUF:
|
|
||||||
+ break;
|
|
||||||
+#define BLKRRPART _IO(0x12,95)
|
|
||||||
+ case BLKRRPART:
|
|
||||||
+ break;
|
|
||||||
+#define MTIOCTOP _IO(0x6d,0x1)
|
|
||||||
+ case MTIOCTOP:
|
|
||||||
+ {
|
|
||||||
+ struct mtop
|
|
||||||
+ {
|
|
||||||
+ short int mt_op; /* Operations defined below. */
|
|
||||||
+ int mt_count; /* How many of them. */
|
|
||||||
+ };
|
|
||||||
+ SYSCALL_TRACK( pre_mem_write, tid, "ioctl(MTIOCTOP)", arg3,
|
|
||||||
+ sizeof(struct mtop));
|
|
||||||
+ }
|
|
||||||
+ break;
|
|
||||||
+
|
|
||||||
+
|
|
||||||
/* 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
|
|
||||||
@@ -3519,12 +3614,16 @@
|
|
||||||
"guidance on writing a proper wrapper." );
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
- if ((dir & _IOC_WRITE) && size > 0)
|
|
||||||
+ if ((dir & _IOC_WRITE) && size > 0) {
|
|
||||||
+ VG_(message)(Vg_UserMsg, "genric ioctl 0x%x", arg2);
|
|
||||||
SYSCALL_TRACK( pre_mem_read,tid, "ioctl(generic)",
|
|
||||||
arg3, size);
|
|
||||||
- if ((dir & _IOC_READ) && size > 0)
|
|
||||||
+ }
|
|
||||||
+ if ((dir & _IOC_READ) && size > 0) {
|
|
||||||
+ VG_(message)(Vg_UserMsg, "genric ioctl 0x%x", arg2);
|
|
||||||
SYSCALL_TRACK( pre_mem_write,tid, "ioctl(generic)",
|
|
||||||
arg3, size);
|
|
||||||
+ }
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
@@ -3874,6 +3973,18 @@
|
|
||||||
VG_TRACK( post_mem_write,arg3, sizeof(unsigned long));
|
|
||||||
break;
|
|
||||||
# endif /* BLKGETSIZE */
|
|
||||||
+ case BLKRAGET:
|
|
||||||
+ if (res == 0)
|
|
||||||
+ VG_TRACK( post_mem_write,arg3, sizeof(unsigned long));
|
|
||||||
+ break;
|
|
||||||
+ case BLKBSZSET:
|
|
||||||
+ if (res == 0)
|
|
||||||
+ VG_TRACK( post_mem_write,arg3, sizeof(unsigned long));
|
|
||||||
+ break;
|
|
||||||
+ case BLKBSZGET:
|
|
||||||
+ if (res == 0)
|
|
||||||
+ VG_TRACK( post_mem_write,arg3, sizeof(unsigned long));
|
|
||||||
+ break;
|
|
||||||
|
|
||||||
/* Hard disks */
|
|
||||||
case HDIO_GET_IDENTITY: /* 0x030d */
|
|
||||||
@@ -3897,7 +4008,8 @@
|
|
||||||
case CDROMPLAYMSF:
|
|
||||||
break;
|
|
||||||
/* The following two are probably bogus (should check args
|
|
||||||
- for readability). JRS 20021117 */
|
|
||||||
+ for readability). JRS 20021117 */
|
|
||||||
+ case CDROMEJECT:
|
|
||||||
case CDROM_DRIVE_STATUS: /* 0x5326 */
|
|
||||||
case CDROM_CLEAR_OPTIONS: /* 0x5321 */
|
|
||||||
break;
|
|
||||||
@@ -3906,10 +4018,12 @@
|
|
||||||
if (res == 0)
|
|
||||||
VG_TRACK( post_mem_write,arg3, sizeof(unsigned long));
|
|
||||||
break;
|
|
||||||
+#if 0
|
|
||||||
case FIBMAP:
|
|
||||||
if (res == 0)
|
|
||||||
VG_TRACK( post_mem_write,arg3, sizeof(unsigned long));
|
|
||||||
break;
|
|
||||||
+#endif
|
|
||||||
|
|
||||||
#ifdef HAVE_LINUX_FB_H
|
|
||||||
case FBIOGET_VSCREENINFO: //0x4600
|
|
||||||
@@ -3965,6 +4079,28 @@
|
|
||||||
VG_TRACK( post_mem_write, arg3, sizeof(struct timeval) );
|
|
||||||
break;
|
|
||||||
|
|
||||||
+ case SCSI_IOCTL_GET_IDLUN:
|
|
||||||
+ {
|
|
||||||
+ struct scsi_idlun
|
|
||||||
+ {
|
|
||||||
+ int mux4;
|
|
||||||
+ int host_unique_id;
|
|
||||||
+
|
|
||||||
+ };
|
|
||||||
+
|
|
||||||
+ VG_TRACK( post_mem_write, arg3, sizeof(struct scsi_idlun) );
|
|
||||||
+ }
|
|
||||||
+ break;
|
|
||||||
+ case SCSI_IOCTL_SEND_COMMAND:
|
|
||||||
+ VG_TRACK( post_mem_write, arg3, ((2 * sizeof(unsigned int)) + 6 + 512));
|
|
||||||
+ break;
|
|
||||||
+ case SCSI_IOCTL_GET_BUS_NUMBER:
|
|
||||||
+ VG_TRACK( post_mem_write, arg3, sizeof(long) );
|
|
||||||
+ break;
|
|
||||||
+ case SCSI_IOCTL_PROBE_HOST:
|
|
||||||
+ VG_TRACK( post_mem_write, arg3, sizeof(unsigned long) );
|
|
||||||
+ break;
|
|
||||||
+
|
|
||||||
/* 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 */
|
//----------------------------------------------------------------------
|
||||||
|
// From linux-2.6.8.1/include/linux/fb.h
|
||||||
|
//----------------------------------------------------------------------
|
||||||
|
Loading…
x
Reference in New Issue
Block a user