patches.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev, kernel test robot <lkp@intel.com>,
	Linus Torvalds <torvalds@linux-foundation.org>,
	Dmitry Torokhov <dmitry.torokhov@gmail.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.1 001/219] asm-generic: make sparse happy with odd-sized put_unaligned_*()
Date: Fri,  2 Feb 2024 20:02:54 -0800	[thread overview]
Message-ID: <20240203035317.490481892@linuxfoundation.org> (raw)
In-Reply-To: <20240203035317.354186483@linuxfoundation.org>

6.1-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Dmitry Torokhov <dmitry.torokhov@gmail.com>

[ Upstream commit 1ab33c03145d0f6c345823fc2da935d9a1a9e9fc ]

__put_unaligned_be24() and friends use implicit casts to convert
larger-sized data to bytes, which trips sparse truncation warnings when
the argument is a constant:

    CC [M]  drivers/input/touchscreen/hynitron_cstxxx.o
    CHECK   drivers/input/touchscreen/hynitron_cstxxx.c
  drivers/input/touchscreen/hynitron_cstxxx.c: note: in included file (through arch/x86/include/generated/asm/unaligned.h):
  include/asm-generic/unaligned.h:119:16: warning: cast truncates bits from constant value (aa01a0 becomes a0)
  include/asm-generic/unaligned.h:120:20: warning: cast truncates bits from constant value (aa01 becomes 1)
  include/asm-generic/unaligned.h:119:16: warning: cast truncates bits from constant value (ab00d0 becomes d0)
  include/asm-generic/unaligned.h:120:20: warning: cast truncates bits from constant value (ab00 becomes 0)

To avoid this let's mask off upper bits explicitly, the resulting code
should be exactly the same, but it will keep sparse happy.

Reported-by: kernel test robot <lkp@intel.com>
Suggested-by: Linus Torvalds <torvalds@linux-foundation.org>
Closes: https://lore.kernel.org/oe-kbuild-all/202401070147.gqwVulOn-lkp@intel.com/
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 include/asm-generic/unaligned.h | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/include/asm-generic/unaligned.h b/include/asm-generic/unaligned.h
index 699650f81970..a84c64e5f11e 100644
--- a/include/asm-generic/unaligned.h
+++ b/include/asm-generic/unaligned.h
@@ -104,9 +104,9 @@ static inline u32 get_unaligned_le24(const void *p)
 
 static inline void __put_unaligned_be24(const u32 val, u8 *p)
 {
-	*p++ = val >> 16;
-	*p++ = val >> 8;
-	*p++ = val;
+	*p++ = (val >> 16) & 0xff;
+	*p++ = (val >> 8) & 0xff;
+	*p++ = val & 0xff;
 }
 
 static inline void put_unaligned_be24(const u32 val, void *p)
@@ -116,9 +116,9 @@ static inline void put_unaligned_be24(const u32 val, void *p)
 
 static inline void __put_unaligned_le24(const u32 val, u8 *p)
 {
-	*p++ = val;
-	*p++ = val >> 8;
-	*p++ = val >> 16;
+	*p++ = val & 0xff;
+	*p++ = (val >> 8) & 0xff;
+	*p++ = (val >> 16) & 0xff;
 }
 
 static inline void put_unaligned_le24(const u32 val, void *p)
@@ -128,12 +128,12 @@ static inline void put_unaligned_le24(const u32 val, void *p)
 
 static inline void __put_unaligned_be48(const u64 val, u8 *p)
 {
-	*p++ = val >> 40;
-	*p++ = val >> 32;
-	*p++ = val >> 24;
-	*p++ = val >> 16;
-	*p++ = val >> 8;
-	*p++ = val;
+	*p++ = (val >> 40) & 0xff;
+	*p++ = (val >> 32) & 0xff;
+	*p++ = (val >> 24) & 0xff;
+	*p++ = (val >> 16) & 0xff;
+	*p++ = (val >> 8) & 0xff;
+	*p++ = val & 0xff;
 }
 
 static inline void put_unaligned_be48(const u64 val, void *p)
-- 
2.43.0




  reply	other threads:[~2024-02-03  4:08 UTC|newest]

Thread overview: 236+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-03  4:02 [PATCH 6.1 000/219] 6.1.77-rc1 review Greg Kroah-Hartman
2024-02-03  4:02 ` Greg Kroah-Hartman [this message]
2024-02-03  4:02 ` [PATCH 6.1 002/219] powerpc/mm: Fix null-pointer dereference in pgtable_cache_add Greg Kroah-Hartman
2024-02-03  4:02 ` [PATCH 6.1 003/219] arm64: irq: set the correct node for VMAP stack Greg Kroah-Hartman
2024-02-03  4:02 ` [PATCH 6.1 004/219] drivers/perf: pmuv3: dont expose SW_INCR event in sysfs Greg Kroah-Hartman
2024-02-03  4:02 ` [PATCH 6.1 005/219] powerpc: Fix build error due to is_valid_bugaddr() Greg Kroah-Hartman
2024-02-03  4:02 ` [PATCH 6.1 006/219] powerpc/mm: Fix build failures due to arch_reserved_kernel_pages() Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 007/219] powerpc/64s: Fix CONFIG_NUMA=n build due to create_section_mapping() Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 008/219] x86/boot: Ignore NMIs during very early boot Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 009/219] powerpc: pmd_move_must_withdraw() is only needed for CONFIG_TRANSPARENT_HUGEPAGE Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 010/219] powerpc/lib: Validate size for vector operations Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 011/219] x86/mce: Mark fatal MCEs page as poison to avoid panic in the kdump kernel Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 012/219] perf/core: Fix narrow startup race when creating the perf nr_addr_filters sysfs file Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 013/219] debugobjects: Stop accessing objects after releasing hash bucket lock Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 014/219] regulator: core: Only increment use_count when enable_count changes Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 015/219] audit: Send netlink ACK before setting connection in auditd_set Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 016/219] ACPI: video: Add quirk for the Colorful X15 AT 23 Laptop Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 017/219] PNP: ACPI: fix fortify warning Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 018/219] ACPI: extlog: fix NULL pointer dereference check Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 019/219] ACPI: NUMA: Fix the logic of getting the fake_pxm value Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 020/219] PM / devfreq: Synchronize devfreq_monitor_[start/stop] Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 021/219] ACPI: APEI: set memory failure flags as MF_ACTION_REQUIRED on synchronous events Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 022/219] FS:JFS:UBSAN:array-index-out-of-bounds in dbAdjTree Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 023/219] UBSAN: array-index-out-of-bounds in dtSplitRoot Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 024/219] jfs: fix slab-out-of-bounds Read in dtSearch Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 025/219] jfs: fix array-index-out-of-bounds in dbAdjTree Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 026/219] jfs: fix uaf in jfs_evict_inode Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 027/219] pstore/ram: Fix crash when setting number of cpus to an odd number Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 028/219] crypto: octeontx2 - Fix cptvf driver cleanup Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 029/219] erofs: fix ztailpacking for subpage compressed blocks Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 030/219] crypto: stm32/crc32 - fix parsing list of devices Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 031/219] afs: fix the usage of read_seqbegin_or_lock() in afs_lookup_volume_rcu() Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 032/219] afs: fix the usage of read_seqbegin_or_lock() in afs_find_server*() Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 033/219] rxrpc_find_service_conn_rcu: fix the usage of read_seqbegin_or_lock() Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 034/219] jfs: fix array-index-out-of-bounds in diNewExt Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 035/219] arch: consolidate arch_irq_work_raise prototypes Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 036/219] s390/vfio-ap: fix sysfs status attribute for AP queue devices Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 037/219] s390/ptrace: handle setting of fpc register correctly Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 038/219] KVM: s390: fix setting of fpc register Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 039/219] SUNRPC: Fix a suspicious RCU usage warning Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 040/219] ecryptfs: Reject casefold directory inodes Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 041/219] ext4: fix inconsistent between segment fstrim and full fstrim Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 042/219] ext4: unify the type of flexbg_size to unsigned int Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 043/219] ext4: remove unnecessary check from alloc_flex_gd() Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 044/219] ext4: avoid online resizing failures due to oversized flex bg Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 045/219] wifi: rt2x00: restart beacon queue when hardware reset Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 046/219] selftests/bpf: satisfy compiler by having explicit return in btf test Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 047/219] selftests/bpf: Fix pyperf180 compilation failure with clang18 Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 048/219] wifi: rt2x00: correct wrong BBP register in RxDCOC calibration Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 049/219] selftests/bpf: Fix issues in setup_classid_environment() Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 050/219] soc: xilinx: Fix for call trace due to the usage of smp_processor_id() Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 051/219] soc: xilinx: fix unhandled SGI warning message Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 052/219] scsi: lpfc: Fix possible file string name overflow when updating firmware Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 053/219] PCI: Add no PM reset quirk for NVIDIA Spectrum devices Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 054/219] bonding: return -ENOMEM instead of BUG in alb_upper_dev_walk Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 055/219] net: usb: ax88179_178a: avoid two consecutive device resets Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 056/219] scsi: mpi3mr: Add PCI checks where SAS5116 diverges from SAS4116 Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 057/219] scsi: arcmsr: Support new PCI device IDs 1883 and 1886 Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 058/219] ARM: dts: imx7d: Fix coresight funnel ports Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 059/219] ARM: dts: imx7s: Fix lcdif compatible Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 060/219] ARM: dts: imx7s: Fix nand-controller #size-cells Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 061/219] wifi: ath9k: Fix potential array-index-out-of-bounds read in ath9k_htc_txstatus() Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 062/219] wifi: ath11k: fix race due to setting ATH11K_FLAG_EXT_IRQ_ENABLED too early Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 063/219] bpf: Check rcu_read_lock_trace_held() before calling bpf map helpers Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 064/219] scsi: libfc: Dont schedule abort twice Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 065/219] scsi: libfc: Fix up timeout error in fc_fcp_rec_error() Greg Kroah-Hartman
2024-02-03  4:03 ` [PATCH 6.1 066/219] bpf: Set uattr->batch.count as zero before batched update or deletion Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 067/219] wifi: wfx: fix possible NULL pointer dereference in wfx_set_mfp_ap() Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 068/219] ARM: dts: rockchip: fix rk3036 hdmi ports node Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 069/219] ARM: dts: imx25/27-eukrea: Fix RTC node name Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 070/219] ARM: dts: imx: Use flash@0,0 pattern Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 071/219] ARM: dts: imx27: Fix sram node Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 072/219] ARM: dts: imx1: " Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 073/219] net: phy: at803x: fix passing the wrong reference for config_intr Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 074/219] ionic: pass opcode to devcmd_wait Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 075/219] ionic: bypass firmware cmds when stuck in reset Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 076/219] block/rnbd-srv: Check for unlikely string overflow Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 077/219] ARM: dts: imx25: Fix the iim compatible string Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 078/219] ARM: dts: imx25/27: Pass timing0 Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 079/219] ARM: dts: imx27-apf27dev: Fix LED name Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 080/219] ARM: dts: imx23-sansa: Use preferred i2c-gpios properties Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 081/219] ARM: dts: imx23/28: Fix the DMA controller node name Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 082/219] scsi: hisi_sas: Set .phy_attached before notifing phyup event HISI_PHYE_PHY_UP_PM Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 083/219] ice: fix ICE_AQ_VSI_Q_OPT_RSS_* register values Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 084/219] net: atlantic: eliminate double free in error handling logic Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 085/219] net: dsa: mv88e6xxx: Fix mv88e6352_serdes_get_stats error path Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 086/219] block: prevent an integer overflow in bvec_try_merge_hw_page Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 087/219] md: Whenassemble the array, consult the superblock of the freshest device Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 088/219] arm64: dts: qcom: msm8996: Fix in-ports is a required property Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 089/219] arm64: dts: qcom: msm8998: Fix out-ports " Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 090/219] ice: fix pre-shifted bit usage Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 091/219] arm64: dts: amlogic: fix format for s4 uart node Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 092/219] wifi: rtl8xxxu: Add additional USB IDs for RTL8192EU devices Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 093/219] libbpf: Fix NULL pointer dereference in bpf_object__collect_prog_relos Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 094/219] wifi: rtlwifi: rtl8723{be,ae}: using calculate_bit_shift() Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 095/219] wifi: cfg80211: free beacon_ies when overridden from hidden BSS Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 096/219] Bluetooth: qca: Set both WIDEBAND_SPEECH and LE_STATES quirks for QCA2066 Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 097/219] Bluetooth: hci_sync: fix BR/EDR wakeup bug Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 098/219] Bluetooth: L2CAP: Fix possible multiple reject send Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 099/219] net/smc: disable SEID on non-s390 archs where virtual ISM may be used Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 100/219] bridge: cfm: fix enum typo in br_cc_ccm_tx_parse Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 101/219] i40e: Fix VF disable behavior to block all traffic Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 102/219] octeontx2-af: Fix max NPC MCAM entry check while validating ref_entry Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 103/219] net: dsa: qca8k: put MDIO bus OF node on qca8k_mdio_register() failure Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 104/219] f2fs: fix to check return value of f2fs_reserve_new_block() Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 105/219] ALSA: hda: Refer to correct stream index at loops Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 106/219] ASoC: doc: Fix undefined SND_SOC_DAPM_NOPM argument Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 107/219] fast_dput(): handle underflows gracefully Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 108/219] RDMA/IPoIB: Fix error code return in ipoib_mcast_join Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 109/219] drm/panel-edp: Add override_edid_mode quirk for generic edp Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 110/219] drm/bridge: anx7625: Fix Set HPD irq detect window to 2ms Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 111/219] drm/amd/display: Fix tiled display misalignment Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 112/219] f2fs: fix write pointers on zoned device after roll forward Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 113/219] ASoC: amd: Add new dmi entries for acp5x platform Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 114/219] drm/drm_file: fix use of uninitialized variable Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 115/219] drm/framebuffer: Fix " Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 116/219] drm/mipi-dsi: Fix detach call without attach Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 117/219] media: stk1160: Fixed high volume of stk1160_dbg messages Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 118/219] media: rockchip: rga: fix swizzling for RGB formats Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 119/219] PCI: add INTEL_HDA_ARL to pci_ids.h Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 120/219] ALSA: hda: Intel: add HDA_ARL PCI ID support Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 121/219] media: rkisp1: Drop IRQF_SHARED Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 122/219] media: rkisp1: Fix IRQ handler return values Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 123/219] media: rkisp1: Store IRQ lines Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 124/219] media: rkisp1: Fix IRQ disable race issue Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 125/219] hwmon: (nct6775) Fix fan speed set failure in automatic mode Greg Kroah-Hartman
2024-02-03  4:04 ` [PATCH 6.1 126/219] f2fs: fix to tag gcing flag on page during block migration Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 127/219] drm/exynos: Call drm_atomic_helper_shutdown() at shutdown/unbind time Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 128/219] IB/ipoib: Fix mcast list locking Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 129/219] media: amphion: remove mutext lock in condition of wait_event Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 130/219] media: ddbridge: fix an error code problem in ddb_probe Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 131/219] media: i2c: imx335: Fix hblank min/max values Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 132/219] drm/amd/display: For prefetch mode > 0, extend prefetch if possible Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 133/219] drm/msm/dpu: Ratelimit framedone timeout msgs Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 134/219] drm/msm/dpu: fix writeback programming for YUV cases Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 135/219] drm/amdgpu: fix ftrace event amdgpu_bo_move always move on same heap Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 136/219] clk: hi3620: Fix memory leak in hi3620_mmc_clk_init() Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 137/219] clk: mmp: pxa168: Fix memory leak in pxa168_clk_init() Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 138/219] watchdog: it87_wdt: Keep WDTCTRL bit 3 unmodified for IT8784/IT8786 Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 139/219] drm/amd/display: make flip_timestamp_in_us a 64-bit variable Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 140/219] clk: imx: clk-imx8qxp: fix LVDS bypass, pixel and phy clocks Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 141/219] drm/amdgpu: Fix ecc irq enable/disable unpaired Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 142/219] drm/amdgpu: Let KFD sync with VM fences Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 143/219] drm/amdgpu: Fix *fw from request_firmware() not released in amdgpu_ucode_request() Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 144/219] drm/amdgpu: Drop fence check in to_amdgpu_amdkfd_fence() Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 145/219] drm/amdkfd: Fix iterator used outside loop in kfd_add_peer_prop() Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 146/219] ALSA: hda/conexant: Fix headset auto detect fail in cx8070 and SN6140 Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 147/219] leds: trigger: panic: Dont register panic notifier if creating the trigger failed Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 148/219] um: Fix naming clash between UML and scheduler Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 149/219] um: Dont use vfprintf() for os_info() Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 150/219] um: net: Fix return type of uml_net_start_xmit() Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 151/219] um: time-travel: fix time corruption Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 152/219] i3c: master: cdns: Update maximum prescaler value for i2c clock Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 153/219] xen/gntdev: Fix the abuse of underlying struct page in DMA-buf import Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 154/219] mfd: ti_am335x_tscadc: Fix TI SoC dependencies Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 155/219] mailbox: arm_mhuv2: Fix a bug for mhuv2_sender_interrupt Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 156/219] PCI: Only override AMD USB controller if required Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 157/219] PCI: switchtec: Fix stdev_release() crash after surprise hot remove Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 158/219] perf cs-etm: Bump minimum OpenCSD version to ensure a bugfix is present Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 159/219] xhci: fix possible null pointer deref during xhci urb enqueue Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 160/219] usb: hub: Replace hardcoded quirk value with BIT() macro Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 161/219] usb: hub: Add quirk to decrease IN-ep poll interval for Microchip USB491x hub Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 162/219] selftests/sgx: Fix linker script asserts Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 163/219] tty: allow TIOCSLCKTRMIOS with CAP_CHECKPOINT_RESTORE Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 164/219] fs/kernfs/dir: obey S_ISGID Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 165/219] spmi: mediatek: Fix UAF on device remove Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 166/219] PCI: Fix 64GT/s effective data rate calculation Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 167/219] PCI/AER: Decode Requester ID when no error info found Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 168/219] 9p: Fix initialisation of netfs_inode for 9p Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 169/219] misc: lis3lv02d_i2c: Add missing setting of the reg_ctrl callback Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 170/219] libsubcmd: Fix memory leak in uniq() Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 171/219] drm/amdkfd: Fix lock dependency warning Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 172/219] drm/amdkfd: Fix lock dependency warning with srcu Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 173/219] =?UTF-8?q?virtio=5Fnet:=20Fix=20"=E2=80=98%d=E2=80=99=20directive?= =?UTF-8?q?=20writing=20between=201=20and=2011=20bytes=20into=20a=20region?= =?UTF-8?q?=20of=20size=2010"=20warnings?= Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 174/219] blk-mq: fix IO hang from sbitmap wakeup race Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 175/219] ceph: reinitialize mds feature bit even when session in open Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 176/219] ceph: fix deadlock or deadcode of misusing dget() Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 177/219] ceph: fix invalid pointer access if get_quota_realm return ERR_PTR Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 178/219] drm/amd/powerplay: Fix kzalloc parameter ATOM_Tonga_PPM_Table in get_platform_power_management_table() Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 179/219] drm/amdgpu: Fix with right return code -EIO in amdgpu_gmc_vram_checking() Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 180/219] drm/amdgpu: Release adev->pm.fw before return in amdgpu_device_need_post() Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 181/219] drm/amdkfd: Fix node NULL check in svm_range_get_range_boundaries() Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 182/219] perf: Fix the nr_addr_filters fix Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 183/219] wifi: cfg80211: fix RCU dereference in __cfg80211_bss_update Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 184/219] drm: using mul_u32_u32() requires linux/math64.h Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 185/219] scsi: isci: Fix an error code problem in isci_io_request_build() Greg Kroah-Hartman
2024-02-03  4:05 ` [PATCH 6.1 186/219] regulator: ti-abb: dont use devm_platform_ioremap_resource_byname for shared interrupt register Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 187/219] scsi: core: Move scsi_host_busy() out of host lock for waking up EH handler Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 188/219] HID: hidraw: fix a problem of memory leak in hidraw_release() Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 189/219] selftests: net: give more time for GRO aggregation Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 190/219] ip6_tunnel: make sure to pull inner header in __ip6_tnl_rcv() Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 191/219] ipv4: raw: add drop reasons Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 192/219] ipmr: fix kernel panic when forwarding mcast packets Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 193/219] net: lan966x: Fix port configuration when using SGMII interface Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 194/219] tcp: add sanity checks to rx zerocopy Greg Kroah-Hartman
2024-02-03 19:17   ` Matthew Wilcox
2024-02-03 19:19     ` Matthew Wilcox
2024-02-03  4:06 ` [PATCH 6.1 195/219] ixgbe: Refactor returning internal error codes Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 196/219] ixgbe: Refactor overtemp event handling Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 197/219] ixgbe: Fix an error handling path in ixgbe_read_iosf_sb_reg_x550() Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 198/219] net: dsa: qca8k: fix illegal usage of GPIO Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 199/219] ipv6: Ensure natural alignment of const ipv6 loopback and router addresses Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 200/219] llc: call sock_orphan() at release time Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 201/219] bridge: mcast: fix disabled snooping after long uptime Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 202/219] selftests: net: add missing config for GENEVE Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 203/219] netfilter: conntrack: correct window scaling with retransmitted SYN Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 204/219] netfilter: nf_tables: restrict tunnel object to NFPROTO_NETDEV Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 205/219] netfilter: nf_log: replace BUG_ON by WARN_ON_ONCE when putting logger Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 206/219] netfilter: nft_ct: sanitize layer 3 and 4 protocol number in custom expectations Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 207/219] net: ipv4: fix a memleak in ip_setup_cork Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 208/219] af_unix: fix lockdep positive in sk_diag_dump_icons() Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 209/219] selftests: net: fix available tunnels detection Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 210/219] net: sysfs: Fix /sys/class/net/<iface> path Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 211/219] selftests: team: Add missing config options Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 212/219] selftests: bonding: Check initial state Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 213/219] arm64: irq: set the correct node for shadow call stack Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 214/219] mm, kmsan: fix infinite recursion due to RCU critical section Greg Kroah-Hartman
2024-03-04 22:20   ` Arnav Kansal
2024-03-04 23:46     ` Greg KH
2024-03-07 18:33       ` Arnav Kansal
2024-03-07 20:05         ` Greg KH
2024-03-07 20:25           ` Arnav Kansal
2024-02-03  4:06 ` [PATCH 6.1 215/219] Revert "drm/amd/display: Disable PSR-SU on Parade 0803 TCON again" Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 216/219] drm/msm/dsi: Enable runtime PM Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 217/219] LoongArch/smp: Call rcutree_report_cpu_starting() at tlb_init() Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 218/219] [PATCH 5.15 6.1] gve: Fix use-after-free vulnerability Greg Kroah-Hartman
2024-02-03  4:06 ` [PATCH 6.1 219/219] bonding: remove print in bond_verify_device_path Greg Kroah-Hartman
2024-02-03  6:23 ` [PATCH 6.1 000/219] 6.1.77-rc1 review Daniel Díaz
2024-02-03 15:42   ` Greg Kroah-Hartman
2024-02-03 16:07     ` Guenter Roeck
2024-02-05 11:29   ` Shreeya Patel
2024-02-03 10:01 ` Pavel Machek
2024-02-03 16:48 ` Florian Fainelli
2024-02-04  9:34 ` Yann Sionneau
2024-02-05 13:19 ` Jon Hunter
2024-03-08 13:33 ` Conor Dooley

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=20240203035317.490481892@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=dmitry.torokhov@gmail.com \
    --cc=lkp@intel.com \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

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

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).