From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
stable@vger.kernel.org, Nathan Lynch <nathan_lynch@mentor.com>,
Will Deacon <will.deacon@arm.com>,
Russell King <rmk+kernel@arm.linux.org.uk>
Subject: [PATCH 3.14 115/238] ARM: 8148/1: flush TLS and thumbee register state during exec
Date: Fri, 3 Oct 2014 14:30:30 -0700 [thread overview]
Message-ID: <20141003212917.356418383@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: Nathan Lynch <nathan_lynch@mentor.com>
commit fbfb872f5f417cea48760c535e0ff027c88b507a upstream.
The TPIDRURO and TPIDRURW registers need to be flushed during exec;
otherwise TLS information is potentially leaked. TPIDRURO in
particular needs careful treatment. Since flush_thread basically
needs the same code used to set the TLS in arm_syscall, pull that into
a common set_tls helper in tls.h and use it in both places.
Similarly, TEEHBR needs to be cleared during exec as well. Clearing
its save slot in thread_info isn't right as there is no guarantee
that a thread switch will occur before the new program runs. Just
setting the register directly is sufficient.
Signed-off-by: Nathan Lynch <nathan_lynch@mentor.com>
Acked-by: Will Deacon <will.deacon@arm.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
arch/arm/include/asm/tls.h | 62 +++++++++++++++++++++++++++++++++++++++++++++
arch/arm/kernel/process.c | 2 +
arch/arm/kernel/thumbee.c | 2 -
arch/arm/kernel/traps.c | 17 ------------
4 files changed, 66 insertions(+), 17 deletions(-)
--- a/arch/arm/include/asm/tls.h
+++ b/arch/arm/include/asm/tls.h
@@ -1,6 +1,9 @@
#ifndef __ASMARM_TLS_H
#define __ASMARM_TLS_H
+#include <linux/compiler.h>
+#include <asm/thread_info.h>
+
#ifdef __ASSEMBLY__
#include <asm/asm-offsets.h>
.macro switch_tls_none, base, tp, tpuser, tmp1, tmp2
@@ -50,6 +53,47 @@
#endif
#ifndef __ASSEMBLY__
+
+static inline void set_tls(unsigned long val)
+{
+ struct thread_info *thread;
+
+ thread = current_thread_info();
+
+ thread->tp_value[0] = val;
+
+ /*
+ * This code runs with preemption enabled and therefore must
+ * be reentrant with respect to switch_tls.
+ *
+ * We need to ensure ordering between the shadow state and the
+ * hardware state, so that we don't corrupt the hardware state
+ * with a stale shadow state during context switch.
+ *
+ * If we're preempted here, switch_tls will load TPIDRURO from
+ * thread_info upon resuming execution and the following mcr
+ * is merely redundant.
+ */
+ barrier();
+
+ if (!tls_emu) {
+ if (has_tls_reg) {
+ asm("mcr p15, 0, %0, c13, c0, 3"
+ : : "r" (val));
+ } else {
+ /*
+ * User space must never try to access this
+ * directly. Expect your app to break
+ * eventually if you do so. The user helper
+ * at 0xffff0fe0 must be used instead. (see
+ * entry-armv.S for details)
+ */
+ *((unsigned int *)0xffff0ff0) = val;
+ }
+
+ }
+}
+
static inline unsigned long get_tpuser(void)
{
unsigned long reg = 0;
@@ -59,5 +103,23 @@ static inline unsigned long get_tpuser(v
return reg;
}
+
+static inline void set_tpuser(unsigned long val)
+{
+ /* Since TPIDRURW is fully context-switched (unlike TPIDRURO),
+ * we need not update thread_info.
+ */
+ if (has_tls_reg && !tls_emu) {
+ asm("mcr p15, 0, %0, c13, c0, 2"
+ : : "r" (val));
+ }
+}
+
+static inline void flush_tls(void)
+{
+ set_tls(0);
+ set_tpuser(0);
+}
+
#endif
#endif /* __ASMARM_TLS_H */
--- a/arch/arm/kernel/process.c
+++ b/arch/arm/kernel/process.c
@@ -334,6 +334,8 @@ void flush_thread(void)
memset(&tsk->thread.debug, 0, sizeof(struct debug_info));
memset(&thread->fpstate, 0, sizeof(union fp_state));
+ flush_tls();
+
thread_notify(THREAD_NOTIFY_FLUSH, thread);
}
--- a/arch/arm/kernel/thumbee.c
+++ b/arch/arm/kernel/thumbee.c
@@ -45,7 +45,7 @@ static int thumbee_notifier(struct notif
switch (cmd) {
case THREAD_NOTIFY_FLUSH:
- thread->thumbee_state = 0;
+ teehbr_write(0);
break;
case THREAD_NOTIFY_SWITCH:
current_thread_info()->thumbee_state = teehbr_read();
--- a/arch/arm/kernel/traps.c
+++ b/arch/arm/kernel/traps.c
@@ -578,7 +578,6 @@ do_cache_op(unsigned long start, unsigne
#define NR(x) ((__ARM_NR_##x) - __ARM_NR_BASE)
asmlinkage int arm_syscall(int no, struct pt_regs *regs)
{
- struct thread_info *thread = current_thread_info();
siginfo_t info;
if ((no >> 16) != (__ARM_NR_BASE>> 16))
@@ -629,21 +628,7 @@ asmlinkage int arm_syscall(int no, struc
return regs->ARM_r0;
case NR(set_tls):
- thread->tp_value[0] = regs->ARM_r0;
- if (tls_emu)
- return 0;
- if (has_tls_reg) {
- asm ("mcr p15, 0, %0, c13, c0, 3"
- : : "r" (regs->ARM_r0));
- } else {
- /*
- * User space must never try to access this directly.
- * Expect your app to break eventually if you do so.
- * The user helper at 0xffff0fe0 must be used instead.
- * (see entry-armv.S for details)
- */
- *((unsigned int *)0xffff0ff0) = regs->ARM_r0;
- }
+ set_tls(regs->ARM_r0);
return 0;
#ifdef CONFIG_NEEDS_SYSCALL_FOR_CMPXCHG
next prev parent reply other threads:[~2014-10-03 21:30 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 ` Greg Kroah-Hartman [this message]
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 ` [PATCH 3.14 210/238] cpufreq: release policy->rwsem on error Greg Kroah-Hartman
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=20141003212917.356418383@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=nathan_lynch@mentor.com \
--cc=rmk+kernel@arm.linux.org.uk \
--cc=stable@vger.kernel.org \
--cc=will.deacon@arm.com \
/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).