From: Eugeniu Rosca <erosca@de.adit-jv.com>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
NeilBrown <neilb@suse.de>,
Trond Myklebust <trond.myklebust@hammerspace.com>
Cc: <linux-kernel@vger.kernel.org>, <stable@vger.kernel.org>,
Michael Rodin <mrodin@de.adit-jv.com>,
Eugeniu Rosca <erosca@de.adit-jv.com>,
Eugeniu Rosca <roscaeugeniu@gmail.com>
Subject: Re: [PATCH 4.14 022/284] SUNRPC: avoid race between mod_timer() and del_timer_sync()
Date: Wed, 7 Sep 2022 16:26:36 +0200 [thread overview]
Message-ID: <20220907142548.GA9975@lxhi-065> (raw)
In-Reply-To: <20220418121211.327937970@linuxfoundation.org>
Hello all,
On Mo, Apr 18, 2022 at 02:10:03 +0200, Greg Kroah-Hartman wrote:
> From: NeilBrown <neilb@suse.de>
>
> commit 3848e96edf4788f772d83990022fa7023a233d83 upstream.
>
> xprt_destory() claims XPRT_LOCKED and then calls del_timer_sync().
> Both xprt_unlock_connect() and xprt_release() call
> ->release_xprt()
> which drops XPRT_LOCKED and *then* xprt_schedule_autodisconnect()
> which calls mod_timer().
>
> This may result in mod_timer() being called *after* del_timer_sync().
> When this happens, the timer may fire long after the xprt has been freed,
> and run_timer_softirq() will probably crash.
>
> The pairing of ->release_xprt() and xprt_schedule_autodisconnect() is
> always called under ->transport_lock. So if we take ->transport_lock to
> call del_timer_sync(), we can be sure that mod_timer() will run first
> (if it runs at all).
>
> Cc: stable@vger.kernel.org
> Signed-off-by: NeilBrown <neilb@suse.de>
> Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> ---
> net/sunrpc/xprt.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> --- a/net/sunrpc/xprt.c
> +++ b/net/sunrpc/xprt.c
> @@ -1520,7 +1520,14 @@ static void xprt_destroy(struct rpc_xprt
> */
> wait_on_bit_lock(&xprt->state, XPRT_LOCKED, TASK_UNINTERRUPTIBLE);
>
> + /*
> + * xprt_schedule_autodisconnect() can run after XPRT_LOCKED
> + * is cleared. We use ->transport_lock to ensure the mod_timer()
> + * can only run *before* del_time_sync(), never after.
> + */
> + spin_lock(&xprt->transport_lock);
> del_timer_sync(&xprt->timer);
> + spin_unlock(&xprt->transport_lock);
>
> /*
> * Destroy sockets etc from the system workqueue so they can
This commit introduced the following warning [1][2] on the
v4.9, v4.14 and v4.19 stable trees, when booting Renesas H3ULCB
(and potentially other HW targets) from NFS.
Once in a while, the issue leads to the real freeze of the target.
The culprit commits have been identified via git bisecting (see [1]).
Additionally, it has been determined that what's missing for fixing
the issue on the stable trees are the two v5.3-rc1 mainline commits:
4f8943f8088348 ("SUNRPC: Replace direct task wakeups from softirq context")
b5e924191f8723 ("SUNRPC: Remove the bh-safe lock requirement on xprt->transport_lock")
However, attempting to port them to the stable trees leads to
significant amount of conflicts. Any idea if the culprit commit(s)
should better be reverted?
[1] https://gist.github.com/erosca/7b5f1dadd4172b38461478d38c1040b8
[2] Excerpt from [1]
[ 7.548549] ================================
[ 7.552827] WARNING: inconsistent lock state
[ 7.557112] 4.14.292 #35 Not tainted
[ 7.560694] --------------------------------
[ 7.564973] inconsistent {SOFTIRQ-ON-W} -> {IN-SOFTIRQ-W} usage.
[ 7.570994] swapper/0/0 [HC0[0]:SC1[3]:HE1:SE0] takes:
[ 7.576142] (&(&xprt->transport_lock)->rlock){+.?.}, at: [<ffff2000095a6a48>] xs_tcp_state_change+0x740/0xb24
[ 7.586196] {SOFTIRQ-ON-W} state was registered at:
[ 7.591093] lock_acquire+0x724/0x790
[ 7.594857] _raw_spin_lock+0xec/0x12c
[ 7.598706] xprt_destroy+0xc8/0x214
[ 7.602379] xprt_put+0x34/0x40
[ 7.605618] rpc_new_client+0x1a8/0x8e8
[ 7.609552] rpc_create_xprt+0x124/0x300
[ 7.613573] rpc_create+0x234/0x410
[ 7.617162] nfs_create_rpc_client+0x33c/0x38c
[ 7.621709] nfs4_alloc_client+0x8f4/0xb5c
[ 7.625904] nfs_get_client+0x10d4/0x10e8
[ 7.630013] nfs4_set_client+0x1b0/0x254
[ 7.634034] nfs4_create_server+0x4c0/0x92c
[ 7.638317] nfs4_remote_mount+0x74/0xac
[ 7.642339] mount_fs+0x80/0x27c
[ 7.645666] vfs_kern_mount+0xe0/0x3b4
[ 7.649514] nfs_do_root_mount+0x8c/0xc8
[ 7.653534] nfs4_try_mount+0xdc/0x120
[ 7.657382] nfs_fs_mount+0x1b6c/0x2038
[ 7.661315] mount_fs+0x80/0x27c
[ 7.664639] vfs_kern_mount+0xe0/0x3b4
[ 7.668488] do_mount+0x1324/0x1c90
[ 7.672074] SyS_mount+0xc0/0xd0
[ 7.675403] mount_root+0xe4/0x1c0
[ 7.678903] prepare_namespace+0x174/0x184
[ 7.683098] kernel_init_freeable+0x5b4/0x674
[ 7.687556] kernel_init+0x18/0x138
[ 7.691144] ret_from_fork+0x10/0x18
[ 7.694814] irq event stamp: 24322
[ 7.698228] hardirqs last enabled at (24322): [<ffff200009679f8c>] _raw_spin_unlock_irqrestore+0x100/0x108
[ 7.707990] hardirqs last disabled at (24321): [<ffff200009679a38>] _raw_spin_lock_irqsave+0x30/0x138
[ 7.717233] softirqs last enabled at (24244): [<ffff2000080e79d8>] _local_bh_enable+0x78/0x84
[ 7.725865] softirqs last disabled at (24245): [<ffff2000080e9ed4>] irq_exit+0x350/0x4e0
[ 7.733969]
[ 7.733969] other info that might help us debug this:
[ 7.740511] Possible unsafe locking scenario:
[ 7.740511]
[ 7.746442] CPU0
[ 7.748893] ----
[ 7.751343] lock(&(&xprt->transport_lock)->rlock);
[ 7.756323] <Interrupt>
[ 7.758947] lock(&(&xprt->transport_lock)->rlock);
[ 7.764100]
[ 7.764100] *** DEADLOCK ***
[ 7.764100]
[ 7.770038] 4 locks held by swapper/0/0:
[ 7.773967] #0: (rcu_read_lock){....}, at: [<ffff200009318d1c>] netif_receive_skb_internal+0x1b0/0x99c
[ 7.783487] #1: (rcu_read_lock){....}, at: [<ffff2000093e0b10>] ip_local_deliver_finish+0x1e4/0xae0
[ 7.792743] #2: (slock-AF_INET-RPC/1){+.-.}, at: [<ffff2000094757cc>] tcp_v4_rcv+0x1a04/0x2694
[ 7.801567] #3: (k-clock-AF_INET){++.-}, at: [<ffff2000095a633c>] xs_tcp_state_change+0x34/0xb24
[ 7.810559]
[ 7.810559] stack backtrace:
[ 7.814931] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 4.14.292 #35
[ 7.821123] Hardware name: Renesas H3ULCB Kingfisher board based on r8a7795 ES2.0+ (DT)
[ 7.829142] Call trace:
[ 7.831599] dump_backtrace+0x0/0x320
[ 7.835272] show_stack+0x24/0x30
[ 7.838598] dump_stack+0x150/0x1b8
[ 7.842097] print_usage_bug.part.23+0x5c4/0x724
[ 7.846725] mark_lock+0x940/0x113c
[ 7.850223] __lock_acquire+0x9a8/0x2e70
[ 7.854156] lock_acquire+0x724/0x790
[ 7.857827] _raw_spin_lock+0xec/0x12c
[ 7.861586] xs_tcp_state_change+0x740/0xb24
[ 7.865869] tcp_rcv_state_process+0x1330/0x3a34
[ 7.870498] tcp_v4_do_rcv+0x9c8/0x9dc
[ 7.874256] tcp_v4_rcv+0x1c5c/0x2694
[ 7.877930] ip_local_deliver_finish+0x770/0xae0
[ 7.882560] ip_local_deliver+0x1c0/0x528
[ 7.886581] ip_rcv_finish+0x770/0x1024
[ 7.890427] ip_rcv+0xa50/0xe5c
[ 7.893579] __netif_receive_skb_core+0x1adc/0x2164
[ 7.898470] __netif_receive_skb+0x1e0/0x1e8
[ 7.902752] netif_receive_skb_internal+0x6c8/0x99c
[ 7.907642] napi_gro_receive+0x79c/0x7dc
[ 7.911666] ravb_poll+0xc98/0x1594
[ 7.915165] napi_poll+0x260/0xb6c
[ 7.918577] net_rx_action+0x2fc/0x668
[ 7.922336] __do_softirq+0xec8/0x1620
[ 7.926095] irq_exit+0x350/0x4e0
[ 7.929421] __handle_domain_irq+0x124/0x1c0
[ 7.933701] gic_handle_irq+0x70/0xb0
[ 7.937372] el1_irq+0xb4/0x140
[ 7.940523] arch_cpu_idle+0x17c/0x7fc
[ 7.944282] default_idle_call+0x74/0x8c
[ 7.948216] do_idle+0x250/0x344
[ 7.951453] cpu_startup_entry+0x28/0x38
[ 7.955387] rest_init+0x5f0/0x604
[ 7.958799] start_kernel+0x5dc/0x60c
Best Regards,
Eugeniu Rosca
next prev parent reply other threads:[~2022-09-07 14:28 UTC|newest]
Thread overview: 300+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-18 12:09 [PATCH 4.14 000/284] 4.14.276-rc1 review Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 001/284] USB: serial: pl2303: add IBM device IDs Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 002/284] USB: serial: simple: add Nokia phone driver Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 003/284] netdevice: add the case if dev is NULL Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 004/284] virtio_console: break out of buf poll on remove Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 005/284] ethernet: sun: Free the coherent when failing in probing Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 006/284] spi: Fix invalid sgs value Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 007/284] spi: Fix erroneous sgs value with min_t() Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 008/284] af_key: add __GFP_ZERO flag for compose_sadb_supported in function pfkey_register Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 009/284] fuse: fix pipe buffer lifetime for direct_io Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 010/284] tpm: fix reference counting for struct tpm_chip Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 011/284] block: Add a helper to validate the block size Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 012/284] virtio-blk: Use blk_validate_block_size() to validate " Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 013/284] USB: usb-storage: Fix use of bitfields for hardware data in ene_ub6250.c Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 014/284] coresight: Fix TRCCONFIGR.QE sysfs interface Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 015/284] iio: inkern: apply consumer scale on IIO_VAL_INT cases Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 016/284] iio: inkern: apply consumer scale when no channel scale is available Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 017/284] iio: inkern: make a best effort on offset calculation Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 018/284] clk: uniphier: Fix fixed-rate initialization Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 019/284] ptrace: Check PTRACE_O_SUSPEND_SECCOMP permission on PTRACE_SEIZE Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 020/284] Documentation: add link to stable release candidate tree Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 021/284] Documentation: update stable tree link Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 022/284] SUNRPC: avoid race between mod_timer() and del_timer_sync() Greg Kroah-Hartman
2022-09-07 14:26 ` Eugeniu Rosca [this message]
2022-09-08 0:58 ` NeilBrown
2022-09-08 1:09 ` Trond Myklebust
2022-09-08 12:09 ` Eugeniu Rosca
2022-09-11 5:41 ` gregkh
2022-09-11 23:00 ` [PATCH - stable] SUNRPC: use _bh spinlocking on ->transport_lock NeilBrown
2022-09-11 23:03 ` kernel test robot
2022-09-12 10:05 ` Eugeniu Rosca
2022-09-12 10:15 ` [PATCH 4.14 022/284] SUNRPC: avoid race between mod_timer() and del_timer_sync() Eugeniu Rosca
2022-09-11 12:43 ` David Laight
2022-09-11 14:08 ` Trond Myklebust
2022-04-18 12:10 ` [PATCH 4.14 023/284] NFSD: prevent underflow in nfssvc_decode_writeargs() Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 024/284] pinctrl: samsung: drop pin banks references on error paths Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 025/284] can: ems_usb: ems_usb_start_xmit(): fix double dev_kfree_skb() in error path Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 026/284] jffs2: fix use-after-free in jffs2_clear_xattr_subsystem Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 027/284] jffs2: fix memory leak in jffs2_do_mount_fs Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 028/284] jffs2: fix memory leak in jffs2_scan_medium Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 029/284] mm/pages_alloc.c: dont create ZONE_MOVABLE beyond the end of a node Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 030/284] mempolicy: mbind_range() set_policy() after vma_merge() Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 031/284] scsi: libsas: Fix sas_ata_qc_issue() handling of NCQ NON DATA commands Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 032/284] qed: display VF trust config Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 033/284] qed: validate and restrict untrusted VFs vlan promisc mode Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 034/284] Revert "Input: clear BTN_RIGHT/MIDDLE on buttonpads" Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 035/284] ALSA: cs4236: fix an incorrect NULL check on list iterator Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 036/284] drbd: fix potential silent data corruption Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 037/284] ACPI: properties: Consistently return -ENOENT if there are no more references Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 038/284] drivers: hamradio: 6pack: fix UAF bug caused by mod_timer() Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 039/284] video: fbdev: sm712fb: Fix crash in smtcfb_read() Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 040/284] video: fbdev: atari: Atari 2 bpp (STe) palette bugfix Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 041/284] ARM: dts: at91: sama5d2: Fix PMERRLOC resource size Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 042/284] ARM: dts: exynos: fix UART3 pins configuration in Exynos5250 Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 043/284] ARM: dts: exynos: add missing HDMI supplies on SMDK5250 Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 044/284] ARM: dts: exynos: add missing HDMI supplies on SMDK5420 Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 045/284] carl9170: fix missing bit-wise or operator for tx_params Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 046/284] thermal: int340x: Increase bitmap size Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 047/284] lib/raid6/test: fix multiple definition linking error Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 048/284] DEC: Limit PMAX memory probing to R3k systems Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 049/284] media: davinci: vpif: fix unbalanced runtime PM get Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 050/284] brcmfmac: firmware: Allocate space for default boardrev in nvram Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 051/284] brcmfmac: pcie: Replace brcmf_pcie_copy_mem_todev with memcpy_toio Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 052/284] PCI: pciehp: Clear cmd_busy bit in polling mode Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 053/284] crypto: authenc - Fix sleep in atomic context in decrypt_tail Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 054/284] crypto: mxs-dcp - Fix scatterlist processing Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 055/284] spi: tegra114: Add missing IRQ check in tegra_spi_probe Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 056/284] selftests/x86: Add validity check and allow field splitting Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 057/284] spi: pxa2xx-pci: Balance reference count for PCI DMA device Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 058/284] hwmon: (pmbus) Add mutex to regulator ops Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 059/284] hwmon: (sch56xx-common) Replace WDOG_ACTIVE with WDOG_HW_RUNNING Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 060/284] PM: hibernate: fix __setup handler error handling Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 061/284] PM: suspend: fix return value of __setup handler Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 062/284] hwrng: atmel - disable trng on failure path Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 063/284] crypto: vmx - add missing dependencies Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 064/284] ACPI: APEI: fix return value of __setup handlers Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 065/284] crypto: ccp - ccp_dmaengine_unregister release dma channels Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 066/284] hwmon: (pmbus) Add Vin unit off handling Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 067/284] clocksource: acpi_pm: fix return value of __setup handler Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 068/284] sched/debug: Remove mpol_get/put and task_lock/unlock from sched_show_numa Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 069/284] perf/core: Fix address filter parser for multiple filters Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 070/284] perf/x86/intel/pt: Fix address filter config for 32-bit kernel Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 071/284] media: coda: Fix missing put_device() call in coda_get_vdoa_data Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 072/284] video: fbdev: smscufx: Fix null-ptr-deref in ufx_usb_probe() Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 073/284] video: fbdev: fbcvt.c: fix printing in fb_cvt_print_name() Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 074/284] ARM: dts: qcom: ipq4019: fix sleep clock Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 075/284] soc: ti: wkup_m3_ipc: Fix IRQ check in wkup_m3_ipc_probe Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 076/284] media: usb: go7007: s2250-board: fix leak in probe() Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 077/284] ASoC: ti: davinci-i2s: Add check for clk_enable() Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 078/284] ALSA: spi: " Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 079/284] arm64: dts: ns2: Fix spi-cpol and spi-cpha property Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 080/284] arm64: dts: broadcom: Fix sata nodename Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 081/284] printk: fix return value of printk.devkmsg __setup handler Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 082/284] ASoC: mxs-saif: Handle errors for clk_enable Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 083/284] ASoC: atmel_ssc_dai: " Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 084/284] memory: emif: Add check for setup_interrupts Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 085/284] memory: emif: check the pointer temp in get_device_details() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 086/284] ALSA: firewire-lib: fix uninitialized flag for AV/C deferred transaction Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 087/284] media: stk1160: If start stream fails, return buffers with VB2_BUF_STATE_QUEUED Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 088/284] ASoC: atmel: Add missing of_node_put() in at91sam9g20ek_audio_probe Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 089/284] ASoC: wm8350: Handle error for wm8350_register_irq Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 090/284] ASoC: fsi: Add check for clk_enable Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 091/284] video: fbdev: omapfb: Add missing of_node_put() in dvic_probe_of Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 092/284] ASoC: dmaengine: do not use a NULL prepare_slave_config() callback Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 093/284] ASoC: mxs: Fix error handling in mxs_sgtl5000_probe Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 094/284] ASoC: imx-es8328: Fix error return code in imx_es8328_probe() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 095/284] ASoC: msm8916-wcd-digital: Fix missing clk_disable_unprepare() in msm8916_wcd_digital_probe Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 096/284] mtd: onenand: Check for error irq Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 097/284] drm/edid: Dont clear formats if using deep color Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 098/284] ath9k_htc: fix uninit value bugs Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 099/284] power: reset: gemini-poweroff: Fix IRQ check in gemini_poweroff_probe Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 100/284] ray_cs: Check ioremap return value Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 101/284] power: supply: ab8500: Fix memory leak in ab8500_fg_sysfs_init Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 102/284] HID: i2c-hid: fix GET/SET_REPORT for unnumbered reports Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 103/284] iwlwifi: Fix -EIO error code that is never returned Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 104/284] dm crypt: fix get_key_size compiler warning if !CONFIG_KEYS Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 105/284] scsi: pm8001: Fix command initialization in pm80XX_send_read_log() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 106/284] scsi: pm8001: Fix command initialization in pm8001_chip_ssp_tm_req() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 107/284] scsi: pm8001: Fix payload initialization in pm80xx_set_thermal_config() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 108/284] scsi: pm8001: Fix abort all task initialization Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 109/284] TOMOYO: fix __setup handlers return values Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 110/284] ext2: correct max file size computing Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 111/284] drm/tegra: Fix reference leak in tegra_dsi_ganged_probe Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 112/284] power: supply: bq24190_charger: Fix bq24190_vbus_is_enabled() wrong false return Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 113/284] KVM: x86: Fix emulation in writing cr8 Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 114/284] KVM: x86/emulator: Defer not-present segment check in __load_segment_descriptor() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 115/284] i2c: xiic: Make bus names unique Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 116/284] power: supply: wm8350-power: Handle error for wm8350_register_irq Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 117/284] power: supply: wm8350-power: Add missing free in free_charger_irq Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 118/284] PCI: Reduce warnings on possible RW1C corruption Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 119/284] powerpc/sysdev: fix incorrect use to determine if list is empty Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 120/284] mfd: mc13xxx: Add check for mc13xxx_irq_request Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 121/284] vxcan: enable local echo for sent CAN frames Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 122/284] MIPS: RB532: fix return value of __setup handler Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 123/284] mtd: rawnand: atmel: fix refcount issue in atmel_nand_controller_init Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 124/284] USB: storage: ums-realtek: fix error code in rts51x_read_mem() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 125/284] af_netlink: Fix shift out of bounds in group mask calculation Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 126/284] i2c: mux: demux-pinctrl: do not deactivate a master that is not active Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 127/284] tcp: ensure PMTU updates are processed during fastopen Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 128/284] mfd: asic3: Add missing iounmap() on error asic3_mfd_probe Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 129/284] mxser: fix xmit_buf leak in activate when LSR == 0xff Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 130/284] pwm: lpc18xx-sct: Initialize driver data and hardware before pwmchip_add() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 131/284] staging:iio:adc:ad7280a: Fix handing of device address bit reversing Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 132/284] serial: 8250_mid: Balance reference count for PCI DMA device Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 133/284] serial: 8250: Fix race condition in RTS-after-send handling Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 134/284] iio: adc: Add check for devm_request_threaded_irq Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 135/284] clk: qcom: clk-rcg2: Update the frac table for pixel clock Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 136/284] remoteproc: qcom_wcnss: Add missing of_node_put() in wcnss_alloc_memory_region Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 137/284] clk: loongson1: Terminate clk_div_table with sentinel element Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 138/284] clk: clps711x: " Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 139/284] clk: tegra: tegra124-emc: Fix missing put_device() call in emc_ensure_emc_driver Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 140/284] NFS: remove unneeded check in decode_devicenotify_args() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 141/284] pinctrl: mediatek: Fix missing of_node_put() in mtk_pctrl_init Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 142/284] pinctrl: nomadik: Add missing of_node_put() in nmk_pinctrl_probe Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 143/284] pinctrl/rockchip: Add missing of_node_put() in rockchip_pinctrl_probe Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 144/284] tty: hvc: fix return value of __setup handler Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 145/284] kgdboc: " Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 146/284] kgdbts: " Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 147/284] jfs: fix divide error in dbNextAG Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 148/284] netfilter: nf_conntrack_tcp: preserve liberal flag in tcp options Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 149/284] xen: fix is_xen_pmu() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 150/284] net: phy: broadcom: Fix brcm_fet_config_init() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 151/284] qlcnic: dcb: default to returning -EOPNOTSUPP Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 152/284] net/x25: Fix null-ptr-deref caused by x25_disconnect Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 153/284] NFSv4/pNFS: Fix another issue with a list iterator pointing to the head Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 154/284] lib/test: use after free in register_test_dev_kmod() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 155/284] selinux: use correct type for context length Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 156/284] loop: use sysfs_emit() in the sysfs xxx show() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 157/284] Fix incorrect type in assignment of ipv6 port for audit Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 158/284] irqchip/nvic: Release nvic_base upon failure Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 159/284] ACPICA: Avoid walking the ACPI Namespace if it is not there Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 160/284] ACPI/APEI: Limit printable size of BERT table data Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 161/284] PM: core: keep irq flags in device_pm_check_callbacks() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 162/284] spi: tegra20: Use of_device_get_match_data() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 163/284] ext4: dont BUG if someone dirty pages without asking ext4 first Greg Kroah-Hartman
2022-04-18 12:55 ` syzbot
2022-04-18 12:12 ` [PATCH 4.14 164/284] ntfs: add sanity check on allocation size Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 165/284] video: fbdev: nvidiafb: Use strscpy() to prevent buffer overflow Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 166/284] video: fbdev: w100fb: Reset global state Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 167/284] video: fbdev: cirrusfb: check pixclock to avoid divide by zero Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 168/284] video: fbdev: omapfb: acx565akm: replace snprintf with sysfs_emit Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 169/284] ARM: dts: qcom: fix gic_irq_domain_translate warnings for msm8960 Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 170/284] ARM: dts: bcm2837: Add the missing L1/L2 cache information Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 171/284] video: fbdev: omapfb: panel-dsi-cm: Use sysfs_emit() instead of snprintf() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 172/284] video: fbdev: omapfb: panel-tpo-td043mtea1: " Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 173/284] ASoC: soc-core: skip zero num_dai component in searching dai name Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 174/284] media: cx88-mpeg: clear interrupt status register before streaming video Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 175/284] ARM: tegra: tamonten: Fix I2C3 pad setting Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 176/284] ARM: mmp: Fix failure to remove sram device Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 177/284] video: fbdev: sm712fb: Fix crash in smtcfb_write() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 178/284] media: hdpvr: initialize dev->worker at hdpvr_register_videodev Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 179/284] mmc: host: Return an error when ->enable_sdio_irq() ops is missing Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 180/284] powerpc/lib/sstep: Fix sthcx instruction Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 181/284] powerpc/lib/sstep: Fix build errors with newer binutils Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 182/284] scsi: qla2xxx: Fix warning for missing error code Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 183/284] scsi: qla2xxx: Suppress a kernel complaint in qla_create_qpair() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 184/284] KVM: Prevent module exit until all VMs are freed Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 185/284] ubifs: rename_whiteout: Fix double free for whiteout_ui->data Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 186/284] ubifs: Add missing iput if do_tmpfile() failed in rename whiteout Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 187/284] ubifs: setflags: Make dirtied_ino_d 8 bytes aligned Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 188/284] ubifs: rename_whiteout: correct old_dir size computing Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 189/284] can: mcba_usb: mcba_usb_start_xmit(): fix double dev_kfree_skb in error path Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 190/284] can: mcba_usb: properly check endpoint type Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 191/284] gfs2: Make sure FITRIM minlen is rounded up to fs block size Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 192/284] pinctrl: pinconf-generic: Print arguments for bias-pull-* Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 193/284] ubi: Fix race condition between ctrl_cdev_ioctl and ubi_cdev_ioctl Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 194/284] ACPI: CPPC: Avoid out of bounds access when parsing _CPC data Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 195/284] mm/mmap: return 1 from stack_guard_gap __setup() handler Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 196/284] mm/memcontrol: return 1 from cgroup.memory " Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 197/284] ubi: fastmap: Return error code if memory allocation fails in add_aeb() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 198/284] ASoC: topology: Allow TLV control to be either read or write Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 199/284] ARM: dts: spear1340: Update serial node properties Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 200/284] ARM: dts: spear13xx: Update SPI dma properties Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 201/284] openvswitch: Fixed nd target mask field in the flow dump Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 202/284] KVM: x86: Forbid VMM to set SYNIC/STIMER MSRs when SynIC wasnt activated Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 203/284] ubifs: Rectify space amount budget for mkdir/tmpfile operations Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 204/284] rtc: wm8350: Handle error for wm8350_register_irq Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 205/284] ARM: 9187/1: JIVE: fix return value of __setup handler Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 206/284] KVM: x86/svm: Clear reserved bits written to PerfEvtSeln MSRs Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 207/284] ath5k: fix OOB in ath5k_eeprom_read_pcal_info_5111 Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 208/284] ptp: replace snprintf with sysfs_emit Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 209/284] powerpc: dts: t104xrdb: fix phy type for FMAN 4/5 Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 210/284] scsi: mvsas: Replace snprintf() with sysfs_emit() Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 211/284] scsi: bfa: " Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 212/284] power: supply: axp20x_battery: properly report current when discharging Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 213/284] powerpc: Set crashkernel offset to mid of RMA region Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 214/284] PCI: aardvark: Fix support for MSI interrupts Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 215/284] iommu/arm-smmu-v3: fix event handling soft lockup Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 216/284] dm ioctl: prevent potential spectre v1 gadget Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 217/284] scsi: pm8001: Fix pm8001_mpi_task_abort_resp() Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 218/284] scsi: aha152x: Fix aha152x_setup() __setup handler return value Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 219/284] net/smc: correct settings of RMB window update limit Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 220/284] macvtap: advertise link netns via netlink Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 221/284] bnxt_en: Eliminate unintended link toggle during FW reset Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 222/284] MIPS: fix fortify panic when copying asm exception handlers Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 223/284] scsi: libfc: Fix use after free in fc_exch_abts_resp() Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 224/284] usb: dwc3: omap: fix "unbalanced disables for smps10_out1" on omap5evm Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 225/284] xtensa: fix DTC warning unit_address_format Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 226/284] Bluetooth: Fix use after free in hci_send_acl Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 227/284] init/main.c: return 1 from handled __setup() functions Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 228/284] w1: w1_therm: fixes w1_seq for ds28ea00 sensors Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 229/284] SUNRPC/call_alloc: async tasks mustnt block waiting for memory Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 230/284] NFS: swap IO handling is slightly different for O_DIRECT IO Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 231/284] NFS: swap-out must always use STABLE writes Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 232/284] serial: samsung_tty: do not unlock port->lock for uart_write_wakeup() Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 233/284] virtio_console: eliminate anonymous module_init & module_exit Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 234/284] jfs: prevent NULL deref in diFree Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 235/284] parisc: Fix CPU affinity for Lasi, WAX and Dino chips Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 236/284] ipv6: add missing tx timestamping on IPPROTO_RAW Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 237/284] net: add missing SOF_TIMESTAMPING_OPT_ID support Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 238/284] mm: fix race between MADV_FREE reclaim and blkdev direct IO read Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 239/284] drm/amdgpu: fix off by one in amdgpu_gfx_kiq_acquire() Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 240/284] scsi: zorro7xx: Fix a resource leak in zorro7xx_remove_one() Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 241/284] net: stmmac: Fix unset max_speed difference between DT and non-DT platforms Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 242/284] drm/imx: Fix memory leak in imx_pd_connector_get_modes Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 243/284] drbd: Fix five use after free bugs in get_initial_state Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 244/284] Revert "mmc: sdhci-xenon: fix annoying 1.8V regulator warning" Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 245/284] mmmremap.c: avoid pointless invalidate_range_start/end on mremap(old_size=0) Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 246/284] mm/mempolicy: fix mpol_new leak in shared_policy_replace Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 247/284] x86/pm: Save the MSR validity status at context setup Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 248/284] x86/speculation: Restore speculation related MSRs during S3 resume Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 249/284] btrfs: fix qgroup reserve overflow the qgroup limit Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 250/284] arm64: patch_text: Fixup last cpu should be master Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 251/284] perf: qcom_l2_pmu: fix an incorrect NULL check on list iterator Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 252/284] tools build: Use $(shell ) instead of `` to get embedded libperls ccopts Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 253/284] dmaengine: Revert "dmaengine: shdma: Fix runtime PM imbalance on error" Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 254/284] mm: dont skip swap entry even if zap_details specified Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 255/284] arm64: module: remove (NOLOAD) from linker script Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 256/284] mm/sparsemem: fix mem_section will never be NULL gcc 12 warning Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 257/284] cgroup: Use open-time credentials for process migraton perm checks Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 258/284] cgroup: Allocate cgroup_file_ctx for kernfs_open_file->priv Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 259/284] cgroup: Use open-time cgroup namespace for process migration perm checks Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 260/284] xfrm: policy: match with both mark and mask on user interfaces Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 261/284] memory: atmel-ebi: Fix missing of_node_put in atmel_ebi_probe Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 262/284] veth: Ensure eth header is in skbs linear part Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 263/284] gpiolib: acpi: use correct format characters Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 264/284] mlxsw: i2c: Fix initialization error flow Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 265/284] net: ethernet: stmmac: fix altr_tse_pcs function when using a fixed-link Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 266/284] nfc: nci: add flush_workqueue to prevent uaf Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 267/284] cifs: potential buffer overflow in handling symlinks Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 268/284] drm/amd: Add USBC connector ID Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 269/284] drm/amdkfd: Check for potential null return of kmalloc_array() Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 270/284] Drivers: hv: vmbus: Prevent load re-ordering when reading ring buffer Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 271/284] scsi: target: tcmu: Fix possible page UAF Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 272/284] scsi: ibmvscsis: Increase INITIAL_SRP_LIMIT to 1024 Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 273/284] net: micrel: fix KS8851_MLL Kconfig Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 274/284] ata: libata-core: Disable READ LOG DMA EXT for Samsung 840 EVOs Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 275/284] gpu: ipu-v3: Fix dev_dbg frequency output Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 276/284] scsi: mvsas: Add PCI ID of RocketRaid 2640 Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 277/284] drivers: net: slip: fix NPD bug in sl_tx_timeout() Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 278/284] mm, page_alloc: fix build_zonerefs_node() Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 279/284] mm: kmemleak: take a full lowmem check in kmemleak_*_phys() Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 280/284] gcc-plugins: latent_entropy: use /dev/urandom Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 281/284] ALSA: pcm: Test for "silence" field in struct "pcm_format_data" Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 282/284] ARM: davinci: da850-evm: Avoid NULL pointer dereference Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 283/284] smp: Fix offline cpu check in flush_smp_call_function_queue() Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 284/284] i2c: pasemi: Wait for write xfers to finish Greg Kroah-Hartman
2022-04-19 0:04 ` [PATCH 4.14 000/284] 4.14.276-rc1 review Guenter Roeck
2022-04-19 9:50 ` Naresh Kamboju
2022-04-19 10:14 ` Jon Hunter
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=20220907142548.GA9975@lxhi-065 \
--to=erosca@de.adit-jv.com \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mrodin@de.adit-jv.com \
--cc=neilb@suse.de \
--cc=roscaeugeniu@gmail.com \
--cc=stable@vger.kernel.org \
--cc=trond.myklebust@hammerspace.com \
/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