linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, Philipp Puschmann <pp@emlix.com>,
	Marcel Holtmann <marcel@holtmann.org>,
	Sasha Levin <alexander.levin@microsoft.com>
Subject: [PATCH 4.14 113/173] Bluetooth: Use lock_sock_nested in bt_accept_enqueue
Date: Mon, 24 Sep 2018 13:52:27 +0200	[thread overview]
Message-ID: <20180924113124.373492423@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: Philipp Puschmann <pp@emlix.com>

[ Upstream commit b71c69c26b4916d11b8d403d8e667bbd191f1b8f ]

Fixes this warning that was provoked by a pairing:

[60258.016221] WARNING: possible recursive locking detected
[60258.021558] 4.15.0-RD1812-BSP #1 Tainted: G           O
[60258.027146] --------------------------------------------
[60258.032464] kworker/u5:0/70 is trying to acquire lock:
[60258.037609]  (sk_lock-AF_BLUETOOTH-BTPROTO_L2CAP){+.+.}, at: [<87759073>] bt_accept_enqueue+0x3c/0x74
[60258.046863]
[60258.046863] but task is already holding lock:
[60258.052704]  (sk_lock-AF_BLUETOOTH-BTPROTO_L2CAP){+.+.}, at: [<d22d7106>] l2cap_sock_new_connection_cb+0x1c/0x88
[60258.062905]
[60258.062905] other info that might help us debug this:
[60258.069441]  Possible unsafe locking scenario:
[60258.069441]
[60258.075368]        CPU0
[60258.077821]        ----
[60258.080272]   lock(sk_lock-AF_BLUETOOTH-BTPROTO_L2CAP);
[60258.085510]   lock(sk_lock-AF_BLUETOOTH-BTPROTO_L2CAP);
[60258.090748]
[60258.090748]  *** DEADLOCK ***
[60258.090748]
[60258.096676]  May be due to missing lock nesting notation
[60258.096676]
[60258.103472] 5 locks held by kworker/u5:0/70:
[60258.107747]  #0:  ((wq_completion)%shdev->name#2){+.+.}, at: [<9460d092>] process_one_work+0x130/0x4fc
[60258.117263]  #1:  ((work_completion)(&hdev->rx_work)){+.+.}, at: [<9460d092>] process_one_work+0x130/0x4fc
[60258.126942]  #2:  (&conn->chan_lock){+.+.}, at: [<7877c8c3>] l2cap_connect+0x80/0x4f8
[60258.134806]  #3:  (&chan->lock/2){+.+.}, at: [<2e16c724>] l2cap_connect+0x8c/0x4f8
[60258.142410]  #4:  (sk_lock-AF_BLUETOOTH-BTPROTO_L2CAP){+.+.}, at: [<d22d7106>] l2cap_sock_new_connection_cb+0x1c/0x88
[60258.153043]
[60258.153043] stack backtrace:
[60258.157413] CPU: 1 PID: 70 Comm: kworker/u5:0 Tainted: G           O     4.15.0-RD1812-BSP #1
[60258.165945] Hardware name: Freescale i.MX6 Quad/DualLite (Device Tree)
[60258.172485] Workqueue: hci0 hci_rx_work
[60258.176331] Backtrace:
[60258.178797] [<8010c9fc>] (dump_backtrace) from [<8010ccbc>] (show_stack+0x18/0x1c)
[60258.186379]  r7:80e55fe4 r6:80e55fe4 r5:20050093 r4:00000000
[60258.192058] [<8010cca4>] (show_stack) from [<809864e8>] (dump_stack+0xb0/0xdc)
[60258.199301] [<80986438>] (dump_stack) from [<8016ecc8>] (__lock_acquire+0xffc/0x11d4)
[60258.207144]  r9:5e2bb019 r8:630f974c r7:ba8a5940 r6:ba8a5ed8 r5:815b5220 r4:80fa081c
[60258.214901] [<8016dccc>] (__lock_acquire) from [<8016f620>] (lock_acquire+0x78/0x98)
[60258.222655]  r10:00000040 r9:00000040 r8:808729f0 r7:00000001 r6:00000000 r5:60050013
[60258.230491]  r4:00000000
[60258.233045] [<8016f5a8>] (lock_acquire) from [<806ee974>] (lock_sock_nested+0x64/0x88)
[60258.240970]  r7:00000000 r6:b796e870 r5:00000001 r4:b796e800
[60258.246643] [<806ee910>] (lock_sock_nested) from [<808729f0>] (bt_accept_enqueue+0x3c/0x74)
[60258.255004]  r8:00000001 r7:ba7d3c00 r6:ba7d3ea4 r5:ba7d2000 r4:b796e800
[60258.261717] [<808729b4>] (bt_accept_enqueue) from [<808aa39c>] (l2cap_sock_new_connection_cb+0x68/0x88)
[60258.271117]  r5:b796e800 r4:ba7d2000
[60258.274708] [<808aa334>] (l2cap_sock_new_connection_cb) from [<808a294c>] (l2cap_connect+0x190/0x4f8)
[60258.283933]  r5:00000001 r4:ba6dce00
[60258.287524] [<808a27bc>] (l2cap_connect) from [<808a4a14>] (l2cap_recv_frame+0x744/0x2cf8)
[60258.295800]  r10:ba6dcf24 r9:00000004 r8:b78d8014 r7:00000004 r6:bb05d000 r5:00000004
[60258.303635]  r4:bb05d008
[60258.306183] [<808a42d0>] (l2cap_recv_frame) from [<808a7808>] (l2cap_recv_acldata+0x210/0x214)
[60258.314805]  r10:b78e7800 r9:bb05d960 r8:00000001 r7:bb05d000 r6:0000000c r5:b7957a80
[60258.322641]  r4:ba6dce00
[60258.325188] [<808a75f8>] (l2cap_recv_acldata) from [<8087630c>] (hci_rx_work+0x35c/0x4e8)
[60258.333374]  r6:80e5743c r5:bb05d7c8 r4:b7957a80
[60258.338004] [<80875fb0>] (hci_rx_work) from [<8013dc7c>] (process_one_work+0x1a4/0x4fc)
[60258.346018]  r10:00000001 r9:00000000 r8:baabfef8 r7:ba997500 r6:baaba800 r5:baaa5d00
[60258.353853]  r4:bb05d7c8
[60258.356401] [<8013dad8>] (process_one_work) from [<8013e028>] (worker_thread+0x54/0x5cc)
[60258.364503]  r10:baabe038 r9:baaba834 r8:80e05900 r7:00000088 r6:baaa5d18 r5:baaba800
[60258.372338]  r4:baaa5d00
[60258.374888] [<8013dfd4>] (worker_thread) from [<801448f8>] (kthread+0x134/0x160)
[60258.382295]  r10:ba8310b8 r9:bb07dbfc r8:8013dfd4 r7:baaa5d00 r6:00000000 r5:baaa8ac0
[60258.390130]  r4:ba831080
[60258.392682] [<801447c4>] (kthread) from [<801080b4>] (ret_from_fork+0x14/0x20)
[60258.399915]  r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:801447c4
[60258.407751]  r4:baaa8ac0 r3:baabe000

Signed-off-by: Philipp Puschmann <pp@emlix.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 net/bluetooth/af_bluetooth.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/net/bluetooth/af_bluetooth.c
+++ b/net/bluetooth/af_bluetooth.c
@@ -159,7 +159,7 @@ void bt_accept_enqueue(struct sock *pare
 	BT_DBG("parent %p, sk %p", parent, sk);
 
 	sock_hold(sk);
-	lock_sock(sk);
+	lock_sock_nested(sk, SINGLE_DEPTH_NESTING);
 	list_add_tail(&bt_sk(sk)->accept_q, &bt_sk(parent)->accept_q);
 	bt_sk(sk)->parent = parent;
 	release_sock(sk);



  parent reply	other threads:[~2018-09-24 12:18 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 ` Greg Kroah-Hartman [this message]
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 ` [PATCH 4.14 166/173] net/ipv6: prevent use after free in ip6_route_mpath_notify Greg Kroah-Hartman
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=20180924113124.373492423@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=alexander.levin@microsoft.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=marcel@holtmann.org \
    --cc=pp@emlix.com \
    --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 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).