summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Boyer <jwboyer@redhat.com>2014-03-07 08:15:55 -0500
committerJosh Boyer <jwboyer@redhat.com>2014-03-07 08:16:07 -0500
commit94c7eab8357e201522b2b243247f7668b95c48f3 (patch)
tree4fe77145d633031d1e4210e4007dd612d16b4b2b
parent9009e1772442ff2b5a2fea7a63d12214262fe42c (diff)
downloadkernel-94c7eab8357e201522b2b243247f7668b95c48f3.tar.gz
kernel-94c7eab8357e201522b2b243247f7668b95c48f3.tar.xz
kernel-94c7eab8357e201522b2b243247f7668b95c48f3.zip
Revert two xhci fixes that break USB mass storage (rhbz 1073180)
-rw-r--r--Revert-USBNET-ax88179_178a-enable-tso-if-usb-host-supports-sg-dma.patch50
-rw-r--r--Revert-xhci-1.0-Limit-arbitrarily-aligned-scatter-gather.patch86
-rw-r--r--kernel.spec11
3 files changed, 147 insertions, 0 deletions
diff --git a/Revert-USBNET-ax88179_178a-enable-tso-if-usb-host-supports-sg-dma.patch b/Revert-USBNET-ax88179_178a-enable-tso-if-usb-host-supports-sg-dma.patch
new file mode 100644
index 000000000..4efb2b3f3
--- /dev/null
+++ b/Revert-USBNET-ax88179_178a-enable-tso-if-usb-host-supports-sg-dma.patch
@@ -0,0 +1,50 @@
+From 1b4b61e873240faea96995cd87cfbe7bc51a2b39 Mon Sep 17 00:00:00 2001
+From: Sarah Sharp <sarah.a.sharp@linux.intel.com>
+Date: Tue, 04 Mar 2014 22:23:47 +0000
+Subject: Revert "USBNET: ax88179_178a: enable tso if usb host supports sg dma"
+
+This reverts commit 3804fad45411b48233b48003e33a78f290d227c8.
+
+The xHCI driver does not implement TD fragment rules yet, so we can't
+properly support arbitrary-length scatter gather. USB storage seems
+immune to these issues, and only the ASIX host seems to hit them, so
+disable scatter gather.
+
+Note that we can't simply work around this by clearing the
+no_sg_constraint flag for 1.0 xHCI hosts that need TD fragments (and
+thus would cause the ASIX chipsets to drop packets). We tried that with
+commit 247bf557273d "xhci 1.0: Limit arbitrarily-aligned scatter
+gather." We found that commit breaks USB 3.0 mass storage devices. It
+needs to get reverted, and this commit needs to get reverted before it
+to avoid dropped packets with the ASIX ethernet adapters.
+
+Signed-off-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
+Cc: stable@vger.kernel.org # 3.12
+---
+diff --git a/drivers/net/usb/ax88179_178a.c b/drivers/net/usb/ax88179_178a.c
+index 955df81..42085e6 100644
+--- a/drivers/net/usb/ax88179_178a.c
++++ b/drivers/net/usb/ax88179_178a.c
+@@ -1029,20 +1029,12 @@ static int ax88179_bind(struct usbnet *dev, struct usb_interface *intf)
+ dev->mii.phy_id = 0x03;
+ dev->mii.supports_gmii = 1;
+
+- if (usb_device_no_sg_constraint(dev->udev))
+- dev->can_dma_sg = 1;
+-
+ dev->net->features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
+ NETIF_F_RXCSUM;
+
+ dev->net->hw_features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
+ NETIF_F_RXCSUM;
+
+- if (dev->can_dma_sg) {
+- dev->net->features |= NETIF_F_SG | NETIF_F_TSO;
+- dev->net->hw_features |= NETIF_F_SG | NETIF_F_TSO;
+- }
+-
+ /* Enable checksum offload */
+ *tmp = AX_RXCOE_IP | AX_RXCOE_TCP | AX_RXCOE_UDP |
+ AX_RXCOE_TCPV6 | AX_RXCOE_UDPV6;
+--
+cgit v0.9.2
diff --git a/Revert-xhci-1.0-Limit-arbitrarily-aligned-scatter-gather.patch b/Revert-xhci-1.0-Limit-arbitrarily-aligned-scatter-gather.patch
new file mode 100644
index 000000000..a1920dd6f
--- /dev/null
+++ b/Revert-xhci-1.0-Limit-arbitrarily-aligned-scatter-gather.patch
@@ -0,0 +1,86 @@
+From 7efb6dbd0d825899955fd4035504823bb5c1124c Mon Sep 17 00:00:00 2001
+From: Sarah Sharp <sarah.a.sharp@linux.intel.com>
+Date: Tue, 04 Mar 2014 22:28:16 +0000
+Subject: Revert "xhci 1.0: Limit arbitrarily-aligned scatter gather."
+
+This reverts commit 247bf557273dd775505fb9240d2d152f4f20d304, since it
+causes USB 3.0 mass storage devices to fail on xHCI 1.0 hosts.
+
+The block layer may submit scatter-gather lists with entries that
+are multiples of 512-byte blocks. That's fine for USB 2.0 devices,
+where the bulk endpoint max packet size is 512 bytes. But USB 3.0
+devices have bulk endpoints with a 1024 byte max packet size.
+
+That means when the block layer submits a scatter-gather list with one
+entry that includes, say, three 512-byte blocks, this code will reject
+the URB if it's submitted to a USB 3.0 bulk endpoint:
+
+int usb_submit_urb(struct urb *urb, gfp_t mem_flags)
+{
+...
+ max = usb_endpoint_maxp(&ep->desc);
+...
+ } else if (urb->num_sgs && !urb->dev->bus->no_sg_constraint &&
+ dev->speed != USB_SPEED_WIRELESS) {
+ struct scatterlist *sg;
+ int i;
+
+ for_each_sg(urb->sg, sg, urb->num_sgs - 1, i)
+ if (sg->length % max)
+ return -EINVAL;
+ }
+
+This results in failures with USB 3.0 drives. For me, a failure to
+auto-mount the device. For others, a read or write SCSI command
+failure.
+
+This commit was put in place so that we could get scatter-gather support
+for the ASIX USB ethernet adapter on non-1.0 hosts. It was a quick fix
+until we implemented TD fragments properly in the driver. Since it
+breaks USB 3.0 mass storage, we need to revert it, and revert
+scatter-gather support for the ASIX devices.
+
+Signed-off-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
+Cc: stable@vger.kernel.org # 3.12
+---
+diff --git a/drivers/usb/host/xhci.c b/drivers/usb/host/xhci.c
+index 652be21..8fe4e12 100644
+--- a/drivers/usb/host/xhci.c
++++ b/drivers/usb/host/xhci.c
+@@ -4762,6 +4762,9 @@ int xhci_gen_setup(struct usb_hcd *hcd, xhci_get_quirks_t get_quirks)
+ /* Accept arbitrarily long scatter-gather lists */
+ hcd->self.sg_tablesize = ~0;
+
++ /* support to build packet from discontinuous buffers */
++ hcd->self.no_sg_constraint = 1;
++
+ /* XHCI controllers don't stop the ep queue on short packets :| */
+ hcd->self.no_stop_on_short = 1;
+
+@@ -4786,14 +4789,6 @@ int xhci_gen_setup(struct usb_hcd *hcd, xhci_get_quirks_t get_quirks)
+ /* xHCI private pointer was set in xhci_pci_probe for the second
+ * registered roothub.
+ */
+- xhci = hcd_to_xhci(hcd);
+- /*
+- * Support arbitrarily aligned sg-list entries on hosts without
+- * TD fragment rules (which are currently unsupported).
+- */
+- if (xhci->hci_version < 0x100)
+- hcd->self.no_sg_constraint = 1;
+-
+ return 0;
+ }
+
+@@ -4822,9 +4817,6 @@ int xhci_gen_setup(struct usb_hcd *hcd, xhci_get_quirks_t get_quirks)
+ if (xhci->hci_version > 0x96)
+ xhci->quirks |= XHCI_SPURIOUS_SUCCESS;
+
+- if (xhci->hci_version < 0x100)
+- hcd->self.no_sg_constraint = 1;
+-
+ /* Make sure the HC is halted. */
+ retval = xhci_halt(xhci);
+ if (retval)
+--
+cgit v0.9.2
diff --git a/kernel.spec b/kernel.spec
index d2443387a..780897949 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -655,6 +655,10 @@ Patch25036: ppc64le_module_fix.patch
#rhbz 1003602
Patch25037: ACPI-EC-Clear-stale-EC-events-on-Samsung-systems.patch
+#rhbz 1073180
+Patch25038: Revert-USBNET-ax88179_178a-enable-tso-if-usb-host-supports-sg-dma.patch
+Patch25039: Revert-xhci-1.0-Limit-arbitrarily-aligned-scatter-gather.patch
+
# END OF PATCH DEFINITIONS
%endif
@@ -1317,6 +1321,10 @@ ApplyPatch ppc64le_module_fix.patch
#rhbz 1003602
ApplyPatch ACPI-EC-Clear-stale-EC-events-on-Samsung-systems.patch
+#rhbz 1073180
+ApplyPatch Revert-USBNET-ax88179_178a-enable-tso-if-usb-host-supports-sg-dma.patch
+ApplyPatch Revert-xhci-1.0-Limit-arbitrarily-aligned-scatter-gather.patch
+
# END OF PATCH APPLICATIONS
%endif
@@ -2096,6 +2104,9 @@ fi
# ||----w |
# || ||
%changelog
+* Fri Mar 07 2014 Josh Boyer <jwboyer@fedoraproject.org>
+- Revert two xhci fixes that break USB mass storage (rhbz 1073180)
+
* Thu Mar 06 2014 Josh Boyer <jwboyer@fedoraproject.org>
- Fix stale EC events on Samsung systems (rhbz 1003602)
- Add ppc64le support from Brent Baude (rhbz 1073102)