stable.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, Josef Bacik <josef@toxicpanda.com>,
	Filipe Manana <fdmanana@suse.com>,
	David Sterba <dsterba@suse.com>
Subject: [PATCH 4.14 016/161] Btrfs: fix removal logic of the tree mod log that leads to use-after-free issues
Date: Sun, 29 Dec 2019 18:17:44 +0100	[thread overview]
Message-ID: <20191229162401.949376302@linuxfoundation.org> (raw)
In-Reply-To: <20191229162355.500086350@linuxfoundation.org>

From: Filipe Manana <fdmanana@suse.com>

commit 6609fee8897ac475378388238456c84298bff802 upstream.

When a tree mod log user no longer needs to use the tree it calls
btrfs_put_tree_mod_seq() to remove itself from the list of users and
delete all no longer used elements of the tree's red black tree, which
should be all elements with a sequence number less then our equals to
the caller's sequence number. However the logic is broken because it
can delete and free elements from the red black tree that have a
sequence number greater then the caller's sequence number:

1) At a point in time we have sequence numbers 1, 2, 3 and 4 in the
   tree mod log;

2) The task which got assigned the sequence number 1 calls
   btrfs_put_tree_mod_seq();

3) Sequence number 1 is deleted from the list of sequence numbers;

4) The current minimum sequence number is computed to be the sequence
   number 2;

5) A task using sequence number 2 is at tree_mod_log_rewind() and gets
   a pointer to one of its elements from the red black tree through
   a call to tree_mod_log_search();

6) The task with sequence number 1 iterates the red black tree of tree
   modification elements and deletes (and frees) all elements with a
   sequence number less then or equals to 2 (the computed minimum sequence
   number) - it ends up only leaving elements with sequence numbers of 3
   and 4;

7) The task with sequence number 2 now uses the pointer to its element,
   already freed by the other task, at __tree_mod_log_rewind(), resulting
   in a use-after-free issue. When CONFIG_DEBUG_PAGEALLOC=y it produces
   a trace like the following:

  [16804.546854] general protection fault: 0000 [#1] PREEMPT SMP DEBUG_PAGEALLOC PTI
  [16804.547451] CPU: 0 PID: 28257 Comm: pool Tainted: G        W         5.4.0-rc8-btrfs-next-51 #1
  [16804.548059] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.12.0-0-ga698c8995f-prebuilt.qemu.org 04/01/2014
  [16804.548666] RIP: 0010:rb_next+0x16/0x50
  (...)
  [16804.550581] RSP: 0018:ffffb948418ef9b0 EFLAGS: 00010202
  [16804.551227] RAX: 6b6b6b6b6b6b6b6b RBX: ffff90e0247f6600 RCX: 6b6b6b6b6b6b6b6b
  [16804.551873] RDX: 0000000000000000 RSI: 0000000000000000 RDI: ffff90e0247f6600
  [16804.552504] RBP: ffff90dffe0d4688 R08: 0000000000000001 R09: 0000000000000000
  [16804.553136] R10: ffff90dffa4a0040 R11: 0000000000000000 R12: 000000000000002e
  [16804.553768] R13: ffff90e0247f6600 R14: 0000000000001663 R15: ffff90dff77862b8
  [16804.554399] FS:  00007f4b197ae700(0000) GS:ffff90e036a00000(0000) knlGS:0000000000000000
  [16804.555039] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
  [16804.555683] CR2: 00007f4b10022000 CR3: 00000002060e2004 CR4: 00000000003606f0
  [16804.556336] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
  [16804.556968] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
  [16804.557583] Call Trace:
  [16804.558207]  __tree_mod_log_rewind+0xbf/0x280 [btrfs]
  [16804.558835]  btrfs_search_old_slot+0x105/0xd00 [btrfs]
  [16804.559468]  resolve_indirect_refs+0x1eb/0xc70 [btrfs]
  [16804.560087]  ? free_extent_buffer.part.19+0x5a/0xc0 [btrfs]
  [16804.560700]  find_parent_nodes+0x388/0x1120 [btrfs]
  [16804.561310]  btrfs_check_shared+0x115/0x1c0 [btrfs]
  [16804.561916]  ? extent_fiemap+0x59d/0x6d0 [btrfs]
  [16804.562518]  extent_fiemap+0x59d/0x6d0 [btrfs]
  [16804.563112]  ? __might_fault+0x11/0x90
  [16804.563706]  do_vfs_ioctl+0x45a/0x700
  [16804.564299]  ksys_ioctl+0x70/0x80
  [16804.564885]  ? trace_hardirqs_off_thunk+0x1a/0x20
  [16804.565461]  __x64_sys_ioctl+0x16/0x20
  [16804.566020]  do_syscall_64+0x5c/0x250
  [16804.566580]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
  [16804.567153] RIP: 0033:0x7f4b1ba2add7
  (...)
  [16804.568907] RSP: 002b:00007f4b197adc88 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
  [16804.569513] RAX: ffffffffffffffda RBX: 00007f4b100210d8 RCX: 00007f4b1ba2add7
  [16804.570133] RDX: 00007f4b100210d8 RSI: 00000000c020660b RDI: 0000000000000003
  [16804.570726] RBP: 000055de05a6cfe0 R08: 0000000000000000 R09: 00007f4b197add44
  [16804.571314] R10: 0000000000000000 R11: 0000000000000246 R12: 00007f4b197add48
  [16804.571905] R13: 00007f4b197add40 R14: 00007f4b100210d0 R15: 00007f4b197add50
  (...)
  [16804.575623] ---[ end trace 87317359aad4ba50 ]---

Fix this by making btrfs_put_tree_mod_seq() skip deletion of elements that
have a sequence number equals to the computed minimum sequence number, and
not just elements with a sequence number greater then that minimum.

Fixes: bd989ba359f2ac ("Btrfs: add tree modification log functions")
CC: stable@vger.kernel.org # 4.4+
Reviewed-by: Josef Bacik <josef@toxicpanda.com>
Signed-off-by: Filipe Manana <fdmanana@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 fs/btrfs/ctree.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/fs/btrfs/ctree.c
+++ b/fs/btrfs/ctree.c
@@ -427,7 +427,7 @@ void btrfs_put_tree_mod_seq(struct btrfs
 	for (node = rb_first(tm_root); node; node = next) {
 		next = rb_next(node);
 		tm = rb_entry(node, struct tree_mod_elem, node);
-		if (tm->seq > min_seq)
+		if (tm->seq >= min_seq)
 			continue;
 		rb_erase(node, tm_root);
 		kfree(tm);



  parent reply	other threads:[~2019-12-29 17:21 UTC|newest]

Thread overview: 170+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-29 17:17 [PATCH 4.14 000/161] 4.14.161-stable review Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 001/161] af_packet: set defaule value for tmo Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 002/161] fjes: fix missed check in fjes_acpi_add Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 003/161] mod_devicetable: fix PHY module format Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 004/161] net: dst: Force 4-byte alignment of dst_metrics Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 005/161] net: hisilicon: Fix a BUG trigered by wrong bytes_compl Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 006/161] net: nfc: nci: fix a possible sleep-in-atomic-context bug in nci_uart_tty_receive() Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 007/161] net: qlogic: Fix error paths in ql_alloc_large_buffers() Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 008/161] net: usb: lan78xx: Fix suspend/resume PHY register access error Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 009/161] qede: Fix multicast mac configuration Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 010/161] sctp: fully initialize v4 addr in some functions Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 011/161] btrfs: dont double lock the subvol_sem for rename exchange Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 012/161] btrfs: do not call synchronize_srcu() in inode_tree_del Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 013/161] btrfs: skip log replay on orphaned roots Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 014/161] btrfs: do not leak reloc root if we fail to read the fs root Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 015/161] btrfs: handle ENOENT in btrfs_uuid_tree_iterate Greg Kroah-Hartman
2019-12-29 17:17 ` Greg Kroah-Hartman [this message]
2019-12-29 17:17 ` [PATCH 4.14 017/161] ALSA: pcm: Avoid possible info leaks from PCM stream buffers Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 018/161] ALSA: hda/ca0132 - Keep power on during processing DSP response Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 019/161] ALSA: hda/ca0132 - Avoid endless loop Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 020/161] drm: mst: Fix query_payload ack reply struct Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 021/161] drm/bridge: analogix-anx78xx: silence -EPROBE_DEFER warnings Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 022/161] iio: light: bh1750: Resolve compiler warning and make code more readable Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 023/161] spi: Add call to spi_slave_abort() function when spidev driver is released Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 024/161] staging: rtl8192u: fix multiple memory leaks on error path Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 025/161] staging: rtl8188eu: fix possible null dereference Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 026/161] rtlwifi: prevent memory leak in rtl_usb_probe Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 027/161] libertas: fix a potential NULL pointer dereference Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 028/161] IB/iser: bound protection_sg size by data_sg size Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 029/161] media: am437x-vpfe: Setting STD to current value is not an error Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 030/161] media: i2c: ov2659: fix s_stream return value Greg Kroah-Hartman
2019-12-29 17:17 ` [PATCH 4.14 031/161] media: ov6650: Fix crop rectangle alignment not passed back Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 032/161] media: i2c: ov2659: Fix missing 720p register config Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 033/161] media: ov6650: Fix stored frame format not in sync with hardware Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 034/161] media: ov6650: Fix stored crop rectangle " Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 035/161] tools/power/cpupower: Fix initializer override in hsw_ext_cstates Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 036/161] media: venus: core: Fix msm8996 frequency table Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 037/161] ath10k: fix offchannel tx failure when no ath10k_mac_tx_frm_has_freq Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 038/161] pinctrl: devicetree: Avoid taking direct reference to device name string Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 039/161] selftests/bpf: Correct path to include msg + path Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 040/161] usb: renesas_usbhs: add suspend event support in gadget mode Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 041/161] hwrng: omap3-rom - Call clk_disable_unprepare() on exit only if not idled Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 042/161] regulator: max8907: Fix the usage of uninitialized variable in max8907_regulator_probe() Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 043/161] media: flexcop-usb: fix NULL-ptr deref in flexcop_usb_transfer_init() Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 044/161] media: cec-funcs.h: add status_req checks Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 045/161] drm/bridge: dw-hdmi: Refuse DDC/CI transfers on the internal I2C controller Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 046/161] samples: pktgen: fix proc_cmd command result check logic Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 047/161] block: Fix writeback throttling W=1 compiler warnings Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 048/161] mwifiex: pcie: Fix memory leak in mwifiex_pcie_init_evt_ring Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 049/161] media: cx88: Fix some error handling path in cx8800_initdev() Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 050/161] media: ti-vpe: vpe: Fix Motion Vector vpdma stride Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 051/161] media: ti-vpe: vpe: fix a v4l2-compliance warning about invalid pixel format Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 052/161] media: ti-vpe: vpe: fix a v4l2-compliance failure about frame sequence number Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 053/161] media: ti-vpe: vpe: Make sure YUYV is set as default format Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 054/161] media: ti-vpe: vpe: fix a v4l2-compliance failure causing a kernel panic Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 055/161] media: ti-vpe: vpe: ensure buffers are cleaned up properly in abort cases Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 056/161] media: ti-vpe: vpe: fix a v4l2-compliance failure about invalid sizeimage Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 057/161] extcon: sm5502: Reset registers during initialization Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 058/161] x86/mm: Use the correct function type for native_set_fixmap() Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 059/161] drm/bridge: dw-hdmi: Restore audio when setting a mode Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 060/161] perf test: Report failure for mmap events Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 061/161] perf report: Add warning when libunwind not compiled in Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 062/161] usb: usbfs: Suppress problematic bind and unbind uevents Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 063/161] iio: adc: max1027: Reset the device at probe time Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 064/161] Bluetooth: missed cpu_to_le16 conversion in hci_init4_req Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 065/161] Bluetooth: hci_core: fix init for HCI_USER_CHANNEL Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 066/161] x86/mce: Lower throttling MCE messages priority to warning Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 067/161] drm/gma500: fix memory disclosures due to uninitialized bytes Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 068/161] rtl8xxxu: fix RTL8723BU connection failure issue after warm reboot Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 069/161] x86/ioapic: Prevent inconsistent state when moving an interrupt Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 070/161] arm64: psci: Reduce the waiting time for cpu_psci_cpu_kill() Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 071/161] net: phy: dp83867: enable robust auto-mdix Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 072/161] RDMA/qedr: Fix memory leak in user qp and mr Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 073/161] gpu: host1x: Allocate gather copy for host1x Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 074/161] net: dsa: LAN9303: select REGMAP when LAN9303 enable Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 075/161] phy: qcom-usb-hs: Fix extcon double register after power cycle Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 076/161] s390/time: ensure get_clock_monotonic() returns monotonic values Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 077/161] s390/mm: add mm_pxd_folded() checks to pxd_free() Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 078/161] libata: Ensure ata_port probe has completed before detach Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 079/161] loop: fix no-unmap write-zeroes request behavior Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 080/161] pinctrl: sh-pfc: sh7734: Fix duplicate TCLK1_B Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 081/161] iio: dln2-adc: fix iio_triggered_buffer_postenable() position Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 082/161] Bluetooth: Fix advertising duplicated flags Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 083/161] pinctrl: amd: fix __iomem annotation in amd_gpio_irq_handler() Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 084/161] ixgbe: protect TX timestamping from API misuse Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 085/161] media: rcar_drif: fix a memory disclosure Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 086/161] media: v4l2-core: fix touch support in v4l_g_fmt Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 087/161] rfkill: allocate static minor Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 088/161] bnx2x: Fix PF-VF communication over multi-cos queues Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 089/161] spi: img-spfi: fix potential double release Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 090/161] ALSA: timer: Limit max amount of slave instances Greg Kroah-Hartman
2019-12-29 17:18 ` [PATCH 4.14 091/161] rtlwifi: fix memory leak in rtl92c_set_fw_rsvdpagepkt() Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 092/161] perf probe: Fix to find range-only function instance Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 093/161] perf probe: Fix to list probe event with correct line number Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 094/161] perf probe: Walk function lines in lexical blocks Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 095/161] perf probe: Fix to probe an inline function which has no entry pc Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 096/161] perf probe: Fix to show ranges of variables in functions without entry_pc Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 097/161] perf probe: Fix to show inlined function callsite " Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 098/161] libsubcmd: Use -O0 with DEBUG=1 Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 099/161] perf probe: Fix to probe a function which has no entry pc Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 100/161] drm/amdgpu: fix potential double drop fence reference Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 101/161] perf parse: If pmu configuration fails free terms Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 102/161] perf probe: Skip overlapped location on searching variables Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 103/161] perf probe: Return a better scope DIE if there is no best scope Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 104/161] perf probe: Fix to show calling lines of inlined functions Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 105/161] perf probe: Skip end-of-sequence and non statement lines Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 106/161] perf probe: Filter out instances except for inlined subroutine and subprogram Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 107/161] ath10k: fix get invalid tx rate for Mesh metric Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 108/161] fsi: core: Fix small accesses and unaligned offsets via sysfs Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 109/161] media: pvrusb2: Fix oops on tear-down when radio support is not present Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 110/161] media: si470x-i2c: add missed operations in remove Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 111/161] EDAC/ghes: Fix grain calculation Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 112/161] spi: pxa2xx: Add missed security checks Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 113/161] ASoC: rt5677: Mark reg RT5677_PWR_ANLG2 as volatile Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 114/161] ASoC: Intel: kbl_rt5663_rt5514_max98927: Add dmic format constraint Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 115/161] s390/disassembler: dont hide instruction addresses Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 116/161] parport: load lowlevel driver if ports not found Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 117/161] cpufreq: Register drivers only after CPU devices have been registered Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 118/161] x86/crash: Add a forward declaration of struct kimage Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 119/161] iwlwifi: mvm: fix unaligned read of rx_pkt_status Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 120/161] spi: tegra20-slink: add missed clk_unprepare Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 121/161] crypto: virtio - deal with unsupported input sizes Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 122/161] mmc: tmio: Add MMC_CAP_ERASE to allow erase/discard/trim requests Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 123/161] btrfs: dont prematurely free work in end_workqueue_fn() Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 124/161] btrfs: dont prematurely free work in run_ordered_work() Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 125/161] spi: st-ssc4: add missed pm_runtime_disable Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 126/161] x86/insn: Add some Intel instructions to the opcode map Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 127/161] iwlwifi: check kasprintf() return value Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 128/161] fbtft: Make sure string is NULL terminated Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 129/161] crypto: sun4i-ss - Fix 64-bit size_t warnings Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 130/161] crypto: sun4i-ss - Fix 64-bit size_t warnings on sun4i-ss-hash.c Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 131/161] mac80211: consider QoS Null frames for STA_NULLFUNC_ACKED Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 132/161] crypto: vmx - Avoid weird build failures Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 133/161] libtraceevent: Fix memory leakage in copy_filter_type Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 134/161] mips: fix build when "48 bits virtual memory" is enabled Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 135/161] net: phy: initialise phydev speed and duplex sanely Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 136/161] btrfs: dont prematurely free work in reada_start_machine_worker() Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 137/161] btrfs: dont prematurely free work in scrub_missing_raid56_worker() Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 138/161] Revert "mmc: sdhci: Fix incorrect switch to HS mode" Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 139/161] mmc: mediatek: fix CMD_TA to 2 for MT8173 HS200/HS400 mode Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 140/161] usb: xhci: Fix build warning seen with CONFIG_PM=n Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 141/161] s390/ftrace: fix endless recursion in function_graph tracer Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 142/161] btrfs: return error pointer from alloc_test_extent_buffer Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 143/161] btrfs: abort transaction after failed inode updates in create_subvol Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 144/161] usbip: Fix receive error in vhci-hcd when using scatter-gather Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 145/161] usbip: Fix error path of vhci_recv_ret_submit() Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 146/161] USB: EHCI: Do not return -EPIPE when hub is disconnected Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 147/161] intel_th: pci: Add Comet Lake PCH-V support Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 148/161] intel_th: pci: Add Elkhart Lake SOC support Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 149/161] platform/x86: hp-wmi: Make buffer for HPWMI_FEATURE2_QUERY 128 bytes Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 150/161] staging: comedi: gsc_hpdi: check dma_alloc_coherent() return value Greg Kroah-Hartman
2019-12-29 17:19 ` [PATCH 4.14 151/161] ext4: fix ext4_empty_dir() for directories with holes Greg Kroah-Hartman
2019-12-29 17:20 ` [PATCH 4.14 152/161] ext4: check for directory entries too close to block end Greg Kroah-Hartman
2019-12-29 17:20 ` [PATCH 4.14 153/161] ext4: unlock on error in ext4_expand_extra_isize() Greg Kroah-Hartman
2019-12-29 17:20 ` [PATCH 4.14 154/161] KVM: arm64: Ensure params is initialised when looking up sys register Greg Kroah-Hartman
2019-12-29 17:20 ` [PATCH 4.14 155/161] x86/MCE/AMD: Do not use rdmsr_safe_on_cpu() in smca_configure() Greg Kroah-Hartman
2019-12-29 17:20 ` [PATCH 4.14 156/161] x86/MCE/AMD: Allow Reserved types to be overwritten in smca_banks[] Greg Kroah-Hartman
2019-12-29 17:20 ` [PATCH 4.14 157/161] powerpc/irq: fix stack overflow verification Greg Kroah-Hartman
2019-12-29 17:20 ` [PATCH 4.14 158/161] mmc: sdhci-of-esdhc: Revert "mmc: sdhci-of-esdhc: add erratum A-009204 support" Greg Kroah-Hartman
2019-12-29 17:20 ` [PATCH 4.14 159/161] mmc: sdhci: Update the tuning failed messages to pr_debug level Greg Kroah-Hartman
2019-12-29 17:20 ` [PATCH 4.14 160/161] mmc: sdhci-of-esdhc: fix P2020 errata handling Greg Kroah-Hartman
2019-12-29 17:20 ` [PATCH 4.14 161/161] nbd: fix shutdown and recv work deadlock v2 Greg Kroah-Hartman
2019-12-30  2:26 ` [PATCH 4.14 000/161] 4.14.161-stable review shuah
2019-12-30 15:30 ` Dan Rue
2019-12-30 17:12 ` Guenter Roeck
2019-12-30 17:34   ` Greg Kroah-Hartman
2019-12-30 17:44 ` Greg Kroah-Hartman
2019-12-30 20:19 ` Jon Hunter
2019-12-31 16:03 ` Guenter Roeck
2019-12-31 16:18   ` Greg Kroah-Hartman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20191229162401.949376302@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=dsterba@suse.com \
    --cc=fdmanana@suse.com \
    --cc=josef@toxicpanda.com \
    --cc=linux-kernel@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 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).