stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, Shane Huang <shane.huang@amd.com>,
	Jean Delvare <khali@linux-fr.org>,
	Wolfram Sang <wsa@the-dreams.de>
Subject: [PATCH 3.13 111/140] i2c: piix4: Add support for AMD ML and CZ SMBus changes
Date: Tue,  4 Feb 2014 13:11:38 -0800	[thread overview]
Message-ID: <20140204211040.145270037@linuxfoundation.org> (raw)
In-Reply-To: <20140204211036.967663852@linuxfoundation.org>

3.13-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Shane Huang <shane.huang@amd.com>

commit 032f708bc4f6da868ec49dac48ddf3670d8035d3 upstream.

The locations of SMBus register base address and enablement bit are changed
from AMD ML, which need this patch to be supported.

Signed-off-by: Shane Huang <shane.huang@amd.com>
Reviewed-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 Documentation/i2c/busses/i2c-piix4 |    2 +-
 drivers/i2c/busses/Kconfig         |    1 +
 drivers/i2c/busses/i2c-piix4.c     |   28 +++++++++++++++++++++++-----
 3 files changed, 25 insertions(+), 6 deletions(-)

--- a/Documentation/i2c/busses/i2c-piix4
+++ b/Documentation/i2c/busses/i2c-piix4
@@ -13,7 +13,7 @@ Supported adapters:
   * AMD SP5100 (SB700 derivative found on some server mainboards)
     Datasheet: Publicly available at the AMD website
     http://support.amd.com/us/Embedded_TechDocs/44413.pdf
-  * AMD Hudson-2, CZ
+  * AMD Hudson-2, ML, CZ
     Datasheet: Not publicly available
   * Standard Microsystems (SMSC) SLC90E66 (Victory66) southbridge
     Datasheet: Publicly available at the SMSC website http://www.smsc.com
--- a/drivers/i2c/busses/Kconfig
+++ b/drivers/i2c/busses/Kconfig
@@ -152,6 +152,7 @@ config I2C_PIIX4
 	    ATI SB700/SP5100
 	    ATI SB800
 	    AMD Hudson-2
+	    AMD ML
 	    AMD CZ
 	    Serverworks OSB4
 	    Serverworks CSB5
--- a/drivers/i2c/busses/i2c-piix4.c
+++ b/drivers/i2c/busses/i2c-piix4.c
@@ -22,7 +22,7 @@
 	Intel PIIX4, 440MX
 	Serverworks OSB4, CSB5, CSB6, HT-1000, HT-1100
 	ATI IXP200, IXP300, IXP400, SB600, SB700/SP5100, SB800
-	AMD Hudson-2, CZ
+	AMD Hudson-2, ML, CZ
 	SMSC Victory66
 
    Note: we assume there can only be one device, with one or more
@@ -235,7 +235,8 @@ static int piix4_setup_sb800(struct pci_
 {
 	unsigned short piix4_smba;
 	unsigned short smba_idx = 0xcd6;
-	u8 smba_en_lo, smba_en_hi, i2ccfg, i2ccfg_offset = 0x10, smb_en;
+	u8 smba_en_lo, smba_en_hi, smb_en, smb_en_status;
+	u8 i2ccfg, i2ccfg_offset = 0x10;
 
 	/* SB800 and later SMBus does not support forcing address */
 	if (force || force_addr) {
@@ -245,7 +246,15 @@ static int piix4_setup_sb800(struct pci_
 	}
 
 	/* Determine the address of the SMBus areas */
-	smb_en = (aux) ? 0x28 : 0x2c;
+	if ((PIIX4_dev->vendor == PCI_VENDOR_ID_AMD &&
+	     PIIX4_dev->device == PCI_DEVICE_ID_AMD_HUDSON2_SMBUS &&
+	     PIIX4_dev->revision >= 0x41) ||
+	    (PIIX4_dev->vendor == PCI_VENDOR_ID_AMD &&
+	     PIIX4_dev->device == 0x790b &&
+	     PIIX4_dev->revision >= 0x49))
+		smb_en = 0x00;
+	else
+		smb_en = (aux) ? 0x28 : 0x2c;
 
 	if (!request_region(smba_idx, 2, "smba_idx")) {
 		dev_err(&PIIX4_dev->dev, "SMBus base address index region "
@@ -258,13 +267,22 @@ static int piix4_setup_sb800(struct pci_
 	smba_en_hi = inb_p(smba_idx + 1);
 	release_region(smba_idx, 2);
 
-	if ((smba_en_lo & 1) == 0) {
+	if (!smb_en) {
+		smb_en_status = smba_en_lo & 0x10;
+		piix4_smba = smba_en_hi << 8;
+		if (aux)
+			piix4_smba |= 0x20;
+	} else {
+		smb_en_status = smba_en_lo & 0x01;
+		piix4_smba = ((smba_en_hi << 8) | smba_en_lo) & 0xffe0;
+	}
+
+	if (!smb_en_status) {
 		dev_err(&PIIX4_dev->dev,
 			"Host SMBus controller not enabled!\n");
 		return -ENODEV;
 	}
 
-	piix4_smba = ((smba_en_hi << 8) | smba_en_lo) & 0xffe0;
 	if (acpi_check_region(piix4_smba, SMBIOSIZE, piix4_driver.name))
 		return -ENODEV;
 



  parent reply	other threads:[~2014-02-04 21:11 UTC|newest]

Thread overview: 142+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-02-04 21:09 [PATCH 3.13 000/140] 3.13.2-stable review Greg Kroah-Hartman
2014-02-04 21:09 ` [PATCH 3.13 001/140] e752x_edac: Fix pci_dev usage count Greg Kroah-Hartman
2014-02-04 21:09 ` [PATCH 3.13 002/140] mm/mempolicy.c: fix mempolicy printing in numa_maps Greg Kroah-Hartman
2014-02-04 21:09 ` [PATCH 3.13 003/140] x86, x32: Correct invalid use of user timespec in the kernel Greg Kroah-Hartman
2014-02-04 21:09 ` [PATCH 3.13 004/140] xen/pci: Fix build on non-x86 Greg Kroah-Hartman
2014-02-04 21:09 ` [PATCH 3.13 005/140] x86/efi: Fix off-by-one bug in EFI Boot Services reservation Greg Kroah-Hartman
2014-02-04 21:09 ` [PATCH 3.13 006/140] x86: Add check for number of available vectors before CPU down Greg Kroah-Hartman
2014-02-04 21:09 ` [PATCH 3.13 007/140] KVM: x86: limit PIT timer frequency Greg Kroah-Hartman
2014-02-04 21:09 ` [PATCH 3.13 008/140] x86, kvm: cache the base of the KVM cpuid leaves Greg Kroah-Hartman
2014-02-04 21:09 ` [PATCH 3.13 009/140] x86, kvm: correctly access the KVM_CPUID_FEATURES leaf at 0x40000101 Greg Kroah-Hartman
2014-02-04 21:09 ` [PATCH 3.13 010/140] usb: chipidea: add freescale imx28 special write register method Greg Kroah-Hartman
2014-02-04 21:09 ` [PATCH 3.13 011/140] usb: chipidea: imx: set CI_HDRC_IMX28_WRITE_FIX for imx28 Greg Kroah-Hartman
2014-02-04 21:09 ` [PATCH 3.13 012/140] usb: chipidea: need to mask INT_STATUS when write otgsc Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 013/140] usb: chipidea: udc: using MultO at TD as real mult value for ISO-TX Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 016/140] usb: dwc3: fix the glue drivers using the nop phy Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 018/140] usb: option: add new zte 3g modem pids to option driver Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 020/140] USB: cypress_m8: fix ring-indicator detection and reporting Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 021/140] USB: ftdi_sio: added CS5 quirk for broken smartcard readers Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 022/140] USB: Nokia 502 is an unusual device Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 023/140] usb: xhci: Check for XHCI_PLAT in xhci_cleanup_msix() Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 024/140] USB: fix race between hub_disconnect and recursively_mark_NOTATTACHED Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 025/140] usb: ehci: add freescale imx28 special write register method Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 026/140] rtlwifi: rtl8192cu: Add new device ID Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 027/140] rtlwifi: Update beacon statistics for USB driver Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 028/140] rtlwifi: rtl8192c: Prevent reconnect attempts if not connected Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 029/140] rtlwifi: rtl8192cu: Add new firmware Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 030/140] rtlwifi: Redo register save locations Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 031/140] rtlwifi: Set the link state Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 032/140] rtlwifi: rtl8192c: Add new definitions in the dm_common header Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 033/140] rtlwifi: Increase the RX queue length for USB drivers Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 034/140] rtlwifi: rtl8192c: Add routines to save/restore power index registers Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 035/140] rtlwifi: rtl8192cu: Update the " Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 036/140] rtlwifi: rtl8192cu: Fix some code in RF handling Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 037/140] rtlwifi: Add missing code to PWDB statics routine Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 038/140] rtlwifi: rtl8192c: Update dynamic gain calculations Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 039/140] rtlwifi: rtl8188ee: Fix typo in code Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 040/140] mwifiex: add missing endian conversion for fw_tsf Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 041/140] mwifiex: fix wrong 11ac bits setting in fw_cap_info Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 042/140] iwlwifi: pcie: enable oscillator for L1 exit Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 043/140] iwlwifi: mvm: fix missing cleanup in .start() error path Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 044/140] b43: Fix lockdep splat Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 045/140] b43: Fix unload oops if firmware is not available Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 046/140] b43legacy: " Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 047/140] b43: fix the wrong assignment of status.freq in b43_rx() Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 048/140] ath9k: Use correct channel for RX packets Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 049/140] ath9k: Disable cross-band FCC Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 050/140] staging/lustre/ptlrpc: Fix a crash when dereferencing NULL pointer Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 051/140] staging: r8712u: Set device type to wlan Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 052/140] staging: vt6656: [BUG] BBvUpdatePreEDThreshold Always set sensitivity on bScanning Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 053/140] staging: vt6656: CARDqGetNextTBTT correct uLowNextTBTT Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 054/140] mei: use hbm idle state to prevent spurious resets Greg Kroah-Hartman
2014-02-06 21:27   ` Paul Bolle
2014-02-06 21:39     ` Greg Kroah-Hartman
2014-02-06 21:53       ` [PATCH 3.13] mei: mei_hbm_dispatch() returns void Paul Bolle
2014-02-07  0:26         ` Winkler, Tomas
2014-02-04 21:10 ` [PATCH 3.13 055/140] tty/serial: at91: Handle shutdown more safely Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 056/140] tty/serial: at91: fix race condition in atmel_serial_remove Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 057/140] tty/serial: at91: reset rx_ring when port is shutdown Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 058/140] tty/serial: at91: disable uart timer at start of shutdown Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 059/140] ARM: at91: at91sam9g45: set default mmc pinctrl-names Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 060/140] ARM: at91: smc: bug fix in sam9_smc_cs_read() Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 061/140] hwmon: (k10temp) Add support for Kaveri CPUs Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 062/140] xhci: Avoid infinite loop when sg urb requires too many trbs Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 063/140] xhci: Set scatter-gather limit to avoid failed block writes Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 064/140] uio: fix devm_request_irq usage Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 065/140] serial: add support for 200 v3 series Titan card Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 066/140] serial: 8250: Fix initialisation of Quatech cards with the AMCC PCI chip Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 067/140] serial: 8250: enable UART_BUG_NOMSR for Tegra Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 068/140] s390/compat: fix PSW32_USER_BITS definition Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 069/140] KVM: s390: Always store status during SIGP STOP_AND_STORE_STATUS Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 070/140] KVM: s390: fix diagnose code extraction Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 071/140] KVM: s390: ioeventfd: ignore leftmost bits Greg Kroah-Hartman
2014-02-04 21:10 ` [PATCH 3.13 072/140] s390/uapi: fix struct statfs64 definition Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 073/140] parport: parport_pc: remove double PCI ID for NetMos Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 074/140] rtc-cmos: Add an alarm disable quirk Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 075/140] rtc: max8907: weekday encoding fixes Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 076/140] misc: mic: bug fix for interrupt acknowledgement in MSI/INTx case Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 077/140] pinctrl: sunxi: Honor GPIO output initial vaules Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 078/140] perf kvm: Fix kvm report without guestmount Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 079/140] mfd: max77686: Fix regmap resource leak on driver remove Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 080/140] ASoC: adau1701: Fix ADAU1701_SEROCTL_WORD_LEN_16 constant Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 081/140] ASoC: codec: tlv320aic32x4: Fix regmap range config Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 082/140] ASoC: tlv320aic32x4: Fix regmap range_min Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 083/140] ASoC: wm5110: Extend SYSCLK patch file for rev D Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 084/140] ALSA: rme9652: fix a missing comma in channel_map_9636_ds[] Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 085/140] ALSA: hda - Correct AD1986A 3stack pin configs Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 086/140] ALSA: hda - Dont create duplicated ctls for loopback paths Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 087/140] ALSA: Enable CONFIG_ZONE_DMA for smaller PCI DMA masks Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 088/140] ALSA: hda - automute via amp instead of pinctl on some AIO models Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 089/140] ALSA: hda - add headset mic detect quirks for some Dell machines Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 090/140] ALSA: bits vs bytes bug in snd_card_create() Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 092/140] ALSA: hda - add headset mic detect quirks for another Dell laptop Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 093/140] ALSA: hda/hdmi - allow PIN_OUT to be dynamically enabled Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 094/140] tpm/tpm_i2c_stm_st33: Check return code of get_burstcount Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 095/140] tpm/tpm_ppi: Do not compare strcmp(a,b) == -1 Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 096/140] ima: change the default hash algorithm to SHA1 in ima_eventdigest_ng_init() Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 097/140] ata: sata_mv: introduce compatible string "marvell, armada-370-sata" Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 098/140] ata: sata_mv: fix disk hotplug for Armada 370/XP SoCs Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 099/140] ARM: mvebu: update the SATA compatible string for Armada 370/XP Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 100/140] libata: disable LPM for some WD SATA-I devices Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 101/140] ext4: avoid clearing beyond i_blocks when truncating an inline data file Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 102/140] vfs: Remove second variable named error in __dentry_path Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 103/140] vfs: Is mounted should be testing mnt_ns for NULL or error Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 104/140] bcache: Data corruption fix Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 105/140] zram: fix race between reset and flushing pending work Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 107/140] ARM: mvebu: Add support to get the ID and the revision of a SoC Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 108/140] ARM: mvebu: Add quirk for i2c for the OpenBlocks AX3-4 board Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 109/140] i2c: mv64xxx: Fix bus hang on A0 version of the Armada XP SoCs Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 110/140] i2c: mv64xxx: Document the newly introduced Armada XP A0 compatible Greg Kroah-Hartman
2014-02-04 21:11 ` Greg Kroah-Hartman [this message]
2014-02-04 21:11 ` [PATCH 3.13 113/140] ip_tunnel: clear IPCB in ip_tunnel_xmit() in case dst_link_failure() is called Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 114/140] net/vxlan: Share RX skb de-marking and checksum checks with ovs Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 115/140] fib_frontend: fix possible NULL pointer dereference Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 116/140] net: Fix memory leak if TPROXY used with TCP early demux Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 117/140] xen-netfront: fix resource leak in netfront Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 118/140] net: gre: use icmp_hdr() to get inner ip header Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 119/140] mmc: sdhci: add quirk for broken HS200 support Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 120/140] mmc: sdhci-pci: add broken HS200 quirk for Intel Merrifield Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 121/140] mmc: sdhci: fix lockdep error in tuning routine Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 122/140] mmc: sdhci-esdhc-imx: fix access hardirq-unsafe lock in atomic context Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 123/140] alpha: fix broken network checksum Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 124/140] parisc/sti_console: prefer Linux fonts over built-in ROM fonts Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 125/140] parisc: fix cache-flushing Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 126/140] KVM: PPC: Book3S HV: use xics_wake_cpu only when defined Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 127/140] KVM: PPC: e500: Fix bad address type in deliver_tlb_misss() Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 128/140] ALSA: hda - Dont set indep_hp flag for old AD codecs Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 129/140] hpfs: remember free space Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 130/140] usb: core: get config and string descriptors for unauthorized devices Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 131/140] SCSI: bfa: Chinook quad port 16G FC HBA claim issue Greg Kroah-Hartman
2014-02-04 21:11 ` [PATCH 3.13 132/140] SCSI: qla4xxx: overflow in qla4xxx_set_chap_entry() Greg Kroah-Hartman
2014-02-04 21:12 ` [PATCH 3.13 133/140] virtio-scsi: Fix hotcpu_notifier use-after-free with virtscsi_freeze Greg Kroah-Hartman
2014-02-04 21:12 ` [PATCH 3.13 134/140] iscsi-target: Pre-allocate more tags to avoid ack starvation Greg Kroah-Hartman
2014-02-04 21:12 ` [PATCH 3.13 135/140] target/iscsi: Fix network portal creation race Greg Kroah-Hartman
2014-02-04 21:12 ` [PATCH 3.13 136/140] Btrfs: handle EAGAIN case properly in btrfs_drop_snapshot() Greg Kroah-Hartman
2014-02-04 21:12 ` [PATCH 3.13 137/140] Btrfs: setup inode location during btrfs_init_inode_locked Greg Kroah-Hartman
2014-02-04 21:12 ` [PATCH 3.13 138/140] btrfs: restrict snapshotting to own subvolumes Greg Kroah-Hartman
2014-02-04 21:12 ` [PATCH 3.13 139/140] powerpc: Fix the setup of CPU-to-Node mappings during CPU online Greg Kroah-Hartman
2014-02-04 21:12 ` [PATCH 3.13 140/140] powerpc: Make sure "cache" directory is removed when offlining cpu Greg Kroah-Hartman
2014-02-05  6:41 ` [PATCH 3.13 000/140] 3.13.2-stable review Guenter Roeck
2014-02-05 17:37   ` Greg Kroah-Hartman
2014-02-05 20:41 ` Shuah Khan
2014-02-05 22:27   ` 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=20140204211040.145270037@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=khali@linux-fr.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=shane.huang@amd.com \
    --cc=stable@vger.kernel.org \
    --cc=wsa@the-dreams.de \
    /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).