usbip: Include uninstalled <linux/usbip.h>

svn path=/dists/trunk/linux-tools/; revision=21956
This commit is contained in:
Ben Hutchings 2014-10-17 12:00:22 +00:00
parent 14d9f651a1
commit 5213ff4870
2 changed files with 28 additions and 0 deletions

View File

@ -3,3 +3,4 @@ tools-perf-version.patch
tools-perf-install.patch
usbip-document-tcp-wrappers.patch
kbuild-fix-recordmcount-dependency.patch
usbip-include-uninstalled-linux-usbip-h.patch

View File

@ -0,0 +1,27 @@
From: Ben Hutchings <ben@decadent.org.uk>
Date: Fri, 17 Oct 2014 13:55:16 +0200
Subject: usbip: Include uninstalled <linux/usbip.h>
We need to include <linux/usbip.h> from the current kernel
source, not the installed linux-libc-dev. The clean way to
do this is probably to run 'make headers_install' and then
add $(top_srcdir)/usr/include to the front of the system
header list. But I don't have time to implement that right
now.
The wrong way to do it is to add include/uapi to the header
path. <linux/types.h> explicitly prevents this from working.
But we can get away with selectively including UAPI headers
without unifdef processing, so do that here.
--- a/tools/usb/usbip/libsrc/usbip_common.h
+++ b/tools/usb/usbip/libsrc/usbip_common.h
@@ -15,7 +15,7 @@
#include <syslog.h>
#include <unistd.h>
#include <linux/usb/ch9.h>
-#include <linux/usbip.h>
+#include "../../../../include/uapi/linux/usbip.h"
#ifndef USBIDS_FILE
#define USBIDS_FILE "/usr/share/hwdata/usb.ids"