From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
stable@vger.kernel.org, Eric Dumazet <edumazet@google.com>,
syzbot <syzkaller@googlegroups.com>,
David Ahern <dsahern@gmail.com>,
"David S. Miller" <davem@davemloft.net>,
Zubin Mithra <zsm@chromium.org>
Subject: [PATCH 4.14 166/173] net/ipv6: prevent use after free in ip6_route_mpath_notify
Date: Mon, 24 Sep 2018 13:53:20 +0200 [thread overview]
Message-ID: <20180924113127.224183751@linuxfoundation.org> (raw)
In-Reply-To: <20180924113114.334025954@linuxfoundation.org>
4.14-stable review patch. If anyone has any objections, please let me know.
------------------
From: David Ahern <dsahern@gmail.com>
commit f7225172f25aaf0dfd9ad65f05be8da5d6108b12 upstream.
syzbot reported a use-after-free:
BUG: KASAN: use-after-free in ip6_route_mpath_notify+0xe9/0x100 net/ipv6/route.c:4180
Read of size 4 at addr ffff8801bf789cf0 by task syz-executor756/4555
CPU: 1 PID: 4555 Comm: syz-executor756 Not tainted 4.17.0-rc7+ #78
Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 01/01/2011
Call Trace:
__dump_stack lib/dump_stack.c:77 [inline]
dump_stack+0x1b9/0x294 lib/dump_stack.c:113
print_address_description+0x6c/0x20b mm/kasan/report.c:256
kasan_report_error mm/kasan/report.c:354 [inline]
kasan_report.cold.7+0x242/0x2fe mm/kasan/report.c:412
__asan_report_load4_noabort+0x14/0x20 mm/kasan/report.c:432
ip6_route_mpath_notify+0xe9/0x100 net/ipv6/route.c:4180
ip6_route_multipath_add+0x615/0x1910 net/ipv6/route.c:4303
inet6_rtm_newroute+0xe3/0x160 net/ipv6/route.c:4391
...
Allocated by task 4555:
save_stack+0x43/0xd0 mm/kasan/kasan.c:448
set_track mm/kasan/kasan.c:460 [inline]
kasan_kmalloc+0xc4/0xe0 mm/kasan/kasan.c:553
kasan_slab_alloc+0x12/0x20 mm/kasan/kasan.c:490
kmem_cache_alloc+0x12e/0x760 mm/slab.c:3554
dst_alloc+0xbb/0x1d0 net/core/dst.c:104
__ip6_dst_alloc+0x35/0xa0 net/ipv6/route.c:361
ip6_dst_alloc+0x29/0xb0 net/ipv6/route.c:376
ip6_route_info_create+0x4d4/0x3a30 net/ipv6/route.c:2834
ip6_route_multipath_add+0xc7e/0x1910 net/ipv6/route.c:4240
inet6_rtm_newroute+0xe3/0x160 net/ipv6/route.c:4391
...
Freed by task 4555:
save_stack+0x43/0xd0 mm/kasan/kasan.c:448
set_track mm/kasan/kasan.c:460 [inline]
__kasan_slab_free+0x11a/0x170 mm/kasan/kasan.c:521
kasan_slab_free+0xe/0x10 mm/kasan/kasan.c:528
__cache_free mm/slab.c:3498 [inline]
kmem_cache_free+0x86/0x2d0 mm/slab.c:3756
dst_destroy+0x267/0x3c0 net/core/dst.c:140
dst_release_immediate+0x71/0x9e net/core/dst.c:205
fib6_add+0xa40/0x1650 net/ipv6/ip6_fib.c:1305
__ip6_ins_rt+0x6c/0x90 net/ipv6/route.c:1011
ip6_route_multipath_add+0x513/0x1910 net/ipv6/route.c:4267
inet6_rtm_newroute+0xe3/0x160 net/ipv6/route.c:4391
...
The problem is that rt_last can point to a deleted route if the insert
fails.
One reproducer is to insert a route and then add a multipath route that
has a duplicate nexthop.e.g,:
$ ip -6 ro add vrf red 2001:db8:101::/64 nexthop via 2001:db8:1::2
$ ip -6 ro append vrf red 2001:db8:101::/64 nexthop via 2001:db8:1::4 nexthop via 2001:db8:1::2
Fix by not setting rt_last until the it is verified the insert succeeded.
Backport Note:
- Upstream has replaced rt6_info usage with fib6_info in 8d1c802b281
("net/ipv6: Flip FIB entries to fib6_info")
- fib6_info_release was introduced upstream in 93531c674315
("net/ipv6: separate handling of FIB entries from dst based routes"),
but is not present in stable kernels; 4.14.y relies on dst_release/
ip6_rt_put/dst_release_immediate.
Fixes: 3b1137fe7482 ("net: ipv6: Change notifications for multipath add to RTA_MULTIPATH")
Cc: Eric Dumazet <edumazet@google.com>
Reported-by: syzbot <syzkaller@googlegroups.com>
Signed-off-by: David Ahern <dsahern@gmail.com>
Reviewed-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Zubin Mithra <zsm@chromium.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
net/ipv6/route.c | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
--- a/net/ipv6/route.c
+++ b/net/ipv6/route.c
@@ -3239,11 +3239,16 @@ static int ip6_route_multipath_add(struc
err_nh = NULL;
list_for_each_entry(nh, &rt6_nh_list, next) {
- rt_last = nh->rt6_info;
err = __ip6_ins_rt(nh->rt6_info, info, &nh->mxc, extack);
- /* save reference to first route for notification */
- if (!rt_notif && !err)
- rt_notif = nh->rt6_info;
+
+ if (!err) {
+ /* save reference to last route successfully inserted */
+ rt_last = nh->rt6_info;
+
+ /* save reference to first route for notification */
+ if (!rt_notif)
+ rt_notif = nh->rt6_info;
+ }
/* nh->rt6_info is used or freed at this point, reset to NULL*/
nh->rt6_info = NULL;
next prev parent reply other threads:[~2018-09-24 12:25 UTC|newest]
Thread overview: 186+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-09-24 11:50 [PATCH 4.14 000/173] 4.14.72-stable review Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 001/173] be2net: Fix memory leak in be_cmd_get_profile_config() Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 002/173] net/mlx5: Fix use-after-free in self-healing flow Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 003/173] net: qca_spi: Fix race condition in spi transfers Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 004/173] rds: fix two RCU related problems Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 005/173] net/mlx5: Check for error in mlx5_attach_interface Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 006/173] net/mlx5: Fix debugfs cleanup in the device init/remove flow Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 007/173] net/mlx5: E-Switch, Fix memory leak when creating switchdev mode FDB tables Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 008/173] net/tls: Set count of SG entries if sk_alloc_sg returns -ENOSPC Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 009/173] erspan: fix error handling for erspan tunnel Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 010/173] erspan: return PACKET_REJECT when the appropriate tunnel is not found Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 011/173] tcp: really ignore MSG_ZEROCOPY if no SO_ZEROCOPY Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 012/173] hv/netvsc: Fix NULL dereference at single queue mode fallback Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 013/173] usb: dwc3: change stream event enable bit back to 13 Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 014/173] iommu/arm-smmu-v3: sync the OVACKFLG to PRIQ consumer register Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 015/173] iommu/io-pgtable-arm-v7s: Abort allocation when table address overflows the PTE Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 016/173] ALSA: msnd: Fix the default sample sizes Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 017/173] ALSA: usb-audio: Fix multiple definitions in AU0828_DEVICE() macro Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 018/173] xfrm: fix passing zero to ERR_PTR() warning Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 019/173] amd-xgbe: use dma_mapping_error to check map errors Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 020/173] gfs2: Special-case rindex for gfs2_grow Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 021/173] clk: imx6ul: fix missing of_node_put() Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 022/173] clk: core: Potentially free connection id Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 023/173] clk: clk-fixed-factor: Clear OF_POPULATED flag in case of failure Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 024/173] kbuild: add .DELETE_ON_ERROR special target Greg Kroah-Hartman
2018-09-24 11:50 ` [PATCH 4.14 025/173] media: tw686x: Fix oops on buffer alloc failure Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 026/173] dmaengine: pl330: fix irq race with terminate_all Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 027/173] MIPS: ath79: fix system restart Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 028/173] media: videobuf2-core: check for q->error in vb2_core_qbuf() Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 029/173] IB/rxe: Drop QP0 silently Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 030/173] block: allow max_discard_segments to be stacked Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 031/173] IB/ipoib: Fix error return code in ipoib_dev_init() Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 032/173] mtd/maps: fix solutionengine.c printk format warnings Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 033/173] media: ov5645: Supported external clock is 24MHz Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 034/173] perf test: Fix subtest number when showing results Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 035/173] gfs2: Dont reject a supposedly full bitmap if we have blocks reserved Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 036/173] perf tools: Synthesize GROUP_DESC feature in pipe mode Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 037/173] fbdev: omapfb: off by one in omapfb_register_client() Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 038/173] perf tools: Fix struct comm_str removal crash Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 039/173] video: goldfishfb: fix memory leak on driver remove Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 040/173] fbdev/via: fix defined but not used warning Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 041/173] perf powerpc: Fix callchain ip filtering when return address is in a register Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 042/173] video: fbdev: pxafb: clear allocated memory for video modes Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 043/173] fbdev: Distinguish between interlaced and progressive modes Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 044/173] ARM: exynos: Clear global variable on init error path Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 045/173] perf powerpc: Fix callchain ip filtering Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 046/173] nvme-rdma: unquiesce queues when deleting the controller Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 047/173] KVM: arm/arm64: vgic: Fix possible spectre-v1 write in vgic_mmio_write_apr() Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 048/173] powerpc/powernv: opal_put_chars partial write fix Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 049/173] staging: bcm2835-camera: fix timeout handling in wait_for_completion_timeout Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 050/173] staging: bcm2835-camera: handle wait_for_completion_timeout return properly Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 051/173] ASoC: rt5514: Fix the issue of the delay volume applied Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 052/173] MIPS: jz4740: Bump zload address Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 053/173] mac80211: restrict delayed tailroom needed decrement Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 054/173] Smack: Fix handling of IPv4 traffic received by PF_INET6 sockets Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 055/173] wan/fsl_ucc_hdlc: use IS_ERR_VALUE() to check return value of qe_muram_alloc Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 056/173] arm64: fix possible spectre-v1 write in ptrace_hbp_set_event() Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 057/173] reset: imx7: Fix always writing bits as 0 Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 058/173] efi/arm: preserve early mapping of UEFI memory map longer for BGRT Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 059/173] nfp: avoid buffer leak when FW communication fails Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 060/173] xen-netfront: fix queue name setting Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 061/173] arm64: dts: qcom: db410c: Fix Bluetooth LED trigger Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 062/173] ARM: dts: qcom: msm8974-hammerhead: increase load on l20 for sdhci Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 063/173] s390/qeth: fix race in used-buffer accounting Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 064/173] s390/qeth: reset layer2 attribute on layer switch Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 065/173] platform/x86: toshiba_acpi: Fix defined but not used build warnings Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 066/173] KVM: arm/arm64: Fix vgic init race Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 067/173] drivers/base: stop new probing during shutdown Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 068/173] i2c: aspeed: Fix initial values of master and slave state Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 069/173] dmaengine: mv_xor_v2: kill the tasklets upon exit Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 070/173] crypto: sharah - Unregister correct algorithms for SAHARA 3 Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 071/173] x86/pti: Check the return value of pti_user_pagetable_walk_p4d() Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 072/173] x86/pti: Check the return value of pti_user_pagetable_walk_pmd() Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 073/173] x86/mm/pti: Add an overflow check to pti_clone_pmds() Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 074/173] xen-netfront: fix warn message as irq device name has / Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 075/173] RDMA/cma: Protect cma dev list with lock Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 076/173] pstore: Fix incorrect persistent ram buffer mapping Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 077/173] xen/netfront: fix waiting for xenbus state change Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 078/173] IB/ipoib: Avoid a race condition between start_xmit and cm_rep_handler Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 079/173] s390/crypto: Fix return code checking in cbc_paes_crypt() Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 080/173] mmc: omap_hsmmc: fix wakeirq handling on removal Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 081/173] ipmi: Fix I2C client removal in the SSIF driver Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 082/173] Tools: hv: Fix a bug in the key delete code Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 083/173] misc: hmc6352: fix potential Spectre v1 Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 084/173] xhci: Fix use after free for URB cancellation on a reallocated endpoint Greg Kroah-Hartman
2018-09-24 11:51 ` [PATCH 4.14 085/173] usb: Dont die twice if PCI xhci host is not responding in resume Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 086/173] mei: ignore not found client in the enumeration Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 087/173] mei: bus: need to unlink client before freeing Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 088/173] USB: Add quirk to support DJI CineSSD Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 089/173] usb: uas: add support for more quirk flags Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 090/173] usb: Avoid use-after-free by flushing endpoints early in usb_set_interface() Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 091/173] usb: host: u132-hcd: Fix a sleep-in-atomic-context bug in u132_get_frame() Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 092/173] USB: add quirk for WORLDE Controller KS49 or Prodipe MIDI 49C USB controller Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 093/173] usb: gadget: udc: renesas_usb3: fix maxpacket size of ep0 Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 094/173] USB: net2280: Fix erroneous synchronization change Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 095/173] USB: serial: io_ti: fix array underflow in completion handler Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 096/173] usb: misc: uss720: Fix two sleep-in-atomic-context bugs Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 097/173] USB: serial: ti_usb_3410_5052: fix array underflow in completion handler Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 098/173] USB: yurex: Fix buffer over-read in yurex_write() Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 099/173] usb: cdc-wdm: Fix a sleep-in-atomic-context bug in service_outstanding_interrupt() Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 100/173] Revert "cdc-acm: implement put_char() and flush_chars()" Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 101/173] cifs: prevent integer overflow in nxt_dir_entry() Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 102/173] CIFS: fix wrapping bugs in num_entries() Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 103/173] xtensa: ISS: dont allocate memory in platform_setup Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 104/173] perf/core: Force USER_DS when recording user stack data Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 105/173] x86/EISA: Dont probe EISA bus for Xen PV guests Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 106/173] NFSv4.1 fix infinite loop on I/O Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 107/173] binfmt_elf: Respect error return from `regset->active Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 108/173] net/mlx5: Add missing SET_DRIVER_VERSION command translation Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 109/173] arm64: dts: uniphier: Add missing cooling device properties for CPUs Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 110/173] audit: fix use-after-free in audit_add_watch Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 111/173] mtdchar: fix overflows in adjustment of `count` Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 112/173] vfs: fix freeze protection in mnt_want_write_file() for overlayfs Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 113/173] Bluetooth: Use lock_sock_nested in bt_accept_enqueue Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 114/173] evm: Dont deadlock if a crypto algorithm is unavailable Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 115/173] KVM: PPC: Book3S HV: Add of_node_put() in success path Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 116/173] security: check for kstrdup() failure in lsm_append() Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 117/173] MIPS: loongson64: cs5536: Fix PCI_OHCI_INT_REG reads Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 118/173] configfs: fix registered group removal Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 119/173] pinctrl: rza1: Fix selector use for groups and functions Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 120/173] pinctrl: pinmux: Return selector to the pinctrl driver Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 121/173] sched/core: Use smp_mb() in wake_woken_function() Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 122/173] efi/esrt: Only call efi_mem_reserve() for boot services memory Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 123/173] ARM: hisi: handle of_iomap and fix missing of_node_put Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 124/173] ARM: hisi: fix error handling and " Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 125/173] ARM: hisi: check of_iomap and fix " Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 126/173] liquidio: fix hang when re-binding VF host drv after running DPDK VF driver Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 127/173] gpu: ipu-v3: csi: pass back mbus_code_to_bus_cfg error codes Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 128/173] tty: fix termios input-speed encoding when using BOTHER Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 129/173] tty: fix termios input-speed encoding Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 130/173] mmc: sdhci-of-esdhc: set proper dma mask for ls104x chips Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 131/173] mmc: tegra: prevent HS200 on Tegra 3 Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 132/173] mmc: sdhci: do not try to use 3.3V signaling if not supported Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 133/173] drm/nouveau: Fix runtime PM leak in drm_open() Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 134/173] drm/nouveau/debugfs: Wake up GPU before doing any reclocking Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 135/173] drm/nouveau: tegra: Detach from ARM DMA/IOMMU mapping Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 136/173] parport: sunbpp: fix error return code Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 137/173] sched/fair: Fix util_avg of new tasks for asymmetric systems Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 138/173] coresight: Handle errors in finding input/output ports Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 139/173] coresight: tpiu: Fix disabling timeouts Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 140/173] coresight: ETM: Add support for Arm Cortex-A73 and Cortex-A35 Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 141/173] staging: bcm2835-audio: Dont leak workqueue if open fails Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 142/173] gpio: pxa: Fix potential NULL dereference Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 143/173] gpiolib: Mark gpio_suffixes array with __maybe_unused Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 144/173] mfd: 88pm860x-i2c: switch to i2c_lock_bus(..., I2C_LOCK_SEGMENT) Greg Kroah-Hartman
2018-09-24 11:52 ` [PATCH 4.14 145/173] input: rohm_bu21023: " Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 146/173] rcu: Fix grace-period hangs due to race with CPU offline Greg Kroah-Hartman
2018-09-24 16:44 ` Paul E. McKenney
2018-09-24 11:53 ` [PATCH 4.14 147/173] drm/amdkfd: Fix error codes in kfd_get_process Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 148/173] rtc: bq4802: add error handling for devm_ioremap Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 149/173] ALSA: pcm: Fix snd_interval_refine first/last with open min/max Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 150/173] scsi: libfc: fixup sleeping function called from invalid context Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 151/173] selftest: timers: Tweak raw_skew to SKIP when ADJ_OFFSET/other clock adjustments are in progress Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 152/173] drm/panel: type promotion bug in s6e8aa0_read_mtp_id() Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 153/173] IB/nes: Fix a compiler warning Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 154/173] blk-mq: only attempt to merge bio if there is rq in sw queue Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 155/173] blk-mq: avoid to synchronize rcu inside blk_cleanup_queue() Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 156/173] gpiolib: Respect error code of ->get_direction() Greg Kroah-Hartman
2018-09-25 14:12 ` Jon Hunter
2018-09-25 14:42 ` Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 157/173] pinctrl: msm: Fix msm_config_group_get() to be compliant Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 158/173] pinctrl: qcom: spmi-gpio: Fix pmic_gpio_config_get() " Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 159/173] clk: tegra: bpmp: Dont crash when a clock fails to register Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 160/173] mei: bus: type promotion bug in mei_nfc_if_version() Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 161/173] earlycon: Initialize port->uartclk based on clock-frequency property Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 162/173] earlycon: Remove hardcoded port->uartclk initialization in of_setup_earlycon Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 163/173] ASoC: samsung: i2s: Fix error handling path in i2s_set_sysclk() Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 164/173] ASoC: samsung: Fix invalid argument when devm_gpiod_get is called Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 165/173] drm/i915: Apply the GTT write flush for all !llc machines Greg Kroah-Hartman
2018-09-24 11:53 ` Greg Kroah-Hartman [this message]
2018-09-24 11:53 ` [PATCH 4.14 167/173] e1000e: Remove Other from EIAC Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 168/173] Partial revert "e1000e: Avoid receiver overrun interrupt bursts" Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 169/173] e1000e: Fix queue interrupt re-raising in Other interrupt Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 170/173] e1000e: Avoid missed interrupts following ICR read Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 171/173] Revert "e1000e: Separate signaling for link check/link up" Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 172/173] e1000e: Fix link check race condition Greg Kroah-Hartman
2018-09-24 11:53 ` [PATCH 4.14 173/173] e1000e: Fix check_for_link return value with autoneg off Greg Kroah-Hartman
2018-09-24 18:07 ` [PATCH 4.14 000/173] 4.14.72-stable review Nathan Chancellor
2018-09-24 18:41 ` Greg Kroah-Hartman
2018-09-24 22:33 ` Shuah Khan
2018-09-25 9:07 ` Greg Kroah-Hartman
2018-09-26 0:28 ` Dan Rue
2018-09-26 3:01 ` Rafael Tinoco
2018-09-26 5:30 ` Greg KH
2018-09-26 9:48 ` Rafael Tinoco
2018-09-25 20:47 ` Guenter Roeck
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=20180924113127.224183751@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=davem@davemloft.net \
--cc=dsahern@gmail.com \
--cc=edumazet@google.com \
--cc=linux-kernel@vger.kernel.org \
--cc=stable@vger.kernel.org \
--cc=syzkaller@googlegroups.com \
--cc=zsm@chromium.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).