From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
stable@vger.kernel.org, Thomas Gleixner <tglx@linutronix.de>,
Kees Cook <keescook@chromium.org>,
Linus Torvalds <torvalds@linux-foundation.org>,
Al Viro <viro@zeniv.linux.org.uk>,
Alexander Potapenko <glider@google.com>,
Andrey Konovalov <andreyknvl@google.com>,
Andrey Ryabinin <ryabinin.a.a@gmail.com>,
Andy Lutomirski <luto@amacapital.net>,
Andy Lutomirski <luto@kernel.org>, Borislav Petkov <bp@alien8.de>,
Denys Vlasenko <dvlasenk@redhat.com>,
Dmitry Vyukov <dvyukov@google.com>,
Kostya Serebryany <kcc@google.com>,
Mike Galbraith <efault@gmx.de>,
Peter Zijlstra <a.p.zijlstra@chello.nl>,
Peter Zijlstra <peterz@infradead.org>,
Sasha Levin <sasha.levin@oracle.com>,
kasan-dev <kasan-dev@googlegroups.com>,
Ingo Molnar <mingo@kernel.org>
Subject: [PATCH 4.2 075/124] fs/proc, core/debug: Dont expose absolute kernel addresses via wchan
Date: Mon, 7 Dec 2015 09:56:05 -0500 [thread overview]
Message-ID: <20151207144923.386512411@linuxfoundation.org> (raw)
In-Reply-To: <20151207144919.656035367@linuxfoundation.org>
4.2-stable review patch. If anyone has any objections, please let me know.
------------------
From: Ingo Molnar <mingo@kernel.org>
commit b2f73922d119686323f14fbbe46587f863852328 upstream.
So the /proc/PID/stat 'wchan' field (the 30th field, which contains
the absolute kernel address of the kernel function a task is blocked in)
leaks absolute kernel addresses to unprivileged user-space:
seq_put_decimal_ull(m, ' ', wchan);
The absolute address might also leak via /proc/PID/wchan as well, if
KALLSYMS is turned off or if the symbol lookup fails for some reason:
static int proc_pid_wchan(struct seq_file *m, struct pid_namespace *ns,
struct pid *pid, struct task_struct *task)
{
unsigned long wchan;
char symname[KSYM_NAME_LEN];
wchan = get_wchan(task);
if (lookup_symbol_name(wchan, symname) < 0) {
if (!ptrace_may_access(task, PTRACE_MODE_READ))
return 0;
seq_printf(m, "%lu", wchan);
} else {
seq_printf(m, "%s", symname);
}
return 0;
}
This isn't ideal, because for example it trivially leaks the KASLR offset
to any local attacker:
fomalhaut:~> printf "%016lx\n" $(cat /proc/$$/stat | cut -d' ' -f35)
ffffffff8123b380
Most real-life uses of wchan are symbolic:
ps -eo pid:10,tid:10,wchan:30,comm
and procps uses /proc/PID/wchan, not the absolute address in /proc/PID/stat:
triton:~/tip> strace -f ps -eo pid:10,tid:10,wchan:30,comm 2>&1 | grep wchan | tail -1
open("/proc/30833/wchan", O_RDONLY) = 6
There's one compatibility quirk here: procps relies on whether the
absolute value is non-zero - and we can provide that functionality
by outputing "0" or "1" depending on whether the task is blocked
(whether there's a wchan address).
These days there appears to be very little legitimate reason
user-space would be interested in the absolute address. The
absolute address is mostly historic: from the days when we
didn't have kallsyms and user-space procps had to do the
decoding itself via the System.map.
So this patch sets all numeric output to "0" or "1" and keeps only
symbolic output, in /proc/PID/wchan.
( The absolute sleep address can generally still be profiled via
perf, by tasks with sufficient privileges. )
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Kees Cook <keescook@chromium.org>
Acked-by: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: Alexander Potapenko <glider@google.com>
Cc: Andrey Konovalov <andreyknvl@google.com>
Cc: Andrey Ryabinin <ryabinin.a.a@gmail.com>
Cc: Andy Lutomirski <luto@amacapital.net>
Cc: Andy Lutomirski <luto@kernel.org>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Denys Vlasenko <dvlasenk@redhat.com>
Cc: Dmitry Vyukov <dvyukov@google.com>
Cc: Kostya Serebryany <kcc@google.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Sasha Levin <sasha.levin@oracle.com>
Cc: kasan-dev <kasan-dev@googlegroups.com>
Cc: linux-kernel@vger.kernel.org
Link: http://lkml.kernel.org/r/20150930135917.GA3285@gmail.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
Documentation/filesystems/proc.txt | 5 +++--
fs/proc/array.c | 16 ++++++++++++++--
fs/proc/base.c | 9 +++------
3 files changed, 20 insertions(+), 10 deletions(-)
--- a/Documentation/filesystems/proc.txt
+++ b/Documentation/filesystems/proc.txt
@@ -140,7 +140,8 @@ Table 1-1: Process specific entries in /
stat Process status
statm Process memory status information
status Process status in human readable form
- wchan If CONFIG_KALLSYMS is set, a pre-decoded wchan
+ wchan Present with CONFIG_KALLSYMS=y: it shows the kernel function
+ symbol the task is blocked in - or "0" if not blocked.
pagemap Page table
stack Report full stack trace, enable via CONFIG_STACKTRACE
smaps a extension based on maps, showing the memory consumption of
@@ -310,7 +311,7 @@ Table 1-4: Contents of the stat files (a
blocked bitmap of blocked signals
sigign bitmap of ignored signals
sigcatch bitmap of caught signals
- wchan address where process went to sleep
+ 0 (place holder, used to be the wchan address, use /proc/PID/wchan instead)
0 (place holder)
0 (place holder)
exit_signal signal to send to parent thread on exit
--- a/fs/proc/array.c
+++ b/fs/proc/array.c
@@ -372,7 +372,7 @@ int proc_pid_status(struct seq_file *m,
static int do_task_stat(struct seq_file *m, struct pid_namespace *ns,
struct pid *pid, struct task_struct *task, int whole)
{
- unsigned long vsize, eip, esp, wchan = ~0UL;
+ unsigned long vsize, eip, esp, wchan = 0;
int priority, nice;
int tty_pgrp = -1, tty_nr = 0;
sigset_t sigign, sigcatch;
@@ -504,7 +504,19 @@ static int do_task_stat(struct seq_file
seq_put_decimal_ull(m, ' ', task->blocked.sig[0] & 0x7fffffffUL);
seq_put_decimal_ull(m, ' ', sigign.sig[0] & 0x7fffffffUL);
seq_put_decimal_ull(m, ' ', sigcatch.sig[0] & 0x7fffffffUL);
- seq_put_decimal_ull(m, ' ', wchan);
+
+ /*
+ * We used to output the absolute kernel address, but that's an
+ * information leak - so instead we show a 0/1 flag here, to signal
+ * to user-space whether there's a wchan field in /proc/PID/wchan.
+ *
+ * This works with older implementations of procps as well.
+ */
+ if (wchan)
+ seq_puts(m, " 1");
+ else
+ seq_puts(m, " 0");
+
seq_put_decimal_ull(m, ' ', 0);
seq_put_decimal_ull(m, ' ', 0);
seq_put_decimal_ll(m, ' ', task->exit_signal);
--- a/fs/proc/base.c
+++ b/fs/proc/base.c
@@ -430,13 +430,10 @@ static int proc_pid_wchan(struct seq_fil
wchan = get_wchan(task);
- if (lookup_symbol_name(wchan, symname) < 0) {
- if (!ptrace_may_access(task, PTRACE_MODE_READ))
- return 0;
- seq_printf(m, "%lu", wchan);
- } else {
+ if (wchan && ptrace_may_access(task, PTRACE_MODE_READ) && !lookup_symbol_name(wchan, symname))
seq_printf(m, "%s", symname);
- }
+ else
+ seq_putc(m, '0');
return 0;
}
next prev parent reply other threads:[~2015-12-07 14:56 UTC|newest]
Thread overview: 118+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-07 14:54 [PATCH 4.2 000/124] 4.2.7-stable review Greg Kroah-Hartman
2015-12-07 14:54 ` [PATCH 4.2 002/124] tipc: allow non-linear first fragment buffer Greg Kroah-Hartman
2015-12-07 14:54 ` [PATCH 4.2 003/124] tcp: remove improper preemption check in tcp_xmit_probe_skb() Greg Kroah-Hartman
2015-12-07 14:54 ` [PATCH 4.2 004/124] netlink: fix locking around NETLINK_LIST_MEMBERSHIPS Greg Kroah-Hartman
2015-12-07 14:54 ` [PATCH 4.2 006/124] macvtap: unbreak receiving of gro skb with frag list Greg Kroah-Hartman
2015-12-07 14:54 ` [PATCH 4.2 007/124] ppp: fix pppoe_dev deletion condition in pppoe_release() Greg Kroah-Hartman
2015-12-07 14:54 ` [PATCH 4.2 008/124] amd-xgbe: Use wmb before updating current descriptor count Greg Kroah-Hartman
2015-12-07 14:54 ` [PATCH 4.2 009/124] amd-xgbe: Fix race between access of desc and desc index Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 010/124] net: fec: Remove unneeded use of IS_ERR_VALUE() macro Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 011/124] ipv6: gre: support SIT encapsulation Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 012/124] net: fec: normalize return value of pm_runtime_get_sync() in MDIO write Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 013/124] fib_trie: leaf_walk_rcu should not compute key if key is less than pn->key Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 014/124] RDS-TCP: Recover correctly from pskb_pull()/pksb_trim() failure in rds_tcp_data_recv Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 015/124] net/mlx4: Copy/set only sizeof struct mlx4_eqe bytes Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 016/124] tipc: linearize arriving NAME_DISTR and LINK_PROTO buffers Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 017/124] ipv4: fix to not remove local route on link down Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 018/124] ipv4: update RTNH_F_LINKDOWN flag on UP event Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 019/124] stmmac: Correctly report PTP capabilities Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 020/124] ipmr: fix possible race resulting from improper usage of IP_INC_STATS_BH() in preemptible context Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 022/124] sit: fix sit0 percpu double allocations Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 023/124] sfc: push partner queue for skb->xmit_more Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 024/124] net: avoid NULL deref in inet_ctl_sock_destroy() Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 025/124] ipv6: clean up dev_snmp6 proc entry when we fail to initialize inet6_dev Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 026/124] ipv4: disable BH when changing ip local port range Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 027/124] packet: race condition in packet_bind Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 028/124] bonding: fix panic on non-ARPHRD_ETHER enslave failure Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 029/124] net: fix a race in dst_release() Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 030/124] RDS: verify the underlying transport exists before creating a connection Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 031/124] ARM: 8426/1: dma-mapping: add missing range check in dma_mmap() Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 032/124] ARM: 8427/1: dma-mapping: add support for offset parameter " Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 033/124] ARM: common: edma: Fix channel parameter for irq callbacks Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 034/124] ARM: dts: imx27.dtsi: change the clock information for usb Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 035/124] ARM: tegra: paz00: use con_ids to refer GPIOs in gpiod_lookup table Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 036/124] ARM: at91/dt: corrections to i2c1 declaration to sama5d4 Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 037/124] ARM: at91: pm: at91_pm_suspend_in_sram() must be 8-byte aligned Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 038/124] ARM: dts: Fix WLAN regression on omap5-uevm Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 039/124] ARM: dts: sun6i: hummingbird: Fix VDD-CPU and VDD-GPU regulator names Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 040/124] ARM: pxa: remove incorrect __init annotation on pxa27x_set_pwrmode Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 041/124] MIPS: lantiq: add clk_round_rate() Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 042/124] MIPS: CDMM: Add builtin_mips_cdmm_driver() macro Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 043/124] MIPS: ath79: Fix the DDR control initialization on ar71xx and ar934x Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 044/124] MIPS: KVM: Fix ASID restoration logic Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 045/124] MIPS: KVM: Fix CACHE immediate offset sign extension Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 046/124] MIPS: KVM: Uninit VCPU in vcpu_create error path Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 048/124] kvm: x86: zero EFER on INIT Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 052/124] KVM: x86: obey KVM_X86_QUIRK_CD_NW_CLEARED in kvm_set_cr0() Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 053/124] KVM: x86: work around infinite loop in microcode when #AC is delivered Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 054/124] x86/setup: Extend low identity map to cover whole kernel range Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 055/124] x86/setup: Fix low identity map for >= 2GB " Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 056/124] x86/irq: Probe for PIC presence before allocating descs for legacy IRQs Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 057/124] x86/cpu: Call verify_cpu() after having entered long mode too Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 058/124] x86/cpu: Fix SMAP check in PVOPS environments Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 059/124] x86/fpu: Fix get_xsave_addr() behavior under virtualization Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 060/124] x86/fpu: Fix 32-bit signal frame handling Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 061/124] x86/mpx: Do proper get_user() when running 32-bit binaries on 64-bit kernels Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 062/124] x86/mpx: Fix 32-bit address space calculation Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 063/124] mac80211: Fix local deauth while associating Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 064/124] mac80211: fix driver RSSI event calculations Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 065/124] mac80211: allow null chandef in tracing Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 066/124] mac80211: fix divide by zero when NOA update Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 067/124] nl80211: Fix potential memory leak from parse_acl_data Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 068/124] NFC: nci: Fix incorrect data chaining when sending data Greg Kroah-Hartman
2015-12-07 14:55 ` [PATCH 4.2 069/124] NFC: nci: Fix improper management of HCI return code Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 070/124] NFC: nci: extract pipe value using NCI_HCP_MSG_GET_PIPE Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 071/124] iwlwifi: pcie: fix (again) prepare card flow Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 072/124] iwlwifi: Add new PCI IDs for the 8260 series Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 073/124] net: mvneta: Fix CPU_MAP registers initialisation Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 074/124] net: mvneta: fix error path for building skb Greg Kroah-Hartman
2015-12-07 14:56 ` Greg Kroah-Hartman [this message]
2015-12-07 14:56 ` [PATCH 4.2 076/124] clk: iproc: Fix PLL output frequency calculation Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 077/124] clk: versatile-icst: fix memory leak Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 078/124] mfd: twl6040: Fix deferred probe handling for clk32k Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 079/124] mwifiex: fix mwifiex_rdeeprom_read() Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 080/124] staging: rtl8712: Add device ID for Sitecom WLA2100 Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 081/124] Bluetooth: hidp: fix device disconnect on idle timeout Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 082/124] Bluetooth: ath3k: Add new AR3012 0930:021c id Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 083/124] Bluetooth: ath3k: Add support of AR3012 0cf3:817b device Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 084/124] Bluetooth: Fix removing connection parameters when unpairing Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 085/124] can: Use correct type in sizeof() in nla_put() Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 086/124] can: sja1000: clear interrupts on start Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 087/124] arm64: Fix compat register mappings Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 088/124] arm64: page-align sections for DEBUG_RODATA Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 089/124] ath10k: use stations current operating mode from assoc request Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 090/124] ath10k: fix invalid NSS for 4x4 devices Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 091/124] KVM: s390: SCA must not cross page boundaries Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 092/124] KVM: s390: fix wrong lookup of VCPUs by array index Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 093/124] KVM: s390: avoid memory overwrites on emergency signal injection Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 095/124] usb: gadget: net2280: restore ep_cfg after defect7374 workaround Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 096/124] usb: gadget: atmel_usba_udc: Expose correct device speed Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 097/124] usb: dwc3: gadget: let us set lower max_speed Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 098/124] usb: chipidea: otg: gadget module load and unload support Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 099/124] usb: dwc3: pci: Add the Synopsys HAPS AXI Product ID Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 100/124] usb: dwc3: pci: Add the PCI Product ID for Synopsys USB 3.1 Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 101/124] usb: dwc3: Support Synopsys USB 3.1 IP Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 102/124] usb: dwc3: pci: Add platform data for Synopsys HAPS Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 103/124] usb: dwc3: Add dis_enblslpm_quirk Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 104/124] usb: dwc3: pci: Set enblslpm quirk for Synopsys platforms Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 105/124] usb: chipidea: imx: refine clock operations to adapt for all platforms Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 106/124] ALSA: usb: Add native DSD support for Aune X1S Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 107/124] usb: ehci-orion: fix probe for !GENERIC_PHY Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 108/124] usblp: do not set TASK_INTERRUPTIBLE before lock Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 112/124] USB: ti_usb_3410_5052: Add Honeywell HGI80 ID Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 115/124] ALSA: usb-audio: add packet size quirk for the Medeli DD305 Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 116/124] ALSA: usb-audio: prevent CH345 multiport output SysEx corruption Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 117/124] ALSA: usb-audio: work around CH345 input " Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 120/124] tty: Fix tty_send_xchar() lock order inversion Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 121/124] xhci: Workaround to get Intel xHCI reset working more reliably Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 122/124] staging/lustre: use jiffies for lp_last_query times Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 123/124] xen/events: Always allocate legacy interrupts on PV guests Greg Kroah-Hartman
2015-12-07 14:56 ` [PATCH 4.2 124/124] KVM: s390: enable SIMD only when no VCPUs were created Greg Kroah-Hartman
2015-12-07 17:19 ` [PATCH 4.2 000/124] 4.2.7-stable review Shuah Khan
2015-12-07 21:36 ` Guenter Roeck
2015-12-07 21:54 ` Kevin Hilman
2015-12-09 3:23 ` Greg Kroah-Hartman
[not found] ` <56660ec6.4f1a1c0a.b13a9.4425@mx.google.com>
2015-12-07 22:58 ` Kevin Hilman
2015-12-09 3:24 ` Greg Kroah-Hartman
2015-12-08 4:56 ` Sudip Mukherjee
2015-12-09 3:16 ` 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=20151207144923.386512411@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=a.p.zijlstra@chello.nl \
--cc=andreyknvl@google.com \
--cc=bp@alien8.de \
--cc=dvlasenk@redhat.com \
--cc=dvyukov@google.com \
--cc=efault@gmx.de \
--cc=glider@google.com \
--cc=kasan-dev@googlegroups.com \
--cc=kcc@google.com \
--cc=keescook@chromium.org \
--cc=linux-kernel@vger.kernel.org \
--cc=luto@amacapital.net \
--cc=luto@kernel.org \
--cc=mingo@kernel.org \
--cc=peterz@infradead.org \
--cc=ryabinin.a.a@gmail.com \
--cc=sasha.levin@oracle.com \
--cc=stable@vger.kernel.org \
--cc=tglx@linutronix.de \
--cc=torvalds@linux-foundation.org \
--cc=viro@zeniv.linux.org.uk \
/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).