All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sasha Levin <Alexander.Levin@microsoft.com>
To: "stable@vger.kernel.org" <stable@vger.kernel.org>,
	"stable-commits@vger.kernel.org" <stable-commits@vger.kernel.org>
Cc: Hongxu Jia <hongxu.jia@windriver.com>,
	Pablo Neira Ayuso <pablo@netfilter.org>,
	Sasha Levin <Alexander.Levin@microsoft.com>
Subject: [added to the 4.1 stable tree] netfilter: arp_tables: fix invoking 32bit "iptable -P INPUT ACCEPT" failed in 64bit kernel
Date: Thu, 1 Mar 2018 15:24:44 +0000	[thread overview]
Message-ID: <20180301152116.1486-218-alexander.levin@microsoft.com> (raw)
In-Reply-To: <20180301152116.1486-1-alexander.levin@microsoft.com>

From: Hongxu Jia <hongxu.jia@windriver.com>

This patch has been added to the 4.1 stable tree. If you have any
objections, please let us know.

===============

[ Upstream commit 17a49cd549d9dc8707dc9262210166455c612dde ]

Since 09d9686047db ("netfilter: x_tables: do compat validation via
translate_table"), it used compatr structure to assign newinfo
structure.  In translate_compat_table of ip_tables.c and ip6_tables.c,
it used compatr->hook_entry to replace info->hook_entry and
compatr->underflow to replace info->underflow, but not do the same
replacement in arp_tables.c.

It caused invoking 32-bit "arptbale -P INPUT ACCEPT" failed in 64bit
kernel.
--------------------------------------
root@qemux86-64:~# arptables -P INPUT ACCEPT
root@qemux86-64:~# arptables -P INPUT ACCEPT
ERROR: Policy for `INPUT' offset 448 != underflow 0
arptables: Incompatible with this kernel
--------------------------------------

Fixes: 09d9686047db ("netfilter: x_tables: do compat validation via translate_table")
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Acked-by: Florian Westphal <fw@strlen.de>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>

Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
---
 net/ipv4/netfilter/arp_tables.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net/ipv4/netfilter/arp_tables.c b/net/ipv4/netfilter/arp_tables.c
index ebf5821caefb..7510a851d316 100644
--- a/net/ipv4/netfilter/arp_tables.c
+++ b/net/ipv4/netfilter/arp_tables.c
@@ -1330,8 +1330,8 @@ static int translate_compat_table(struct xt_table_info **pinfo,
 
 	newinfo->number = compatr->num_entries;
 	for (i = 0; i < NF_ARP_NUMHOOKS; i++) {
-		newinfo->hook_entry[i] = info->hook_entry[i];
-		newinfo->underflow[i] = info->underflow[i];
+		newinfo->hook_entry[i] = compatr->hook_entry[i];
+		newinfo->underflow[i] = compatr->underflow[i];
 	}
 	entry1 = newinfo->entries[raw_smp_processor_id()];
 	pos = entry1;
-- 
2.14.1

  parent reply	other threads:[~2018-03-01 15:31 UTC|newest]

Thread overview: 520+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-01 15:22 [added to the 4.1 stable tree] Bluetooth: btusb: fix QCA Rome suspend/resume Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] more bio_map_user_iov() leak fixes Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] arm: KVM: Fix VTTBR_BADDR_MASK BUG_ON off-by-one Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] arm64: Initialise high_memory global variable earlier Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] x86/mm: Fix INVPCID asm constraint Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] x86/mm: Add INVPCID helpers Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] x86/mm: Add a 'noinvpcid' boot option to turn off INVPCID Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] x86/mm: If INVPCID is available, use it to flush global mappings Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] mm/mmu_context, sched/core: Fix mmu_context.h assumption Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] sched/core: Add switch_mm_irqs_off() and use it in the scheduler Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] ARM: Hide finish_arch_post_lock_switch() from modules Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] x86/mm: Build arch/x86/mm/tlb.c even on !SMP Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] sched/core: Idle_task_exit() shouldn't use switch_mm_irqs_off() Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] x86/irq: Do not substract irq_tlb_count from irq_call_count Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] ALSA: hda - add support for docking station for HP 820 G2 Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] arm: kprobes: Align stack to 8-bytes in test code Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] arm: kprobes: Fix the return address of multiple kretprobes Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] cpuidle: Validate cpu_dev in cpuidle_add_sysfs() Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] r8152: fix the list rx_done may be used without initialization Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] net: qmi_wwan: Add USB IDs for MDM6600 modem on Motorola Droid 4 Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] crypto: deadlock between crypto_alg_sem/rtnl_mutex/genl_mutex Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] usb: gadget: f_uvc: Sanity check wMaxPacketSize for SuperSpeed Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] usb: gadget: udc: remove pointer dereference after free Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] netfilter: nfnl_cthelper: fix runtime expectation policy updates Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] netfilter: nfnl_cthelper: Fix memory leak Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] scsi: lpfc: Fix PT2PT PRLI reject Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] pinctrl: st: add irq_request/release_resources callbacks Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] ARM: dts: ti: fix PCI bus dtc warnings Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] KVM: x86: correct async page present tracepoint Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] hwmon: (asus_atk0110) fix uninitialized data access Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] s390/qeth: no ETH header for outbound AF_IUCV Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] HID: xinmo: fix for out of range for THT 2P arcade controller Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] bna: avoid writing uninitialized data into hw registers Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] net: Do not allow negative values for busy_read and busy_poll sysctl interfaces Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] i40e: Do not enable NAPI on q_vectors that have no rings Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] irda: vlsi_ir: fix check for DMA mapping errors Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] netfilter: nfnl_cthelper: fix a race when walk the nf_ct_helper_hash table Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] ARM: dts: am335x-evmsk: adjust mmc2 param to allow suspend Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] netfilter: nf_nat_snmp: Fix panic when snmp_trap_helper fails to register Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] xhci: plat: Register shutdown for xhci_plat Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] isdn: kcapi: avoid uninitialized data Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] cpuidle: powernv: Pass correct drv->cpumask for registration Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] ARM: dma-mapping: disallow dma_get_sgtable() for non-kernel managed memory Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] backlight: pwm_bl: Fix overflow condition Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] net: phy: at803x: Change error to EINVAL for invalid MAC Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] crypto: crypto4xx - increase context and scatter ring buffer elements Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] PCI: Avoid bus reset if bridge itself is broken Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] scsi: cxgb4i: fix Tx skb leak Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] PCI: Create SR-IOV virtfn/physfn links before attaching driver Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] igb: check memory allocation failure Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] ixgbe: fix use of uninitialized padding Sasha Levin
2018-03-01 15:22 ` [added to the 4.1 stable tree] PCI/AER: Report non-fatal errors only to the affected endpoint Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] scsi: lpfc: PLOGI failures during NPIV testing Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] scsi: lpfc: Fix secure firmware updates Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] fm10k: ensure we process SM mbx when processing VF mbx Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] tcp: fix under-evaluated ssthresh in TCP Vegas Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] rtc: set the alarm to the next expiring timer Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] alpha: fix build failures Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] ACPI: APEI / ERST: Fix missing error handling in erst_reader() Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] crypto: mcryptd - protect the per-CPU queue with a lock Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] mfd: twl4030-audio: Fix sibling-node lookup Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] mfd: twl6040: Fix child-node lookup Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] ALSA: rawmidi: Avoid racy info ioctl via ctl device Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] ALSA: usb-audio: Fix the missing ctl name suffix at parsing SU Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] PCI / PM: Force devices to D0 in pci_pm_thaw_noirq() Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] KVM: X86: Fix load RFLAGS w/o the fixed bit Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] parisc: Hide Diva-built-in serial aux and graphics card Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] powerpc/perf: Dereference BHRB entries safely Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] net: mvneta: clear interface link status on port disable Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] tracing: Remove extra zeroing out of the ring buffer page Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] tracing: Fix possible double free on failure of allocating trace buffer Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] tracing: Fix crash when it fails to alloc ring buffer Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] ring-buffer: Mask out the info bits when returning buffer page length Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] iw_cxgb4: Only validate the MSN for successful completions Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] ASoC: twl4030: fix child-node lookup Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] x86/vm86/32: Switch to flush_tlb_mm_range() in mark_screen_rdonly() Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] x86/mm: Remove flush_tlb() and flush_tlb_current_task() Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] x86/mm: Make flush_tlb_mm_range() more predictable Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] x86/mm: Disable PCID on 32-bit kernels Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] x86/mm: Add the 'nopcid' boot option to turn off PCID Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] x86/mm: Enable CR4.PCIDE on supported systems Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] x86/mm/64: Fix reboot interaction with CR4.PCIDE Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] kbuild: add '-fno-stack-check' to kernel build options Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] ipv4: igmp: guard against silly MTU values Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] ipv6: mcast: better catch silly mtu values Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] net: igmp: Use correct source address on IGMPv3 reports Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] netlink: Add netns check on taps Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] tcp md5sig: Use skb's saddr when replying to an incoming segment Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] net: qmi_wwan: add Sierra EM7565 1199:9091 Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] tg3: Fix rx hang on MTU change with 5717/5719 Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] sctp: Replace use of sockets_allocated with specified macro Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] net: mvmdio: disable/unprepare clocks in EPROBE_DEFER case Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] ipv4: Fix use-after-free when flushing FIB tables Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] sock: free skb in skb_complete_tx_timestamp on error Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] usbip: fix usbip bind writing random string after command in match_busid Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] usbip: stub: stop printing kernel pointer addresses in messages Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] usbip: vhci: " Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] USB: serial: option: add support for Telit ME910 PID 0x1101 Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] usb: add RESET_RESUME for ELSA MicroLink 56K Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] usb: Add device quirk for Logitech HD Pro Webcam C925e Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] usb: xhci: Add XHCI_TRUST_TX_LENGTH for Renesas uPD720201 Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] x86/smpboot: Remove stale TLB flush invocations Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] x86/boot: Add early cmdline parsing for options with arguments Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] n_tty: fix EXTPROC vs ICANON interaction with TIOCINQ (aka FIONREAD) Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] x86/paravirt: Dont patch flush_tlb_single Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] kernel/acct.c: fix the acct->needcheck check in check_free_space() Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] crypto: n2 - cure use after free Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] fscache: Fix the default for fscache_maybe_release_page() Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] kernel: make groups_sort calling a responsibility group_info allocators Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] kernel/signal.c: protect the SIGNAL_UNKILLABLE tasks from !sig_kernel_only() signals Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] kernel/signal.c: protect the traced SIGNAL_UNKILLABLE tasks from SIGKILL Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] kernel/signal.c: remove the no longer needed SIGNAL_UNKILLABLE check in complete_signal() Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] Input: elantech - add new icbody type 15 Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] x86/microcode/AMD: Add support for fam17h microcode loading Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] x86/tlb: Drop the _GPL from the cpu_tlbstate export Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] parisc: Fix alignment of pa_tlb_lock in assembly on 32-bit SMP kernel Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] genksyms: Handle string literals with spaces in reference files Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] module: keep percpu symbols in module's symtab Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] proc: much faster /proc/vmstat Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] module: Issue warnings when tainting kernel Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] KVM: Fix stack-out-of-bounds read in write_mmio Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] dm bufio: fix shrinker scans when (nr_to_scan < retain_target) Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] can: gs_usb: fix return value of the "set_bittiming" callback Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] IB/srpt: Disable RDMA access by the initiator Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] MIPS: Validate PR_SET_FP_MODE prctl(2) requests against the ABI of the task Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] MIPS: Factor out NT_PRFPREG regset access helpers Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] MIPS: Guard against any partial write attempt with PTRACE_SETREGSET Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] MIPS: Consistently handle buffer counter " Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] MIPS: Fix an FCSR access API regression with NT_PRFPREG and MSA Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] MIPS: Also verify sizeof `elf_fpreg_t' with PTRACE_SETREGSET Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] kvm: vmx: Scrub hardware GPRs at VM-exit Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] MIPS: Disallow outsized PTRACE_SETREGSET NT_PRFPREG regset accesses Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] ALSA: pcm: Remove incorrect snd_BUG_ON() usages Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] ALSA: pcm: Add missing error checks in OSS emulation plugin builder Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] ALSA: pcm: Abort properly at pending signal in OSS read/write loops Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] ALSA: pcm: Allow aborting mutex lock at " Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] ALSA: aloop: Release cable upon open error path Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] ALSA: aloop: Fix inconsistent format due to incomplete rule Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] ALSA: aloop: Fix racy hw constraints adjustment Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] locks: don't check for race with close when setting OFD lock Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] mm/page-writeback: fix dirty_ratelimit calculation Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] futex: Replace barrier() in unqueue_me() with READ_ONCE() Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] r8152: use test_and_clear_bit Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] [media] usbvision fix overflow of interfaces array Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] sr9700: use skb_cow_head() to deal with cloned skbs Sasha Levin
2018-03-01 15:23 ` [added to the 4.1 stable tree] smsc75xx: " Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] cx82310_eth: " Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] sysrq: Fix warning in sysrq generated crash Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] hwrng: core - sleep interruptible in read Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] 8021q: fix a memory leak for VLAN 0 device Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] RDS: Heap OOB write in rds_message_alloc_sgs() Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] RDS: null pointer dereference in rds_atomic_free_op Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] sh_eth: fix TSU resource handling Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] sh_eth: fix SH7757 GEther initialization Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] crypto: algapi - fix NULL dereference in crypto_remove_spawns() Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] ipv6: fix possible mem leaks in ipv6_make_skb() Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] KVM: x86: Add memory barrier on vmcs field lookup Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] x86/microcode/intel: Extend BDW late-loading with a revision check Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] USB: serial: cp210x: add IDs for LifeScan OneTouch Verio IQ Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] iscsi-target: Make TASK_REASSIGN use proper se_cmd->cmd_kref Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] USB: serial: cp210x: add new device ID ELV ALC 8xxx Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] usb: misc: usb3503: make sure reset is low for at least 100us Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] USB: fix usbmon BUG trigger Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] usbip: remove kernel addresses from usb device and urb debug msgs Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] staging: android: ashmem: fix a race condition in ASHMEM_SET_SIZE ioctl Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] Bluetooth: Prevent stack info leak from the EFS element Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] e1000e: Fix e1000_check_for_copper_link_ich8lan return value Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] uas: ignore UAS for Norelsys NS1068(X) chips Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] x86/cpu: Factor out application of forced CPU caps Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] x86/cpufeatures: Make CPU bugs sticky Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] x86/alternatives: Fix optimize_nops() checking Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] x86/alternatives: Add missing '\n' at end of ALTERNATIVE inline asm Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] gcov: disable for COMPILE_TEST Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] x86/asm: Use register variable to get stack pointer value Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] x86/kbuild: enable modversions for symbols exported from asm Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] x86/asm: Make asm/alternative.h safe from assembly Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] EXPORT_SYMBOL() for asm Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] kconfig.h: use __is_defined() to check if MODULE is defined Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] x86/retpoline/checksum32: Convert assembler indirect jumps Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] scsi: sg: disable SET_FORCE_LOW_DMA Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] futex: Prevent overflow by strengthen input validation Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] ALSA: pcm: Remove yet superfluous WARN_ON() Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] ALSA: hda - Apply headphone noise quirk for another Dell XPS 13 variant Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] af_key: fix buffer overread in verify_address_len() Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] ALSA: hda - Apply the existing quirk to iMac 14,1 Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] module: Add retpoline tag to VERMAGIC Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] af_key: fix buffer overread in parse_exthdrs() Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] pipe: avoid round_pipe_size() nr_pages overflow on 32-bit Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] Input: 88pm860x-ts - fix child-node lookup Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] Input: twl6040-vibra " Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] Input: twl6040-vibra - fix DT node memory management Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] tracing: Fix converting enum's from the map in trace_event_eval_update() Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] ARM: dts: kirkwood: fix pin-muxing of MPP7 on OpenBlocks A7 Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] can: peak: fix potential bug in packet fragmentation Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] libata: apply MAX_SEC_1024 to all LITEON EP1 series devices Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] dm btree: fix serious bug in btree_split_beneath() Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] dm thin metadata: THIN_MAX_CONCURRENT_LOCKS should be 6 Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] arm64: KVM: Fix SMCCC handling of unimplemented SMC/HVC calls Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] kbuild: modversions for EXPORT_SYMBOL() for asm Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] MIPS: AR7: ensure the port type's FCR value is used Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] x86/asm/32: Make sync_core() handle missing CPUID on all 32-bit kernels Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] usbip: prevent vhci_hcd driver from leaking a socket pointer address Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] usbip: Fix implicit fallthrough warning Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] usbip: Fix potential format overflow in userspace tools Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] x86/cpu/intel: Introduce macros for Intel family numbers Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] can: af_can: can_rcv(): replace WARN_ONCE by pr_warn_once Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] can: af_can: canfd_rcv(): " Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] PM / sleep: declare __tracedata symbols as char[] rather than char Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] time: Avoid undefined behaviour in ktime_add_safe() Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] drivers: base: cacheinfo: fix x86 with CONFIG_OF enabled Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] fs/select: add vmalloc fallback for select(2) Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] hwpoison, memcg: forcibly uncharge LRU pages Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] mm/mmap.c: do not blow on PROT_NONE MAP_FIXED holes in the stack Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] cma: fix calculation of aligned offset Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] ipc: msg, make msgrcv work with LONG_MIN Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] x86/ioapic: Fix incorrect pointers in ioapic_setup_resources() Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] ACPI / processor: Avoid reserving IO regions too early Sasha Levin
2018-03-01 15:24 ` Sasha Levin [this message]
2018-03-01 15:24 ` [added to the 4.1 stable tree] netfilter: nf_ct_expect: remove the redundant slash when policy name is empty Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] netfilter: restart search if moved to other chain Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] netfilter: nf_conntrack_sip: extend request line validation Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] netfilter: nfnetlink_cthelper: Add missing permission checks Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] ext2: Don't clear SGID when inheriting ACLs Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] netfilter: xt_osf: Add missing permission checks Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] reiserfs: fix race in prealloc discard Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] reiserfs: don't preallocate blocks for extended attributes Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] reiserfs: Don't clear SGID when inheriting ACLs Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] fs/fcntl: f_setown, avoid undefined behaviour Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] scsi: libiscsi: fix shifting of DID_REQUEUE host byte Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] Revert "module: Add retpoline tag to VERMAGIC" Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] usbip: fix stub_rx: get_pipe() to validate endpoint number Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] Input: trackpoint - force 3 buttons if 0 button is reported Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] usbip: fix stub_rx: harden CMD_SUBMIT path to handle malicious input Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] usbip: prevent leaking socket pointer address in messages Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] um: link vmlinux with -no-pie Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] eventpoll.h: add missing epoll event masks Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] dccp: don't restart ccid2_hc_tx_rto_expire() if sk in closed state Sasha Levin
2018-03-01 15:24 ` [added to the 4.1 stable tree] ipv6: fix udpv6 sendmsg crash caused by too small MTU Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] ipv6: ip6_make_skb() needs to clear cork.base.dst Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] net: igmp: fix source address check for IGMPv3 reports Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] net: qdisc_pkt_len_init() should be more robust Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] tcp: __tcp_hdrlen() helper Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] pppoe: take ->needed_headroom of lower device into account on xmit Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] sctp: do not allow the v4 socket to bind a v4mapped v6 address Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] sctp: return error if the asoc has been peeled off in sctp_wait_for_sndbuf Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] vmxnet3: repair memory leak Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] ipv4: Make neigh lookup keys for loopback/point-to-point devices be INADDR_ANY Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] net: Allow neigh contructor functions ability to modify the primary_key Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] net: tcp: close sock if net namespace is exiting Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] nfsd: auth: Fix gid sorting when rootsquash enabled Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] loop: fix concurrent lo_open/lo_release Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] bpf: fix divides by zero Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] bpf: arsh is not supported in 32 bit alu thus reject it Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] gpio: iop: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] ALSA: seq: Make ioctls race-free Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] igb: Free IRQs when device is hotplugged Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] KVM: x86: emulator: Return to user-mode on L1 CPL=0 emulation failure Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] KVM: x86: Don't re-execute instruction when not passing CR2 value Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] KVM: X86: Fix operand/address-size during instruction decoding Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] cpufreq: Add Loongson machine dependencies Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] bcache: check return value of register_shrinker Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] drm/amdkfd: Fix SDMA oversubsription handling Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] openvswitch: fix the incorrect flow action alloc size Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] mac80211: fix the update of path metric for RANN frame Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] btrfs: fix deadlock when writing out space cache Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] KVM: VMX: Fix rflags cache during vCPU reset Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] xen-netfront: remove warning when unloading module Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] nfsd: CLOSE SHOULD return the invalid special stateid for NFSv4.x (x>0) Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] grace: replace BUG_ON by WARN_ONCE in exit_net hook Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] nfsd: check for use of the closed special stateid Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] hwmon: (pmbus) Use 64bit math for DIRECT format values Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] net: ethernet: xilinx: Mark XILINX_LL_TEMAC broken on 64-bit Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] quota: Check for register_shrinker() failure Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] drm/omap: Fix error handling path in 'omap_dmm_probe()' Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] SUNRPC: Allow connect to return EHOSTUNREACH Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] scsi: ufs: ufshcd: fix potential NULL pointer dereference in ufshcd_config_vreg Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] xfs: ubsan fixes Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] media: usbtv: add a new usbid Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] staging: rtl8188eu: Fix incorrect response to SIOCGIWESSID Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] usb: gadget: don't dereference g until after it has been null checked Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] usb: option: Add support for FS040U modem Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] USB: serial: pl2303: new device id for Chilitag Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] CDC-ACM: apply quirk for card reader Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] USB: cdc-acm: Do not log urb submission errors on disconnect Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] USB: serial: io_edgeport: fix possible sleep-in-atomic Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] usbip: list: don't list devices attached to vhci_hcd Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] usbip: prevent bind loops on " Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] usb: f_fs: Prevent gadget unbind if it is already unbound Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] USB: serial: simple: add Motorola Tetra driver Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] spi: imx: do not access registers while clocks disabled Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] usb: uas: unconditionally bring back host after reset Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] powerpc/bpf/jit: Disable classic BPF JIT on ppc64le Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] powerpc/64: Fix flush_(d|i)cache_range() called from modules Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] powerpc: Fix VSX enabling/flushing to also test MSR_FP and MSR_VEC Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] powerpc: Simplify module TOC handling Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] powerpc/64: Add macros for annotating the destination of rfid/hrfid Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] powerpc/pseries: Add H_GET_CPU_CHARACTERISTICS flags & wrapper Sasha Levin
2018-03-02  3:08   ` Michael Ellerman
2018-03-01 15:25 ` [added to the 4.1 stable tree] powerpc/64: Convert the syscall exit path to use RFI_TO_USER/KERNEL Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] powerpc/64: Convert fast_exception_return " Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] powerpc/64s: Convert slb_miss_common " Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] powerpc/64s: Add support for RFI flush of L1-D cache Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] powerpc/64s: Support disabling RFI flush with no_rfi_flush and nopti Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] powerpc/pseries: Query hypervisor for RFI flush settings Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] powerpc/64s: Wire up cpu_show_meltdown() Sasha Levin
2018-03-02  3:20   ` Michael Ellerman
2018-03-01 15:25 ` [added to the 4.1 stable tree] powerpc/64s: Allow control of RFI flush via debugfs Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] ASoC: pcm512x: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] drm: rcar-du: Use the VBK interrupt for vblank events Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] ip6mr: fix stale iterator Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] net: igmp: add a missing rcu locking section Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] qlcnic: fix deadlock bug Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] r8169: fix RTL8168EP take too long to complete driver initialization Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] tcp: release sk_frag.page in tcp_disconnect Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] vhost_net: stop device during reset owner Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] media: soc_camera: soc_scale_crop: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] KEYS: encrypted: fix buffer overread in valid_master_desc() Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] cifs: Fix autonegotiate security settings mismatch Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] cifs: Fix missing put_xid in cifs_file_strict_mmap Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] dmaengine: dmatest: fix container_of member in dmatest_callback Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] CIFS: zero sensitive data when freeing Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] posix-timer: Properly check sigevent->sigev_notify Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] dccp: CVE-2017-8824: use-after-free in DCCP code Sasha Levin
2018-03-01 15:25 ` [added to the 4.1 stable tree] media: dvb-usb-v2: lmedm04: Improve logic checking of warm start Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] mtd: cfi: convert inline functions to macros Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] media: dvb-usb-v2: lmedm04: move ts2020 attach to dm04_lme2510_tuner Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] mtd: nand: Fix nand_do_read_oob() return value Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] NFS: Add a cond_resched() to nfs_commit_release_pages() Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] mtd: nand: sunxi: Fix ECC strength choice Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] NFS: commit direct writes even if they fail partially Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] kernfs: fix regression in kernfs_fop_write caused by wrong type Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] NFS: reject request for id_legacy key without auxdata Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] ahci: Add PCI ids for Intel Bay Trail, Cherry Trail and Apollo Lake AHCI Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] ahci: Add Intel Cannon Lake PCH-H PCI ID Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] crypto: hash - introduce crypto_hash_alg_has_setkey() Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] crypto: cryptd - pass through absence of ->setkey() Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] nsfs: mark dentry with DCACHE_RCUACCESS Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] media: v4l2-ioctl.c: don't copy back the result for -ENOTTY Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] media: v4l2-compat-ioctl32.c: add missing VIDIOC_PREPARE_BUF Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] media: v4l2-compat-ioctl32.c: fix ctrl_is_pointer Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] media: v4l2-compat-ioctl32.c: make ctrl_is_pointer work for subdevs Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] arm: KVM: Fix SMCCC handling of unimplemented SMC/HVC calls Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] media: v4l2-compat-ioctl32.c: don't copy back the result for certain errors Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] media: cxusb, dib0700: ignore XC2028_I2C_FLUSH Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] KVM: nVMX: Fix races when sending nested PI while dest enters/leaves L2 Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] kernel/async.c: revert "async: simplify lowest_in_progress()" Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] Revert "Bluetooth: btusb: fix QCA Rome suspend/resume" Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] Bluetooth: btsdio: Do not bind to non-removable BCM43341 Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] signal/openrisc: Fix do_unaligned_access to send the proper signal Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] alpha: fix crash if pthread_create races with signal delivery Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] signal/sh: Ensure si_signo is initialized in do_divide_error Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] xtensa: fix futex_atomic_cmpxchg_inatomic Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] alpha: fix reboot on Avanti platform Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] EDAC, octeon: Fix an uninitialized variable warning Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] pktcdvd: Fix pkt_setup_dev() error path Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] btrfs: Handle btrfs_set_extent_delalloc failure in fixup worker Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] ovl: fix failure to fsync lower dir Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] ACPI: sbshc: remove raw pointer from printk() message Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] mn10300/misalignment: Use SIGSEGV SEGV_MAPERR to report a failed user copy Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] PM / devfreq: Propagate error from devfreq_add_device() Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] IB/mlx4: Fix incorrectly releasing steerable UD QPs when have only ETH ports Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] s390: fix handling of -1 in set{,fs}[gu]id16 syscalls Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] arm: spear13xx: Fix dmas cells Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] arm: spear600: Add missing interrupt-parent of rtc Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] arm: spear13xx: Fix spics gpio controller's warning Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] rtc-opal: Fix handling of firmware error codes, prevent busy loops Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] drm/radeon: adjust tested variable Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] ext4: save error to disk in __ext4_grp_locked_error() Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] mm: hide a #warning for COMPILE_TEST Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] ext4: correct documentation for grpid mount option Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] console/dummy: leave .con_font_get set to NULL Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] video: fbdev: atmel_lcdfb: fix display-timings lookup Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] Btrfs: fix deadlock in run_delalloc_nocow Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] Btrfs: fix crash due to not cleaning up tree log block's dirty bits Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] Btrfs: fix unexpected -EEXIST when creating new inode Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] ALSA: usb-audio: Fix UAC2 get_ctl request with a RANGE attribute Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] ALSA: usb-audio: add implicit fb quirk for Behringer UFX1204 Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] ALSA: hda/realtek: PCI quirk for Fujitsu U7x7 Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] ALSA: seq: Fix racy pool initializations Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] mvpp2: fix multicast address filter Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] vfs: don't do RCU lookup of empty pathnames Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] media: r820t: fix r820t_write_reg for KASAN Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] ARM: dts: s5pv210: add interrupt-parent for ohci Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] mm,vmscan: Make unregister_shrinker() no-op if register_shrinker() failed Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] cfg80211: check dev_set_name() return value Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] xfrm: check id proto in validate_tmpl() Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] blktrace: fix unlocked registration of tracepoints Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] Provide a function to create a NUL-terminated string from unterminated data Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] selinux: skip bounded transition processing if the policy isn't loaded Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] selinux: ensure the context is NUL terminated in security_context_to_sid_core() Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] netfilter: x_tables: fix int overflow in xt_alloc_table_info() Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] crypto: x86/twofish-3way - Fix %rbp usage Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] netfilter: x_tables: avoid out-of-bounds reads in xt_request_find_{match|target} Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] netfilter: ipt_CLUSTERIP: fix out-of-bounds accesses in clusterip_tg_check() Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] netfilter: on sockopt() acquire sock lock only in the required scope Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] netfilter: xt_RATEEST: acquire xt_rateest_mutex for hash insert Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] net: avoid skb_warn_bad_offload on IS_ERR Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] ASoC: ux500: add MODULE_LICENSE tag Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] dn_getsockoptdecnet: move nf_{get/set}sockopt outside sock lock Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] video: fbdev/mmp: add MODULE_LICENSE Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] usbip: keep usbip_device sockfd state in sync with tcp_socket Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] binder: check for binder_thread allocation failure in binder_poll() Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] ARM: OMAP2+: Fix SRAM virt to phys translation for save_secure_ram_context Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] usb: build drivers/usb/common/ when USB_SUPPORT is set Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] ARM: AM33xx: PRM: Remove am33xx_pwrdm_read_prev_pwrst function Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] ARM: dts: am4372: Correct the interrupts_properties of McASP Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] ARM: dts: Fix omap4 hang with GPS connected to USB by using wakeupgen Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] perf top: Fix window dimensions change handling Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] perf bench numa: Fixup discontiguous/sparse numa nodes Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] media: s5k6aa: describe some function parameters Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] pinctrl: sunxi: Fix A80 interrupt pin bank Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] scripts/kernel-doc: Don't fail with status != 0 if error encountered with -none Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] ipvlan: Add the skb->mark as flow4's member to lookup route Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] s390/dasd: prevent prefix I/O error Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] powerpc/perf: Fix oops when grouping different pmu events Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] gianfar: fix a flooded alignment reports because of padding issue Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] net_sched: red: Avoid illegal values Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] net_sched: red: Avoid devision by zero Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] 509: fix printing uninitialized stack memory when OID is empty Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] btrfs: Fix possible off-by-one in btrfs_search_path_in_tree Sasha Levin
2018-03-01 15:26 ` [added to the 4.1 stable tree] clk: fix a panic error caused by accessing NULL pointer Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] spi: sun4i: disable clocks in the remove function Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] xfrm: Fix stack-out-of-bounds with misconfigured transport mode policies Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] dmaengine: jz4740: disable/unprepare clk if probe fails Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] mm/early_ioremap: Fix boot hang with earlyprintk=efi,keep Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] x86/mm/kmmio: Fix mmiotrace for page unaligned addresses Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] xen: XEN_ACPI_PROCESSOR is Dom0-only Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] hippi: Fix a Fix a possible sleep-in-atomic bug in rr_close Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] isdn: icn: remove a #warning Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] virtio_balloon: prevent uninitialized variable use Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] vmxnet3: prevent building with 64K pages Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] gpio: intel-mid: Fix build warning when !CONFIG_PM Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] platform/x86: intel_mid_thermal: Fix suspend handlers unused warning Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] scsi: advansys: fix build warning for PCI=n Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] video: fbdev: via: remove possibly unused variables Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] x86/ras/inject: Make it depend on X86_LOCAL_APIC=y Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] x86/build: Silence the build with "make -s" Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] x86: add MULTIUSER dependency for KVM Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] scsi: advansys: fix uninitialized data access Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] ALSA: hda/ca0132 - fix possible NULL pointer use Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] reiserfs: avoid a -Wmaybe-uninitialized warning Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] thermal: spear: use __maybe_unused for PM functions Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] x86/boot: Avoid warning for zero-filling .bss Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] scsi: sim710: fix build warning Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] drivers/net: fix eisa_driver probe section mismatch Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] profile: hide unused functions when !CONFIG_PROC_FS Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] dpt_i2o: fix build warning Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] md: avoid warning for 32-bit sector_t Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] mtd: ichxrom: maybe-uninitialized with gcc-4.9 Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] mtd: maps: add __init attribute Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] mptfusion: hide unused seq_mpt_print_ioc_summary function Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] scsi: fdomain: drop fdomain_pci_tbl when built-in Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] video: fbdev: sis: remove unused variable Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] staging: ste_rmi4: avoid unused function warnings Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] fbdev: sis: enforce selection of at least one backend Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] scsi: mvumi: use __maybe_unused to hide pm functions Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] video: Use bool instead int pointer for get_opt_bool() argument Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] [media] pwc: hide unused label Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] SCSI: initio: remove duplicate module device table Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] usb: musb/ux500: remove duplicate check for dma_is_compatible Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] tty: hvc_xen: hide xen_console_remove when unused Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] target/user: Fix cast from pointer to phys_addr_t Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] driver-core: use 'dev' argument in dev_dbg_ratelimited stub Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] fbdev: auo_k190x: avoid unused function warnings Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] amd-xgbe: Fix unused suspend handlers build warning Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] mtd: sh_flctl: pass FIFO as physical address Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] mtd: cfi: enforce valid geometry configuration Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] fbdev: s6e8ax0: avoid unused function warnings Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] USB: cdc_subset: only build when one driver is enabled Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] x86/platform/olpc: Fix resume handler build warning Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] ipv4: ipconfig: avoid unused ic_proto_used symbol Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] tlan: avoid unused label with PCI=n Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] tc1100-wmi: fix build warning when CONFIG_PM not enabled Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] iio: adc: axp288: remove redundant duplicate const on axp288_adc_channels Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] tty: cyclades: cyz_interrupt is only used for PCI Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] i2c: remove __init from i2c_register_board_info() Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] Input: tca8418_keypad - hide gcc-4.9 -Wmaybe-uninitialized warning Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] drm/nouveau: hide gcc-4.9 -Wmaybe-uninitialized Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] [media] go7007: add MEDIA_CAMERA_SUPPORT dependency Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] [media] em28xx: only use mt9v011 if camera support is enabled Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] ISDN: eicon: reduce stack size of sig_ind function Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] [media] hdpvr: hide unused variable Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] drm/gma500: Sanity-check pipe index Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] [media] v4l: remove MEDIA_TUNER dependency for VIDEO_TUNER Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] cw1200: fix bogus maybe-uninitialized warning Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] perf/x86: Shut up false-positive -Wmaybe-uninitialized warning Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] net: hp100: remove unnecessary #ifdefs Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] gpio: xgene: mark PM functions as __maybe_unused Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] ncpfs: fix unused variable warning Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] netlink: fix nla_put_{u8,u16,u32} for KASAN Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] drm/gma500: remove helper function Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] dell-wmi, dell-laptop: depends DMI Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] KVM: async_pf: Fix #DF due to inject "Page not Present" and "Page Ready" exceptions simultaneously Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] array_index_nospec: Sanitize speculative array de-references Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] Documentation: Document array_index_nospec Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] x86: Implement array_index_mask_nospec Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] x86/get_user: Use pointer masking to limit speculation Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] vfs, fdtable: Prevent bounds-check bypass via speculative execution Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] nl80211: Sanitize array index in parse_txq_params Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] x86/paravirt: Remove 'noreplace-paravirt' cmdline option Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] x86/kvm: Update spectre-v1 mitigation Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] x86/retpoline: Avoid retpolines for built-in __init functions Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] KVM: nVMX: kmap() can't fail Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] crypto: s5p-sss - Fix kernel Oops in AES-ECB mode Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] KVM: nVMX: vmx_complete_nested_posted_interrupt() can't fail Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] netfilter: drop outermost socket lock in getsockopt() Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] scsi: ibmvfc: fix misdefined reserved field in ibmvfc_fcp_rsp_info Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] PCI: keystone: Fix interrupt-controller-node lookup Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] cfg80211: fix cfg80211_beacon_dup Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] iio: buffer: check if a buffer has been set up when poll is called Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] iio: adis_lib: Initialize trigger before requesting interrupt Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] x86/oprofile: Fix bogus GCC-8 warning in nmi_setup() Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] irqchip/gic-v3: Use wmb() instead of smb_wmb() in gic_raise_softirq() Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] usb: ohci: Proper handling of ed_rm_list to handle race condition between usb_kill_urb() and finish_unlinks() Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] arm64: Disable unhandled signal log messages by default Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] Add delay-init quirk for Corsair K70 RGB keyboards Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] usb: dwc3: gadget: Set maxpacket size for ep0 IN Sasha Levin
2018-03-01 15:27 ` [added to the 4.1 stable tree] usb: ldusb: add PIDs for new CASSY devices supported by this driver Sasha Levin
2018-03-01 15:28 ` [added to the 4.1 stable tree] usb: renesas_usbhs: missed the "running" flag in usb_dmac with rx path Sasha Levin
2018-03-01 15:28 ` [added to the 4.1 stable tree] usb: gadget: f_fs: Process all descriptors during bind Sasha Levin

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=20180301152116.1486-218-alexander.levin@microsoft.com \
    --to=alexander.levin@microsoft.com \
    --cc=hongxu.jia@windriver.com \
    --cc=pablo@netfilter.org \
    --cc=stable-commits@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.