On Tue, Apr 14, 2015 at 10:00 AM, Nobuo Iwata <nobuo.iwata@xxxxxxxxxxxxxxx> wrote: > diff --git a/tools/usb/usbip/libsrc/usbip_ux.h b/tools/usb/usbip/libsrc/usbip_ux.h > new file mode 100644 > index 0000000..7506a1c > --- /dev/null > +++ b/tools/usb/usbip/libsrc/usbip_ux.h > +#include "../../../../include/uapi/linux/usbip_ux.h" This is an absolute no-no. It is not mandatory that users have a kernel tree when compiling the userspace utility - for example, when they get the sources from their distro. Instead, that header will be included by the distro in the exported kernel headers you find in /usr/include. So you can just refer this as <linux/usbip_ux.h> but it won't be available until distros pick it up. -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html