From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
stable@vger.kernel.org, Prarit Bhargava <prarit@redhat.com>,
Viresh Kumar <viresh.kumar@linaro.org>,
"Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
Subject: [PATCH 3.14 210/238] cpufreq: release policy->rwsem on error
Date: Fri, 3 Oct 2014 14:32:05 -0700 [thread overview]
Message-ID: <20141003212920.379428374@linuxfoundation.org> (raw)
In-Reply-To: <20141003212913.680985295@linuxfoundation.org>
3.14-stable review patch. If anyone has any objections, please let me know.
------------------
From: Prarit Bhargava <prarit@redhat.com>
commit 7106e02baed4a72fb23de56b02ad4d31daa74d95 upstream.
While debugging a cpufreq-related hardware failure on a system I saw the
following lockdep warning:
=========================
[ BUG: held lock freed! ] 3.17.0-rc4+ #1 Tainted: G E
-------------------------
insmod/2247 is freeing memory ffff88006e1b1400-ffff88006e1b17ff, with a lock still held there!
(&policy->rwsem){+.+...}, at: [<ffffffff8156d37d>] __cpufreq_add_dev.isra.21+0x47d/0xb80
3 locks held by insmod/2247:
#0: (subsys mutex#5){+.+.+.}, at: [<ffffffff81485579>] subsys_interface_register+0x69/0x120
#1: (cpufreq_rwsem){.+.+.+}, at: [<ffffffff8156cf73>] __cpufreq_add_dev.isra.21+0x73/0xb80
#2: (&policy->rwsem){+.+...}, at: [<ffffffff8156d37d>] __cpufreq_add_dev.isra.21+0x47d/0xb80
stack backtrace:
CPU: 0 PID: 2247 Comm: insmod Tainted: G E 3.17.0-rc4+ #1
Hardware name: HP ProLiant MicroServer Gen8, BIOS J06 08/24/2013
0000000000000000 000000008f3063c4 ffff88006f87bb30 ffffffff8171b358
ffff88006bcf3750 ffff88006f87bb68 ffffffff810e09e1 ffff88006e1b1400
ffffea0001b86c00 ffffffff8156d327 ffff880073003500 0000000000000246
Call Trace:
[<ffffffff8171b358>] dump_stack+0x4d/0x66
[<ffffffff810e09e1>] debug_check_no_locks_freed+0x171/0x180
[<ffffffff8156d327>] ? __cpufreq_add_dev.isra.21+0x427/0xb80
[<ffffffff8121412b>] kfree+0xab/0x2b0
[<ffffffff8156d327>] __cpufreq_add_dev.isra.21+0x427/0xb80
[<ffffffff81724cf7>] ? _raw_spin_unlock+0x27/0x40
[<ffffffffa003517f>] ? pcc_cpufreq_do_osc+0x17f/0x17f [pcc_cpufreq]
[<ffffffff8156da8e>] cpufreq_add_dev+0xe/0x10
[<ffffffff814855d1>] subsys_interface_register+0xc1/0x120
[<ffffffff8156bcf2>] cpufreq_register_driver+0x112/0x340
[<ffffffff8121415a>] ? kfree+0xda/0x2b0
[<ffffffffa003517f>] ? pcc_cpufreq_do_osc+0x17f/0x17f [pcc_cpufreq]
[<ffffffffa003562e>] pcc_cpufreq_init+0x4af/0xe81 [pcc_cpufreq]
[<ffffffffa003517f>] ? pcc_cpufreq_do_osc+0x17f/0x17f [pcc_cpufreq]
[<ffffffff81002144>] do_one_initcall+0xd4/0x210
[<ffffffff811f7472>] ? __vunmap+0xd2/0x120
[<ffffffff81127155>] load_module+0x1315/0x1b70
[<ffffffff811222a0>] ? store_uevent+0x70/0x70
[<ffffffff811229d9>] ? copy_module_from_fd.isra.44+0x129/0x180
[<ffffffff81127b86>] SyS_finit_module+0xa6/0xd0
[<ffffffff81725b69>] system_call_fastpath+0x16/0x1b
cpufreq: __cpufreq_add_dev: ->get() failed
insmod: ERROR: could not insert module pcc-cpufreq.ko: No such device
The warning occurs in the __cpufreq_add_dev() code which does
down_write(&policy->rwsem);
...
if (cpufreq_driver->get && !cpufreq_driver->setpolicy) {
policy->cur = cpufreq_driver->get(policy->cpu);
if (!policy->cur) {
pr_err("%s: ->get() failed\n", __func__);
goto err_get_freq;
}
If cpufreq_driver->get(policy->cpu) returns an error we execute the
code at err_get_freq, which does not up the policy->rwsem. This causes
the lockdep warning.
Trivial patch to up the policy->rwsem in the error path.
After the patch has been applied, and an error occurs in the
cpufreq_driver->get(policy->cpu) call we will now see
cpufreq: __cpufreq_add_dev: ->get() failed
cpufreq: __cpufreq_add_dev: ->get() failed
modprobe: ERROR: could not insert 'pcc_cpufreq': No such device
Fixes: 4e97b631f24c (cpufreq: Initialize governor for a new policy under policy->rwsem)
Signed-off-by: Prarit Bhargava <prarit@redhat.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/cpufreq/cpufreq.c | 2 ++
1 file changed, 2 insertions(+)
--- a/drivers/cpufreq/cpufreq.c
+++ b/drivers/cpufreq/cpufreq.c
@@ -1225,6 +1225,8 @@ err_get_freq:
per_cpu(cpufreq_cpu_data, j) = NULL;
write_unlock_irqrestore(&cpufreq_driver_lock, flags);
+ up_write(&policy->rwsem);
+
if (cpufreq_driver->exit)
cpufreq_driver->exit(policy);
err_set_policy_cpu:
next prev parent reply other threads:[~2014-10-03 21:32 UTC|newest]
Thread overview: 218+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-03 21:28 [PATCH 3.14 000/238] 3.14.20-stable review Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.14 001/238] carl9170: fix sending URBs with wrong type when using full-speed Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.14 008/238] drm/ttm: Fix possible division by 0 in ttm_dma_pool_shrink_scan() Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.14 009/238] drm/ttm: Choose a pool to shrink correctly " Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.14 010/238] drm/ttm: Use mutex_trylock() to avoid deadlock inside shrinker functions Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.14 012/238] drm/ttm: Pass GFP flags in order to avoid deadlock Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.14 013/238] drm/radeon/dpm: handle voltage info fetching on hawaii Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.14 014/238] drm/radeon: re-enable dpm by default on cayman Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.14 015/238] drm/radeon: re-enable dpm by default on BTC Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.14 016/238] drm/radeon: load the lm63 driver for an lm64 thermal chip Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.14 018/238] drm/radeon/atom: add new voltage fetch function for hawaii Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.14 019/238] drm/radeon: tweak ACCEL_WORKING2 query " Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.14 020/238] drm/i915: read HEAD register back in init_ring_common() to enforce ordering Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.14 021/238] drm/radeon: enable bapm by default on desktop TN/RL boards Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.14 022/238] drm/radeon/TN: only enable bapm on MSI systems Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.14 023/238] of/irq: Fix lookup to use interrupts-extended property first Greg Kroah-Hartman
2014-10-03 21:28 ` [PATCH 3.14 024/238] libata: widen Crucial M550 blacklist matching Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 025/238] pata_scc: propagate return value of scc_wait_after_reset Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 026/238] ahci: Add Device IDs for Intel 9 Series PCH Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 027/238] ahci: add pcid for Marvel 0x9182 controller Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 028/238] ibmveth: Fix endian issues with rx_no_buffer statistic Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 029/238] aio: fix reqs_available handling Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 030/238] aio: add missing smp_rmb() in read_events_ring Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 031/238] arm64: flush TLS registers during exec Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 032/238] arm64: use irq_set_affinity with force=false when migrating irqs Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 033/238] arm/arm64: KVM: Complete WFI/WFE instructions Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 034/238] ARM/ARM64: KVM: Nuke Hyp-mode tlbs before enabling MMU Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 035/238] i2c: mv64xxx: continue probe when clock-frequency is missing Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 036/238] i2c: at91: add bound checking on SMBus block length bytes Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 037/238] i2c: at91: Fix a race condition during signal handling in at91_do_twi_xfer Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 038/238] i2c: ismt: use correct length when copy buffer Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 039/238] trace: Fix epoll hang when we race with new entries Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 040/238] arm64: ptrace: fix compat hardware watchpoint reporting Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 041/238] ALSA: core: fix buffer overflow in snd_info_get_line() Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 042/238] ALSA: hda - Fix digital mic on Acer Aspire 3830TG Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 043/238] ALSA: hda - Fix COEF setups for ALC1150 codec Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 044/238] ALSA: hda - Fix invalid pin powermap without jack detection Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 045/238] ALSA: pcm: fix fifo_size frame calculation Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 046/238] cfq-iosched: Fix wrong children_weight calculation Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 047/238] HID: picolcd: sanity check report size in raw_event() callback Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 048/238] HID: magicmouse: " Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 049/238] HID: logitech-dj: prevent false errors to be shown Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 050/238] xattr: fix check for simultaneous glibc header inclusion Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 051/238] drm/i915: Remove bogus __init annotation from DMI callbacks Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 052/238] drm/i915: Fix EIO/wedged handling in gem fault handler Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 054/238] drm/ast: AST2000 cannot be detected correctly Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 055/238] imx-drm: ipuv3-plane: fix ipu_plane_dpms() Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 056/238] drm/vmwgfx: Fix a potential infinite spin waiting for fifo idle Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 058/238] drm/radeon: Add missing lines to ci_set_thermal_temperature_range Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 061/238] drm/radeon/dpm: set the thermal type properly for special configs Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 062/238] drm/radeon: add connector quirk for fujitsu board Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 067/238] xtensa: replace IOCTL code definitions with constants Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 068/238] xtensa: fix address checks in dma_{alloc,free}_coherent Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 069/238] xtensa: fix access to THREAD_RA/THREAD_SP/THREAD_DS Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 070/238] xtensa: fix TLBTEMP_BASE_2 region handling in fast_second_level_miss Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 071/238] xtensa: fix a6 and a7 handling in fast_syscall_xtensa Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 072/238] USB: serial: pl2303: add device id for ztek device Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 073/238] USB: serial: fix potential stack buffer overflow Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 074/238] USB: sisusb: add device id for Magic Control USB video Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 075/238] USB: serial: fix potential heap buffer overflow Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 076/238] USB: option: reduce interrupt-urb logging verbosity Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 078/238] Revert "USB: option,zte_ev: move most ZTE CDMA devices to zte_ev" Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 079/238] USB: zte_ev: remove duplicate Gobi PID Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 080/238] USB: zte_ev: remove duplicate Qualcom PID Greg Kroah-Hartman
2014-10-03 21:29 ` [PATCH 3.14 084/238] usb: phy: tegra: Avoid use of sizeof(void) Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 085/238] usb: phy: twl4030-usb: Fix lost interrupts after ID pin goes down Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 086/238] usb: phy: twl4030-usb: Fix regressions to runtime PM on omaps Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 087/238] usb: chipidea: msm: Use USB PHY API to control PHY state Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 088/238] usb: chipidea: msm: Initialize PHY on reset event Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 089/238] USB: ftdi_sio: Add support for GE Healthcare Nemo Tracker device Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 090/238] USB: ftdi_sio: add support for NOVITUS Bono E thermal printer Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 091/238] USB: zte_ev: fix removed PIDs Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 092/238] uwb: init beacon cache entry before registering uwb device Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 093/238] usb: host: xhci: fix compliance mode workaround Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 094/238] xhci: Fix null pointer dereference if xhci initialization fails Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 095/238] xhci: fix oops when xhci resumes from hibernate with hw lpm capable devices Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 096/238] usb: hub: take hub->hdev reference when processing from eventlist Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 097/238] storage: Add single-LUN quirk for Jaz USB Adapter Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 098/238] USB: storage: Add quirk for Adaptec USBConnect 2000 USB-to-SCSI Adapter Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 099/238] USB: storage: Add quirk for Ariston Technologies iConnect USB to SCSI adapter Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 100/238] USB: storage: Add quirks for Entrega/Xircom USB to SCSI converters Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 101/238] USB: EHCI: unlink QHs even after the controller has stopped Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 102/238] usb: dwc3: omap: fix ordering for runtime pm calls Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 103/238] ACPI / RTC: Fix CMOS RTC opregion handler accesses to wrong addresses Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 104/238] iommu/fsl: Fix warning resulting from adding PCI device twice Greg Kroah-Hartman
2014-10-04 10:21 ` Varun Sethi
2014-10-05 20:38 ` Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 105/238] iommu/arm-smmu: fix programming of SMMU_CBn_TCR for stage 1 Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 106/238] NFSv4: nfs4_state_manager() vs. nfs_server_remove_lists() Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 107/238] NFSv4: Fix another bug in the close/open_downgrade code Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 108/238] spi/omap-mcspi: Fix the spi task hangs waiting dma_rx Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 109/238] spi: dw-pci: fix bug when regs left uninitialized Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 110/238] ARM: 8128/1: abort: dont clear the exclusive monitors Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 111/238] ARM: DRA7: hwmod: Add dra74x and dra72x specific ocp interface lists Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 112/238] ARM: dts: DRA7: fix interrupt-cells for GPIO Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 113/238] ARM: dts: dra7-evm: Fix spi1 mux documentation Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 114/238] ARM: 8133/1: use irq_set_affinity with force=false when migrating irqs Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 115/238] ARM: 8148/1: flush TLS and thumbee register state during exec Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 116/238] ARM: 8165/1: alignment: dont break misaligned NEON load/store Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 117/238] ARM: 8178/1: fix set_tls for !CONFIG_KUSER_HELPERS Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 118/238] MIPS: ZBOOT: add missing <linux/string.h> include Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 119/238] MIPS: mcount: Adjust stack pointer for static trace in MIPS32 Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 120/238] ACPICA: Update to GPIO region handler interface Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 121/238] ACPI / hotplug: Generate online uevents for ACPI containers Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 122/238] ACPI / scan: Correct error return value of create_modalias() Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 123/238] memblock, memhotplug: fix wrong type in memblock_find_in_range_node() Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 124/238] regmap: Fix handling of volatile registers for format_write() chips Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 125/238] regmap: Dont attempt block writes when syncing cache on single_rw devices Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 126/238] cgroup: fix unbalanced locking Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 127/238] KVM: s390/mm: try a cow on read only pages for key ops Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 128/238] xen/manage: Always freeze/thaw processes when suspend/resuming Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 129/238] x86/xen: dont copy bogus duplicate entries into kernel page tables Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 130/238] x86 early_ioremap: Increase FIX_BTMAPS_SLOTS to 8 Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 131/238] x86/kaslr: Avoid the setup_data area when picking location Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 132/238] shmem: fix nlink for rename overwrite directory Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 133/238] ASoC: davinci-mcasp: Correct rx format unit configuration Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 134/238] SMB3: Fix oops when creating symlinks on smb3 Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 135/238] iio:trigger: modify return value for iio_trigger_get Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 136/238] iio: accel: bma180: Fix indio_dev->trig assignment Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 137/238] iio: hid_sensor_hub: " Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 138/238] iio: gyro: itg3200: " Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 139/238] iio: inv_mpu6050: " Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 140/238] iio: meter: ade7758: " Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 141/238] iio: st_sensors: " Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 142/238] iio: adc: ad_sigma_delta: " Greg Kroah-Hartman
2014-10-03 21:30 ` [PATCH 3.14 143/238] iio:magnetometer: bugfix magnetometers gain values Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 145/238] Target/iser: Get isert_conn reference once got to connected_handler Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 146/238] Target/iser: Dont put isert_conn inside disconnected handler Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 147/238] target: Fix inverted logic in SE_DEV_ALUA_SUPPORT_STATE_STORE Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 148/238] iscsi-target: avoid NULL pointer in iscsi_copy_param_list failure Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 149/238] iscsi-target: Fix memory corruption in iscsit_logout_post_handler_diffcid Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 150/238] NFC: microread: Potential overflows in microread_target_discovered() Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 151/238] SCSI: libiscsi: fix potential buffer overrun in __iscsi_conn_send_pdu Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 152/238] Revert "iwlwifi: dvm: dont enable CTS to self" Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 153/238] iwlwifi: mvm: fix endianity issues with Smart Fifo commands Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 154/238] iwlwifi: increase DEFAULT_MAX_TX_POWER Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 155/238] iwlwifi: mvm: treat EAPOLs like mgmt frames wrt rate Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 156/238] workqueue: apply __WQ_ORDERED to create_singlethread_workqueue() Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 157/238] futex: Unlock hb->lock in futex_wait_requeue_pi() error path Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 158/238] block: Fix dev_t minor allocation lifetime Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 159/238] dm cache: fix race causing dirty blocks to be marked as clean Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 160/238] dm crypt: fix access beyond the end of allocated space Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 161/238] Input: serport - add compat handling for SPIOCSTYPE ioctl Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 162/238] Input: synaptics - add support for ForcePads Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 164/238] Input: atkbd - do not try deactivate keyboard on any LG laptops Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 165/238] Input: i8042 - add Fujitsu U574 to no_timeout dmi table Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 166/238] Input: i8042 - add nomux quirk for Avatar AVIU-145A6 Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 167/238] hwmon: (ds1621) Update zbits after conversion rate change Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 168/238] ata_piix: Add Device IDs for Intel 9 Series PCH Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 169/238] percpu: free percpu allocation info for uniprocessor system Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 170/238] percpu: fix pcpu_alloc_pages() failure path Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 171/238] percpu: perform tlb flush after pcpu_map_pages() failure Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 172/238] regulatory: add NUL to alpha2 Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 173/238] rtlwifi: rtl8192cu: Add new ID Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 174/238] lockd: fix rpcbind crash on lockd startup failure Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 175/238] lockdep: Revert lockdep check in raw_seqcount_begin() Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 176/238] genhd: fix leftover might_sleep() in blk_free_devt() Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 177/238] usb: dwc3: core: fix order of PM runtime calls Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 178/238] usb: dwc3: core: fix ordering for PHY suspend Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 179/238] Revert "mac80211: disable uAPSD if all ACs are under ACM" Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 181/238] kcmp: fix standard comparison bug Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 182/238] fsnotify/fdinfo: use named constants instead of hardcoded values Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 183/238] fs/notify: dont show f_handle if exportfs_encode_inode_fh failed Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 184/238] nilfs2: fix data loss with mmap() Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 185/238] ocfs2/dlm: do not get resource spinlock if lockres is new Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 186/238] mm, slab: initialize object alignment on cache creation Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 187/238] mm: softdirty: keep bit when zapping file pte Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 188/238] sched: Fix unreleased llc_shared_mask bit during CPU hotplug Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 189/238] brcmfmac: handle IF event for P2P_DEVICE interface Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 190/238] powerpc/perf: Fix ABIv2 kernel backtraces Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 191/238] powerpc: Add smp_mb() to arch_spin_is_locked() Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 192/238] powerpc: Add smp_mb()s to arch_spin_unlock_wait() Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 193/238] dont bugger nd->seq on set_root_rcu() from follow_dotdot_rcu() Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 194/238] parisc: Implement new LWS CAS supporting 64 bit operations Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 195/238] parisc: Only use -mfast-indirect-calls option for 32-bit kernel builds Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 196/238] alarmtimer: Return relative times in timer_gettime Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 197/238] alarmtimer: Do not signal SIGEV_NONE timers Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 198/238] alarmtimer: Lock k_itimer during timer callback Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 199/238] GFS2: fix d_splice_alias() misuses Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 200/238] IB/qib: Correct reference counting in debugfs qp_stats Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 201/238] IB/mlx4: Avoid null pointer dereference in mlx4_ib_scan_netdevs() Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 202/238] IB/mlx4: Dont duplicate the default RoCE GID Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 203/238] IB/core: When marshaling uverbs path, clear unused fields Greg Kroah-Hartman
2014-10-03 21:31 ` [PATCH 3.14 204/238] perf: Fix a race condition in perf_remove_from_context() Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 208/238] Fix nasty 32-bit overflow bug in buffer i/o code Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 209/238] nl80211: clear skb cb before passing to netlink Greg Kroah-Hartman
2014-10-03 21:32 ` Greg Kroah-Hartman [this message]
2014-10-03 21:32 ` [PATCH 3.14 211/238] media: af9035: new IDs: add support for PCTV 78e and PCTV 79e Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 212/238] media: cx18: fix kernel oops with tda8290 tuner Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 213/238] media: adv7604: fix inverted condition Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 214/238] md/raid1: clean up request counts properly in close_sync() Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 215/238] md/raid1: be more cautious where we read-balance during resync Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 216/238] md/raid1: make sure resync waits for conflicting writes to complete Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 217/238] md/raid1: Dont use next_resync to determine how far resync has progressed Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 218/238] md/raid1: update next_resync under resync_lock Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 219/238] md/raid1: count resync requests in nr_pending Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 220/238] md/raid1: fix_read_error should act on all non-faulty devices Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 221/238] md/raid1: intialise start_next_window for READ case to avoid hang Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 222/238] ipvs: avoid netns exit crash on ip_vs_conn_drop_conntrack Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 223/238] netfilter: xt_hashlimit: perform garbage collection from process context Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 224/238] ipvs: Maintain all DSCP and ECN bits for ipv6 tun forwarding Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 225/238] netfilter: x_tables: allow to use default cgroup match Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 226/238] ipvs: fix ipv6 hook registration for local replies Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 227/238] PM / sleep: Add state field to pm_states[] entries Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 228/238] PM / sleep: Use valid_state() for platform-dependent sleep states only Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 229/238] serial: 8250_dma: check the result of TX buffer mapping Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 230/238] dmaengine: dw: introduce dwc_dostart_first_queued() helper Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 231/238] dmaengine: dw: dont perform DMA when dmaengine_submit is called Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 232/238] partitions: aix.c: off by one bug Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 233/238] perf/x86/intel: Use rdmsrl_safe() when initializing RAPL PMU Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 234/238] clk: prevent erronous parsing of children during rate change Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 235/238] aio: block exit_aio() until all context requests are completed Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 236/238] staging/lustre: disable virtual block device for 64K pages Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 237/238] clk: qcom: Fix MN frequency tables, parent map, and jpegd Greg Kroah-Hartman
2014-10-03 21:32 ` [PATCH 3.14 238/238] clk: qcom: mdp_lut_clk is a child of mdp_src Greg Kroah-Hartman
2014-10-04 0:26 ` [PATCH 3.14 000/238] 3.14.20-stable review Shuah Khan
2014-10-04 3:16 ` Guenter Roeck
2014-10-05 20:37 ` 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=20141003212920.379428374@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=prarit@redhat.com \
--cc=rafael.j.wysocki@intel.com \
--cc=stable@vger.kernel.org \
--cc=viresh.kumar@linaro.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).