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, Filipe Manana <fdmanana@suse.com>,
	David Sterba <dsterba@suse.com>
Subject: [PATCH 5.4 166/261] btrfs: fix space_info bytes_may_use underflow after nocow buffered write
Date: Fri, 19 Jun 2020 16:32:57 +0200	[thread overview]
Message-ID: <20200619141657.849187546@linuxfoundation.org> (raw)
In-Reply-To: <20200619141649.878808811@linuxfoundation.org>

From: Filipe Manana <fdmanana@suse.com>

commit 467dc47ea99c56e966e99d09dae54869850abeeb upstream.

When doing a buffered write we always try to reserve data space for it,
even when the file has the NOCOW bit set or the write falls into a file
range covered by a prealloc extent. This is done both because it is
expensive to check if we can do a nocow write (checking if an extent is
shared through reflinks or if there's a hole in the range for example),
and because when writeback starts we might actually need to fallback to
COW mode (for example the block group containing the target extents was
turned into RO mode due to a scrub or balance).

When we are unable to reserve data space we check if we can do a nocow
write, and if we can, we proceed with dirtying the pages and setting up
the range for delalloc. In this case the bytes_may_use counter of the
data space_info object is not incremented, unlike in the case where we
are able to reserve data space (done through btrfs_check_data_free_space()
which calls btrfs_alloc_data_chunk_ondemand()).

Later when running delalloc we attempt to start writeback in nocow mode
but we might revert back to cow mode, for example because in the meanwhile
a block group was turned into RO mode by a scrub or relocation. The cow
path after successfully allocating an extent ends up calling
btrfs_add_reserved_bytes(), which expects the bytes_may_use counter of
the data space_info object to have been incremented before - but we did
not do it when the buffered write started, since there was not enough
available data space. So btrfs_add_reserved_bytes() ends up decrementing
the bytes_may_use counter anyway, and when the counter's current value
is smaller then the size of the allocated extent we get a stack trace
like the following:

 ------------[ cut here ]------------
 WARNING: CPU: 0 PID: 20138 at fs/btrfs/space-info.h:115 btrfs_add_reserved_bytes+0x3d6/0x4e0 [btrfs]
 Modules linked in: btrfs blake2b_generic xor raid6_pq libcrc32c (...)
 CPU: 0 PID: 20138 Comm: kworker/u8:15 Not tainted 5.6.0-rc7-btrfs-next-58 #5
 Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.12.0-59-gc9ba5276e321-prebuilt.qemu.org 04/01/2014
 Workqueue: writeback wb_workfn (flush-btrfs-1754)
 RIP: 0010:btrfs_add_reserved_bytes+0x3d6/0x4e0 [btrfs]
 Code: ff ff 48 (...)
 RSP: 0018:ffffbda18a4b3568 EFLAGS: 00010287
 RAX: 0000000000000000 RBX: ffff9ca076f5d800 RCX: 0000000000000000
 RDX: 0000000000000002 RSI: 0000000000000000 RDI: ffff9ca068470410
 RBP: fffffffffffff000 R08: 0000000000000001 R09: 0000000000000000
 R10: ffff9ca079d58040 R11: 0000000000000000 R12: ffff9ca068470400
 R13: ffff9ca0408b2000 R14: 0000000000001000 R15: ffff9ca076f5d800
 FS:  0000000000000000(0000) GS:ffff9ca07a600000(0000) knlGS:0000000000000000
 CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
 CR2: 00005605dbfe7048 CR3: 0000000138570006 CR4: 00000000003606f0
 DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
 DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
 Call Trace:
  find_free_extent+0x4a0/0x16c0 [btrfs]
  btrfs_reserve_extent+0x91/0x180 [btrfs]
  cow_file_range+0x12d/0x490 [btrfs]
  run_delalloc_nocow+0x341/0xa40 [btrfs]
  btrfs_run_delalloc_range+0x1ea/0x6d0 [btrfs]
  ? find_lock_delalloc_range+0x221/0x250 [btrfs]
  writepage_delalloc+0xe8/0x150 [btrfs]
  __extent_writepage+0xe8/0x4c0 [btrfs]
  extent_write_cache_pages+0x237/0x530 [btrfs]
  ? btrfs_wq_submit_bio+0x9f/0xc0 [btrfs]
  extent_writepages+0x44/0xa0 [btrfs]
  do_writepages+0x23/0x80
  __writeback_single_inode+0x59/0x700
  writeback_sb_inodes+0x267/0x5f0
  __writeback_inodes_wb+0x87/0xe0
  wb_writeback+0x382/0x590
  ? wb_workfn+0x4a2/0x6c0
  wb_workfn+0x4a2/0x6c0
  process_one_work+0x26d/0x6a0
  worker_thread+0x4f/0x3e0
  ? process_one_work+0x6a0/0x6a0
  kthread+0x103/0x140
  ? kthread_create_worker_on_cpu+0x70/0x70
  ret_from_fork+0x3a/0x50
 irq event stamp: 0
 hardirqs last  enabled at (0): [<0000000000000000>] 0x0
 hardirqs last disabled at (0): [<ffffffff94ebdedf>] copy_process+0x74f/0x2020
 softirqs last  enabled at (0): [<ffffffff94ebdedf>] copy_process+0x74f/0x2020
 softirqs last disabled at (0): [<0000000000000000>] 0x0
 ---[ end trace f9f6ef8ec4cd8ec9 ]---

So to fix this, when falling back into cow mode check if space was not
reserved, by testing for the bit EXTENT_NORESERVE in the respective file
range, and if not, increment the bytes_may_use counter for the data
space_info object. Also clear the EXTENT_NORESERVE bit from the range, so
that if the cow path fails it decrements the bytes_may_use counter when
clearing the delalloc range (through the btrfs_clear_delalloc_extent()
callback).

Fixes: 7ee9e4405f264e ("Btrfs: check if we can nocow if we don't have data space")
CC: stable@vger.kernel.org # 4.4+
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/inode.c |   61 ++++++++++++++++++++++++++++++++++++++++++++++++++-----
 1 file changed, 56 insertions(+), 5 deletions(-)

--- a/fs/btrfs/inode.c
+++ b/fs/btrfs/inode.c
@@ -49,6 +49,7 @@
 #include "qgroup.h"
 #include "delalloc-space.h"
 #include "block-group.h"
+#include "space-info.h"
 
 struct btrfs_iget_args {
 	struct btrfs_key *location;
@@ -1322,6 +1323,56 @@ static noinline int csum_exist_in_range(
 	return 1;
 }
 
+static int fallback_to_cow(struct inode *inode, struct page *locked_page,
+			   const u64 start, const u64 end,
+			   int *page_started, unsigned long *nr_written)
+{
+	struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
+	u64 range_start = start;
+	u64 count;
+
+	/*
+	 * If EXTENT_NORESERVE is set it means that when the buffered write was
+	 * made we had not enough available data space and therefore we did not
+	 * reserve data space for it, since we though we could do NOCOW for the
+	 * respective file range (either there is prealloc extent or the inode
+	 * has the NOCOW bit set).
+	 *
+	 * However when we need to fallback to COW mode (because for example the
+	 * block group for the corresponding extent was turned to RO mode by a
+	 * scrub or relocation) we need to do the following:
+	 *
+	 * 1) We increment the bytes_may_use counter of the data space info.
+	 *    If COW succeeds, it allocates a new data extent and after doing
+	 *    that it decrements the space info's bytes_may_use counter and
+	 *    increments its bytes_reserved counter by the same amount (we do
+	 *    this at btrfs_add_reserved_bytes()). So we need to increment the
+	 *    bytes_may_use counter to compensate (when space is reserved at
+	 *    buffered write time, the bytes_may_use counter is incremented);
+	 *
+	 * 2) We clear the EXTENT_NORESERVE bit from the range. We do this so
+	 *    that if the COW path fails for any reason, it decrements (through
+	 *    extent_clear_unlock_delalloc()) the bytes_may_use counter of the
+	 *    data space info, which we incremented in the step above.
+	 */
+	count = count_range_bits(io_tree, &range_start, end, end + 1 - start,
+				 EXTENT_NORESERVE, 0);
+	if (count > 0) {
+		struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
+		struct btrfs_space_info *sinfo = fs_info->data_sinfo;
+
+		spin_lock(&sinfo->lock);
+		btrfs_space_info_update_bytes_may_use(fs_info, sinfo, count);
+		spin_unlock(&sinfo->lock);
+
+		clear_extent_bit(io_tree, start, end, EXTENT_NORESERVE, 0, 0,
+				 NULL);
+	}
+
+	return cow_file_range(inode, locked_page, start, end, page_started,
+			      nr_written, 1);
+}
+
 /*
  * when nowcow writeback call back.  This checks for snapshots or COW copies
  * of the extents that exist in the file, and COWs the file as required.
@@ -1569,9 +1620,9 @@ out_check:
 		 * NOCOW, following one which needs to be COW'ed
 		 */
 		if (cow_start != (u64)-1) {
-			ret = cow_file_range(inode, locked_page,
-					     cow_start, found_key.offset - 1,
-					     page_started, nr_written, 1);
+			ret = fallback_to_cow(inode, locked_page, cow_start,
+					      found_key.offset - 1,
+					      page_started, nr_written);
 			if (ret) {
 				if (nocow)
 					btrfs_dec_nocow_writers(fs_info,
@@ -1660,8 +1711,8 @@ out_check:
 
 	if (cow_start != (u64)-1) {
 		cur_offset = end;
-		ret = cow_file_range(inode, locked_page, cow_start, end,
-				     page_started, nr_written, 1);
+		ret = fallback_to_cow(inode, locked_page, cow_start, end,
+				      page_started, nr_written);
 		if (ret)
 			goto error;
 	}



  parent reply	other threads:[~2020-06-19 15:12 UTC|newest]

Thread overview: 267+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-19 14:30 [PATCH 5.4 000/261] 5.4.48-rc1 review Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 001/261] ACPI: GED: use correct trigger type field in _Exx / _Lxx handling Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 002/261] drm/amdgpu: fix and cleanup amdgpu_gem_object_close v4 Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 003/261] ath10k: Fix the race condition in firmware dump work queue Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 004/261] drm: bridge: adv7511: Extend list of audio sample rates Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 005/261] media: staging: imgu: do not hold spinlock during freeing mmu page table Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 006/261] media: imx: imx7-mipi-csis: Cleanup and fix subdev pad format handling Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 007/261] crypto: ccp -- dont "select" CONFIG_DMADEVICES Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 008/261] media: vicodec: Fix error codes in probe function Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 009/261] media: si2157: Better check for running tuner in init Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 010/261] objtool: Ignore empty alternatives Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 011/261] spi: spi-mem: Fix Dual/Quad modes on Octal-capable devices Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 012/261] drm/amdgpu: Init data to avoid oops while reading pp_num_states Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 013/261] arm64/kernel: Fix range on invalidating dcache for boot page tables Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 014/261] libbpf: Fix memory leak and possible double-free in hashmap__clear Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 015/261] spi: pxa2xx: Apply CS clk quirk to BXT Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 016/261] x86,smap: Fix smap_{save,restore}() alternatives Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 017/261] sched/fair: Refill bandwidth before scaling Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 018/261] net: atlantic: make hw_get_regs optional Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 019/261] net: ena: fix error returning in ena_com_get_hash_function() Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 020/261] efi/libstub/x86: Work around LLVM ELF quirk build regression Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 021/261] ath10k: remove the max_sched_scan_reqs value Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 022/261] arm64: cacheflush: Fix KGDB trap detection Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 023/261] media: staging: ipu3: Fix stale list entries on parameter queue failure Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 024/261] rtw88: fix an issue about leak system resources Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 025/261] spi: dw: Zero DMA Tx and Rx configurations on stack Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 026/261] ACPICA: Dispatcher: add status checks Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 027/261] block: alloc map and request for new hardware queue Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 028/261] arm64: insn: Fix two bugs in encoding 32-bit logical immediates Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 029/261] block: reset mapping if failed to update hardware queue count Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 030/261] drm: rcar-du: Set primary plane zpos immutably at initializing Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 031/261] lockdown: Allow unprivileged users to see lockdown status Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 032/261] ixgbe: Fix XDP redirect on archs with PAGE_SIZE above 4K Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 033/261] platform/x86: dell-laptop: dont register micmute LED if there is no token Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 034/261] MIPS: Loongson: Build ATI Radeon GPU driver as module Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 035/261] Bluetooth: Add SCO fallback for invalid LMP parameters error Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 036/261] kgdb: Disable WARN_CONSOLE_UNLOCKED for all kgdb Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 037/261] kgdb: Prevent infinite recursive entries to the debugger Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 038/261] pmu/smmuv3: Clear IRQ affinity hint on device removal Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 039/261] ACPI/IORT: Fix PMCG node single ID mapping handling Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 040/261] mips: Fix cpu_has_mips64r1/2 activation for MIPS32 CPUs Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 041/261] spi: dw: Enable interrupts in accordance with DMA xfer mode Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 042/261] clocksource: dw_apb_timer: Make CPU-affiliation being optional Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 043/261] clocksource: dw_apb_timer_of: Fix missing clockevent timers Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 044/261] media: dvbdev: Fix tuner->demod media controller link Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 045/261] btrfs: account for trans_block_rsv in may_commit_transaction Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 046/261] btrfs: do not ignore error from btrfs_next_leaf() when inserting checksums Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 047/261] ARM: 8978/1: mm: make act_mm() respect THREAD_SIZE Greg Kroah-Hartman
2020-06-19 14:30 ` [PATCH 5.4 048/261] batman-adv: Revert "disable ethtool link speed detection when auto negotiation off" Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 049/261] ice: Fix memory leak Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 050/261] ice: Fix for memory leaks and modify ICE_FREE_CQ_BUFS Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 051/261] mmc: meson-mx-sdio: trigger a soft reset after a timeout or CRC error Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 052/261] Bluetooth: btmtkuart: Improve exception handling in btmtuart_probe() Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 053/261] spi: dw: Fix Rx-only DMA transfers Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 054/261] x86/kvm/hyper-v: Explicitly align hcall param for kvm_hyperv_exit Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 055/261] net: vmxnet3: fix possible buffer overflow caused by bad DMA value in vmxnet3_get_rss() Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 056/261] x86: fix vmap arguments in map_irq_stack Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 057/261] staging: android: ion: use vmap instead of vm_map_ram Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 058/261] ath10k: fix kernel null pointer dereference Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 059/261] media: staging/intel-ipu3: Implement lock for stream on/off operations Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 060/261] spi: Respect DataBitLength field of SpiSerialBusV2() ACPI resource Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 061/261] brcmfmac: fix wrong location to get firmware feature Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 062/261] regulator: qcom-rpmh: Fix typos in pm8150 and pm8150l Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 063/261] tools api fs: Make xxx__mountpoint() more scalable Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 064/261] e1000: Distribute switch variables for initialization Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 065/261] dt-bindings: display: mediatek: control dpi pins mode to avoid leakage Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 066/261] drm/mediatek: set dpi pin mode to gpio low to avoid leakage current Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 067/261] audit: fix a net reference leak in audit_send_reply() Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 068/261] media: dvb: return -EREMOTEIO on i2c transfer failure Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 069/261] media: platform: fcp: Set appropriate DMA parameters Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 070/261] MIPS: Make sparse_init() using top-down allocation Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 071/261] ath10k: add flush tx packets for SDIO chip Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 072/261] Bluetooth: btbcm: Add 2 missing models to subver tables Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 073/261] audit: fix a net reference leak in audit_list_rules_send() Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 074/261] Drivers: hv: vmbus: Always handle the VMBus messages on CPU0 Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 075/261] dpaa2-eth: fix return codes used in ndo_setup_tc Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 076/261] netfilter: nft_nat: return EOPNOTSUPP if type or flags are not supported Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 077/261] selftests/bpf: Fix memory leak in extract_build_id() Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 078/261] net: bcmgenet: set Rx mode before starting netif Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 079/261] net: bcmgenet: Fix WoL with password after deep sleep Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 080/261] lib/mpi: Fix 64-bit MIPS build with Clang Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 081/261] exit: Move preemption fixup up, move blocking operations down Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 082/261] sched/core: Fix illegal RCU from offline CPUs Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 083/261] drivers/perf: hisi: Fix typo in events attribute array Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 084/261] iocost_monitor: drop string wrap around numbers when outputting json Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 085/261] net: lpc-enet: fix error return code in lpc_mii_init() Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 086/261] selinux: fix error return code in policydb_read() Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 087/261] drivers: net: davinci_mdio: fix potential NULL dereference in davinci_mdio_probe() Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 088/261] media: cec: silence shift wrapping warning in __cec_s_log_addrs() Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 089/261] net: allwinner: Fix use correct return type for ndo_start_xmit() Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 090/261] powerpc/spufs: fix copy_to_user while atomic Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 091/261] libertas_tf: avoid a null dereference in pointer priv Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 092/261] xfs: clean up the error handling in xfs_swap_extents Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 093/261] Crypto/chcr: fix for ccm(aes) failed test Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 094/261] MIPS: Truncate link address into 32bit for 32bit kernel Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 095/261] mips: cm: Fix an invalid error code of INTVN_*_ERR Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 096/261] kgdb: Fix spurious true from in_dbg_master() Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 097/261] xfs: reset buffer write failure state on successful completion Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 098/261] xfs: fix duplicate verification from xfs_qm_dqflush() Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 099/261] platform/x86: intel-vbtn: Use acpi_evaluate_integer() Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 100/261] platform/x86: intel-vbtn: Split keymap into buttons and switches parts Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 101/261] platform/x86: intel-vbtn: Do not advertise switches to userspace if they are not there Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 102/261] platform/x86: intel-vbtn: Also handle tablet-mode switch on "Detachable" and "Portable" chassis-types Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 103/261] iwlwifi: avoid debug max amsdu config overwriting itself Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 104/261] nvme: refine the Qemu Identify CNS quirk Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 105/261] nvme-pci: align io queue count with allocted nvme_queue in nvme_probe Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 106/261] nvme-tcp: use bh_lock in data_ready Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 107/261] ath10k: Remove msdu from idr when management pkt send fails Greg Kroah-Hartman
2020-06-19 14:31 ` [PATCH 5.4 108/261] wcn36xx: Fix error handling path in wcn36xx_probe() Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 109/261] net: qed*: Reduce RX and TX default ring count when running inside kdump kernel Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 110/261] drm/mcde: dsi: Fix return value check in mcde_dsi_bind() Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 111/261] mt76: avoid rx reorder buffer overflow Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 112/261] md: dont flush workqueue unconditionally in md_open Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 113/261] raid5: remove gfp flags from scribble_alloc() Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 114/261] iocost: dont let vrate run wild while theres no saturation signal Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 115/261] veth: Adjust hard_start offset on redirect XDP frames Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 116/261] net/mlx5e: IPoIB, Drop multicast packets that this interface sent Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 117/261] rtlwifi: Fix a double free in _rtl_usb_tx_urb_setup() Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 118/261] mwifiex: Fix memory corruption in dump_station Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 119/261] kgdboc: Use a platform device to handle tty drivers showing up late Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 120/261] x86/boot: Correct relocation destination on old linkers Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 121/261] sched: Defend cfs and rt bandwidth quota against overflow Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 122/261] mips: MAAR: Use more precise address mask Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 123/261] mips: Add udelay lpj numbers adjustment Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 124/261] crypto: stm32/crc32 - fix ext4 chksum BUG_ON() Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 125/261] crypto: stm32/crc32 - fix run-time self test issue Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 126/261] crypto: stm32/crc32 - fix multi-instance Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 127/261] drm/amd/powerpay: Disable gfxoff when setting manual mode on picasso and raven Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 128/261] drm/amdgpu: Sync with VM root BO when switching VM to CPU update mode Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 129/261] selftests/bpf: CONFIG_IPV6_SEG6_BPF required for test_seg6_loop.o Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 130/261] x86/mm: Stop printing BRK addresses Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 131/261] MIPS: tools: Fix resource leak in elf-entry.c Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 132/261] m68k: mac: Dont call via_flush_cache() on Mac IIfx Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 133/261] btrfs: improve global reserve stealing logic Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 134/261] btrfs: qgroup: mark qgroup inconsistent if were inherting snapshot to a new qgroup Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 135/261] net: ethernet: fec: move GPR register offset and bit into DT Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 136/261] macvlan: Skip loopback packets in RX handler Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 137/261] PCI: Dont disable decoding when mmio_always_on is set Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 138/261] MIPS: Fix IRQ tracing when call handle_fpe() and handle_msa_fpe() Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 139/261] bcache: fix refcount underflow in bcache_device_free() Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 140/261] mmc: sdhci-msm: Set SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12 quirk Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 141/261] staging: greybus: sdio: Respect the cmd->busy_timeout from the mmc core Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 142/261] mmc: via-sdmmc: " Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 143/261] ice: fix potential double free in probe unrolling Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 144/261] ixgbe: fix signed-integer-overflow warning Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 145/261] iwlwifi: mvm: fix aux station leak Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 146/261] mmc: sdhci-esdhc-imx: fix the mask for tuning start point Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 147/261] spi: dw: Return any value retrieved from the dma_transfer callback Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 148/261] cpuidle: Fix three reference count leaks Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 149/261] platform/x86: hp-wmi: Convert simple_strtoul() to kstrtou32() Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 150/261] platform/x86: intel-hid: Add a quirk to support HP Spectre X2 (2015) Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 151/261] platform/x86: intel-vbtn: Only blacklist SW_TABLET_MODE on the 9 / "Laptop" chasis-type Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 152/261] platform/x86: asus_wmi: Reserve more space for struct bias_args Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 153/261] libbpf: Fix perf_buffer__free() API for sparse allocs Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 154/261] bpf: Fix map permissions check Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 155/261] bpf: Refactor sockmap redirect code so its easy to reuse Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 156/261] bpf: Fix running sk_skb program types with ktls Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 157/261] selftests/bpf, flow_dissector: Close TAP device FD after the test Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 158/261] kasan: stop tests being eliminated as dead code with FORTIFY_SOURCE Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 159/261] string.h: fix incompatibility between FORTIFY_SOURCE and KASAN Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 160/261] btrfs: free alien device after device add Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 161/261] btrfs: include non-missing as a qualifier for the latest_bdev Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 162/261] btrfs: send: emit file capabilities after chown Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 163/261] btrfs: force chunk allocation if our global rsv is larger than metadata Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 164/261] btrfs: fix error handling when submitting direct I/O bio Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 165/261] btrfs: fix wrong file range cleanup after an error filling dealloc range Greg Kroah-Hartman
2020-06-19 14:32 ` Greg Kroah-Hartman [this message]
2020-06-19 14:32 ` [PATCH 5.4 167/261] btrfs: fix space_info bytes_may_use underflow during space cache writeout Greg Kroah-Hartman
2020-06-19 14:32 ` [PATCH 5.4 168/261] powerpc/mm: Fix conditions to perform MMU specific management by blocks on PPC32 Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 169/261] mm: thp: make the THP mapcount atomic against __split_huge_pmd_locked() Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 170/261] mm: initialize deferred pages with interrupts enabled Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 171/261] MIPS: CPU_LOONGSON2EF need software to maintain cache consistency Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 172/261] mm/pagealloc.c: call touch_nmi_watchdog() on max order boundaries in deferred init Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 173/261] mm: call cond_resched() from deferred_init_memmap() Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 174/261] ima: Fix ima digest hash table key calculation Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 175/261] ima: Switch to ima_hash_algo for boot aggregate Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 176/261] ima: Evaluate error in init_ima() Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 177/261] ima: Directly assign the ima_default_policy pointer to ima_rules Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 178/261] ima: Call ima_calc_boot_aggregate() in ima_eventdigest_init() Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 179/261] ima: Remove __init annotation from ima_pcrread() Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 180/261] evm: Fix possible memory leak in evm_calc_hmac_or_hash() Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 181/261] ext4: fix EXT_MAX_EXTENT/INDEX to check for zeroed eh_max Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 182/261] ext4: fix error pointer dereference Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 183/261] ext4: fix race between ext4_sync_parent() and rename() Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 184/261] PCI: Avoid Pericom USB controller OHCI/EHCI PME# defect Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 185/261] PCI: Avoid FLR for AMD Matisse HD Audio & USB 3.0 Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 186/261] PCI: Avoid FLR for AMD Starship " Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 187/261] PCI: Add ACS quirk for Intel Root Complex Integrated Endpoints Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 188/261] PCI: vmd: Add device id for VMD device 8086:9A0B Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 189/261] x86/amd_nb: Add Family 19h PCI IDs Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 190/261] PCI: Add Loongson vendor ID Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 191/261] serial: 8250_pci: Move Pericom IDs to pci_ids.h Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 192/261] x86/amd_nb: Add AMD family 17h model 60h PCI IDs Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 193/261] ima: Remove redundant policy rule set in add_rules() Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 194/261] ima: Set again build_ima_appraise variable Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 195/261] PCI: Program MPS for RCiEP devices Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 196/261] e1000e: Disable TSO for buffer overrun workaround Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 197/261] e1000e: Relax condition to trigger reset for ME workaround Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 198/261] carl9170: remove P2P_GO support Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 199/261] media: go7007: fix a miss of snd_card_free Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 200/261] media: cedrus: Program output format during each run Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 201/261] serial: 8250: Avoid error message on reprobe Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 202/261] Bluetooth: hci_bcm: fix freeing not-requested IRQ Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 203/261] b43legacy: Fix case where channel status is corrupted Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 204/261] b43: Fix connection problem with WPA3 Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 205/261] b43_legacy: " Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 206/261] media: ov5640: fix use of destroyed mutex Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 207/261] clk: mediatek: assign the initial value to clk_init_data of mtk_mux Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 208/261] igb: Report speed and duplex as unknown when device is runtime suspended Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 209/261] hwmon: (k10temp) Add AMD family 17h model 60h PCI match Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 210/261] EDAC/amd64: Add AMD family 17h model 60h PCI IDs Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 211/261] power: vexpress: add suppress_bind_attrs to true Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 212/261] power: supply: core: fix HWMON temperature labels Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 213/261] power: supply: core: fix memory leak in HWMON error path Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 214/261] pinctrl: samsung: Correct setting of eint wakeup mask on s5pv210 Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 215/261] pinctrl: samsung: Save/restore eint_mask over suspend for EINT_TYPE GPIOs Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 216/261] gnss: sirf: fix error return code in sirf_probe() Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 217/261] sparc32: fix register window handling in genregs32_[gs]et() Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 218/261] sparc64: fix misuses of access_process_vm() in genregs32_[sg]et() Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 219/261] dm crypt: avoid truncating the logical block size Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 220/261] alpha: fix memory barriers so that they conform to the specification Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 221/261] powerpc/fadump: use static allocation for reserved memory ranges Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 222/261] powerpc/fadump: consider reserved ranges while reserving memory Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 223/261] powerpc/fadump: Account for memory_limit " Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 224/261] kernel/cpu_pm: Fix uninitted local in cpu_pm Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 225/261] ARM: tegra: Correct PL310 Auxiliary Control Register initialization Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 226/261] soc/tegra: pmc: Select GENERIC_PINCONF Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 227/261] ARM: dts: exynos: Fix GPIO polarity for thr GalaxyS3 CM36651 sensors bus Greg Kroah-Hartman
2020-06-19 14:33 ` [PATCH 5.4 228/261] ARM: dts: at91: sama5d2_ptc_ek: fix vbus pin Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 229/261] ARM: dts: s5pv210: Set keep-power-in-suspend for SDHCI1 on Aries Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 230/261] drivers/macintosh: Fix memleak in windfarm_pm112 driver Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 231/261] powerpc/32s: Fix another build failure with CONFIG_PPC_KUAP_DEBUG Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 232/261] powerpc/kasan: Fix issues by lowering KASAN_SHADOW_END Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 233/261] powerpc/kasan: Fix shadow pages allocation failure Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 234/261] powerpc/32: Disable KASAN with pages bigger than 16k Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 235/261] powerpc/64s: Dont let DT CPU features set FSCR_DSCR Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 236/261] powerpc/64s: Save FSCR to init_task.thread.fscr after feature init Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 237/261] kbuild: force to build vmlinux if CONFIG_MODVERSION=y Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 238/261] sunrpc: svcauth_gss_register_pseudoflavor must reject duplicate registrations Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 239/261] sunrpc: clean up properly in gss_mech_unregister() Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 240/261] mtd: rawnand: Fix nand_gpio_waitrdy() Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 241/261] mtd: rawnand: onfi: Fix redundancy detection check Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 242/261] mtd: rawnand: brcmnand: fix hamming oob layout Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 243/261] mtd: rawnand: diskonchip: Fix the probe error path Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 244/261] mtd: rawnand: sharpsl: " Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 245/261] mtd: rawnand: ingenic: " Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 246/261] mtd: rawnand: xway: " Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 247/261] mtd: rawnand: orion: " Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 248/261] mtd: rawnand: socrates: " Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 249/261] mtd: rawnand: oxnas: " Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 250/261] mtd: rawnand: sunxi: " Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 251/261] mtd: rawnand: plat_nand: " Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 252/261] mtd: rawnand: pasemi: " Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 253/261] mtd: rawnand: mtk: " Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 254/261] mtd: rawnand: tmio: " Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 255/261] w1: omap-hdq: cleanup to add missing newline for some dev_dbg Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 256/261] f2fs: fix checkpoint=disable:%u%% Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 257/261] perf probe: Do not show the skipped events Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 258/261] perf probe: Fix to check blacklist address correctly Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 259/261] perf probe: Check address correctness by map instead of _etext Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 260/261] perf symbols: Fix debuginfo search for Ubuntu Greg Kroah-Hartman
2020-06-19 14:34 ` [PATCH 5.4 261/261] perf symbols: Fix kernel maps for kcore and eBPF Greg Kroah-Hartman
2020-06-19 16:01 ` [PATCH 5.4 000/261] 5.4.48-rc1 review Guenter Roeck
2020-06-20  8:00   ` Greg Kroah-Hartman
2020-06-20  8:27     ` Greg Kroah-Hartman
2020-06-19 21:54 ` Daniel Díaz
2020-06-19 23:49 ` 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=20200619141657.849187546@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=dsterba@suse.com \
    --cc=fdmanana@suse.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).