summaryrefslogtreecommitdiffstats
path: root/contrib/libusb-Fix-Zero-Length-Packet-issue.patch
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2009-09-05 15:56:24 +0200
committerGravatar Nikias Bassen2009-09-05 15:56:24 +0200
commit3460b9db79e08a25534b04582eb7b7329c89a28d (patch)
treed1cce8d93f04891b3c839da92ea00cc58dac303b /contrib/libusb-Fix-Zero-Length-Packet-issue.patch
parent856ddf1fe694686d98dc4b847a4e0f9ec6a8f418 (diff)
downloadusbmuxd-3460b9db79e08a25534b04582eb7b7329c89a28d.tar.gz
usbmuxd-3460b9db79e08a25534b04582eb7b7329c89a28d.tar.bz2
Updated libusb ZLP flag patch.
Diffstat (limited to 'contrib/libusb-Fix-Zero-Length-Packet-issue.patch')
-rw-r--r--contrib/libusb-Fix-Zero-Length-Packet-issue.patch71
1 files changed, 0 insertions, 71 deletions
diff --git a/contrib/libusb-Fix-Zero-Length-Packet-issue.patch b/contrib/libusb-Fix-Zero-Length-Packet-issue.patch
deleted file mode 100644
index 40fc2dc..0000000
--- a/contrib/libusb-Fix-Zero-Length-Packet-issue.patch
+++ /dev/null
@@ -1,71 +0,0 @@
1>From e6a34fe2fcd69d05411d3a8d41c8e897c9c337e1 Mon Sep 17 00:00:00 2001
2From: Nikias Bassen <nikias@gmx.li>
3Date: Mon, 17 Aug 2009 00:48:17 +0200
4Subject: [PATCH] Fix Zero Length Packet issue, new LIBUSB_TRANSFER_ZERO_PACKET flag.
5
6This patch fixes the Zero Length Packet issue by allowing the client
7program to specify the LIBUSB_TRANSFER_ZERO_PACKET flag when calling
8libusb_submit_transfer. This will pass the URB_ZERO_PACKET flag to the
9appropriate ioctl and thus triggers zero-length packet processing
10inside the kernel. This patch will also pass the URB_SHORT_NOT_OK flag
11if LIBUSB_TRANSFER_SHORT_NOT_OK is specified.
12---
13 libusb/libusb.h | 5 ++++-
14 libusb/os/linux_usbfs.c | 5 +++++
15 libusb/os/linux_usbfs.h | 8 +++++---
16 3 files changed, 14 insertions(+), 4 deletions(-)
17
18diff --git a/libusb/libusb.h b/libusb/libusb.h
19index 1126380..1dc7ae0 100644
20--- a/libusb/libusb.h
21+++ b/libusb/libusb.h
22@@ -672,7 +672,10 @@ enum libusb_transfer_flags {
23 * If this flag is set, it is illegal to call libusb_free_transfer()
24 * from your transfer callback, as this will result in a double-free
25 * when this flag is acted upon. */
26- LIBUSB_TRANSFER_FREE_TRANSFER = 1<<2
27+ LIBUSB_TRANSFER_FREE_TRANSFER = 1<<2,
28+
29+ /** zero-terminate a packet that is N*wMaxPacketSize bytes long */
30+ LIBUSB_TRANSFER_ZERO_PACKET = 1<<3
31 };
32
33 /** \ingroup asyncio
34diff --git a/libusb/os/linux_usbfs.c b/libusb/os/linux_usbfs.c
35index 1280188..81a9498 100644
36--- a/libusb/os/linux_usbfs.c
37+++ b/libusb/os/linux_usbfs.c
38@@ -1307,6 +1307,11 @@ static int submit_bulk_transfer(struct usbi_transfer *itransfer,
39 else
40 urb->buffer_length = MAX_BULK_BUFFER_LENGTH;
41
42+ if (transfer->flags & LIBUSB_TRANSFER_SHORT_NOT_OK)
43+ urb->flags |= USBFS_URB_SHORT_NOT_OK;
44+ if (transfer->flags & LIBUSB_TRANSFER_ZERO_PACKET)
45+ urb->flags |= USBFS_URB_ZERO_PACKET;
46+
47 r = ioctl(dpriv->fd, IOCTL_USBFS_SUBMITURB, urb);
48 if (r < 0) {
49 int j;
50diff --git a/libusb/os/linux_usbfs.h b/libusb/os/linux_usbfs.h
51index fdf5e9b..4660e3b 100644
52--- a/libusb/os/linux_usbfs.h
53+++ b/libusb/os/linux_usbfs.h
54@@ -60,9 +60,11 @@ struct usbfs_getdriver {
55 char driver[USBFS_MAXDRIVERNAME + 1];
56 };
57
58-#define USBFS_URB_DISABLE_SPD 1
59-#define USBFS_URB_ISO_ASAP 2
60-#define USBFS_URB_QUEUE_BULK 0x10
61+#define USBFS_URB_SHORT_NOT_OK 0x01
62+#define USBFS_URB_ISO_ASAP 0x02
63+#define USBFS_URB_NO_FSBR 0x20
64+#define USBFS_URB_ZERO_PACKET 0x40
65+#define USBFS_URB_NO_INTERRUPT 0x80
66
67 enum usbfs_urb_type {
68 USBFS_URB_TYPE_ISO = 0,
69--
701.6.0.4
71