From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
stable@vger.kernel.org, Alex Deucher <alexander.deucher@amd.com>
Subject: [PATCH 3.16 017/357] drm/radeon/dpm: handle voltage info fetching on hawaii
Date: Fri, 3 Oct 2014 14:26:43 -0700 [thread overview]
Message-ID: <20141003212933.988025254@linuxfoundation.org> (raw)
In-Reply-To: <20141003212933.458851516@linuxfoundation.org>
3.16-stable review patch. If anyone has any objections, please let me know.
------------------
From: Alex Deucher <alexander.deucher@amd.com>
commit 6b57f20cb5b708415fbab63847f8f8429b051af8 upstream.
Some hawaii cards use a different method to fetch the
voltage info from the vbios.
bug:
https://bugs.freedesktop.org/show_bug.cgi?id=74250
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/gpu/drm/radeon/ci_dpm.c | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)
--- a/drivers/gpu/drm/radeon/ci_dpm.c
+++ b/drivers/gpu/drm/radeon/ci_dpm.c
@@ -940,7 +940,18 @@ static void ci_get_leakage_voltages(stru
pi->vddc_leakage.count = 0;
pi->vddci_leakage.count = 0;
- if (radeon_atom_get_leakage_id_from_vbios(rdev, &leakage_id) == 0) {
+ if (rdev->pm.dpm.platform_caps & ATOM_PP_PLATFORM_CAP_EVV) {
+ for (i = 0; i < CISLANDS_MAX_LEAKAGE_COUNT; i++) {
+ virtual_voltage_id = ATOM_VIRTUAL_VOLTAGE_ID0 + i;
+ if (radeon_atom_get_voltage_evv(rdev, virtual_voltage_id, &vddc) != 0)
+ continue;
+ if (vddc != 0 && vddc != virtual_voltage_id) {
+ pi->vddc_leakage.actual_voltage[pi->vddc_leakage.count] = vddc;
+ pi->vddc_leakage.leakage_id[pi->vddc_leakage.count] = virtual_voltage_id;
+ pi->vddc_leakage.count++;
+ }
+ }
+ } else if (radeon_atom_get_leakage_id_from_vbios(rdev, &leakage_id) == 0) {
for (i = 0; i < CISLANDS_MAX_LEAKAGE_COUNT; i++) {
virtual_voltage_id = ATOM_VIRTUAL_VOLTAGE_ID0 + i;
if (radeon_atom_get_leakage_vddc_based_on_leakage_params(rdev, &vddc, &vddci,
next prev parent reply other threads:[~2014-10-03 21:26 UTC|newest]
Thread overview: 329+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-03 21:26 [PATCH 3.16 000/357] 3.16.4-stable review Greg Kroah-Hartman
2014-10-03 21:26 ` [PATCH 3.16 001/357] module: Clean up ro/nx after early module load failures Greg Kroah-Hartman
2014-10-03 21:26 ` [PATCH 3.16 002/357] cpufreq: OPP: Avoid sleeping while atomic Greg Kroah-Hartman
2014-10-03 21:26 ` [PATCH 3.16 003/357] carl9170: fix sending URBs with wrong type when using full-speed Greg Kroah-Hartman
2014-10-03 21:26 ` [PATCH 3.16 004/357] drm/tegra: add MODULE_DEVICE_TABLEs Greg Kroah-Hartman
2014-10-03 21:26 ` [PATCH 3.16 012/357] drm/ttm: Fix possible division by 0 in ttm_dma_pool_shrink_scan() Greg Kroah-Hartman
2014-10-03 21:26 ` [PATCH 3.16 013/357] drm/ttm: Choose a pool to shrink correctly " Greg Kroah-Hartman
2014-10-03 21:26 ` [PATCH 3.16 014/357] drm/ttm: Use mutex_trylock() to avoid deadlock inside shrinker functions Greg Kroah-Hartman
2014-10-03 21:26 ` [PATCH 3.16 015/357] drm/ttm: Fix possible stack overflow by recursive shrinker calls Greg Kroah-Hartman
2014-10-03 21:26 ` [PATCH 3.16 016/357] drm/ttm: Pass GFP flags in order to avoid deadlock Greg Kroah-Hartman
2014-10-03 21:26 ` Greg Kroah-Hartman [this message]
2014-10-03 21:26 ` [PATCH 3.16 018/357] drm/radeon: re-enable dpm by default on cayman Greg Kroah-Hartman
2014-10-03 21:26 ` [PATCH 3.16 019/357] drm/radeon: re-enable dpm by default on BTC Greg Kroah-Hartman
2014-10-03 21:26 ` [PATCH 3.16 020/357] drm/radeon: load the lm63 driver for an lm64 thermal chip Greg Kroah-Hartman
2014-10-03 21:26 ` [PATCH 3.16 022/357] drm/radeon/atom: add new voltage fetch function for hawaii Greg Kroah-Hartman
2014-10-03 21:26 ` [PATCH 3.16 023/357] drm/radeon: tweak ACCEL_WORKING2 query " Greg Kroah-Hartman
2014-10-03 21:26 ` [PATCH 3.16 024/357] drm/i915: Fix crash when failing to parse MIPI VBT Greg Kroah-Hartman
2014-10-03 21:26 ` [PATCH 3.16 025/357] drm/i915: read HEAD register back in init_ring_common() to enforce ordering Greg Kroah-Hartman
2014-10-03 21:26 ` [PATCH 3.16 026/357] drm/i915: Disable RCS flips on Ivybridge Greg Kroah-Hartman
2014-10-03 21:26 ` [PATCH 3.16 027/357] of: Allow mem_reserve of memory with a base address of zero Greg Kroah-Hartman
2014-10-03 21:26 ` [PATCH 3.16 028/357] of/irq: Fix lookup to use interrupts-extended property first Greg Kroah-Hartman
2014-10-03 21:26 ` [PATCH 3.16 029/357] libata: widen Crucial M550 blacklist matching Greg Kroah-Hartman
2014-10-03 21:26 ` [PATCH 3.16 030/357] pata_scc: propagate return value of scc_wait_after_reset Greg Kroah-Hartman
2014-10-03 21:26 ` [PATCH 3.16 031/357] ahci: Add Device IDs for Intel 9 Series PCH Greg Kroah-Hartman
2014-10-03 21:26 ` [PATCH 3.16 032/357] ahci: add pcid for Marvel 0x9182 controller Greg Kroah-Hartman
2014-10-03 21:26 ` [PATCH 3.16 033/357] pwm: Fix period and polarity in pwm_get() for non-perfect matches Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 034/357] ibmveth: Fix endian issues with rx_no_buffer statistic Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 035/357] aio: fix reqs_available handling Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 036/357] aio: add missing smp_rmb() in read_events_ring Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 037/357] ARM: imx: fix TLB missing of IOMUXC base address during suspend Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 038/357] ARM: dts: vf610-twr: Fix pinctrl_esdhc1 pin definitions Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 040/357] arm64: flush TLS registers during exec Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 041/357] arm64: use irq_set_affinity with force=false when migrating irqs Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 042/357] arm/arm64: KVM: Complete WFI/WFE instructions Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 043/357] ARM/ARM64: KVM: Nuke Hyp-mode tlbs before enabling MMU Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 044/357] i2c: rk3x: fix bug that cause transfer fails in master receive mode Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 045/357] i2c: mv64xxx: continue probe when clock-frequency is missing Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 046/357] i2c: at91: add bound checking on SMBus block length bytes Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 047/357] i2c: at91: Fix a race condition during signal handling in at91_do_twi_xfer Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 048/357] Revert "i2c: rcar: remove spinlock" Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 049/357] i2c: rcar: fix MNR interrupt handling Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 050/357] i2c: rcar: fix RCAR_IRQ_ACK_{RECV|SEND} Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 051/357] i2c: rk3x: fix divisor calculation for SCL frequency Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 052/357] i2c: ismt: use correct length when copy buffer Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 053/357] ftrace: Use current addr when converting to nop in __ftrace_replace_code() Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 054/357] trace: Fix epoll hang when we race with new entries Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 055/357] arm64: ptrace: fix compat hardware watchpoint reporting Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 056/357] ALSA: core: fix buffer overflow in snd_info_get_line() Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 057/357] ALSA: dice: fix wrong channel mappping at higher sampling rate Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 058/357] ALSA: firewire-lib/dice: add arrangements of PCM pointer and interrupts for Dice quirk Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 059/357] ALSA: hda - Fix digital mic on Acer Aspire 3830TG Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 060/357] ALSA: hda - Fix COEF setups for ALC1150 codec Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 061/357] ALSA: hda - Fix invalid pin powermap without jack detection Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 062/357] ALSA: hda - Add fixup model name lookup for Lemote A1205 Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 063/357] ALSA: pcm: fix fifo_size frame calculation Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 064/357] cfq-iosched: Fix wrong children_weight calculation Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 065/357] HID: picolcd: sanity check report size in raw_event() callback Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 066/357] HID: magicmouse: " Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 067/357] HID: logitech-dj: prevent false errors to be shown Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 068/357] xattr: fix check for simultaneous glibc header inclusion Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 073/357] drm/i915: Ignore VBT backlight presence check on Acer C720 (4005U) Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 074/357] drm/i915: Remove bogus __init annotation from DMI callbacks Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 076/357] drm/i915: Fix EIO/wedged handling in gem fault handler Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 078/357] drm/i915/hdmi: fix hdmi audio state readout Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 079/357] drm/i915: Dont leak command parser tables on suspend/resume Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 080/357] drm/ast: open key before detect chips Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 081/357] drm/ast: AST2000 cannot be detected correctly Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 082/357] imx-drm: ipuv3-plane: fix ipu_plane_dpms() Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 083/357] imx-drm: imx-ldb: fix NULL pointer in imx_ldb_unbind() Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 084/357] drm/vmwgfx: Fix a potential infinite spin waiting for fifo idle Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 086/357] drm/radeon: Add missing lines to ci_set_thermal_temperature_range Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 087/357] drm/radeon/dpm: select the appropriate vce power state for KV/KB/ML Greg Kroah-Hartman
2014-10-03 21:27 ` [PATCH 3.16 092/357] drm/radeon: handle broken disabled rb mask gracefully (6xx/7xx) (v2) Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 094/357] drm/radeon/dpm: set the thermal type properly for special configs Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 095/357] drm/radeon: add connector quirk for fujitsu board Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 099/357] drm/radeon/dpm: fix resume on mullins Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 101/357] xtensa: replace IOCTL code definitions with constants Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 102/357] xtensa: fix address checks in dma_{alloc,free}_coherent Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 103/357] xtensa: fix access to THREAD_RA/THREAD_SP/THREAD_DS Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 104/357] xtensa: fix TLBTEMP_BASE_2 region handling in fast_second_level_miss Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 105/357] xtensa: fix a6 and a7 handling in fast_syscall_xtensa Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 106/357] locks: pass correct "before" pointer to locks_unlink_lock in generic_add_lease Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 107/357] ufs: fix deadlocks introduced by sb mutex merge Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 108/357] usb: gadget: f_rndis: fix interface id for OS descriptors Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 109/357] USB: serial: pl2303: add device id for ztek device Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 110/357] USB: serial: fix potential stack buffer overflow Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 111/357] USB: sisusb: add device id for Magic Control USB video Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 112/357] USB: serial: fix potential heap buffer overflow Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 113/357] USB: option: reduce interrupt-urb logging verbosity Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 114/357] USB: option: add VIA Telecom CDS7 chipset device id Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 115/357] Revert "USB: option,zte_ev: move most ZTE CDMA devices to zte_ev" Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 116/357] USB: zte_ev: remove duplicate Gobi PID Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 117/357] USB: zte_ev: remove duplicate Qualcom PID Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 120/357] usb: phy: tegra: Avoid use of sizeof(void) Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 121/357] usb: phy: twl4030-usb: Fix lost interrupts after ID pin goes down Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 122/357] usb: phy: twl4030-usb: Fix regressions to runtime PM on omaps Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 123/357] usb: chipidea: msm: Use USB PHY API to control PHY state Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 124/357] usb: chipidea: msm: Initialize PHY on reset event Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 125/357] USB: ftdi_sio: Add support for GE Healthcare Nemo Tracker device Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 126/357] USB: ftdi_sio: add support for NOVITUS Bono E thermal printer Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 127/357] USB: zte_ev: fix removed PIDs Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 128/357] uwb: init beacon cache entry before registering uwb device Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 129/357] usb: host: xhci: fix compliance mode workaround Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 130/357] xhci: Fix null pointer dereference if xhci initialization fails Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 131/357] usb: xhci: Fix OOPS in xhci error handling code Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 132/357] xhci: fix oops when xhci resumes from hibernate with hw lpm capable devices Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 133/357] usb: hub: take hub->hdev reference when processing from eventlist Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 134/357] USB: document the u flag for usb-storage quirks parameter Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 135/357] storage: Add single-LUN quirk for Jaz USB Adapter Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 136/357] USB: storage: Add quirk for Adaptec USBConnect 2000 USB-to-SCSI Adapter Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 137/357] USB: storage: Add quirk for Ariston Technologies iConnect USB to SCSI adapter Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 138/357] USB: storage: Add quirks for Entrega/Xircom USB to SCSI converters Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 139/357] USB: EHCI: unlink QHs even after the controller has stopped Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 140/357] usb: dwc3: core: fix order of PM runtime calls Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 141/357] usb: dwc3: core: fix ordering for PHY suspend Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 142/357] usb: dwc3: omap: fix ordering for runtime pm calls Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 143/357] usb: dwc2/gadget: fix phy disable sequence Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 144/357] usb: dwc2/gadget: fix phy initialization sequence Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 145/357] usb: dwc2/gadget: break infinite loop in endpoint disable code Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 146/357] usb: dwc2/gadget: do not call disconnect method in pullup Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 147/357] usb: dwc2/gadget: delay enabling irq once hardware is configured properly Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 148/357] usb: dwc2/gadget: avoid disabling ep0 Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 149/357] ACPI / RTC: Fix CMOS RTC opregion handler accesses to wrong addresses Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 150/357] ACPI / LPSS: complete PM entries for LPSS power domain Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 152/357] iommu/vt-d: Check return value of acpi_bus_get_device() Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.16 153/357] iommu/fsl: Fix warning resulting from adding PCI device twice Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 154/357] iommu/arm-smmu: fix programming of SMMU_CBn_TCR for stage 1 Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 155/357] nfsd4: fix rd_dircount enforcement Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 157/357] NFSv4: nfs4_state_manager() vs. nfs_server_remove_lists() Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 158/357] NFSv4: Fix another bug in the close/open_downgrade code Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 159/357] nfsd4: fix corruption of NFSv4 read data Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 160/357] nfs: move nfs_pgio_data and remove nfs_rw_header Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 161/357] nfs: rename members of nfs_pgio_data Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 162/357] nfs: merge nfs_pgio_data into _header Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 163/357] nfs: remove pgio_header refcount, related cleanup Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 164/357] nfs: check wait_on_bit_lock err in page_group_lock Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 165/357] pnfs: add pnfs_put_lseg_async Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 166/357] nfs: clear_request_commit while holding i_lock Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 167/357] nfs: change nfs_page_group_lock argument Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 168/357] nfs: fix nonblocking calls to nfs_page_group_lock Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 169/357] nfs: use blocking page_group_lock in add_request Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 170/357] nfs: fix error handling in lock_and_join_requests Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 171/357] nfs: dont sleep with inode lock " Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 174/357] spi/omap-mcspi: Fix the spi task hangs waiting dma_rx Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 175/357] spi: dw: fix kernel crash due to NULL pointer dereference Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 176/357] spi: dw-pci: fix bug when regs left uninitialized Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 177/357] ARM: 8128/1: abort: dont clear the exclusive monitors Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 178/357] ARM: 8129/1: errata: work around Cortex-A15 erratum 830321 using dummy strex Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 179/357] ARM: dts: imx53-qsrb: Fix suspend/resume Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 180/357] ARM: DRA7: hwmod: Add dra74x and dra72x specific ocp interface lists Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 181/357] ARM: dts: DRA7: fix interrupt-cells for GPIO Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 182/357] ARM: edma: Fix configuration parsing for SoCs with multiple eDMA3 CC Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 183/357] ARM: dts: dra7-evm: Fix spi1 mux documentation Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 184/357] ARM: 8133/1: use irq_set_affinity with force=false when migrating irqs Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 185/357] ARM: 8148/1: flush TLS and thumbee register state during exec Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 186/357] ARM: 8149/1: perf: Dont sleep while atomic when enabling per-cpu interrupts Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 187/357] ARM: dts: dra7-evm: Fix NAND GPMC timings Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 188/357] ARM: DT: imx53: fix lvds channel 1 port Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 189/357] ARM: imx: fix .is_enabled() of shared gate clock Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 190/357] ARM: 8165/1: alignment: dont break misaligned NEON load/store Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 191/357] ARM: 8178/1: fix set_tls for !CONFIG_KUSER_HELPERS Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 192/357] MIPS: ZBOOT: add missing <linux/string.h> include Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 193/357] MIPS: Fix MFC1 & MFHC1 emulation for 64-bit MIPS systems Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 194/357] MIPS: mcount: Adjust stack pointer for static trace in MIPS32 Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 195/357] ACPICA: Update to GPIO region handler interface Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 196/357] gpio / ACPI: Use pin index and bit length Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 197/357] ACPI / platform / LPSS: disable async suspend/resume of LPSS devices Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 198/357] ACPI / hotplug: Generate online uevents for ACPI containers Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 199/357] ACPI / scan: Correct error return value of create_modalias() Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 200/357] ACPI / video: disable native backlight for ThinkPad X201s Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 201/357] arm64: Add brackets around user_stack_pointer() Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 202/357] memblock, memhotplug: fix wrong type in memblock_find_in_range_node() Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 203/357] regmap: Fix regcache debugfs initialization Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 204/357] regmap: Fix handling of volatile registers for format_write() chips Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 205/357] regmap: Dont attempt block writes when syncing cache on single_rw devices Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 206/357] cgroup: reject cgroup names with \n Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 208/357] cgroup: fix unbalanced locking Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 209/357] KVM: s390: Fix user triggerable bug in dead code Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 210/357] KVM: s390/mm: try a cow on read only pages for key ops Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 211/357] KVM: s390/mm: Fix storage key corruption during swapping Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 212/357] KVM: s390/mm: Fix guest storage key corruption in ptep_set_access_flags Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.16 213/357] xen/manage: Always freeze/thaw processes when suspend/resuming Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 214/357] x86/xen: dont copy bogus duplicate entries into kernel page tables Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 215/357] x86 early_ioremap: Increase FIX_BTMAPS_SLOTS to 8 Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 216/357] x86/kaslr: Avoid the setup_data area when picking location Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 217/357] shmem: fix nlink for rename overwrite directory Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 218/357] ASoC: davinci-mcasp: Correct rx format unit configuration Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 219/357] SMB3: Fix oops when creating symlinks on smb3 Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 220/357] iio:trigger: modify return value for iio_trigger_get Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 221/357] iio: accel: bma180: Fix indio_dev->trig assignment Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 222/357] iio: hid_sensor_hub: " Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 223/357] iio: gyro: itg3200: " Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 224/357] iio: inv_mpu6050: " Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 225/357] iio: meter: ade7758: " Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 226/357] iio: st_sensors: " Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 227/357] iio: adc: ad_sigma_delta: " Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 228/357] iio:magnetometer: bugfix magnetometers gain values Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 229/357] iio:inkern: fix overwritten -EPROBE_DEFER in of_iio_channel_get_by_name Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 230/357] iio: adc: xilinx-xadc: assign auxiliary channels address correctly Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 231/357] iio: adc: at91: dont use the last converted data register Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 232/357] Target/iser: Get isert_conn reference once got to connected_handler Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 233/357] Target/iser: Dont put isert_conn inside disconnected handler Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 234/357] target: Fix inverted logic in SE_DEV_ALUA_SUPPORT_STATE_STORE Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 235/357] iscsi-target: avoid NULL pointer in iscsi_copy_param_list failure Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 236/357] iscsi-target: Fix memory corruption in iscsit_logout_post_handler_diffcid Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 237/357] NFC: microread: Potential overflows in microread_target_discovered() Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 238/357] SCSI: libiscsi: fix potential buffer overrun in __iscsi_conn_send_pdu Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 239/357] Revert "iwlwifi: dvm: dont enable CTS to self" Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 240/357] iwlwifi: mvm: fix endianity issues with Smart Fifo commands Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 241/357] iwlwifi: increase DEFAULT_MAX_TX_POWER Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 242/357] iwlwifi: mvm: treat EAPOLs like mgmt frames wrt rate Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 243/357] iwlwifi: mvm: set MAC_FILTER_IN_BEACON correctly for STA/P2P client Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 244/357] workqueue: apply __WQ_ORDERED to create_singlethread_workqueue() Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 245/357] futex: Unlock hb->lock in futex_wait_requeue_pi() error path Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 246/357] block: Fix dev_t minor allocation lifetime Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 247/357] dm cache: fix race causing dirty blocks to be marked as clean Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 248/357] dm crypt: fix access beyond the end of allocated space Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 249/357] Input: serport - add compat handling for SPIOCSTYPE ioctl Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 250/357] Input: synaptics - add support for ForcePads Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 252/357] Input: atkbd - do not try deactivate keyboard on any LG laptops Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 253/357] Input: i8042 - add Fujitsu U574 to no_timeout dmi table Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 254/357] Input: i8042 - add nomux quirk for Avatar AVIU-145A6 Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 255/357] hwmon: (ds1621) Update zbits after conversion rate change Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 256/357] ata_piix: Add Device IDs for Intel 9 Series PCH Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 257/357] gpio: Fix potential NULL handler data in chained irqchip handler Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 258/357] percpu: free percpu allocation info for uniprocessor system Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 259/357] percpu: fix pcpu_alloc_pages() failure path Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 260/357] percpu: perform tlb flush after pcpu_map_pages() failure Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 261/357] regulatory: add NUL to alpha2 Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 262/357] rtlwifi: rtl8192cu: Add new ID Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 263/357] lockd: fix rpcbind crash on lockd startup failure Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 264/357] lockdep: Revert lockdep check in raw_seqcount_begin() Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 265/357] genhd: fix leftover might_sleep() in blk_free_devt() Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 266/357] usb: dwc3: fix TRB completion when multiple TRBs are started Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 267/357] ftrace: Allow ftrace_ops to use the hashes from other ops Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 268/357] ftrace: Fix function_profiler and function tracer together Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 269/357] ftrace: Update all ftrace_ops for a ftrace_hash_ops update Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 270/357] Revert "mac80211: disable uAPSD if all ACs are under ACM" Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 271/357] kernel/printk/printk.c: fix faulty logic in the case of recursive printk Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.16 273/357] kcmp: fix standard comparison bug Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 274/357] fsnotify/fdinfo: use named constants instead of hardcoded values Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 275/357] fs/notify: dont show f_handle if exportfs_encode_inode_fh failed Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 276/357] nilfs2: fix data loss with mmap() Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 277/357] ocfs2/dlm: do not get resource spinlock if lockres is new Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 278/357] mm, slab: initialize object alignment on cache creation Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 279/357] fs/cachefiles: add missing \n to kerror conversions Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 280/357] mm: softdirty: keep bit when zapping file pte Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 281/357] sched: Fix unreleased llc_shared_mask bit during CPU hotplug Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 282/357] brcmfmac: handle IF event for P2P_DEVICE interface Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 283/357] ath9k_htc: fix random decryption failure Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 284/357] powerpc/perf: Fix ABIv2 kernel backtraces Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 285/357] powerpc: Add smp_mb() to arch_spin_is_locked() Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 286/357] powerpc: Add smp_mb()s to arch_spin_unlock_wait() Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 287/357] tty/serial: at91: BUG: disable interrupts when !UART_ENABLE_MS() Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 288/357] dont bugger nd->seq on set_root_rcu() from follow_dotdot_rcu() Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 289/357] parisc: Implement new LWS CAS supporting 64 bit operations Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 290/357] parisc: Only use -mfast-indirect-calls option for 32-bit kernel builds Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 291/357] alarmtimer: Return relative times in timer_gettime Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 292/357] alarmtimer: Do not signal SIGEV_NONE timers Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 293/357] alarmtimer: Lock k_itimer during timer callback Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 294/357] virtio: rng: delay hwrng_register() till driver is ready Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 295/357] Revert "hwrng: virtio - ensure reads happen after successful probe" Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 296/357] GFS2: fix d_splice_alias() misuses Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 297/357] IB/qib: Correct reference counting in debugfs qp_stats Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 298/357] IB/mlx4: Avoid null pointer dereference in mlx4_ib_scan_netdevs() Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 299/357] IB/mlx4: Dont duplicate the default RoCE GID Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 300/357] IB/core: When marshaling uverbs path, clear unused fields Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 301/357] spi: fsl: Dont use devm_kzalloc in master->setup callback Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 302/357] spi: dw: " Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 303/357] spi: sirf: enable RX_IO_DMA_INT interrupt Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 305/357] perf: Fix a race condition in perf_remove_from_context() Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 307/357] PCI: Add pci_ignore_hotplug() to ignore hotplug events for a device Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 308/357] Revert "PCI: Dont scan random busses in pci_scan_bridge()" Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 312/357] Fix nasty 32-bit overflow bug in buffer i/o code Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 313/357] blk-mq: Avoid race condition with uninitialized requests Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 314/357] crypto: ccp - Check for CCP before registering crypto algs Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 315/357] nl80211: clear skb cb before passing to netlink Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 316/357] Revert "PCI: Make sure bus number resources stay within their parents bounds" Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 317/357] cpufreq: release policy->rwsem on error Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 318/357] cpufreq: fix cpufreq suspend/resume for intel_pstate Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 319/357] media: it913x: init tuner on attach Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 320/357] media: af9035: new IDs: add support for PCTV 78e and PCTV 79e Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 321/357] media: af9033: feed clock to RF tuner Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 322/357] media: cx18: fix kernel oops with tda8290 tuner Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 323/357] media: af9033: update IT9135 tuner inittabs Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 324/357] media: adv7604: fix inverted condition Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 325/357] media: em28xx: fix VBI handling logic Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 326/357] media: videobuf2-dma-sg: fix for wrong GFP mask to sg_alloc_table_from_pages Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 327/357] media: vb2: fix vb2 state check when start_streaming fails Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 328/357] media: vb2: fix plane index sanity check in vb2_plane_cookie() Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 329/357] md/raid1: clean up request counts properly in close_sync() Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 330/357] md/raid1: be more cautious where we read-balance during resync Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 331/357] md/raid1: make sure resync waits for conflicting writes to complete Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 332/357] md/raid1: Dont use next_resync to determine how far resync has progressed Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.16 333/357] md/raid1: update next_resync under resync_lock Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.16 334/357] md/raid1: count resync requests in nr_pending Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.16 335/357] md/raid1: fix_read_error should act on all non-faulty devices Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.16 336/357] md/raid1: intialise start_next_window for READ case to avoid hang Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.16 337/357] netfilter: xt_hashlimit: perform garbage collection from process context Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.16 338/357] ipvs: Maintain all DSCP and ECN bits for ipv6 tun forwarding Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.16 339/357] netfilter: x_tables: allow to use default cgroup match Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.16 340/357] ipvs: fix ipv6 hook registration for local replies Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.16 341/357] netfilter: nf_tables: dont update chain with unset counters Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.16 342/357] mmc: mmci: Reverse IRQ handling for the arm_variant Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.16 343/357] dmaengine: dw: introduce dwc_dostart_first_queued() helper Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.16 344/357] dmaengine: dw: dont perform DMA when dmaengine_submit is called Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.16 345/357] partitions: aix.c: off by one bug Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.16 346/357] cpufreq: update cpufreq_suspended after stopping governors Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.16 347/357] clk: ti: dra7-atl: Provide error check for incoming parameters in set_rate Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.16 348/357] clk: prevent erronous parsing of children during rate change Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.16 349/357] clk: ti: divider: Provide error check for incoming parameters in set_rate Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.16 350/357] ahci_xgene: Removing NCQ support from the APM X-Gene SoC AHCI SATA Host Controller driver Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.16 351/357] aio: block exit_aio() until all context requests are completed Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.16 352/357] ext4: propagate errors up to ext4_find_entry()s callers Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.16 353/357] ext4: avoid trying to kfree an ERR_PTR pointer Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.16 354/357] staging/lustre: disable virtual block device for 64K pages Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.16 355/357] clk: qcom: Fix MN frequency tables, parent map, and jpegd Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.16 356/357] clk: qcom: mdp_lut_clk is a child of mdp_src Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.16 357/357] clk: qcom: Fix PLL rate configurations Greg Kroah-Hartman
2014-10-04 0:33 ` [PATCH 3.16 000/357] 3.16.4-stable review Shuah Khan
2014-10-04 1:42 ` Greg Kroah-Hartman
2014-10-04 3:18 ` Guenter Roeck
2014-10-05 20:37 ` Greg Kroah-Hartman
2014-10-04 8:23 ` Satoru Takeuchi
2014-10-05 20:38 ` Greg Kroah-Hartman
2014-10-04 12:38 ` Chuck Ebbert
2014-10-05 20:39 ` Greg Kroah-Hartman
2014-10-05 20:50 ` Chuck Ebbert
2014-10-05 21:47 ` 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=20141003212933.988025254@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=alexander.deucher@amd.com \
--cc=linux-kernel@vger.kernel.org \
--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).