From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org, stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
alan@lxorguk.ukuu.org.uk,
"Alexis R. Cortes" <alexis.cortes@ti.com>,
Sarah Sharp <sarah.a.sharp@linux.intel.com>
Subject: [ 132/218] usb: host: xhci: Fix Compliance Mode on SN65LVPE502CP Hardware
Date: Fri, 28 Sep 2012 13:15:49 -0700 [thread overview]
Message-ID: <20120928201516.594828298@linuxfoundation.org> (raw)
In-Reply-To: <20120928201501.208384923@linuxfoundation.org>
3.4-stable review patch. If anyone has any objections, please let me know.
------------------
From: "Alexis R. Cortes" <alexis.cortes@ti.com>
commit 71c731a296f1b08a3724bd1b514b64f1bda87a23 upstream.
This patch is intended to work around a known issue on the
SN65LVPE502CP USB3.0 re-driver that can delay the negotiation
between a device and the host past the usual handshake timeout.
If that happens on the first insertion, the host controller
port will enter in Compliance Mode and NO port status event will
be generated (as per xHCI Spec) making impossible to detect this
event by software. The port will remain in compliance mode until
a warm reset is applied to it.
As a result of this, the port will seem "dead" to the user and no
device connections or disconnections will be detected.
For solving this, the patch creates a timer which polls every 2
seconds the link state of each host controller's port (this
by reading the PORTSC register) and recovers the port by issuing a
Warm reset every time Compliance mode is detected.
If a xHC USB3.0 port has previously entered to U0, the compliance
mode issue will NOT occur only until system resumes from
sleep/hibernate, therefore, the compliance mode timer is stopped
when all xHC USB 3.0 ports have entered U0. The timer is initialized
again after each system resume.
Since the issue is being caused by a piece of hardware, the timer
will be enabled ONLY on those systems that have the SN65LVPE502CP
installed (this patch uses DMI strings for detecting those systems)
therefore making this patch to act as a quirk (XHCI_COMP_MODE_QUIRK
has been added to the xhci stack).
This patch applies for these systems:
Vendor: Hewlett-Packard. System Models: Z420, Z620 and Z820.
This patch should be backported to kernels as old as 3.2, as that was
the first kernel to support warm reset. The kernels will need to
contain both commit 10d674a82e553cb8a1f41027bb3c3e309b3f6804 "USB: When
hot reset for USB3 fails, try warm reset" and commit
8bea2bd37df08aaa599aa361a9f8b836ba98e554 "usb: Add support for root hub
port status CAS". The first patch add warm reset support, and the
second patch modifies the USB core to issue a warm reset when the port
is in compliance mode.
Signed-off-by: Alexis R. Cortes <alexis.cortes@ti.com>
Signed-off-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/usb/host/xhci-hub.c | 42 +++++++++++++++
drivers/usb/host/xhci.c | 121 ++++++++++++++++++++++++++++++++++++++++++++
drivers/usb/host/xhci.h | 6 ++
3 files changed, 169 insertions(+)
--- a/drivers/usb/host/xhci-hub.c
+++ b/drivers/usb/host/xhci-hub.c
@@ -493,11 +493,48 @@ static void xhci_hub_report_link_state(u
* when this bit is set.
*/
pls |= USB_PORT_STAT_CONNECTION;
+ } else {
+ /*
+ * If CAS bit isn't set but the Port is already at
+ * Compliance Mode, fake a connection so the USB core
+ * notices the Compliance state and resets the port.
+ * This resolves an issue generated by the SN65LVPE502CP
+ * in which sometimes the port enters compliance mode
+ * caused by a delay on the host-device negotiation.
+ */
+ if (pls == USB_SS_PORT_LS_COMP_MOD)
+ pls |= USB_PORT_STAT_CONNECTION;
}
+
/* update status field */
*status |= pls;
}
+/*
+ * Function for Compliance Mode Quirk.
+ *
+ * This Function verifies if all xhc USB3 ports have entered U0, if so,
+ * the compliance mode timer is deleted. A port won't enter
+ * compliance mode if it has previously entered U0.
+ */
+void xhci_del_comp_mod_timer(struct xhci_hcd *xhci, u32 status, u16 wIndex)
+{
+ u32 all_ports_seen_u0 = ((1 << xhci->num_usb3_ports)-1);
+ bool port_in_u0 = ((status & PORT_PLS_MASK) == XDEV_U0);
+
+ if (!(xhci->quirks & XHCI_COMP_MODE_QUIRK))
+ return;
+
+ if ((xhci->port_status_u0 != all_ports_seen_u0) && port_in_u0) {
+ xhci->port_status_u0 |= 1 << wIndex;
+ if (xhci->port_status_u0 == all_ports_seen_u0) {
+ del_timer_sync(&xhci->comp_mode_recovery_timer);
+ xhci_dbg(xhci, "All USB3 ports have entered U0 already!\n");
+ xhci_dbg(xhci, "Compliance Mode Recovery Timer Deleted.\n");
+ }
+ }
+}
+
int xhci_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
u16 wIndex, char *buf, u16 wLength)
{
@@ -644,6 +681,11 @@ int xhci_hub_control(struct usb_hcd *hcd
/* Update Port Link State for super speed ports*/
if (hcd->speed == HCD_USB3) {
xhci_hub_report_link_state(&status, temp);
+ /*
+ * Verify if all USB3 Ports Have entered U0 already.
+ * Delete Compliance Mode Timer if so.
+ */
+ xhci_del_comp_mod_timer(xhci, temp, wIndex);
}
if (bus_state->port_c_suspend & (1 << wIndex))
status |= 1 << USB_PORT_FEAT_C_SUSPEND;
--- a/drivers/usb/host/xhci.c
+++ b/drivers/usb/host/xhci.c
@@ -26,6 +26,7 @@
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/slab.h>
+#include <linux/dmi.h>
#include "xhci.h"
@@ -398,6 +399,95 @@ static void xhci_msix_sync_irqs(struct x
#endif
+static void compliance_mode_recovery(unsigned long arg)
+{
+ struct xhci_hcd *xhci;
+ struct usb_hcd *hcd;
+ u32 temp;
+ int i;
+
+ xhci = (struct xhci_hcd *)arg;
+
+ for (i = 0; i < xhci->num_usb3_ports; i++) {
+ temp = xhci_readl(xhci, xhci->usb3_ports[i]);
+ if ((temp & PORT_PLS_MASK) == USB_SS_PORT_LS_COMP_MOD) {
+ /*
+ * Compliance Mode Detected. Letting USB Core
+ * handle the Warm Reset
+ */
+ xhci_dbg(xhci, "Compliance Mode Detected->Port %d!\n",
+ i + 1);
+ xhci_dbg(xhci, "Attempting Recovery routine!\n");
+ hcd = xhci->shared_hcd;
+
+ if (hcd->state == HC_STATE_SUSPENDED)
+ usb_hcd_resume_root_hub(hcd);
+
+ usb_hcd_poll_rh_status(hcd);
+ }
+ }
+
+ if (xhci->port_status_u0 != ((1 << xhci->num_usb3_ports)-1))
+ mod_timer(&xhci->comp_mode_recovery_timer,
+ jiffies + msecs_to_jiffies(COMP_MODE_RCVRY_MSECS));
+}
+
+/*
+ * Quirk to work around issue generated by the SN65LVPE502CP USB3.0 re-driver
+ * that causes ports behind that hardware to enter compliance mode sometimes.
+ * The quirk creates a timer that polls every 2 seconds the link state of
+ * each host controller's port and recovers it by issuing a Warm reset
+ * if Compliance mode is detected, otherwise the port will become "dead" (no
+ * device connections or disconnections will be detected anymore). Becasue no
+ * status event is generated when entering compliance mode (per xhci spec),
+ * this quirk is needed on systems that have the failing hardware installed.
+ */
+static void compliance_mode_recovery_timer_init(struct xhci_hcd *xhci)
+{
+ xhci->port_status_u0 = 0;
+ init_timer(&xhci->comp_mode_recovery_timer);
+
+ xhci->comp_mode_recovery_timer.data = (unsigned long) xhci;
+ xhci->comp_mode_recovery_timer.function = compliance_mode_recovery;
+ xhci->comp_mode_recovery_timer.expires = jiffies +
+ msecs_to_jiffies(COMP_MODE_RCVRY_MSECS);
+
+ set_timer_slack(&xhci->comp_mode_recovery_timer,
+ msecs_to_jiffies(COMP_MODE_RCVRY_MSECS));
+ add_timer(&xhci->comp_mode_recovery_timer);
+ xhci_dbg(xhci, "Compliance Mode Recovery Timer Initialized.\n");
+}
+
+/*
+ * This function identifies the systems that have installed the SN65LVPE502CP
+ * USB3.0 re-driver and that need the Compliance Mode Quirk.
+ * Systems:
+ * Vendor: Hewlett-Packard -> System Models: Z420, Z620 and Z820
+ */
+static bool compliance_mode_recovery_timer_quirk_check(void)
+{
+ const char *dmi_product_name, *dmi_sys_vendor;
+
+ dmi_product_name = dmi_get_system_info(DMI_PRODUCT_NAME);
+ dmi_sys_vendor = dmi_get_system_info(DMI_SYS_VENDOR);
+
+ if (!(strstr(dmi_sys_vendor, "Hewlett-Packard")))
+ return false;
+
+ if (strstr(dmi_product_name, "Z420") ||
+ strstr(dmi_product_name, "Z620") ||
+ strstr(dmi_product_name, "Z820"))
+ return true;
+
+ return false;
+}
+
+static int xhci_all_ports_seen_u0(struct xhci_hcd *xhci)
+{
+ return (xhci->port_status_u0 == ((1 << xhci->num_usb3_ports)-1));
+}
+
+
/*
* Initialize memory for HCD and xHC (one-time init).
*
@@ -421,6 +511,12 @@ int xhci_init(struct usb_hcd *hcd)
retval = xhci_mem_init(xhci, GFP_KERNEL);
xhci_dbg(xhci, "Finished xhci_init\n");
+ /* Initializing Compliance Mode Recovery Data If Needed */
+ if (compliance_mode_recovery_timer_quirk_check()) {
+ xhci->quirks |= XHCI_COMP_MODE_QUIRK;
+ compliance_mode_recovery_timer_init(xhci);
+ }
+
return retval;
}
@@ -629,6 +725,11 @@ void xhci_stop(struct usb_hcd *hcd)
del_timer_sync(&xhci->event_ring_timer);
#endif
+ /* Deleting Compliance Mode Recovery Timer */
+ if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) &&
+ (!(xhci_all_ports_seen_u0(xhci))))
+ del_timer_sync(&xhci->comp_mode_recovery_timer);
+
if (xhci->quirks & XHCI_AMD_PLL_FIX)
usb_amd_dev_put();
@@ -806,6 +907,16 @@ int xhci_suspend(struct xhci_hcd *xhci)
}
spin_unlock_irq(&xhci->lock);
+ /*
+ * Deleting Compliance Mode Recovery Timer because the xHCI Host
+ * is about to be suspended.
+ */
+ if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) &&
+ (!(xhci_all_ports_seen_u0(xhci)))) {
+ del_timer_sync(&xhci->comp_mode_recovery_timer);
+ xhci_dbg(xhci, "Compliance Mode Recovery Timer Deleted!\n");
+ }
+
/* step 5: remove core well power */
/* synchronize irq when using MSI-X */
xhci_msix_sync_irqs(xhci);
@@ -938,6 +1049,16 @@ int xhci_resume(struct xhci_hcd *xhci, b
usb_hcd_resume_root_hub(hcd);
usb_hcd_resume_root_hub(xhci->shared_hcd);
}
+
+ /*
+ * If system is subject to the Quirk, Compliance Mode Timer needs to
+ * be re-initialized Always after a system resume. Ports are subject
+ * to suffer the Compliance Mode issue again. It doesn't matter if
+ * ports have entered previously to U0 before system's suspension.
+ */
+ if (xhci->quirks & XHCI_COMP_MODE_QUIRK)
+ compliance_mode_recovery_timer_init(xhci);
+
return retval;
}
#endif /* CONFIG_PM */
--- a/drivers/usb/host/xhci.h
+++ b/drivers/usb/host/xhci.h
@@ -1487,6 +1487,7 @@ struct xhci_hcd {
#define XHCI_AMD_0x96_HOST (1 << 9)
#define XHCI_TRUST_TX_LENGTH (1 << 10)
#define XHCI_SPURIOUS_REBOOT (1 << 13)
+#define XHCI_COMP_MODE_QUIRK (1 << 14)
unsigned int num_active_eps;
unsigned int limit_active_eps;
/* There are two roothubs to keep track of bus suspend info for */
@@ -1503,6 +1504,11 @@ struct xhci_hcd {
unsigned sw_lpm_support:1;
/* support xHCI 1.0 spec USB2 hardware LPM */
unsigned hw_lpm_support:1;
+ /* Compliance Mode Recovery Data */
+ struct timer_list comp_mode_recovery_timer;
+ u32 port_status_u0;
+/* Compliance Mode Timer Triggered every 2 seconds */
+#define COMP_MODE_RCVRY_MSECS 2000
};
/* convert between an HCD pointer and the corresponding EHCI_HCD */
next prev parent reply other threads:[~2012-09-28 20:28 UTC|newest]
Thread overview: 233+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-09-28 20:13 [ 000/218] 3.4.12-stable review Greg Kroah-Hartman
2012-09-28 20:13 ` [ 001/218] net: Allow driver to limit number of GSO segments per skb Greg Kroah-Hartman
2012-09-28 20:13 ` [ 002/218] sfc: Fix maximum number of TSO segments and minimum TX queue size Greg Kroah-Hartman
2012-09-28 20:13 ` [ 003/218] tcp: Apply device TSO segment limit earlier Greg Kroah-Hartman
2012-09-28 20:13 ` [ 004/218] net_sched: gact: Fix potential panic in tcf_gact() Greg Kroah-Hartman
2012-09-28 20:13 ` [ 005/218] isdnloop: fix and simplify isdnloop_init() Greg Kroah-Hartman
2012-09-28 20:13 ` [ 006/218] pptp: lookup route with the proper net namespace Greg Kroah-Hartman
2012-09-28 20:13 ` [ 007/218] net/core: Fix potential memory leak in dev_set_alias() Greg Kroah-Hartman
2012-09-28 20:13 ` [ 008/218] af_packet: remove BUG statement in tpacket_destruct_skb Greg Kroah-Hartman
2012-09-28 20:13 ` [ 009/218] ipv6: addrconf: Avoid calling netdevice notifiers with RCU read-side lock Greg Kroah-Hartman
2012-09-28 20:13 ` [ 010/218] atm: fix info leak in getsockopt(SO_ATMPVC) Greg Kroah-Hartman
2012-09-28 20:13 ` [ 011/218] atm: fix info leak via getsockname() Greg Kroah-Hartman
2012-09-28 20:13 ` [ 012/218] Bluetooth: HCI - Fix info leak in getsockopt(HCI_FILTER) Greg Kroah-Hartman
2012-09-28 20:13 ` [ 013/218] Bluetooth: HCI - Fix info leak via getsockname() Greg Kroah-Hartman
2012-09-28 20:13 ` [ 014/218] Bluetooth: RFCOMM - Fix info leak in getsockopt(BT_SECURITY) Greg Kroah-Hartman
2012-09-28 20:13 ` [ 015/218] Bluetooth: RFCOMM - Fix info leak in ioctl(RFCOMMGETDEVLIST) Greg Kroah-Hartman
2012-09-28 20:13 ` [ 016/218] Bluetooth: RFCOMM - Fix info leak via getsockname() Greg Kroah-Hartman
2012-09-28 20:13 ` [ 017/218] Bluetooth: L2CAP " Greg Kroah-Hartman
2012-09-28 20:13 ` [ 018/218] llc: fix " Greg Kroah-Hartman
2012-09-28 20:13 ` [ 019/218] dccp: fix info leak via getsockopt(DCCP_SOCKOPT_CCID_TX_INFO) Greg Kroah-Hartman
2012-09-28 20:13 ` [ 020/218] ipvs: fix info leak in getsockopt(IP_VS_SO_GET_TIMEOUT) Greg Kroah-Hartman
2012-09-28 20:13 ` [ 021/218] net: fix info leak in compat dev_ifconf() Greg Kroah-Hartman
2012-09-28 20:13 ` [ 022/218] af_packet: dont emit packet on orig fanout group Greg Kroah-Hartman
2012-09-28 20:14 ` [ 023/218] af_netlink: force credentials passing [CVE-2012-3520] Greg Kroah-Hartman
2012-09-28 20:14 ` [ 024/218] netlink: fix possible spoofing from non-root processes Greg Kroah-Hartman
2012-09-28 20:14 ` [ 025/218] tcp: fix cwnd reduction for non-sack recovery Greg Kroah-Hartman
2012-09-28 20:14 ` [ 026/218] sfc: Fix reporting of IPv4 full filters through ethtool Greg Kroah-Hartman
2012-09-28 20:14 ` [ 027/218] gianfar: fix default tx vlan offload feature flag Greg Kroah-Hartman
2012-09-28 20:14 ` [ 028/218] l2tp: avoid to use synchronize_rcu in tunnel free function Greg Kroah-Hartman
2012-09-28 20:14 ` [ 029/218] net: ipv4: ipmr_expire_timer causes crash when removing net namespace Greg Kroah-Hartman
2012-09-28 20:14 ` [ 030/218] bnx2x: fix 57840_MF pci id Greg Kroah-Hartman
2012-09-28 20:14 ` [ 031/218] openvswitch: Reset upper layer protocol info on internal devices Greg Kroah-Hartman
2012-09-28 20:14 ` [ 032/218] workqueue: reimplement work_on_cpu() using system_wq Greg Kroah-Hartman
2012-09-28 20:14 ` [ 033/218] cpufreq/powernow-k8: workqueue user shouldnt migrate the kworker to another CPU Greg Kroah-Hartman
2012-09-28 20:14 ` [ 034/218] cciss: fix handling of protocol error Greg Kroah-Hartman
2012-09-28 20:14 ` [ 035/218] vfs: make O_PATH file descriptors usable for fstat() Greg Kroah-Hartman
2012-09-28 23:27 ` Ben Hutchings
2012-09-28 23:44 ` Linus Torvalds
2012-09-28 20:14 ` [ 036/218] vfs: dcache: use DCACHE_DENTRY_KILLED instead of DCACHE_DISCONNECTED in d_kill() Greg Kroah-Hartman
2012-09-28 20:14 ` [ 037/218] netconsole: remove a redundant netconsole_target_put() Greg Kroah-Hartman
2012-09-28 20:14 ` [ 038/218] eCryptfs: Copy up attributes of the lower target inode after rename Greg Kroah-Hartman
2012-09-28 20:14 ` [ 039/218] target: Fix ->data_length re-assignment bug with SCSI overflow Greg Kroah-Hartman
2012-09-28 20:14 ` [ 040/218] ARM: 7496/1: hw_breakpoint: dont rely on dfsr to show watchpoint access type Greg Kroah-Hartman
2012-09-28 20:14 ` [ 041/218] ARM: 7513/1: Make sure dtc is built before running it Greg Kroah-Hartman
2012-09-28 20:14 ` [ 042/218] ARM: 7526/1: traps: send SIGILL if get_user fails on undef handling path Greg Kroah-Hartman
2012-09-28 20:14 ` [ 043/218] ARM: 7527/1: uaccess: explicitly check __user pointer when !CPU_USE_DOMAINS Greg Kroah-Hartman
2012-09-28 23:36 ` Ben Hutchings
2012-09-28 20:14 ` [ 044/218] Staging: Android alarm: IOCTL command encoding fix Greg Kroah-Hartman
2012-11-03 7:33 ` Colin Cross
2012-11-05 8:22 ` Greg Kroah-Hartman
2012-11-05 8:38 ` Colin Cross
2012-09-28 20:14 ` [ 045/218] ARM: OMAP: timer: obey the !CONFIG_OMAP_32K_TIMER Greg Kroah-Hartman
2012-10-01 18:20 ` Herton Ronaldo Krzesinski
2012-10-01 18:33 ` Greg Kroah-Hartman
2012-10-01 18:53 ` Herton Ronaldo Krzesinski
2012-10-01 19:51 ` Greg Kroah-Hartman
2012-09-28 20:14 ` [ 046/218] ARM: Fix ioremap() of address zero Greg Kroah-Hartman
2012-09-28 20:14 ` [ 047/218] ALSA: hda - Fix missing Master volume for STAC9200/925x Greg Kroah-Hartman
2012-09-28 20:14 ` [ 048/218] ALSA: hda - Fix Oops at codec reset/reconfig Greg Kroah-Hartman
2012-09-28 20:14 ` [ 049/218] ALSA: ice1724: Use linear scale for AK4396 volume control Greg Kroah-Hartman
2012-09-28 20:14 ` [ 050/218] ALSA: hda - Workaround for silent output on VAIO Z with ALC889 Greg Kroah-Hartman
2012-09-28 20:14 ` [ 051/218] Staging: speakup: fix an improperly-declared variable Greg Kroah-Hartman
2012-09-28 20:14 ` [ 052/218] staging: zcache: fix cleancache race condition with shrinker Greg Kroah-Hartman
2012-09-28 20:14 ` [ 053/218] staging: vt6656: [BUG] - Failed connection, incorrect endian Greg Kroah-Hartman
2012-09-28 20:14 ` [ 054/218] staging: r8712u: fix bug in r8712_recv_indicatepkt() Greg Kroah-Hartman
2012-09-28 20:14 ` [ 055/218] staging: comedi: das08: Correct AO output for das08jr-16-ao Greg Kroah-Hartman
2012-09-28 20:14 ` [ 056/218] USB: option: replace ZTE K5006-Z entry with vendor class rule Greg Kroah-Hartman
2012-09-28 20:14 ` [ 057/218] fs/proc: fix potential unregister_sysctl_table hang Greg Kroah-Hartman
2012-09-28 20:14 ` [ 058/218] sound: tegra_alc5632: remove HP detect GPIO inversion Greg Kroah-Hartman
2012-09-28 20:14 ` [ 059/218] perf_event: Switch to internal refcount, fix race with close() Greg Kroah-Hartman
2012-09-28 20:14 ` [ 060/218] ACPI / PM: Fix resource_lock dead lock in acpi_power_on_device Greg Kroah-Hartman
2012-09-28 20:14 ` [ 061/218] ACPI / PM: Use KERN_DEBUG when no power resources are found Greg Kroah-Hartman
2012-09-28 20:14 ` [ 062/218] mmc: mxs-mmc: fix deadlock in SDIO IRQ case Greg Kroah-Hartman
2012-09-28 20:14 ` [ 063/218] mmc: sdhci-esdhc: break out early if clock is 0 Greg Kroah-Hartman
2012-09-28 20:14 ` [ 064/218] mmc: card: Skip secure erase on MoviNAND; causes unrecoverable corruption Greg Kroah-Hartman
2012-09-29 0:14 ` Ben Hutchings
2012-09-28 20:14 ` [ 065/218] oprofile, s390: Fix uninitialized memory access when writing to oprofilefs Greg Kroah-Hartman
2012-09-28 20:14 ` [ 066/218] ahci: Add alternate identifier for the 88SE9172 Greg Kroah-Hartman
2012-09-28 20:14 ` [ 067/218] kobject: fix oops with "input0: bad kobj_uevent_env content in show_uevent()" Greg Kroah-Hartman
2012-09-28 20:14 ` [ 068/218] Redefine ATOMIC_INIT and ATOMIC64_INIT to drop the casts Greg Kroah-Hartman
2012-09-28 20:14 ` [ 069/218] digsig: add hash size comparision on signature verification Greg Kroah-Hartman
2012-09-28 20:14 ` [ 070/218] SUNRPC: Fix a UDP transport regression Greg Kroah-Hartman
2012-09-28 20:29 ` Myklebust, Trond
2012-09-28 21:04 ` Greg Kroah-Hartman
2012-09-28 20:14 ` [ 071/218] md: Dont truncate size at 4TB for RAID0 and Linear Greg Kroah-Hartman
2012-09-28 20:14 ` [ 072/218] md: make sure metadata is updated when spares are activated or removed Greg Kroah-Hartman
2012-09-28 20:14 ` [ 073/218] md/raid5: fix calculate of degraded when a replacement becomes active Greg Kroah-Hartman
2012-09-28 20:14 ` [ 074/218] nbd: clear waiting_queue on shutdown Greg Kroah-Hartman
2012-09-28 20:14 ` [ 075/218] ASoC: samsung dma - Dont indicate support for pause/resume Greg Kroah-Hartman
2012-09-28 20:14 ` [ 076/218] mm/page_alloc: fix the page address of higher pages buddy calculation Greg Kroah-Hartman
2012-09-28 20:14 ` [ 077/218] drivers/rtc/rtc-twl.c: ensure all interrupts are disabled during probe Greg Kroah-Hartman
2012-09-28 20:14 ` [ 078/218] hwmon: (twl4030-madc-hwmon) Initialize uninitialized structure elements Greg Kroah-Hartman
2012-09-28 20:14 ` [ 079/218] sched: Add missing call to calc_load_exit_idle() Greg Kroah-Hartman
2012-09-28 20:14 ` [ 080/218] can: mcp251x: avoid repeated frame bug Greg Kroah-Hartman
2012-09-28 20:14 ` [ 081/218] mm/ia64: fix a memory block size bug Greg Kroah-Hartman
2012-09-28 20:14 ` [ 082/218] memory hotplug: fix section info double registration bug Greg Kroah-Hartman
2012-09-28 20:15 ` [ 083/218] xen/m2p: do not reuse kmap_op->dev_bus_addr Greg Kroah-Hartman
2012-09-28 20:15 ` [ 084/218] xen/boot: Disable NUMA for PV guests Greg Kroah-Hartman
2012-09-28 20:15 ` [ 085/218] hwmon: (fam15h_power) Tweak runavg_range on resume Greg Kroah-Hartman
2012-09-28 20:15 ` [ 086/218] hwmon: (ads7871) Add name sysfs attribute Greg Kroah-Hartman
2012-09-28 20:15 ` [ 087/218] hwmon: (ad7314) " Greg Kroah-Hartman
2012-09-28 20:15 ` [ 088/218] HID: Fix logitech-dj: missing Unifying device issue Greg Kroah-Hartman
2012-09-28 20:15 ` [ 089/218] cifs: fix return value in cifsConvertToUTF16 Greg Kroah-Hartman
2012-09-28 20:15 ` [ 090/218] vmwgfx: add dumb ioctl support Greg Kroah-Hartman
2012-09-28 20:15 ` [ 091/218] ibmveth: Fix alignment of rx queue bug Greg Kroah-Hartman
2012-09-28 20:15 ` [ 092/218] mac80211: clear bssid on auth/assoc failure Greg Kroah-Hartman
2012-09-28 20:15 ` [ 093/218] brcmfmac: fix big endian bug in i-scan Greg Kroah-Hartman
2012-09-28 20:15 ` [ 094/218] brcmfmac: Fix big endian host configuration data Greg Kroah-Hartman
2012-09-28 20:15 ` [ 095/218] SCSI: lpfc: fix problems with -Werror Greg Kroah-Hartman
2012-09-28 20:15 ` [ 096/218] SCSI: mpt2sas: Fix for issue - Unable to boot from the drive connected to HBA Greg Kroah-Hartman
2012-09-28 20:15 ` [ 097/218] SCSI: bnx2i: Fixed NULL ptr deference for 1G bnx2 Linux iSCSI offload Greg Kroah-Hartman
2012-09-28 20:15 ` [ 098/218] SCSI: hpsa: fix handling of protocol error Greg Kroah-Hartman
2012-09-28 20:15 ` [ 099/218] SCSI: scsi: virtio-scsi: Fix address translation failure of HighMem pages used by sg list Greg Kroah-Hartman
2012-09-28 20:15 ` [ 100/218] Bluetooth: mgmt: Fix enabling SSP while powered off Greg Kroah-Hartman
2012-09-28 20:15 ` [ 101/218] Bluetooth: Fix not removing power_off delayed work Greg Kroah-Hartman
2012-09-28 20:15 ` [ 102/218] Bluetooth: mgmt: Fix enabling LE while powered off Greg Kroah-Hartman
2012-09-28 20:15 ` [ 103/218] hpwdt: Fix kdump issue in hpwdt Greg Kroah-Hartman
2012-09-28 20:15 ` [ 104/218] ARM: 7532/1: decompressor: reset SCTLR.TRE for VMSA ARMv7 cores Greg Kroah-Hartman
2012-09-28 20:15 ` [ 105/218] tracing: Dont call page_to_pfn() if page is NULL Greg Kroah-Hartman
2012-09-28 20:15 ` [ 106/218] Input: i8042 - disable mux on Toshiba C850D Greg Kroah-Hartman
2012-09-28 20:15 ` [ 107/218] MIPS: mm: Add compound tail page _mapcount when mapped Greg Kroah-Hartman
2012-09-28 20:15 ` [ 108/218] rtlwifi: rtl8192ce: Log message that B_CUT device may not work Greg Kroah-Hartman
2012-09-28 20:15 ` [ 109/218] asix: Support DLink DUB-E100 H/W Ver C1 Greg Kroah-Hartman
2012-09-28 20:15 ` [ 110/218] can: ti_hecc: fix oops during rmmod Greg Kroah-Hartman
2012-09-28 20:15 ` [ 111/218] can: janz-ican3: fix support for older hardware revisions Greg Kroah-Hartman
2012-09-28 20:15 ` [ 112/218] cfg80211: fix possible circular lock on reg_regdb_search() Greg Kroah-Hartman
2012-09-28 20:15 ` [ 113/218] DMA: PL330: Fix potential NULL pointer dereference in pl330_submit_req() Greg Kroah-Hartman
2012-09-28 20:15 ` [ 114/218] DMA: PL330: Check the pointer returned by kzalloc Greg Kroah-Hartman
2012-09-28 20:15 ` [ 115/218] dmaengine: at_hdmac: fix comment in atc_prep_slave_sg() Greg Kroah-Hartman
2012-09-28 20:15 ` [ 116/218] dmaengine: at_hdmac: check that each sg data length is non-null Greg Kroah-Hartman
2012-09-28 20:15 ` [ 117/218] rt2x00: Identify ASUS USB-N53 device Greg Kroah-Hartman
2012-09-28 20:15 ` [ 118/218] rt2x00: Fix word size of rt2500usb MAC_CSR19 register Greg Kroah-Hartman
2012-09-28 20:15 ` [ 119/218] rt2x00: Fix rfkill polling prior to interface start Greg Kroah-Hartman
2012-09-28 20:15 ` [ 120/218] NFS: Fix the initialisation of the readdir cookieverf array Greg Kroah-Hartman
2012-09-28 20:15 ` [ 121/218] NFS: Fix a problem with the legacy binary mount code Greg Kroah-Hartman
2012-09-28 20:15 ` [ 122/218] NFS: return error from decode_getfh in decode open Greg Kroah-Hartman
2012-09-28 20:15 ` [ 123/218] EHCI: Update qTD next pointer in QH overlay region during unlink Greg Kroah-Hartman
2012-09-28 20:15 ` [ 124/218] USB: ftdi_sio: PID for NZR SEM 16+ USB Greg Kroah-Hartman
2012-09-28 20:15 ` [ 125/218] USB: ftdi_sio: do not claim CDC ACM function Greg Kroah-Hartman
2012-09-28 20:15 ` [ 126/218] USB: ftdi-sio: add support for more Physik Instrumente devices Greg Kroah-Hartman
2012-09-28 20:15 ` [ 127/218] usb: dwc3: ep0: correct cache sync issue in case of ep0_bounced Greg Kroah-Hartman
2012-09-28 20:15 ` [ 128/218] USB: cdc-wdm: fix wdm_find_device* return value Greg Kroah-Hartman
2012-09-28 20:15 ` [ 129/218] USB: ohci-at91: fix PIO handling in relation with number of ports Greg Kroah-Hartman
2012-09-28 20:15 ` [ 130/218] USB: add device quirk for Joss Optical touchboard Greg Kroah-Hartman
2012-09-28 20:15 ` [ 131/218] rt2800usb: Added rx packet length validity check Greg Kroah-Hartman
2012-09-28 20:15 ` Greg Kroah-Hartman [this message]
2012-09-28 20:15 ` [ 133/218] Intel xhci: Only switch the switchable ports Greg Kroah-Hartman
2012-09-28 20:15 ` [ 134/218] usb: host: xhci-plat: use ioremap_nocache Greg Kroah-Hartman
2012-09-28 20:15 ` [ 135/218] xhci: Fix a logical vs bitwise AND bug Greg Kroah-Hartman
2012-09-28 20:15 ` [ 136/218] xhci: Make handover code more robust Greg Kroah-Hartman
2012-09-28 20:15 ` [ 137/218] xhci: Recognize USB 3.0 devices as superspeed at powerup Greg Kroah-Hartman
2012-09-28 20:15 ` [ 138/218] usb: host: xhci: fix compilation error for non-PCI based stacks Greg Kroah-Hartman
2012-09-28 20:15 ` [ 139/218] tty: serial: imx: console write routing is unsafe on SMP Greg Kroah-Hartman
2012-09-28 20:15 ` [ 140/218] mutex: Place lock in contended state after fastpath_lock failure Greg Kroah-Hartman
2012-09-28 20:15 ` [ 141/218] drivers/rtc/rtc-rs5c348.c: fix hour decoding in 12-hour mode Greg Kroah-Hartman
2012-09-28 20:15 ` [ 142/218] PM / Runtime: Fix rpm_resume() return value for power.no_callbacks set Greg Kroah-Hartman
2012-09-28 20:16 ` [ 143/218] PM / Runtime: Clear power.deferred_resume on success in rpm_suspend() Greg Kroah-Hartman
2012-09-28 20:16 ` [ 144/218] drivers/misc/sgi-xp/xpc_uv.c: SGI XPC fails to load when cpu 0 is out of IRQ resources Greg Kroah-Hartman
2012-09-28 20:16 ` [ 145/218] fbcon: fix race condition between console lock and cursor timer (v1.1) Greg Kroah-Hartman
2012-09-28 20:16 ` [ 146/218] drm/radeon: avoid turning off spread spectrum for used pll Greg Kroah-Hartman
2012-09-28 20:16 ` [ 147/218] drm/radeon/ss: use num_crtc rather than hardcoded 6 Greg Kroah-Hartman
2012-09-28 20:16 ` [ 148/218] drm/radeon: split ATRM support out from the ATPX handler (v3) Greg Kroah-Hartman
2012-09-28 20:16 ` [ 149/218] drm/radeon: implement ACPI VFCT vbios fetch (v3) Greg Kroah-Hartman
2012-09-28 20:16 ` [ 150/218] drm/radeon/kms: extend the Fujitsu D3003-S2 board connector quirk to cover later silicon stepping Greg Kroah-Hartman
2012-09-28 20:16 ` [ 151/218] drm/i915: extract connector update from intel_ddc_get_modes() for reuse Greg Kroah-Hartman
2012-09-28 20:16 ` [ 152/218] asus-laptop: HRWS/HWRS typo Greg Kroah-Hartman
2012-09-28 20:16 ` [ 153/218] asus-nb-wmi: add some video toggle keys Greg Kroah-Hartman
2012-09-28 20:16 ` [ 154/218] drm: Check for invalid cursor flags Greg Kroah-Hartman
2012-09-28 20:16 ` [ 155/218] drm/radeon/atom: rework DIG modesetting on DCE3+ Greg Kroah-Hartman
2012-09-28 20:16 ` [ 156/218] drm/radeon/atom: powergating fixes for DCE6 Greg Kroah-Hartman
2012-09-28 20:16 ` [ 157/218] drm/i915: fix wrong order of parameters in port checking functions Greg Kroah-Hartman
2012-09-28 20:16 ` [ 158/218] drm/radeon: convert radeon vfct code to use acpi_get_table_with_size Greg Kroah-Hartman
2012-09-28 20:16 ` [ 159/218] drm/radeon: dont disable plls that are in use by other crtcs Greg Kroah-Hartman
2012-09-28 20:16 ` [ 160/218] drm/radeon: force dma32 to fix regression rs4xx,rs6xx,rs740 Greg Kroah-Hartman
2012-09-28 20:16 ` [ 161/218] drm/radeon: fix dig encoder selection on DCE61 Greg Kroah-Hartman
2012-09-28 20:16 ` [ 162/218] drm/nouveau: fix booting with plymouth + dumb support Greg Kroah-Hartman
2012-09-28 20:16 ` [ 163/218] drm/i915: HDMI - Clear Audio Enable bit for Hot Plug Greg Kroah-Hartman
2012-09-28 20:16 ` [ 164/218] md/raid10: fix problem with on-stack allocation of r10bio structure Greg Kroah-Hartman
2012-09-28 20:16 ` [ 165/218] workqueue: UNBOUND -> REBIND morphing in rebind_workers() should be atomic Greg Kroah-Hartman
2012-09-28 20:16 ` [ 166/218] x86: Fix boot on Twinhead H12Y Greg Kroah-Hartman
2012-09-28 20:16 ` [ 167/218] macvtap: zerocopy: fix offset calculation when building skb Greg Kroah-Hartman
2012-09-28 20:16 ` [ 168/218] macvtap: zerocopy: fix truesize underestimation Greg Kroah-Hartman
2012-09-28 20:16 ` [ 169/218] macvtap: zerocopy: put page when fail to get all requested user pages Greg Kroah-Hartman
2012-09-28 20:16 ` [ 170/218] macvtap: zerocopy: set SKBTX_DEV_ZEROCOPY only when skb is built successfully Greg Kroah-Hartman
2012-09-28 20:16 ` [ 171/218] Bluetooth: btusb: Add vendor specific ID (0a5c:21f4) BCM20702A0 Greg Kroah-Hartman
2012-09-28 20:16 ` [ 172/218] Bluetooth: Use USB_VENDOR_AND_INTERFACE() for Broadcom devices Greg Kroah-Hartman
2012-09-28 20:16 ` [ 173/218] Bluetooth: Add support for Apple vendor-specific devices Greg Kroah-Hartman
2012-09-28 20:16 ` [ 174/218] Bluetooth: Fix use-after-free bug in SMP Greg Kroah-Hartman
2012-09-29 16:29 ` Ben Hutchings
2012-09-28 20:16 ` [ 175/218] Bluetooth: Change signature of smp_conn_security() Greg Kroah-Hartman
2012-09-28 20:16 ` [ 176/218] Bluetooth: Fix sending a HCI Authorization Request over LE links Greg Kroah-Hartman
2012-09-28 20:16 ` [ 177/218] net: Statically initialize init_net.dev_base_head Greg Kroah-Hartman
2012-09-28 20:16 ` [ 178/218] media: cx25821: Remove bad strcpy to read-only char* Greg Kroah-Hartman
2012-09-28 20:16 ` [ 179/218] Fix a dead loop in async_synchronize_full() Greg Kroah-Hartman
2012-09-28 20:16 ` [ 180/218] rds: set correct msg_namelen Greg Kroah-Hartman
2012-09-28 20:16 ` [ 181/218] libata: Prevent interface errors with Seagate FreeAgent GoFlex Greg Kroah-Hartman
2012-09-28 20:16 ` [ 182/218] r8169: RxConfig hack for the 8168evl Greg Kroah-Hartman
2012-09-28 20:16 ` [ 183/218] sched: Fix race in task_group() Greg Kroah-Hartman
2012-09-28 20:16 ` [ 184/218] mm: sparse: fix usemap allocation above node descriptor section Greg Kroah-Hartman
2012-09-28 20:16 ` [ 185/218] media: lirc_sir: make device registration work Greg Kroah-Hartman
2012-09-28 20:16 ` [ 186/218] time: Improve sanity checking of timekeeping inputs Greg Kroah-Hartman
2012-09-28 20:16 ` [ 187/218] time: Avoid making adjustments if we havent accumulated anything Greg Kroah-Hartman
2012-09-28 20:16 ` [ 188/218] time: Move ktime_t overflow checking into timespec_valid_strict Greg Kroah-Hartman
2012-09-28 20:16 ` [ 189/218] media: Avoid sysfs oops when an rc_devs raw device is absent Greg Kroah-Hartman
2012-09-28 20:16 ` [ 190/218] pch_uart: Fix missing break for 16 byte fifo Greg Kroah-Hartman
2012-09-28 20:16 ` [ 191/218] pch_uart: Fix rx error interrupt setting issue Greg Kroah-Hartman
2012-09-28 20:16 ` [ 192/218] pch_uart: Fix parity " Greg Kroah-Hartman
2012-09-28 20:16 ` [ 193/218] powerpc/85xx: p1022ds: disable the NAND flash node if video is enabled Greg Kroah-Hartman
2012-09-28 20:16 ` [ 194/218] powerpc/85xx: p1022ds: fix DIU/LBC switching with NAND enabled Greg Kroah-Hartman
2012-09-28 20:16 ` [ 195/218] pch_uart: Add eg20t_port lock field, avoid recursive spinlocks Greg Kroah-Hartman
2012-09-28 20:16 ` [ 196/218] net: qmi_wwan: Add Vodafone/Huawei K5005 support Greg Kroah-Hartman
2012-09-28 20:16 ` [ 197/218] USB: qmi_wwan: Add ZTE (Vodafone) K3765-Z Greg Kroah-Hartman
2012-09-28 20:16 ` [ 198/218] net: qmi_wwan: Add Sierra Wireless device IDs Greg Kroah-Hartman
2012-09-28 20:16 ` [ 199/218] net: qmi_wwan: add ZTE MF60 Greg Kroah-Hartman
2012-09-28 20:16 ` [ 200/218] net: qmi_wwan: add ZTE MF821D Greg Kroah-Hartman
2012-09-28 20:16 ` [ 201/218] net: qmi_wwan: add Sierra Wireless devices Greg Kroah-Hartman
2012-09-28 20:16 ` [ 202/218] net: qmi_wwan: new devices: UML290 and K5006-Z Greg Kroah-Hartman
2012-09-28 20:17 ` [ 203/218] mm: avoid swapping out with swappiness==0 Greg Kroah-Hartman
2012-09-28 20:17 ` [ 204/218] irq_remap: disable IRQ remapping if any IOAPIC lacks an IOMMU Greg Kroah-Hartman
2012-09-28 20:17 ` [ 205/218] UBI: fix a horrible memory deallocation bug Greg Kroah-Hartman
2012-09-28 20:17 ` [ 206/218] NFSd: introduce nfsd_destroy() helper Greg Kroah-Hartman
2012-09-28 20:17 ` [ 207/218] NFSd: set nfsd_serv to NULL after service destruction Greg Kroah-Hartman
2012-09-28 20:17 ` [ 208/218] kthread_worker: reorganize to prepare for flush_kthread_work() reimplementation Greg Kroah-Hartman
2012-09-28 20:17 ` [ 209/218] kthread_worker: reimplement flush_kthread_work() to allow freeing the work item being executed Greg Kroah-Hartman
2012-09-28 20:17 ` [ 210/218] LockD: pass service to per-net up and down functions Greg Kroah-Hartman
2012-09-28 20:17 ` [ 211/218] USB: ohci-at91: fix null pointer in ohci_hcd_at91_overcurrent_irq Greg Kroah-Hartman
2012-09-28 20:17 ` [ 212/218] USB: Fix race condition when removing host controllers Greg Kroah-Hartman
2012-09-28 20:17 ` [ 213/218] ASoC: wm2000: Correct register size Greg Kroah-Hartman
2012-09-28 20:17 ` [ 214/218] gpio-lpc32xx: Fix value handling of gpio_direction_output() Greg Kroah-Hartman
2012-09-28 20:17 ` [ 215/218] drm/udl: limit modes to the sku pixel limits Greg Kroah-Hartman
2012-09-28 20:17 ` [ 216/218] drm/i915: fall back to bit-banging if GMBUS fails in CRT EDID reads Greg Kroah-Hartman
2012-09-28 20:17 ` [ 217/218] vmwgfx: corruption in vmw_event_fence_action_create() Greg Kroah-Hartman
2012-09-28 20:17 ` [ 218/218] Revert: drm/i915: correctly order the ring init sequence Greg Kroah-Hartman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20120928201516.594828298@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=alan@lxorguk.ukuu.org.uk \
--cc=alexis.cortes@ti.com \
--cc=linux-kernel@vger.kernel.org \
--cc=sarah.a.sharp@linux.intel.com \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).