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, Baoquan He <bhe@redhat.com>,
	John Donnelly <john.p.donnelly@oracle.com>,
	Hyeonggon Yoo <42.hyeyoo@gmail.com>,
	Christoph Lameter <cl@linux.com>,
	Pekka Enberg <penberg@kernel.org>,
	David Rientjes <rientjes@google.com>,
	Joonsoo Kim <iamjoonsoo.kim@lge.com>,
	Vlastimil Babka <vbabka@suse.cz>, Borislav Petkov <bp@alien8.de>,
	Christoph Hellwig <hch@lst.de>,
	David Hildenbrand <david@redhat.com>,
	David Laight <David.Laight@ACULAB.COM>,
	Marek Szyprowski <m.szyprowski@samsung.com>,
	Robin Murphy <robin.murphy@arm.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Linus Torvalds <torvalds@linux-foundation.org>
Subject: [PATCH 5.4 030/320] mm/page_alloc.c: do not warn allocation failure on zone DMA if no managed pages
Date: Mon, 24 Jan 2022 19:40:14 +0100	[thread overview]
Message-ID: <20220124183954.783058722@linuxfoundation.org> (raw)
In-Reply-To: <20220124183953.750177707@linuxfoundation.org>

From: Baoquan He <bhe@redhat.com>

commit c4dc63f0032c77464fbd4e7a6afc22fa6913c4a7 upstream.

In kdump kernel of x86_64, page allocation failure is observed:

 kworker/u2:2: page allocation failure: order:0, mode:0xcc1(GFP_KERNEL|GFP_DMA), nodemask=(null),cpuset=/,mems_allowed=0
 CPU: 0 PID: 55 Comm: kworker/u2:2 Not tainted 5.16.0-rc4+ #5
 Hardware name: AMD Dinar/Dinar, BIOS RDN1505B 06/05/2013
 Workqueue: events_unbound async_run_entry_fn
 Call Trace:
  <TASK>
  dump_stack_lvl+0x48/0x5e
  warn_alloc.cold+0x72/0xd6
  __alloc_pages_slowpath.constprop.0+0xc69/0xcd0
  __alloc_pages+0x1df/0x210
  new_slab+0x389/0x4d0
  ___slab_alloc+0x58f/0x770
  __slab_alloc.constprop.0+0x4a/0x80
  kmem_cache_alloc_trace+0x24b/0x2c0
  sr_probe+0x1db/0x620
  ......
  device_add+0x405/0x920
  ......
  __scsi_add_device+0xe5/0x100
  ata_scsi_scan_host+0x97/0x1d0
  async_run_entry_fn+0x30/0x130
  process_one_work+0x1e8/0x3c0
  worker_thread+0x50/0x3b0
  ? rescuer_thread+0x350/0x350
  kthread+0x16b/0x190
  ? set_kthread_struct+0x40/0x40
  ret_from_fork+0x22/0x30
  </TASK>
 Mem-Info:
 ......

The above failure happened when calling kmalloc() to allocate buffer with
GFP_DMA.  It requests to allocate slab page from DMA zone while no managed
pages at all in there.

 sr_probe()
 --> get_capabilities()
     --> buffer = kmalloc(512, GFP_KERNEL | GFP_DMA);

Because in the current kernel, dma-kmalloc will be created as long as
CONFIG_ZONE_DMA is enabled.  However, kdump kernel of x86_64 doesn't have
managed pages on DMA zone since commit 6f599d84231f ("x86/kdump: Always
reserve the low 1M when the crashkernel option is specified").  The
failure can be always reproduced.

For now, let's mute the warning of allocation failure if requesting pages
from DMA zone while no managed pages.

[akpm@linux-foundation.org: fix warning]

Link: https://lkml.kernel.org/r/20211223094435.248523-4-bhe@redhat.com
Fixes: 6f599d84231f ("x86/kdump: Always reserve the low 1M when the crashkernel option is specified")
Signed-off-by: Baoquan He <bhe@redhat.com>
Acked-by: John Donnelly  <john.p.donnelly@oracle.com>
Reviewed-by: Hyeonggon Yoo <42.hyeyoo@gmail.com>
Cc: Christoph Lameter <cl@linux.com>
Cc: Pekka Enberg <penberg@kernel.org>
Cc: David Rientjes <rientjes@google.com>
Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Cc: Vlastimil Babka <vbabka@suse.cz>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Christoph Hellwig <hch@lst.de>
Cc: David Hildenbrand <david@redhat.com>
Cc: David Laight <David.Laight@ACULAB.COM>
Cc: Marek Szyprowski <m.szyprowski@samsung.com>
Cc: Robin Murphy <robin.murphy@arm.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 mm/page_alloc.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -3767,7 +3767,9 @@ void warn_alloc(gfp_t gfp_mask, nodemask
 	va_list args;
 	static DEFINE_RATELIMIT_STATE(nopage_rs, 10*HZ, 1);
 
-	if ((gfp_mask & __GFP_NOWARN) || !__ratelimit(&nopage_rs))
+	if ((gfp_mask & __GFP_NOWARN) ||
+	     !__ratelimit(&nopage_rs) ||
+	     ((gfp_mask & __GFP_DMA) && !has_managed_dma()))
 		return;
 
 	va_start(args, fmt);



  parent reply	other threads:[~2022-01-24 20:00 UTC|newest]

Thread overview: 334+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-24 18:39 [PATCH 5.4 000/320] 5.4.174-rc1 review Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.4 001/320] HID: uhid: Fix worker destroying device without any protection Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.4 002/320] HID: wacom: Reset expected and received contact counts at the same time Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.4 003/320] HID: wacom: Ignore the confidence flag when a touch is removed Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.4 004/320] HID: wacom: Avoid using stale array indicies to read contact count Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.4 005/320] f2fs: fix to do sanity check in is_alive() Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.4 006/320] nfc: llcp: fix NULL error pointer dereference on sendmsg() after failed bind() Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.4 007/320] mtd: rawnand: gpmi: Add ERR007117 protection for nfc_apply_timings Greg Kroah-Hartman
2022-01-24 20:41   ` Pavel Machek
2022-01-24 21:01     ` Christian Eggers
2022-01-24 18:39 ` [PATCH 5.4 008/320] mtd: rawnand: gpmi: Remove explicit default gpmi clock setting for i.MX6 Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.4 009/320] x86/gpu: Reserve stolen memory for first integrated Intel GPU Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.4 010/320] tools/nolibc: x86-64: Fix startup code bug Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.4 011/320] tools/nolibc: i386: fix initial stack alignment Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.4 012/320] tools/nolibc: fix incorrect truncation of exit code Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.4 013/320] rtc: cmos: take rtc_lock while reading from CMOS Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.4 014/320] media: v4l2-ioctl.c: readbuffers depends on V4L2_CAP_READWRITE Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.4 015/320] media: flexcop-usb: fix control-message timeouts Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 016/320] media: mceusb: " Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 017/320] media: em28xx: " Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 018/320] media: cpia2: " Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 019/320] media: s2255: " Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 020/320] media: dib0700: fix undefined behavior in tuner shutdown Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 021/320] media: redrat3: fix control-message timeouts Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 022/320] media: pvrusb2: " Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 023/320] media: stk1160: " Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 024/320] can: softing_cs: softingcs_probe(): fix memleak on registration failure Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 025/320] lkdtm: Fix content of section containing lkdtm_rodata_do_nothing() Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 026/320] iommu/io-pgtable-arm-v7s: Add error handle for page table allocation failure Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 027/320] dma_fence_array: Fix PENDING_ERROR leak in dma_fence_array_signaled() Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 028/320] PCI: Add function 1 DMA alias quirk for Marvell 88SE9125 SATA controller Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 029/320] mm_zone: add function to check if managed dma zone exists Greg Kroah-Hartman
2022-01-24 18:40 ` Greg Kroah-Hartman [this message]
2022-01-24 18:40 ` [PATCH 5.4 031/320] shmem: fix a race between shmem_unused_huge_shrink and shmem_evict_inode Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 032/320] drm/rockchip: dsi: Hold pm-runtime across bind/unbind Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 033/320] drm/rockchip: dsi: Reconfigure hardware on resume() Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 034/320] drm/panel: kingdisplay-kd097d04: Delete panel on attach() failure Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 035/320] drm/panel: innolux-p079zca: " Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 036/320] drm/rockchip: dsi: Fix unbalanced clock on probe error Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 037/320] Bluetooth: cmtp: fix possible panic when cmtp_init_sockets() fails Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 038/320] clk: bcm-2835: Pick the closest clock rate Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 039/320] clk: bcm-2835: Remove rounding up the dividers Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 040/320] wcn36xx: Indicate beacon not connection loss on MISSED_BEACON_IND Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 041/320] wcn36xx: Release DMA channel descriptor allocations Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 042/320] media: videobuf2: Fix the size printk format Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 043/320] media: aspeed: fix mode-detect always time out at 2nd run Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 044/320] media: em28xx: fix memory leak in em28xx_init_dev Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 045/320] media: aspeed: Update signal status immediately to ensure sane hw state Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 046/320] arm64: dts: meson-gxbb-wetek: fix HDMI in early boot Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 047/320] arm64: dts: meson-gxbb-wetek: fix missing GPIO binding Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 048/320] Bluetooth: stop proccessing malicious adv data Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 049/320] tee: fix put order in teedev_close_context() Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 050/320] media: dmxdev: fix UAF when dvb_register_device() fails Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 051/320] crypto: qce - fix uaf on qce_ahash_register_one Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 052/320] arm64: dts: ti: k3-j721e: correct cache-sets info Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 053/320] tty: serial: atmel: Check return code of dmaengine_submit() Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 054/320] tty: serial: atmel: Call dma_async_issue_pending() Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 055/320] media: rcar-csi2: Correct the selection of hsfreqrange Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 056/320] media: imx-pxp: Initialize the spinlock prior to using it Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 057/320] media: si470x-i2c: fix possible memory leak in si470x_i2c_probe() Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 058/320] media: mtk-vcodec: call v4l2_m2m_ctx_release first when file is released Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 059/320] media: venus: core: Fix a resource leak in the error handling path of venus_probe() Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 060/320] netfilter: bridge: add support for pppoe filtering Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 061/320] arm64: dts: qcom: msm8916: fix MMC controller aliases Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 062/320] ACPI: EC: Rework flushing of EC work while suspended to idle Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 063/320] drm/amdgpu: Fix a NULL pointer dereference in amdgpu_connector_lcd_native_mode() Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 064/320] drm/radeon/radeon_kms: Fix a NULL pointer dereference in radeon_driver_open_kms() Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 065/320] arm64: dts: ti: k3-j721e: Fix the L2 cache sets Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 066/320] tty: serial: uartlite: allow 64 bit address Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 067/320] serial: amba-pl011: do not request memory region twice Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 068/320] floppy: Fix hang in watchdog when disk is ejected Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 069/320] staging: rtl8192e: return error code from rtllib_softmac_init() Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 070/320] staging: rtl8192e: rtllib_module: fix error handle case in alloc_rtllib() Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 071/320] Bluetooth: btmtksdio: fix resume failure Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 072/320] media: dib8000: Fix a memleak in dib8000_init() Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 073/320] media: saa7146: mxb: Fix a NULL pointer dereference in mxb_attach() Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 074/320] media: si2157: Fix "warm" tuner state detection Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.4 075/320] sched/rt: Try to restart rt period timer when rt runtime exceeded Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 076/320] rcu/exp: Mark current CPU as exp-QS in IPI loop second pass Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 077/320] mwifiex: Fix possible ABBA deadlock Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 078/320] xfrm: fix a small bug in xfrm_sa_len() Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 079/320] crypto: stm32/cryp - fix xts and race condition in crypto_engine requests Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 080/320] crypto: stm32/cryp - fix double pm exit Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 081/320] crypto: stm32/cryp - fix lrw chaining mode Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 082/320] ARM: dts: gemini: NAS4220-B: fis-index-block with 128 KiB sectors Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 083/320] media: dw2102: Fix use after free Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 084/320] media: msi001: fix possible null-ptr-deref in msi001_probe() Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 085/320] media: coda/imx-vdoa: Handle dma_set_coherent_mask error codes Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 086/320] drm/msm/dpu: fix safe status debugfs file Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 087/320] drm/bridge: ti-sn65dsi86: Set max register for regmap Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 088/320] media: hantro: Fix probe func error path Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 089/320] xfrm: interface with if_id 0 should return error Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 090/320] xfrm: state and policy should fail if XFRMA_IF_ID 0 Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 091/320] ARM: 9159/1: decompressor: Avoid UNPREDICTABLE NOP encoding Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 092/320] usb: ftdi-elan: fix memory leak on device disconnect Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 093/320] ARM: dts: armada-38x: Add generic compatible to UART nodes Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 094/320] mmc: meson-mx-sdio: add IRQ check Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 095/320] selinux: fix potential memleak in selinux_add_opt() Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 096/320] bpftool: Enable line buffering for stdout Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 097/320] x86/mce/inject: Avoid out-of-bounds write when setting flags Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 098/320] ACPI: scan: Create platform device for BCM4752 and LNV4752 ACPI nodes Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 099/320] pcmcia: rsrc_nonstatic: Fix a NULL pointer dereference in __nonstatic_find_io_region() Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 100/320] pcmcia: rsrc_nonstatic: Fix a NULL pointer dereference in nonstatic_find_mem_region() Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 101/320] netfilter: ipt_CLUSTERIP: fix refcount leak in clusterip_tg_check() Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 102/320] bpf: Fix SO_RCVBUF/SO_SNDBUF handling in _bpf_setsockopt() Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 103/320] ppp: ensure minimum packet size in ppp_write() Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 104/320] rocker: fix a sleeping in atomic bug Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 105/320] staging: greybus: audio: Check null pointer Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 106/320] fsl/fman: Check for null pointer after calling devm_ioremap Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 107/320] Bluetooth: hci_bcm: Check for error irq Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 108/320] HID: hid-uclogic-params: Invalid parameter check in uclogic_params_init Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 109/320] HID: hid-uclogic-params: Invalid parameter check in uclogic_params_get_str_desc Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 110/320] HID: hid-uclogic-params: Invalid parameter check in uclogic_params_huion_init Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 111/320] HID: hid-uclogic-params: Invalid parameter check in uclogic_params_frame_init_v1_buttonpad Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 112/320] debugfs: lockdown: Allow reading debugfs files that are not world readable Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 113/320] net/mlx5e: Dont block routes with nexthop objects in SW Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 114/320] Revert "net/mlx5e: Block offload of outer header csum for UDP tunnels" Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 115/320] net/mlx5: Set command entry semaphore up once got index free Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 116/320] spi: spi-meson-spifc: Add missing pm_runtime_disable() in meson_spifc_probe Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 117/320] tpm: add request_locality before write TPM_INT_ENABLE Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 118/320] can: softing: softing_startstop(): fix set but not used variable warning Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 119/320] can: xilinx_can: xcan_probe(): check for error irq Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 120/320] pcmcia: fix setting of kthread task states Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 121/320] net: mcs7830: handle usb read errors properly Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 122/320] ext4: avoid trim error on fs with small groups Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 123/320] ALSA: jack: Add missing rwsem around snd_ctl_remove() calls Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 124/320] ALSA: PCM: " Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 125/320] ALSA: hda: " Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 126/320] RDMA/hns: Validate the pkey index Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 127/320] clk: imx8mn: Fix imx8mn_clko1_sels Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 128/320] powerpc/prom_init: Fix improper check of prom_getprop() Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 129/320] ASoC: uniphier: drop selecting non-existing SND_SOC_UNIPHIER_AIO_DMA Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 130/320] ALSA: oss: fix compile error when OSS_DEBUG is enabled Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 131/320] char/mwave: Adjust io port register size Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 132/320] binder: fix handling of error during copy Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 133/320] uio: uio_dmem_genirq: Catch the Exception Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 134/320] iommu/io-pgtable-arm: Fix table descriptor paddr formatting Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.4 135/320] scsi: ufs: Fix race conditions related to driver data Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 136/320] PCI/MSI: Fix pci_irq_vector()/pci_irq_get_affinity() Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 137/320] powerpc/powermac: Add additional missing lockdep_register_key() Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 138/320] RDMA/core: Let ib_find_gid() continue search even after empty entry Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 139/320] RDMA/cma: Let cma_resolve_ib_dev() " Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 140/320] ASoC: rt5663: Handle device_property_read_u32_array error codes Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 141/320] clk: stm32: Fix ltdcs clock turn off by clk_disable_unused() after system enter shell Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 142/320] dmaengine: pxa/mmp: stop referencing config->slave_id Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 143/320] iommu/iova: Fix race between FQ timeout and teardown Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 144/320] phy: uniphier-usb3ss: fix unintended writing zeros to PHY register Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 145/320] ASoC: mediatek: Check for error clk pointer Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 146/320] ASoC: samsung: idma: Check of ioremap return value Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 147/320] misc: lattice-ecp3-config: Fix task hung when firmware load failed Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 148/320] mips: lantiq: add support for clk_set_parent() Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 149/320] mips: bcm63xx: " Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 150/320] RDMA/cxgb4: Set queue pair state when being queried Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 151/320] of: base: Fix phandle argument length mismatch error message Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 152/320] Bluetooth: Fix debugfs entry leak in hci_register_dev() Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 153/320] fs: dlm: filter user dlm messages for kernel locks Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 154/320] libbpf: Validate that .BTF and .BTF.ext sections contain data Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 155/320] drm/lima: fix warning when CONFIG_DEBUG_SG=y & CONFIG_DMA_API_DEBUG=y Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 156/320] ar5523: Fix null-ptr-deref with unexpected WDCMSG_TARGET_START reply Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 157/320] drm/nouveau/pmu/gm200-: avoid touching PMU outside of DEVINIT/PREOS/ACR Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 158/320] ARM: shmobile: rcar-gen2: Add missing of_node_put() Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 159/320] batman-adv: allow netlink usage in unprivileged containers Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 160/320] usb: gadget: f_fs: Use stream_open() for endpoint files Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 161/320] drm: panel-orientation-quirks: Add quirk for the Lenovo Yoga Book X91F/L Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 162/320] HID: apple: Do not reset quirks when the Fn key is not found Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 163/320] media: b2c2: Add missing check in flexcop_pci_isr: Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 164/320] EDAC/synopsys: Use the quirk for version instead of ddr version Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 165/320] ARM: imx: rename DEBUG_IMX21_IMX27_UART to DEBUG_IMX27_UART Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 166/320] mlxsw: pci: Add shutdown method in PCI driver Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 167/320] drm/bridge: megachips: Ensure both bridges are probed before registration Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 168/320] gpiolib: acpi: Do not set the IRQ type if the IRQ is already in use Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 169/320] HSI: core: Fix return freed object in hsi_new_client Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 170/320] mwifiex: Fix skb_over_panic in mwifiex_usb_recv() Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 171/320] rsi: Fix use-after-free in rsi_rx_done_handler() Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 172/320] rsi: Fix out-of-bounds read in rsi_read_pkt() Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 173/320] usb: uhci: add aspeed ast2600 uhci support Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 174/320] floppy: Add max size check for user space request Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 175/320] x86/mm: Flush global TLB when switching to trampoline page-table Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 176/320] media: uvcvideo: Increase UVC_CTRL_CONTROL_TIMEOUT to 5 seconds Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 177/320] media: saa7146: hexium_orion: Fix a NULL pointer dereference in hexium_attach() Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 178/320] media: m920x: dont use stack on USB reads Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 179/320] iwlwifi: mvm: synchronize with FW after multicast commands Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 180/320] ath10k: Fix tx hanging Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 181/320] net-sysfs: update the queue counts in the unregistration path Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 182/320] net: phy: prefer 1000baseT over 1000baseKX Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 183/320] gpio: aspeed: Convert aspeed_gpio.lock to raw_spinlock Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 184/320] x86/mce: Mark mce_panic() noinstr Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 185/320] x86/mce: Mark mce_end() noinstr Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 186/320] x86/mce: Mark mce_read_aux() noinstr Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 187/320] net: bonding: debug: avoid printing debug logs when bond is not notifying peers Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 188/320] bpf: Do not WARN in bpf_warn_invalid_xdp_action() Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 189/320] HID: quirks: Allow inverting the absolute X/Y values Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 190/320] media: igorplugusb: receiver overflow should be reported Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 191/320] media: saa7146: hexium_gemini: Fix a NULL pointer dereference in hexium_attach() Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 192/320] mmc: core: Fixup storing of OCR for MMC_QUIRK_NONSTD_SDIO Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 193/320] audit: ensure userspace is penalized the same as the kernel when under pressure Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 194/320] arm64: dts: ls1028a-qds: move rtc node to the correct i2c bus Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.4 195/320] arm64: tegra: Adjust length of CCPLEX cluster MMIO region Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 196/320] cpufreq: Fix initialization of min and max frequency QoS requests Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 197/320] usb: hub: Add delay for SuperSpeed hub resume to let links transit to U0 Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 198/320] ath9k: Fix out-of-bound memcpy in ath9k_hif_usb_rx_stream Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 199/320] iwlwifi: fix leaks/bad data after failed firmware load Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 200/320] iwlwifi: remove module loading failure message Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 201/320] iwlwifi: mvm: Fix calculation of frame length Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 202/320] um: registers: Rename function names to avoid conflicts and build problems Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 203/320] jffs2: GC deadlock reading a page that is used in jffs2_write_begin() Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 204/320] ACPICA: actypes.h: Expand the ACPI_ACCESS_ definitions Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 205/320] ACPICA: Utilities: Avoid deleting the same object twice in a row Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 206/320] ACPICA: Executer: Fix the REFCLASS_REFOF case in acpi_ex_opcode_1A_0T_1R() Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 207/320] ACPICA: Fix wrong interpretation of PCC address Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 208/320] ACPICA: Hardware: Do not flush CPU cache when entering S4 and S5 Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 209/320] drm/amdgpu: fixup bad vram size on gmc v8 Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 210/320] ACPI: battery: Add the ThinkPad "Not Charging" quirk Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 211/320] btrfs: remove BUG_ON() in find_parent_nodes() Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 212/320] btrfs: remove BUG_ON(!eie) in find_parent_nodes Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 213/320] net: mdio: Demote probed message to debug print Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 214/320] mac80211: allow non-standard VHT MCS-10/11 Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 215/320] dm btree: add a defensive bounds check to insert_at() Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 216/320] dm space map common: add bounds check to sm_ll_lookup_bitmap() Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 217/320] net: phy: marvell: configure RGMII delays for 88E1118 Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 218/320] net: gemini: allow any RGMII interface mode Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 219/320] regulator: qcom_smd: Align probe function with rpmh-regulator Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 220/320] serial: pl010: Drop CR register reset on set_termios Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 221/320] serial: core: Keep mctrl register state and cached copy in sync Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 222/320] random: do not throw away excess input to crng_fast_load Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 223/320] parisc: Avoid calling faulthandler_disabled() twice Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 224/320] powerpc/6xx: add missing of_node_put Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 225/320] powerpc/powernv: " Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 226/320] powerpc/cell: " Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 227/320] powerpc/btext: " Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 228/320] powerpc/watchdog: Fix missed watchdog reset due to memory ordering race Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 229/320] i2c: i801: Dont silently correct invalid transfer size Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 230/320] powerpc/smp: Move setup_profiling_timer() under CONFIG_PROFILING Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 231/320] i2c: mpc: Correct I2C reset procedure Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 232/320] clk: meson: gxbb: Fix the SDM_EN bit for MPLL0 on GXBB Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 233/320] powerpc/powermac: Add missing lockdep_register_key() Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 234/320] KVM: PPC: Book3S: Suppress failed alloc warning in H_COPY_TOFROM_GUEST Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 235/320] w1: Misuse of get_user()/put_user() reported by sparse Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 236/320] scsi: lpfc: Trigger SLI4 firmware dump before doing driver cleanup Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 237/320] ALSA: seq: Set upper limit of processed events Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 238/320] powerpc: handle kdump appropriately with crash_kexec_post_notifiers option Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 239/320] MIPS: OCTEON: add put_device() after of_find_device_by_node() Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 240/320] i2c: designware-pci: Fix to change data types of hcnt and lcnt parameters Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 241/320] MIPS: Octeon: Fix build errors using clang Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 242/320] scsi: sr: Dont use GFP_DMA Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 243/320] ASoC: mediatek: mt8173: fix device_node leak Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 244/320] power: bq25890: Enable continuous conversion for ADC at charging Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 245/320] rpmsg: core: Clean up resources on announce_create failure Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 246/320] crypto: omap-aes - Fix broken pm_runtime_and_get() usage Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 247/320] crypto: stm32/crc32 - Fix kernel BUG triggered in probe() Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 248/320] crypto: caam - replace this_cpu_ptr with raw_cpu_ptr Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 249/320] ubifs: Error path in ubifs_remount_rw() seems to wrongly free write buffers Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 250/320] fuse: Pass correct lend value to filemap_write_and_wait_range() Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 251/320] serial: Fix incorrect rs485 polarity on uart open Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 252/320] cputime, cpuacct: Include guest time in user time in cpuacct.stat Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 253/320] tracing/kprobes: nmissed not showed correctly for kretprobe Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 254/320] iwlwifi: mvm: Increase the scan timeout guard to 30 seconds Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.4 255/320] s390/mm: fix 2KB pgtable release race Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 256/320] drm/etnaviv: limit submit sizes Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 257/320] drm/nouveau/kms/nv04: use vzalloc for nv04_display Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 258/320] drm/bridge: analogix_dp: Make PSR-exit block less Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 259/320] parisc: Fix lpa and lpa_user defines Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 260/320] PCI: pciehp: Fix infinite loop in IRQ handler upon power fault Greg Kroah-Hartman
2022-01-25 12:22   ` Bjorn Helgaas
2022-01-24 18:44 ` [PATCH 5.4 261/320] PCI: pci-bridge-emul: Properly mark reserved PCIe bits in PCI config space Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 262/320] PCI: pci-bridge-emul: Correctly set PCIe capabilities Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 263/320] PCI: pci-bridge-emul: Set PCI_STATUS_CAP_LIST for PCIe device Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 264/320] xfrm: fix policy lookup for ipv6 gre packets Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 265/320] btrfs: fix deadlock between quota enable and other quota operations Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 266/320] btrfs: check the root node for uptodate before returning it Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 267/320] btrfs: respect the max size in the header when activating swap file Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 268/320] ext4: make sure to reset inode lockdep class when quota enabling fails Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 269/320] ext4: make sure quota gets properly shutdown on error Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 270/320] ext4: set csum seed in tmp inode while migrating to extents Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 271/320] ext4: Fix BUG_ON in ext4_bread when write quota data Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 272/320] ext4: dont use the orphan list when migrating an inode Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 273/320] drm/radeon: fix error handling in radeon_driver_open_kms Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 274/320] of: base: Improve argument length mismatch error Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 275/320] firmware: Update Kconfig help text for Google firmware Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 276/320] media: rcar-csi2: Optimize the selection PHTW register Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 277/320] Documentation: dmaengine: Correctly describe dmatest with channel unset Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 278/320] Documentation: ACPI: Fix data node reference documentation Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 279/320] Documentation: refer to config RANDOMIZE_BASE for kernel address-space randomization Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 280/320] Documentation: fix firewire.rst ABI file path error Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 281/320] scsi: core: Show SCMD_LAST in text form Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 282/320] RDMA/hns: Modify the mapping attribute of doorbell to device Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 283/320] RDMA/rxe: Fix a typo in opcode name Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 284/320] dmaengine: stm32-mdma: fix STM32_MDMA_CTBR_TSEL_MASK Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 285/320] Revert "net/mlx5: Add retry mechanism to the command entry index allocation" Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 286/320] powerpc/cell: Fix clang -Wimplicit-fallthrough warning Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 287/320] powerpc/fsl/dts: Enable WA for erratum A-009885 on fman3l MDIO buses Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 288/320] bpftool: Remove inclusion of utilities.mak from Makefiles Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 289/320] ipv4: avoid quadratic behavior in netns dismantle Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 290/320] net/fsl: xgmac_mdio: Fix incorrect iounmap when removing module Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 291/320] parisc: pdc_stable: Fix memory leak in pdcs_register_pathentries Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 292/320] f2fs: fix to reserve space for IO align feature Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 293/320] af_unix: annote lockless accesses to unix_tot_inflight & gc_in_progress Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 294/320] clk: si5341: Fix clock HW provider cleanup Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 295/320] net: axienet: limit minimum TX ring size Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 296/320] net: axienet: fix number of TX ring slots for available check Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 297/320] net: axienet: increase default TX ring size to 128 Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 298/320] rtc: pxa: fix null pointer dereference Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 299/320] inet: frags: annotate races around fqdir->dead and fqdir->high_thresh Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 300/320] netns: add schedule point in ops_exit_list() Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 301/320] xfrm: Dont accidentally set RTO_ONLINK in decode_session4() Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 302/320] gre: Dont accidentally set RTO_ONLINK in gre_fill_metadata_dst() Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 303/320] libcxgb: Dont accidentally set RTO_ONLINK in cxgb_find_route() Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 304/320] perf script: Fix hex dump character output Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 305/320] dmaengine: at_xdmac: Dont start transactions at tx_submit level Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 306/320] dmaengine: at_xdmac: Print debug message after realeasing the lock Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 307/320] dmaengine: at_xdmac: Fix concurrency over xfers_list Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 308/320] dmaengine: at_xdmac: Fix lld view setting Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 309/320] dmaengine: at_xdmac: Fix at_xdmac_lld struct definition Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 310/320] arm64: dts: qcom: msm8996: drop not documented adreno properties Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 311/320] net_sched: restore "mpu xxx" handling Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 312/320] bcmgenet: add WOL IRQ check Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 313/320] net: ethernet: mtk_eth_soc: fix error checking in mtk_mac_config() Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 314/320] dt-bindings: display: meson-dw-hdmi: add missing sound-name-prefix property Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.4 315/320] dt-bindings: display: meson-vpu: Add missing amlogic,canvas property Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.4 316/320] scripts/dtc: dtx_diff: remove broken example from help text Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.4 317/320] lib82596: Fix IRQ check in sni_82596_probe Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.4 318/320] lib/test_meminit: destroy cache in kmem_cache_alloc_bulk() test Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.4 319/320] mtd: nand: bbt: Fix corner case in bad block table handling Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.4 320/320] Revert "ia64: kprobes: Use generic kretprobe trampoline handler" Greg Kroah-Hartman
2022-01-24 23:39 ` [PATCH 5.4 000/320] 5.4.174-rc1 review Daniel Díaz
2022-01-25  7:19   ` Naresh Kamboju
2022-01-25 14:48     ` Helge Deller
2022-01-25 15:51       ` Greg Kroah-Hartman
2022-01-25 11:11   ` Greg Kroah-Hartman
2022-01-25  1:49 ` Shuah Khan
2022-01-25  3:42 ` Florian Fainelli
2022-01-25 11:12   ` Greg Kroah-Hartman
2022-01-25  8:32 ` Samuel Zou
2022-01-25 15:10 ` Sudip Mukherjee

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=20220124183954.783058722@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=42.hyeyoo@gmail.com \
    --cc=David.Laight@ACULAB.COM \
    --cc=akpm@linux-foundation.org \
    --cc=bhe@redhat.com \
    --cc=bp@alien8.de \
    --cc=cl@linux.com \
    --cc=david@redhat.com \
    --cc=hch@lst.de \
    --cc=iamjoonsoo.kim@lge.com \
    --cc=john.p.donnelly@oracle.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=m.szyprowski@samsung.com \
    --cc=penberg@kernel.org \
    --cc=rientjes@google.com \
    --cc=robin.murphy@arm.com \
    --cc=stable@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    --cc=vbabka@suse.cz \
    /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).