All of lore.kernel.org
 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, zhenwei pi <pizhenwei@bytedance.com>,
	Jarkko Sakkinen <jarkko@kernel.org>
Subject: [PATCH 5.4 018/260] crypto: public_key: fix overflow during implicit conversion
Date: Mon, 20 Sep 2021 18:40:36 +0200	[thread overview]
Message-ID: <20210920163931.741126042@linuxfoundation.org> (raw)
In-Reply-To: <20210920163931.123590023@linuxfoundation.org>

From: zhenwei pi <pizhenwei@bytedance.com>

commit f985911b7bc75d5c98ed24d8aaa8b94c590f7c6a upstream.

Hit kernel warning like this, it can be reproduced by verifying 256
bytes datafile by keyctl command, run script:
RAWDATA=rawdata
SIGDATA=sigdata

modprobe pkcs8_key_parser

rm -rf *.der *.pem *.pfx
rm -rf $RAWDATA
dd if=/dev/random of=$RAWDATA bs=256 count=1

openssl req -nodes -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem \
  -subj "/C=CN/ST=GD/L=SZ/O=vihoo/OU=dev/CN=xx.com/emailAddress=yy@xx.com"

KEY_ID=`openssl pkcs8 -in key.pem -topk8 -nocrypt -outform DER | keyctl \
  padd asymmetric 123 @s`

keyctl pkey_sign $KEY_ID 0 $RAWDATA enc=pkcs1 hash=sha1 > $SIGDATA
keyctl pkey_verify $KEY_ID 0 $RAWDATA $SIGDATA enc=pkcs1 hash=sha1

Then the kernel reports:
 WARNING: CPU: 5 PID: 344556 at crypto/rsa-pkcs1pad.c:540
   pkcs1pad_verify+0x160/0x190
 ...
 Call Trace:
  public_key_verify_signature+0x282/0x380
  ? software_key_query+0x12d/0x180
  ? keyctl_pkey_params_get+0xd6/0x130
  asymmetric_key_verify_signature+0x66/0x80
  keyctl_pkey_verify+0xa5/0x100
  do_syscall_64+0x35/0xb0
  entry_SYSCALL_64_after_hwframe+0x44/0xae

The reason of this issue, in function 'asymmetric_key_verify_signature':
'.digest_size(u8) = params->in_len(u32)' leads overflow of an u8 value,
so use u32 instead of u8 for digest_size field. And reorder struct
public_key_signature, it saves 8 bytes on a 64-bit machine.

Cc: stable@vger.kernel.org
Signed-off-by: zhenwei pi <pizhenwei@bytedance.com>
Reviewed-by: Jarkko Sakkinen <jarkko@kernel.org>
Signed-off-by: Jarkko Sakkinen <jarkko@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 include/crypto/public_key.h |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

--- a/include/crypto/public_key.h
+++ b/include/crypto/public_key.h
@@ -38,9 +38,9 @@ extern void public_key_free(struct publi
 struct public_key_signature {
 	struct asymmetric_key_id *auth_ids[2];
 	u8 *s;			/* Signature */
-	u32 s_size;		/* Number of bytes in signature */
 	u8 *digest;
-	u8 digest_size;		/* Number of bytes in digest */
+	u32 s_size;		/* Number of bytes in signature */
+	u32 digest_size;	/* Number of bytes in digest */
 	const char *pkey_algo;
 	const char *hash_algo;
 	const char *encoding;



  parent reply	other threads:[~2021-09-20 18:07 UTC|newest]

Thread overview: 273+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-20 16:40 [PATCH 5.4 000/260] 5.4.148-rc1 review Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 001/260] rtc: tps65910: Correct driver module alias Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 002/260] btrfs: wake up async_delalloc_pages waiters after submit Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 003/260] btrfs: reset replace target device to allocation state on close Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 004/260] blk-zoned: allow zone management send operations without CAP_SYS_ADMIN Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 005/260] blk-zoned: allow BLKREPORTZONE " Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 006/260] PCI/MSI: Skip masking MSI-X on Xen PV Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 007/260] powerpc/perf/hv-gpci: Fix counter value parsing Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 008/260] xen: fix setting of max_pfn in shared_info Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 009/260] include/linux/list.h: add a macro to test if entry is pointing to the head Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 010/260] 9p/xen: Fix end of loop tests for list_for_each_entry Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 011/260] tools/thermal/tmon: Add cross compiling support Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 012/260] pinctrl: stmfx: Fix hazardous u8[] to unsigned long cast Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 013/260] pinctrl: ingenic: Fix incorrect pull up/down info Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 014/260] soc: qcom: aoss: Fix the out of bound usage of cooling_devs Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 015/260] soc: aspeed: lpc-ctrl: Fix boundary check for mmap Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 016/260] soc: aspeed: p2a-ctrl: " Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 017/260] arm64: head: avoid over-mapping in map_memory Greg Kroah-Hartman
2021-09-20 16:40 ` Greg Kroah-Hartman [this message]
2021-09-20 16:40 ` [PATCH 5.4 019/260] block: bfq: fix bfq_set_next_ioprio_data() Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 020/260] power: supply: max17042: handle fails of reading status register Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 021/260] dm crypt: Avoid percpu_counter spinlock contention in crypt_page_alloc() Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 022/260] VMCI: fix NULL pointer dereference when unmapping queue pair Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 023/260] media: uvc: dont do DMA on stack Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 024/260] media: rc-loopback: return number of emitters rather than error Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 025/260] Revert "dmaengine: imx-sdma: refine to load context only once" Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 026/260] dmaengine: imx-sdma: remove duplicated sdma_load_context Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 027/260] libata: add ATA_HORKAGE_NO_NCQ_TRIM for Samsung 860 and 870 SSDs Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 028/260] ARM: 9105/1: atags_to_fdt: dont warn about stack size Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 029/260] PCI/portdrv: Enable Bandwidth Notification only if port supports it Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 030/260] PCI: Restrict ASMedia ASM1062 SATA Max Payload Size Supported Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 031/260] PCI: Return ~0 data on pciconfig_read() CAP_SYS_ADMIN failure Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 032/260] PCI: xilinx-nwl: Enable the clock through CCF Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 033/260] PCI: aardvark: Fix checking for PIO status Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 034/260] PCI: aardvark: Increase polling delay to 1.5s while waiting for PIO response Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 035/260] PCI: aardvark: Fix masking and unmasking legacy INTx interrupts Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 036/260] HID: input: do not report stylus battery state as "full" Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 037/260] f2fs: quota: fix potential deadlock Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 038/260] scsi: bsg: Remove support for SCSI_IOCTL_SEND_COMMAND Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 039/260] IB/hfi1: Adjust pkey entry in index 0 Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 040/260] RDMA/iwcm: Release resources if iw_cm module initialization fails Greg Kroah-Hartman
2021-09-20 16:40 ` [PATCH 5.4 041/260] docs: Fix infiniband uverbs minor number Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 042/260] pinctrl: samsung: Fix pinctrl bank pin count Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 043/260] vfio: Use config not menuconfig for VFIO_NOIOMMU Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 044/260] powerpc/stacktrace: Include linux/delay.h Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 045/260] RDMA/efa: Remove double QP type assignment Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 046/260] f2fs: show f2fs instance in printk_ratelimited Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 047/260] f2fs: reduce the scope of setting fsck tag when de->name_len is zero Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 048/260] openrisc: dont printk() unconditionally Greg Kroah-Hartman
2021-09-20 16:41   ` [OpenRISC] " Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 049/260] dma-debug: fix debugfs initialization order Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 050/260] SUNRPC: Fix potential memory corruption Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 051/260] scsi: fdomain: Fix error return code in fdomain_probe() Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 052/260] pinctrl: single: Fix error return code in pcs_parse_bits_in_pinctrl_entry() Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 053/260] scsi: smartpqi: Fix an error code in pqi_get_raid_map() Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 054/260] scsi: qedi: Fix error codes in qedi_alloc_global_queues() Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 055/260] scsi: qedf: Fix error codes in qedf_alloc_global_queues() Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 056/260] powerpc/config: Renable MTD_PHYSMAP_OF Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 057/260] scsi: target: avoid per-loop XCOPY buffer allocations Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 058/260] HID: i2c-hid: Fix Elan touchpad regression Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 059/260] KVM: PPC: Book3S HV Nested: Reflect guest PMU in-use to L0 when guest SPRs are live Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 060/260] platform/x86: dell-smbios-wmi: Add missing kfree in error-exit from run_smbios_call Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 061/260] fscache: Fix cookie key hashing Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 062/260] clk: at91: sam9x60: Dont use audio PLL Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 063/260] clk: at91: clk-generated: pass the id of changeable parent at registration Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 064/260] clk: at91: clk-generated: Limit the requested rate to our range Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 065/260] KVM: PPC: Fix clearing never mapped TCEs in realmode Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 066/260] f2fs: fix to account missing .skipped_gc_rwsem Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 067/260] f2fs: fix unexpected ENOENT comes from f2fs_map_blocks() Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 068/260] f2fs: fix to unmap pages from userspace process in punch_hole() Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 069/260] MIPS: Malta: fix alignment of the devicetree buffer Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 070/260] kbuild: Fix no symbols warning when CONFIG_TRIM_UNUSD_KSYMS=y Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 071/260] userfaultfd: prevent concurrent API initialization Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 072/260] drm/amdgpu: Fix amdgpu_ras_eeprom_init() Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 073/260] ASoC: atmel: ATMEL drivers dont need HAS_DMA Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 074/260] media: dib8000: rewrite the init prbs logic Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 075/260] crypto: mxs-dcp - Use sg_mapping_iter to copy data Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 076/260] PCI: Use pci_update_current_state() in pci_enable_device_flags() Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 077/260] tipc: keep the skb in rcv queue until the whole data is read Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 078/260] iio: dac: ad5624r: Fix incorrect handling of an optional regulator Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 079/260] iavf: do not override the adapter state in the watchdog task Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 080/260] iavf: fix locking of critical sections Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 081/260] ARM: dts: qcom: apq8064: correct clock names Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 082/260] video: fbdev: kyro: fix a DoS bug by restricting user input Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 083/260] netlink: Deal with ESRCH error in nlmsg_notify() Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 084/260] Smack: Fix wrong semantics in smk_access_entry() Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 085/260] drm: avoid blocking in drm_clients_infos rcu section Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 086/260] igc: Check if num of q_vectors is smaller than max before array access Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 087/260] usb: host: fotg210: fix the endpoints transactional opportunities calculation Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 088/260] usb: host: fotg210: fix the actual_length of an iso packet Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 089/260] usb: gadget: u_ether: fix a potential null pointer dereference Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 090/260] USB: EHCI: ehci-mv: improve error handling in mv_ehci_enable() Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 091/260] usb: gadget: composite: Allow bMaxPower=0 if self-powered Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 092/260] staging: board: Fix uninitialized spinlock when attaching genpd Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 093/260] tty: serial: jsm: hold port lock when reporting modem line changes Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 094/260] drm/amd/display: Fix timer_per_pixel unit error Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 095/260] drm/amd/amdgpu: Update debugfs link_settings output link_rate field in hex Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 096/260] bpf/tests: Fix copy-and-paste error in double word test Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 097/260] bpf/tests: Do not PASS tests without actually testing the result Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 098/260] video: fbdev: asiliantfb: Error out if pixclock equals zero Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 099/260] video: fbdev: kyro: " Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 100/260] video: fbdev: riva: " Greg Kroah-Hartman
2021-09-20 16:41 ` [PATCH 5.4 101/260] ipv4: ip_output.c: Fix out-of-bounds warning in ip_copy_addrs() Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 102/260] flow_dissector: Fix out-of-bounds warnings Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 103/260] s390/jump_label: print real address in a case of a jump label bug Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 104/260] s390: make PCI mio support a machine flag Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 105/260] serial: 8250: Define RX trigger levels for OxSemi 950 devices Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 106/260] xtensa: ISS: dont panic in rs_init Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 107/260] hvsi: dont panic on tty_register_driver failure Greg Kroah-Hartman
2021-09-20 16:42   ` Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 108/260] serial: 8250_pci: make setup_port() parameters explicitly unsigned Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 109/260] staging: ks7010: Fix the initialization of the sleep_status structure Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 110/260] samples: bpf: Fix tracex7 error raised on the missing argument Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 111/260] ata: sata_dwc_460ex: No need to call phy_exit() befre phy_init() Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 112/260] Bluetooth: skip invalid hci_sync_conn_complete_evt Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 113/260] workqueue: Fix possible memory leaks in wq_numa_init() Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 114/260] bonding: 3ad: fix the concurrency between __bond_release_one() and bond_3ad_state_machine_handler() Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 115/260] arm64: tegra: Fix Tegra194 PCIe EP compatible string Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 116/260] ASoC: Intel: bytcr_rt5640: Move "Platform Clock" routes to the maps for the matching in-/output Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 117/260] media: imx258: Rectify mismatch of VTS value Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 118/260] media: imx258: Limit the max analogue gain to 480 Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 119/260] media: v4l2-dv-timings.c: fix wrong condition in two for-loops Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 120/260] media: TDA1997x: fix tda1997x_query_dv_timings() return value Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 121/260] media: tegra-cec: Handle errors of clk_prepare_enable() Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 122/260] ARM: dts: imx53-ppd: Fix ACHC entry Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 123/260] arm64: dts: qcom: sdm660: use reg value for memory node Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 124/260] net: ethernet: stmmac: Do not use unreachable() in ipq806x_gmac_probe() Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 125/260] drm/msm: mdp4: drop vblank get/put from prepare/complete_commit Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 126/260] selftests/bpf: Fix xdp_tx.c prog section name Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 127/260] Bluetooth: schedule SCO timeouts with delayed_work Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 128/260] Bluetooth: avoid circular locks in sco_sock_connect Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 129/260] net/mlx5: Fix variable type to match 64bit Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 130/260] gpu: drm: amd: amdgpu: amdgpu_i2c: fix possible uninitialized-variable access in amdgpu_i2c_router_select_ddc_port() Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 131/260] drm/display: fix possible null-pointer dereference in dcn10_set_clock() Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 132/260] mac80211: Fix monitor MTU limit so that A-MSDUs get through Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 133/260] ARM: tegra: tamonten: Fix UART pad setting Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 134/260] arm64: tegra: Fix compatible string for Tegra132 CPUs Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 135/260] arm64: dts: ls1046a: fix eeprom entries Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 136/260] nvme-tcp: dont check blk_mq_tag_to_rq when receiving pdu data Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 137/260] Bluetooth: Fix handling of LE Enhanced Connection Complete Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 138/260] opp: Dont print an error if required-opps is missing Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 139/260] serial: sh-sci: fix break handling for sysrq Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 140/260] tcp: enable data-less, empty-cookie SYN with TFO_SERVER_COOKIE_NOT_REQD Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 141/260] rpc: fix gss_svc_init cleanup on failure Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 142/260] staging: rts5208: Fix get_ms_information() heap buffer size Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 143/260] gfs2: Dont call dlm after protocol is unmounted Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 144/260] usb: chipidea: host: fix port index underflow and UBSAN complains Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 145/260] lockd: lockd server-side shouldnt set fl_ops Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 146/260] drm/exynos: Always initialize mapping in exynos_drm_register_dma() Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 147/260] m68knommu: only set CONFIG_ISA_DMA_API for ColdFire sub-arch Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 148/260] btrfs: tree-log: check btrfs_lookup_data_extent return value Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 149/260] ASoC: Intel: Skylake: Fix module configuration for KPB and MIXER Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 150/260] ASoC: Intel: Skylake: Fix passing loadable flag for module Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 151/260] of: Dont allow __of_attached_node_sysfs() without CONFIG_SYSFS Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 152/260] mmc: sdhci-of-arasan: Check return value of non-void funtions Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 153/260] mmc: rtsx_pci: Fix long reads when clock is prescaled Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 154/260] selftests/bpf: Enlarge select() timeout for test_maps Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 155/260] mmc: core: Return correct emmc response in case of ioctl error Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 156/260] cifs: fix wrong release in sess_alloc_buffer() failed path Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 157/260] Revert "USB: xhci: fix U1/U2 handling for hardware with XHCI_INTEL_HOST quirk set" Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 158/260] usb: musb: musb_dsps: request_irq() after initializing musb Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 159/260] usbip: give back URBs for unsent unlink requests during cleanup Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 160/260] usbip:vhci_hcd USB port can get stuck in the disabled state Greg Kroah-Hartman
2021-09-20 16:42 ` [PATCH 5.4 161/260] ASoC: rockchip: i2s: Fix regmap_ops hang Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 162/260] ASoC: rockchip: i2s: Fixup config for DAIFMT_DSP_A/B Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 163/260] drm/amdkfd: Account for SH/SE count when setting up cu masks Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 164/260] iwlwifi: mvm: fix a memory leak in iwl_mvm_mac_ctxt_beacon_changed Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 165/260] iwlwifi: mvm: avoid static queue number aliasing Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 166/260] iwlwifi: mvm: fix access to BSS elements Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 167/260] net/mlx5: DR, Enable QP retransmission Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 168/260] parport: remove non-zero check on count Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 169/260] ath9k: fix OOB read ar9300_eeprom_restore_internal Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 170/260] ath9k: fix sleeping in atomic context Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 171/260] net: fix NULL pointer reference in cipso_v4_doi_free Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 172/260] fix array-index-out-of-bounds in taprio_change Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 173/260] net: w5100: check return value after calling platform_get_resource() Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 174/260] parisc: fix crash with signals and alloca Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 175/260] ovl: fix BUG_ON() in may_delete() when called from ovl_cleanup() Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 176/260] scsi: BusLogic: Fix missing pr_cont() use Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 177/260] scsi: qla2xxx: Changes to support kdump kernel Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 178/260] scsi: qla2xxx: Sync queue idx with queue_pair_map idx Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 179/260] cpufreq: powernv: Fix init_chip_info initialization in numa=off Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 180/260] s390/pv: fix the forcing of the swiotlb Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 181/260] mm/hugetlb: initialize hugetlb_usage in mm_init Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 182/260] mm,vmscan: fix divide by zero in get_scan_count Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 183/260] memcg: enable accounting for pids in nested pid namespaces Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 184/260] platform/chrome: cros_ec_proto: Send command again when timeout occurs Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 185/260] lib/test_stackinit: Fix static initializer test Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 186/260] net: dsa: lantiq_gswip: fix maximum frame length Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 187/260] drm/msi/mdp4: populate priv->kms in mdp4_kms_init Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 188/260] drm/amdgpu: Fix BUG_ON assert Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 189/260] drm/panfrost: Simplify lock_region calculation Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 190/260] drm/panfrost: Use u64 for size in lock_region Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 191/260] drm/panfrost: Clamp lock region to Bifrost minimum Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 192/260] btrfs: fix upper limit for max_inline for page size 64K Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 193/260] xen: reset legacy rtc flag for PV domU Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 194/260] bnx2x: Fix enabling network interfaces without VFs Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 195/260] arm64/sve: Use correct size when reinitialising SVE state Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 196/260] PM: base: power: dont try to use non-existing RTC for storing data Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 197/260] PCI: Add AMD GPU multi-function power dependencies Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 198/260] drm/amd/amdgpu: Increase HWIP_MAX_INSTANCE to 10 Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 199/260] drm/etnaviv: return context from etnaviv_iommu_context_get Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 200/260] drm/etnaviv: put submit prev MMU context when it exists Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 201/260] drm/etnaviv: stop abusing mmu_context as FE running marker Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 202/260] drm/etnaviv: keep MMU context across runtime suspend/resume Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 203/260] drm/etnaviv: exec and MMU state is lost when resetting the GPU Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 204/260] drm/etnaviv: fix MMU context leak on GPU reset Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 205/260] drm/etnaviv: reference MMU context when setting up hardware state Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 206/260] drm/etnaviv: add missing MMU context put when reaping MMU mapping Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 207/260] s390/sclp: fix Secure-IPL facility detection Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 208/260] x86/mm: Fix kern_addr_valid() to cope with existing but not present entries Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 209/260] tipc: fix an use-after-free issue in tipc_recvmsg Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 210/260] net-caif: avoid user-triggerable WARN_ON(1) Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 211/260] ptp: dp83640: dont define PAGE0 Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 212/260] dccp: dont duplicate ccid when cloning dccp sock Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 213/260] net/l2tp: Fix reference count leak in l2tp_udp_recv_core Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 214/260] r6040: Restore MDIO clock frequency after MAC reset Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 215/260] tipc: increase timeout in tipc_sk_enqueue() Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 216/260] perf machine: Initialize srcline string member in add_location struct Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 217/260] net/mlx5: FWTrace, cancel work on alloc pd error flow Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 218/260] net/mlx5: Fix potential sleeping in atomic context Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 219/260] events: Reuse value read using READ_ONCE instead of re-reading it Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 220/260] vhost_net: fix OoB on sendmsg() failure Greg Kroah-Hartman
2021-09-20 16:43 ` [PATCH 5.4 221/260] net/af_unix: fix a data-race in unix_dgram_poll Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 222/260] net: dsa: destroy the phylink instance on any error in dsa_slave_phy_setup Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 223/260] tcp: fix tp->undo_retrans accounting in tcp_sacktag_one() Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 224/260] qed: Handle management FW error Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 225/260] dt-bindings: arm: Fix Toradex compatible typo Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 226/260] ibmvnic: check failover_pending in login response Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 227/260] KVM: PPC: Book3S HV: Tolerate treclaim. in fake-suspend mode changing registers Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 228/260] net: hns3: pad the short tunnel frame before sending to hardware Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 229/260] net: hns3: change affinity_mask to numa node range Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 230/260] net: hns3: disable mac in flr process Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 231/260] net: hns3: fix the timing issue of VF clearing interrupt sources Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 232/260] mm/memory_hotplug: use "unsigned long" for PFN in zone_for_pfn_range() Greg Kroah-Hartman
2021-09-20 16:44   ` Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 233/260] dt-bindings: mtd: gpmc: Fix the ECC bytes vs. OOB bytes equation Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 234/260] mfd: db8500-prcmu: Adjust map to reality Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 235/260] PCI: Add ACS quirks for NXP LX2xx0 and LX2xx2 platforms Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 236/260] fuse: fix use after free in fuse_read_interrupt() Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 237/260] mfd: Dont use irq_create_mapping() to resolve a mapping Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 238/260] tracing/probes: Reject events which have the same name of existing one Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 239/260] PCI: Add ACS quirks for Cavium multi-function devices Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 240/260] Set fc_nlinfo in nh_create_ipv4, nh_create_ipv6 Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 241/260] net: usb: cdc_mbim: avoid altsetting toggling for Telit LN920 Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 242/260] block, bfq: honor already-setup queue merges Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 243/260] PCI: ibmphp: Fix double unmap of io_mem Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 244/260] ethtool: Fix an error code in cxgb2.c Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 245/260] NTB: Fix an error code in ntb_msit_probe() Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 246/260] NTB: perf: Fix an error code in perf_setup_inbuf() Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 247/260] mfd: axp20x: Update AXP288 volatile ranges Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 248/260] PCI: Fix pci_dev_str_match_path() alloc while atomic bug Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 249/260] mfd: tqmx86: Clear GPIO IRQ resource when no IRQ is set Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 250/260] KVM: arm64: Handle PSCI resets before userspace touches vCPU state Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 251/260] PCI: Sync __pci_register_driver() stub for CONFIG_PCI=n Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 252/260] mtd: rawnand: cafe: Fix a resource leak in the error handling path of cafe_nand_probe() Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 253/260] ARC: export clear_user_page() for modules Greg Kroah-Hartman
2021-09-20 16:44   ` Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 254/260] perf unwind: Do not overwrite FEATURE_CHECK_LDFLAGS-libunwind-{x86,aarch64} Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 255/260] net: dsa: b53: Fix calculating number of switch ports Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 256/260] netfilter: socket: icmp6: fix use-after-scope Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 257/260] fq_codel: reject silly quantum parameters Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 258/260] qlcnic: Remove redundant unlock in qlcnic_pinit_from_rom Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 259/260] ip_gre: validate csum_start only on pull Greg Kroah-Hartman
2021-09-20 16:44 ` [PATCH 5.4 260/260] net: renesas: sh_eth: Fix freeing wrong tx descriptor Greg Kroah-Hartman
2021-09-20 18:18 ` [PATCH 5.4 000/260] 5.4.148-rc1 review Florian Fainelli
2021-09-21 13:26 ` Jon Hunter
2021-09-21 15:33 ` Shuah Khan
2021-09-21 19:03 ` Sudip Mukherjee
2021-09-21 20:34 ` Guenter Roeck
2021-09-22  2:01 ` Samuel Zou
2021-09-22  4:56 ` Daniel Díaz
2021-09-22  5:31   ` Naresh Kamboju

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=20210920163931.741126042@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=jarkko@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pizhenwei@bytedance.com \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.