From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev,
Junxian Huang <huangjunxian6@hisilicon.com>,
Leon Romanovsky <leon@kernel.org>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.12 369/590] RDMA/hns: Clean up the legacy CONFIG_INFINIBAND_HNS
Date: Wed, 5 Feb 2025 14:42:04 +0100 [thread overview]
Message-ID: <20250205134509.387389210@linuxfoundation.org> (raw)
In-Reply-To: <20250205134455.220373560@linuxfoundation.org>
6.12-stable review patch. If anyone has any objections, please let me know.
------------------
From: Junxian Huang <huangjunxian6@hisilicon.com>
[ Upstream commit 8977b561216c7e693d61c6442657e33f134bfeb5 ]
hns driver used to support hip06 and hip08 devices with
CONFIG_INFINIBAND_HNS_HIP06 and CONFIG_INFINIBAND_HNS_HIP08
respectively, which both depended on CONFIG_INFINIBAND_HNS.
But we no longer provide support for hip06 and only support
hip08 and higher since the commit in fixes line, so there is
no need to have CONFIG_INFINIBAND_HNS any more. Remove it and
only keep CONFIG_INFINIBAND_HNS_HIP08.
Fixes: 38d220882426 ("RDMA/hns: Remove support for HIP06")
Signed-off-by: Junxian Huang <huangjunxian6@hisilicon.com>
Link: https://patch.msgid.link/20250106111211.3945051-1-huangjunxian6@hisilicon.com
Signed-off-by: Leon Romanovsky <leon@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
drivers/infiniband/hw/Makefile | 2 +-
drivers/infiniband/hw/hns/Kconfig | 20 +++++---------------
drivers/infiniband/hw/hns/Makefile | 9 +++------
3 files changed, 9 insertions(+), 22 deletions(-)
diff --git a/drivers/infiniband/hw/Makefile b/drivers/infiniband/hw/Makefile
index 1211f4317a9f4..aba96ca9bce5d 100644
--- a/drivers/infiniband/hw/Makefile
+++ b/drivers/infiniband/hw/Makefile
@@ -11,7 +11,7 @@ obj-$(CONFIG_INFINIBAND_OCRDMA) += ocrdma/
obj-$(CONFIG_INFINIBAND_VMWARE_PVRDMA) += vmw_pvrdma/
obj-$(CONFIG_INFINIBAND_USNIC) += usnic/
obj-$(CONFIG_INFINIBAND_HFI1) += hfi1/
-obj-$(CONFIG_INFINIBAND_HNS) += hns/
+obj-$(CONFIG_INFINIBAND_HNS_HIP08) += hns/
obj-$(CONFIG_INFINIBAND_QEDR) += qedr/
obj-$(CONFIG_INFINIBAND_BNXT_RE) += bnxt_re/
obj-$(CONFIG_INFINIBAND_ERDMA) += erdma/
diff --git a/drivers/infiniband/hw/hns/Kconfig b/drivers/infiniband/hw/hns/Kconfig
index ab3fbba70789c..44cdb706fe276 100644
--- a/drivers/infiniband/hw/hns/Kconfig
+++ b/drivers/infiniband/hw/hns/Kconfig
@@ -1,21 +1,11 @@
# SPDX-License-Identifier: GPL-2.0-only
-config INFINIBAND_HNS
- tristate "HNS RoCE Driver"
- depends on NET_VENDOR_HISILICON
- depends on ARM64 || (COMPILE_TEST && 64BIT)
- depends on (HNS_DSAF && HNS_ENET) || HNS3
- help
- This is a RoCE/RDMA driver for the Hisilicon RoCE engine.
-
- To compile HIP08 driver as module, choose M here.
-
config INFINIBAND_HNS_HIP08
- bool "Hisilicon Hip08 Family RoCE support"
- depends on INFINIBAND_HNS && PCI && HNS3
- depends on INFINIBAND_HNS=m || HNS3=y
+ tristate "Hisilicon Hip08 Family RoCE support"
+ depends on ARM64 || (COMPILE_TEST && 64BIT)
+ depends on PCI && HNS3
help
RoCE driver support for Hisilicon RoCE engine in Hisilicon Hip08 SoC.
The RoCE engine is a PCI device.
- To compile this driver, choose Y here: if INFINIBAND_HNS is m, this
- module will be called hns-roce-hw-v2.
+ To compile this driver, choose M here. This module will be called
+ hns-roce-hw-v2.
diff --git a/drivers/infiniband/hw/hns/Makefile b/drivers/infiniband/hw/hns/Makefile
index be1e1cdbcfa8a..7917af8e6380e 100644
--- a/drivers/infiniband/hw/hns/Makefile
+++ b/drivers/infiniband/hw/hns/Makefile
@@ -5,12 +5,9 @@
ccflags-y := -I $(srctree)/drivers/net/ethernet/hisilicon/hns3
-hns-roce-objs := hns_roce_main.o hns_roce_cmd.o hns_roce_pd.o \
+hns-roce-hw-v2-objs := hns_roce_main.o hns_roce_cmd.o hns_roce_pd.o \
hns_roce_ah.o hns_roce_hem.o hns_roce_mr.o hns_roce_qp.o \
hns_roce_cq.o hns_roce_alloc.o hns_roce_db.o hns_roce_srq.o hns_roce_restrack.o \
- hns_roce_debugfs.o
+ hns_roce_debugfs.o hns_roce_hw_v2.o
-ifdef CONFIG_INFINIBAND_HNS_HIP08
-hns-roce-hw-v2-objs := hns_roce_hw_v2.o $(hns-roce-objs)
-obj-$(CONFIG_INFINIBAND_HNS) += hns-roce-hw-v2.o
-endif
+obj-$(CONFIG_INFINIBAND_HNS_HIP08) += hns-roce-hw-v2.o
--
2.39.5
next prev parent reply other threads:[~2025-02-05 14:49 UTC|newest]
Thread overview: 605+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-05 13:35 [PATCH 6.12 000/590] 6.12.13-rc1 review Greg Kroah-Hartman
2025-02-05 13:35 ` [PATCH 6.12 001/590] coredump: Do not lock during comm reporting Greg Kroah-Hartman
2025-02-05 13:35 ` [PATCH 6.12 002/590] powerpc/book3s64/hugetlb: Fix disabling hugetlb when fadump is active Greg Kroah-Hartman
2025-02-05 13:35 ` [PATCH 6.12 003/590] dlm: fix removal of rsb struct that is master and dir record Greg Kroah-Hartman
2025-02-05 13:35 ` [PATCH 6.12 004/590] dlm: fix srcu_read_lock() return type to int Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 005/590] afs: Fix EEXIST error returned from afs_rmdir() to be ENOTEMPTY Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 006/590] afs: Fix directory format encoding struct Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 007/590] afs: Fix cleanup of immediately failed async calls Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 008/590] fs: fix proc_handler for sysctl_nr_open Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 009/590] block: copy back bounce buffer to user-space correctly in case of split Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 010/590] block: retry call probe after request_module in blk_request_module Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 011/590] ps3disk: Do not use dev->bounce_size before it is set Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 012/590] nbd: dont allow reconnect after disconnect Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 013/590] pstore/blk: trivial typo fixes Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 014/590] block: check BLK_FEAT_POLL under q_usage_count Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 015/590] block: dont update BLK_FEAT_POLL in __blk_mq_update_nr_hw_queues Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 016/590] nvme-tcp: Fix I/O queue cpu spreading for multiple controllers Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 017/590] nvme: Add error check for xa_store in nvme_get_effects_log Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 018/590] powerpc/pseries/iommu: IOMMU incorrectly marks MMIO range in DDW Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 019/590] selftests/powerpc: Fix argument order to timer_sub() Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 020/590] nvme: Add error path for xa_store in nvme_init_effects Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 021/590] btrfs: improve the warning and error message for btrfs_remove_qgroup() Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 022/590] partitions: ldm: remove the initial kernel-doc notation Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 023/590] btrfs: subpage: fix the bitmap dump of the locked flags Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 024/590] select: Fix unbalanced user_access_end() Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 025/590] nvme: fix bogus kzalloc() return check in nvme_init_effects_log() Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 026/590] afs: Fix the fallback handling for the YFS.RemoveFile2 RPC call Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 027/590] perf/core: Save raw sample data conditionally based on sample type Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 028/590] sched/fair: Untangle NEXT_BUDDY and pick_next_task() Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 029/590] sched/fair: Fix value reported by hot tasks pulled in /proc/schedstat Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 030/590] sched: Fix race between yield_to() and try_to_wake_up() Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 031/590] x86/cpu: Enable SD_ASYM_PACKING for PKG domain on AMD Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 032/590] x86/topology: Use x86_sched_itmt_flags for PKG domain unconditionally Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 033/590] sched: Split out __schedule() deactivate task logic into a helper Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 034/590] sched: psi: pass enqueue/dequeue flags to psi callbacks directly Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 035/590] psi: Fix race when task wakes up before psi_sched_switch() adjusts flags Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 036/590] drm/v3d: Fix performance counter source settings on V3D 7.x Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 037/590] drm/rockchip: vop2: fix rk3588 dp+dsi maxclk verification Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 038/590] drm/msm/dp: set safe_to_exit_level before printing it Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 039/590] drm/msm/hdmi: simplify code in pll_get_integloop_gain Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 041/590] HID: core: Fix assumption that Resolution Multipliers must be in Logical Collections Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 042/590] drm/amd/pm: Fix an error handling path in vega10_enable_se_edc_force_stall_config() Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 043/590] drm/amdgpu: Fix potential NULL pointer dereference in atomctrl_get_smc_sclk_range_table Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 044/590] drm/rockchip: vop2: Fix cluster windows alpha ctrl regsiters offset Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 045/590] drm/rockchip: vop2: Fix the mixer alpha setup for layer 0 Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 046/590] drm/panthor: Preserve the result returned by panthor_fw_resume() Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 047/590] drm/rockchip: vop2: Fix the windows switch between different layers Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 048/590] printk: Defer legacy printing when holding printk_cpu_sync Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 049/590] drm/connector: Allow clearing HDMI infoframes Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 050/590] drm/rockchip: vop2: Set AXI id for rk3588 Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 051/590] drm/rockchip: vop2: Setup delay cycle for Esmart2/3 Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 052/590] drm/rockchip: vop2: Check linear format for Cluster windows on rk3566/8 Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 053/590] drm/rockchip: vop2: Add check for 32 bpp format for rk3588 Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 054/590] drm/rockchip: vop2: include rockchip_drm_drv.h Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 055/590] drm/amdgpu/vcn: reset fw_shared under SRIOV Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 056/590] OPP: add index check to assert to avoid buffer overflow in _read_freq() Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 057/590] OPP: fix dev_pm_opp_find_bw_*() when bandwidth table not initialized Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 058/590] drm/msm/dpu: provide DSPP and correct LM config for SDM670 Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 059/590] drm/msm/dpu: link DSPP_2/_3 blocks on SM8150 Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 060/590] drm/msm/dpu: link DSPP_2/_3 blocks on SC8180X Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 061/590] drm/msm/dpu: link DSPP_2/_3 blocks on SM8250 Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 062/590] drm/msm/dpu: link DSPP_2/_3 blocks on SM8350 Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 063/590] drm/msm/dpu: link DSPP_2/_3 blocks on SM8550 Greg Kroah-Hartman
2025-02-05 13:36 ` [PATCH 6.12 064/590] drm/msm/dpu: link DSPP_2/_3 blocks on SM8650 Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 065/590] drm/msm/dpu: link DSPP_2/_3 blocks on X1E80100 Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 066/590] drm/msm: Check return value of of_dma_configure() Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 067/590] drm/msm: dont clean up priv->kms prematurely Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 068/590] drm/msm/mdp4: correct LCDC regulator name Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 069/590] drm/bridge: it6505: Change definition of AUX_FIFO_MAX_SIZE Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 070/590] drm/amdgpu: tear down ttm range manager for doorbell in amdgpu_ttm_fini() Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 071/590] Revert "drm/amdgpu/gfx9: put queue resets behind a debug option" Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 072/590] drm/amdgpu: fix gpu recovery disable with per queue reset Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 073/590] genirq: Make handle_enforce_irqctx() unconditionally available Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 074/590] ipmi: ipmb: Add check devm_kasprintf() returned value Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 075/590] wifi: ath11k: Fix unexpected return buffer manager error for WCN6750/WCN6855 Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 076/590] wifi: rtlwifi: rtl8821ae: phy: restore removed code to fix infinite loop Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 077/590] wifi: rtlwifi: do not complete firmware loading needlessly Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 078/590] wifi: rtlwifi: rtl8192se: rise completion of firmware loading as last step Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 079/590] wifi: rtlwifi: wait for firmware loading before releasing memory Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 080/590] wifi: rtlwifi: fix init_sw_vars leak when probe fails Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 081/590] wifi: rtlwifi: usb: fix workqueue " Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 082/590] wifi: wcn36xx: fix channel survey memory allocation size Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 083/590] clk: renesas: cpg-mssr: Fix soc node handling in cpg_mssr_reserved_init() Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 084/590] wifi: cfg80211: tests: Fix potential NULL dereference in test_cfg80211_parse_colocated_ap() Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 085/590] selftests/bpf: Actuate tx_metadata_len in xdp_hw_metadata Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 086/590] net_sched: sch_sfq: handle bigger packets Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 087/590] net_sched: sch_sfq: dont allow 1 packet limit Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 088/590] spi: zynq-qspi: Add check for clk_enable() Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 089/590] rxrpc: Fix handling of received connection abort Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 090/590] dt-bindings: mmc: controller: clarify the address-cells description Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 091/590] clk: fix an OF node reference leak in of_clk_get_parent_name() Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 092/590] dt-bindings: leds: class-multicolor: Fix path to color definitions Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 093/590] wifi: rtlwifi: remove unused check_buddy_priv Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 094/590] wifi: rtlwifi: destroy workqueue at rtl_deinit_core Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 095/590] wifi: rtlwifi: fix memory leaks and invalid access at probe error path Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 096/590] wifi: rtlwifi: pci: wait for firmware loading before releasing memory Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 097/590] HID: multitouch: fix support for Goodix PID 0x01e9 Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 098/590] regulator: dt-bindings: mt6315: Drop regulator-compatible property Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 099/590] wifi: brcmfmac: add missing header include for brcmf_dbg Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 100/590] module: Convert default symbol namespace to string literal Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 101/590] hwmon: (nct6775): Actually make use of the HWMON_NCT6775 symbol namespace Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 102/590] ACPI: fan: cleanup resources in the error path of .probe() Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 103/590] cpupower: fix TSC MHz calculation Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 104/590] dt-bindings: mfd: bd71815: Fix rsense and typos Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 105/590] leds: netxbig: Fix an OF node reference leak in netxbig_leds_get_of_pdata() Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 106/590] inetpeer: remove create argument of inet_getpeer_v[46]() Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 107/590] inetpeer: remove create argument of inet_getpeer() Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 108/590] inetpeer: update inetpeer timestamp in inet_getpeer() Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 109/590] inetpeer: do not get a refcount " Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 110/590] pwm: stm32-lp: Add check for clk_enable() Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 111/590] cpufreq: schedutil: Fix superfluous updates caused by need_freq_update Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 112/590] selftests: ktap_helpers: Fix uninitialized variable Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 113/590] ptr_ring: do not block hard interrupts in ptr_ring_resize_multiple() Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 114/590] net: airoha: Fix error path in airoha_probe() Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 115/590] gpio: pca953x: log an error when failing to get the reset GPIO Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 116/590] cpufreq: qcom: Fix qcom_cpufreq_hw_recalc_rate() to query LUT if LMh IRQ is not available Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 117/590] cpufreq: qcom: Implement clk_ops::determine_rate() for qcom_cpufreq* clocks Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 118/590] udp: Deal with race between UDP socket address change and rehash Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 119/590] clk: imx8mp: Fix clkout1/2 support Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 120/590] dt-bindings: clock: imx93: Drop IMX93_CLK_END macro definition Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 121/590] dt-bindings: clock: Add i.MX91 clock support Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 122/590] dt-bindings: clock: imx93: Add SPDIF IPG clk Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 123/590] clk: imx93: Move IMX93_CLK_END macro to clk driver Greg Kroah-Hartman
2025-02-05 13:37 ` [PATCH 6.12 124/590] clk: imx: add i.MX91 clk Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 125/590] clk: imx93: Add IMX93_CLK_SPDIF_IPG clock Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 126/590] arm64: dts: imx93: Use IMX93_CLK_SPDIF_IPG as SPDIF IPG clock Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 127/590] clk: imx: Apply some clks only for i.MX93 Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 128/590] clk: qcom: camcc-x1e80100: Set titan_top_gdsc as the parent GDSC of subordinate GDSCs Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 129/590] team: prevent adding a device which is already a team device lower Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 130/590] dt-bindings: clock: sunxi: Export PLL_VIDEO_2X and PLL_MIPI Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 131/590] clk: sunxi-ng: a64: drop redundant CLK_PLL_VIDEO0_2X and CLK_PLL_MIPI Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 132/590] clk: sunxi-ng: a64: stop force-selecting PLL-MIPI as TCON0 parent Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 133/590] regulator: of: Implement the unwind path of of_regulator_match() Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 134/590] ax25: rcu protect dev->ax25_ptr Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 135/590] net/mlx5: HWS, fix definers HWS_SET32 macro for negative offset Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 136/590] OPP: OF: Fix an OF node leak in _opp_add_static_v2() Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 137/590] ipmi: ssif_bmc: Fix new request loss when bmc ready for a response Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 138/590] wifi: ath12k: fix tx power, max reg power update to firmware Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 139/590] clk: qcom: gcc-sdm845: Do not use shared clk_ops for QUPs Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 140/590] HID: hid-thrustmaster: Fix warning in thrustmaster_probe by adding endpoint check Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 141/590] HID: fix generic desktop D-Pad controls Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 142/590] leds: cht-wcove: Use devm_led_classdev_register() to avoid memory leak Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 143/590] mfd: syscon: Fix race in device_node_get_regmap() Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 144/590] samples/landlock: Fix possible NULL dereference in parse_path() Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 145/590] wifi: mt76: mt7996: fix invalid interface combinations Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 146/590] wifi: wlcore: fix unbalanced pm_runtime calls Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 147/590] wifi: rtw89: handle entity active flag per PHY Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 148/590] wifi: rtw89: chan: manage active interfaces Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 149/590] wifi: rtw89: tweak setting of channel and TX power for MLO Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 150/590] wifi: rtw89: fix proceeding MCC with wrong scanning state after sequence changes Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 151/590] wifi: rtw89: chan: fix soft lockup in rtw89_entity_recalc_mgnt_roles() Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 152/590] wifi: rtw89: avoid to init mgnt_entry list twice when WoWLAN failed Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 153/590] wifi: rtw89: mcc: consider time limits not divisible by 1024 Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 154/590] wifi: rtw89: fix race between cancel_hw_scan and hw_scan completion Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 155/590] hwmon: Fix help text for aspeed-g6-pwm-tach Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 156/590] wifi: mt76: mt7925: fix off by one in mt7925_load_clc() Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 157/590] wifi: mt76: mt7915: Fix mesh scan on MT7916 DBDC Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 158/590] wifi: iwlwifi: fw: read STEP table from correct UEFI var Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 159/590] wifi: iwlwifi: mvm: avoid NULL pointer dereference Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 160/590] wifi: iwlwifi: mvm: dont count mgmt frames as MPDU Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 161/590] wifi: mac80211: prohibit deactivating all links Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 162/590] wifi: cfg80211: Move cfg80211_scan_req_add_chan() n_channels increment earlier Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 163/590] wifi: mac80211: fix tid removal during mesh forwarding Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 164/590] wifi: mac80211: Fix common size calculation for ML element Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 165/590] wifi: mac80211: dont flush non-uploaded STAs Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 166/590] clk: ralink: mtmips: remove duplicated xtal clock for Ralink SoC RT3883 Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 167/590] clk: thead: Fix clk gate registration to pass flags Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 168/590] clk: thead: Add CLK_IGNORE_UNUSED to fix TH1520 boot Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 169/590] clk: thead: Fix cpu2vp_clk for TH1520 AP_SUBSYS clocks Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 170/590] net/smc: fix data error when recvmsg with MSG_PEEK flag Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 171/590] landlock: Handle weird files Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 172/590] wifi: mt76: mt76u_vendor_request: Do not print error messages when -EPROTO Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 173/590] wifi: mt76: mt7921: fix using incorrect group cipher after disconnection Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 174/590] wifi: mt76: mt7915: Fix an error handling path in mt7915_add_interface() Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 175/590] wifi: mt76: mt7925: fix NULL deref check in mt7925_change_vif_links Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 176/590] wifi: mt76: mt7925: fix wrong band_idx setting when enable sniffer mode Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 177/590] wifi: mt76: mt7925: fix get wrong chip cap from incorrect pointer Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 178/590] wifi: mt76: mt7925: fix the invalid ip address for arp offload Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 179/590] wifi: mt76: mt7996: fix overflows seen when writing limit attributes Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 180/590] wifi: mt76: mt7915: " Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 181/590] wifi: mt76: connac: Extend mt76_connac_mcu_uni_add_dev for MLO Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 182/590] wifi: mt76: mt7925: Fix incorrect MLD address in bss_mld_tlv for MLO support Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 183/590] wifi: mt76: mt7925: Fix incorrect WCID assignment for MLO Greg Kroah-Hartman
2025-02-05 13:38 ` [PATCH 6.12 184/590] wifi: mt76: mt7925: Fix incorrect WCID phy_idx assignment Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 185/590] wifi: mt76: mt7925: fix wrong parameter for related cmd of chan info Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 186/590] wifi: mt76: mt7925: Fix CNM Timeout with Single Active Link in MLO Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 187/590] wifi: mt76: mt7925: Enhance mt7925_mac_link_bss_add to support MLO Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 188/590] wifi: mt76: Enhance mt7925_mac_link_sta_add " Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 189/590] wifi: mt76: mt7925: Update mt7925_mcu_sta_update for BC in ASSOC state Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 190/590] wifi: mt76: mt7925: Update mt792x_rx_get_wcid for per-link STA Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 191/590] wifi: mt76: mt7925: Update mt7925_unassign_vif_chanctx for per-link BSS Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 192/590] wifi: mt76: mt7925: Update secondary link PS flow Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 193/590] wifi: mt76: mt7925: Init secondary link PM state Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 194/590] wifi: mt76: mt7925: Update mt7925_mcu_uni_[tx,rx]_ba for MLO Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 195/590] wifi: mt76: mt7925: Cleanup MLO settings post-disconnection Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 196/590] wifi: mt76: mt7925: Properly handle responses for commands with events Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 197/590] wifi: mt76: mt7996: fix rx filter setting for bfee functionality Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 198/590] wifi: mt76: only enable tx worker after setting the channel Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 199/590] wifi: mt76: mt7915: firmware restart on devices with a second pcie link Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 200/590] wifi: mt76: mt7915: fix omac index assignment after hardware reset Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 201/590] wifi: mt76: mt7915: fix register mapping Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 202/590] wifi: mt76: mt7996: " Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 203/590] wifi: mt76: mt7996: add max mpdu len capability Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 204/590] wifi: mt76: mt7996: fix the capability of reception of EHT MU PPDU Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 205/590] wifi: mt76: mt7996: fix HE Phy capability Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 206/590] wifi: mt76: mt7996: fix incorrect indexing of MIB FW event Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 207/590] wifi: mt76: mt7996: fix definition of tx descriptor Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 208/590] wifi: mt76: mt7996: fix ldpc setting Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 209/590] i2c: designware: Actually make use of the I2C_DW_COMMON and I2C_DW symbol namespaces Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 210/590] cpufreq: ACPI: Fix max-frequency computation Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 211/590] selftests: timers: clocksource-switch: Adapt progress to kselftest framework Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 212/590] selftests: harness: fix printing of mismatch values in __EXPECT() Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 213/590] wifi: cfg80211: adjust allocation of colocated AP data Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 214/590] Bluetooth: btbcm: Fix NULL deref in btbcm_get_board_name() Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 215/590] Bluetooth: btrtl: check for NULL in btrtl_setup_realtek() Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 216/590] inet: ipmr: fix data-races Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 217/590] clk: analogbits: Fix incorrect calculation of vco rate delta Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 218/590] dev: Acquire netdev_rename_lock before restoring dev->name in dev_change_name() Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 219/590] pwm: stm32: Add check for clk_enable() Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 220/590] selftests/landlock: Fix build with non-default pthread linking Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 221/590] selftests/landlock: Fix error message Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 222/590] net: let net.core.dev_weight always be non-zero Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 223/590] net/mlxfw: Drop hard coded max FW flash image size Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 224/590] octeon_ep: remove firmware stats fetch in ndo_get_stats64 Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 225/590] octeon_ep_vf: " Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 226/590] net: avoid race between device unregistration and ethnl ops Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 227/590] net: sched: Disallow replacing of child qdisc from one parent to another Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 228/590] netfilter: nf_tables: fix set size with rbtree backend Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 229/590] netfilter: nft_flow_offload: update tcp state flags under lock Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 230/590] net: sched: refine software bypass handling in tc_run Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 231/590] net: ethernet: ti: am65-cpsw: fix freeing IRQ in am65_cpsw_nuss_remove_tx_chns() Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 232/590] tcp_cubic: fix incorrect HyStart round start detection Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 233/590] net/rose: prevent integer overflows in rose_setsockopt() Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 234/590] platform/mellanox: mlxbf-pmc: incorrect type in assignment Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 235/590] platform/x86: x86-android-tablets: make platform data be static Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 236/590] pinctrl: samsung: Fix irq handling if an error occurs in exynos_irq_demux_eint16_31() Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 237/590] libbpf: dont adjust USDT semaphore address if .stapsdt.base addr is missing Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 238/590] ASoC: cs40l50: Use *-y for Makefile Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 239/590] ASoC: mediatek: mt8365: " Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 240/590] ASoC: wcd937x: " Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 241/590] tools/testing/selftests/bpf/test_tc_tunnel.sh: Fix wait for server bind Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 242/590] libbpf: Fix segfault due to libelf functions not setting errno Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 243/590] ASoC: Intel: sof_sdw: correct mach_params->dmic_num Greg Kroah-Hartman
2025-02-05 13:39 ` [PATCH 6.12 244/590] ASoC: sun4i-spdif: Add clock multiplier settings Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 245/590] selftests/bpf: Fix fill_link_info selftest on powerpc Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 246/590] iommu/arm-smmuv3: Update comments about ATS and bypass Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 247/590] crypto: tegra - do not transfer req when tegra init fails Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 248/590] crypto: api - Fix boot-up self-test race Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 249/590] crypto: caam - use JobRs space to access page 0 regs Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 250/590] perf header: Fix one memory leakage in process_bpf_btf() Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 251/590] perf header: Fix one memory leakage in process_bpf_prog_info() Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 252/590] perf bpf: Fix two memory leakages when calling perf_env__insert_bpf_prog_info() Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 253/590] ASoC: renesas: rz-ssi: Use only the proper amount of dividers Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 254/590] perf expr: Initialize is_test value in expr__ctx_new() Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 255/590] pinctrl: nomadik: Add check for clk_enable() Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 256/590] ktest.pl: Remove unused declarations in run_bisect_test function Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 257/590] bpf: bpf_local_storage: Always use bpf_mem_alloc in PREEMPT_RT Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 258/590] rhashtable: Fix potential deadlock by moving schedule_work outside lock Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 259/590] crypto: hisilicon/sec2 - fix for aead icv error Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 260/590] crypto: hisilicon/sec2 - fix for aead invalid authsize Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 261/590] crypto: ixp4xx - fix OF node reference leaks in init_ixp_crypto() Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 262/590] crypto: iaa - Fix IAA disabling that occurs when sync_mode is set to async Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 263/590] bpf: Use refcount_t instead of atomic_t for mmap_count Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 264/590] ALSA: seq: Make dependency on UMP clearer Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 265/590] bpf: Reject struct_ops registration that uses module ptr and the module btf_id is missing Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 266/590] padata: fix sysfs store callback check Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 267/590] selftests/bpf: Avoid generating untracked files when running bpf selftests Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 268/590] perf top: Dont complain about lack of vmlinux when not resolving some kernel samples Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 269/590] perf maps: Fix display of kernel symbols Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 270/590] perf machine: Dont ignore _etext when not a text symbol Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 271/590] perf namespaces: Introduce nsinfo__set_in_pidns() Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 272/590] perf namespaces: Fixup the nsinfo__in_pidns() return type, its bool Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 273/590] ASoC: Intel: avs: Do not readq() u32 registers Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 274/590] ASoC: Intel: avs: Fix the minimum firmware version numbers Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 275/590] ASoC: Intel: avs: Fix theoretical infinite loop Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 276/590] ASoC: Intel: avs: Fix init-config parsing Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 277/590] perf MANIFEST: Add arch/*/include/uapi/asm/bpf_perf_event.h to the perf tarball Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 278/590] ALSA: hda: Fix compilation of snd_hdac_adsp_xxx() helpers Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 279/590] perf report: Fix misleading help message about --demangle Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 280/590] pinctrl: stm32: Add check for clk_enable() Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 281/590] pinctrl: amd: Take suspend type into consideration which pins are non-wake Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 282/590] perf inject: Fix use without initialization of local variables Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 283/590] ASoC: Intel: sof_sdw: Fix DMI match for Lenovo 83LC Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 284/590] ASoC: Intel: sof_sdw: Fix DMI match for Lenovo 83JX, 83MC and 83NM Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 285/590] bpf: Send signals asynchronously if !preemptible Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 286/590] selftests/bpf: Fix btf leak on new btf alloc failure in btf_distill test Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 287/590] libbpf: Fix return zero when elf_begin failed Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 288/590] libbpf: Fix incorrect traversal end type ID when marking BTF_IS_EMBEDDED Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 289/590] bpf: tcp: Mark bpf_load_hdr_opt() arg2 as read-write Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 290/590] iommu/amd: Remove unused amd_iommu_domain_update() Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 291/590] ALSA: hda/realtek - Fixed headphone distorted sound on Acer Aspire A115-31 laptop Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 292/590] tools: Sync if_xdp.h uapi tooling header Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 293/590] perf lock: Fix parse_lock_type which only retrieve one lock flag Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 294/590] padata: fix UAF in padata_reorder Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 295/590] padata: add pd get/put refcnt helper Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 296/590] padata: avoid UAF for reorder_work Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 297/590] rhashtable: Fix rhashtable_try_insert test Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 298/590] smb: client: fix oops due to unset link speed Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 299/590] cifs: Use cifs_autodisable_serverino() for disabling CIFS_MOUNT_SERVER_INUM in readdir.c Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 300/590] bpf: Cancel the running bpf_timer through kworker for PREEMPT_RT Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 301/590] soc: atmel: fix device_node release in atmel_soc_device_init() Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 302/590] ARM: at91: pm: change BU Power Switch to automatic mode Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 303/590] ARM: dts: imx7-tqma7: add missing vs-supply for LM75A (rev. 01xxx) Greg Kroah-Hartman
2025-02-05 13:40 ` [PATCH 6.12 304/590] arm64: dts: mediatek: mt8186: Move wakeup to MTU3 to get working suspend Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 305/590] arm64: dts: mt8183: set DMIC one-wire mode on Damu Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 306/590] arm64: dts: mediatek: mt8516: fix GICv2 range Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 307/590] arm64: dts: mediatek: mt8516: fix wdt irq type Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 308/590] arm64: dts: mediatek: mt8516: add i2c clock-div property Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 309/590] arm64: dts: mediatek: mt8516: reserve 192 KiB for TF-A Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 310/590] ARM: dts: stm32: Increase CPU core voltage on STM32MP13xx DHCOR SoM Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 311/590] ARM: dts: stm32: Fix IPCC EXTI declaration on stm32mp151 Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 312/590] RDMA/mlx4: Avoid false error about access to uninitialized gids array Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 313/590] arm64: dts: renesas: rzg3s-smarc: Fix the debug serial alias Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 314/590] rdma/cxgb4: Prevent potential integer overflow on 32bit Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 315/590] arm64: dts: mediatek: mt8173-evb: Drop regulator-compatible property Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 316/590] arm64: dts: mediatek: mt8173-elm: " Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 317/590] arm64: dts: mediatek: mt8192-asurada: " Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 318/590] arm64: dts: mediatek: mt8195-cherry: " Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 319/590] arm64: dts: mediatek: mt8195-demo: " Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 320/590] arm64: dts: medaitek: mt8395-nio-12l: " Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 321/590] arm64: dts: mediatek: mt8395-genio-1200-evk: " Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 322/590] arm64: dts: mediatek: mt8173-elm: Fix MT6397 PMIC sub-node names Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 323/590] arm64: dts: mediatek: mt8173-evb: " Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 324/590] ARM: dts: aspeed: yosemite4: correct the compatible string of adm1272 Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 325/590] ARM: dts: aspeed: yosemite4: Add required properties for IOE on fan boards Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 326/590] ARM: dts: aspeed: yosemite4: correct the compatible string for max31790 Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 327/590] arm: dts: socfpga: use reset-name "stmmaceth-ocp" instead of "ahb" Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 328/590] RDMA/rxe: Fix mismatched max_msg_sz Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 329/590] arm64: dts: mediatek: mt8183: kenzo: Support second source touchscreen Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 330/590] arm64: dts: mediatek: mt8183: willow: " Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 331/590] RDMA/srp: Fix error handling in srp_add_port Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 332/590] arm64: dts: mediatek: mt8195: Remove suspend-breaking reset from pcie1 Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 333/590] ARM: dts: stm32: Deduplicate serial aliases and chosen node for STM32MP15xx DHCOM SoM Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 334/590] ARM: dts: stm32: Swap USART3 and UART8 alias on " Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 335/590] memory: tegra20-emc: fix an OF node reference bug in tegra_emc_find_node_by_ram_code() Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 336/590] arm64: dts: mediatek: mt8183-kukui-jacuzzi: Drop pp3300_panel voltage settings Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 337/590] arm64: dts: qcom: msm8996-xiaomi-gemini: Fix LP5562 LED1 reg property Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 338/590] arm64: dts: qcom: sa8775p: Update sleep_clk frequency Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 339/590] arm64: defconfig: remove obsolete CONFIG_SM_DISPCC_8650 Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 340/590] arm64: dts: qcom: msm8996: Fix up USB3 interrupts Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 341/590] arm64: dts: qcom: msm8994: Describe USB interrupts Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 342/590] arm64: dts: qcom: sm7225-fairphone-fp4: Drop extra qcom,msm-id value Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 343/590] arm64: dts: qcom: msm8916: correct sleep clock frequency Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 344/590] arm64: dts: qcom: msm8939: " Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 345/590] arm64: dts: qcom: msm8994: " Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 346/590] arm64: dts: qcom: qcs404: " Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 347/590] arm64: dts: qcom: q[dr]u1000: " Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 348/590] arm64: dts: qcom: qrb4210-rb2: " Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 349/590] arm64: dts: qcom: sc7280: " Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 350/590] arm64: dts: qcom: sdx75: " Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 351/590] arm64: dts: qcom: sm4450: " Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 352/590] arm64: dts: qcom: sm6125: " Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 353/590] arm64: dts: qcom: sm6375: " Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 354/590] arm64: dts: qcom: sm8250: " Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 355/590] arm64: dts: qcom: sm8350: " Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 356/590] arm64: dts: qcom: sm8450: " Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 357/590] arm64: dts: qcom: sm8550: " Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 358/590] arm64: dts: qcom: sm8650: " Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 359/590] arm64: dts: qcom: x1e80100: " Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 360/590] arm64: dts: qcom: sm8650: Fix CDSP context banks unit addresses Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 361/590] ARM: dts: microchip: sama5d29_curiosity: Add no-1-8-v property to sdmmc0 node Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 362/590] ARM: dts: microchip: sama5d27_wlsom1_ek: " Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 363/590] arm64: dts: ti: k3-am62: Remove duplicate GICR reg Greg Kroah-Hartman
2025-02-05 13:41 ` [PATCH 6.12 364/590] arm64: dts: ti: k3-am62a: " Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 365/590] arm64: dts: rockchip: Fix sdmmc access on rk3308-rock-s0 v1.1 boards Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 366/590] arm64: dts: allwinner: a64: explicitly assign clock parent for TCON0 Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 367/590] RDMA/bnxt_re: Fix to drop reference to the mmap entry in case of error Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 368/590] RDMA/rtrs: Add missing deinit() call Greg Kroah-Hartman
2025-02-05 13:42 ` Greg Kroah-Hartman [this message]
2025-02-05 13:42 ` [PATCH 6.12 370/590] ARM: omap1: Fix up the Retu IRQ on Nokia 770 Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 371/590] arm64: dts: qcom: qcm6490-shift-otter: remove invalid orientation-switch Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 372/590] arm64: dts: qcom: sdm845-db845c-navigation-mezzanine: Convert mezzanine riser to dtso Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 373/590] arm64: dts: qcom: sdm845-db845c-navigation-mezzanine: remove disabled ov7251 camera Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 374/590] arm64: dts: qcom: sc7180-trogdor-quackingstick: add missing avee-supply Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 375/590] arm64: dts: qcom: sc7180-trogdor-pompom: rename 5v-choke thermal zone Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 376/590] arm64: dts: qcom: sc7180: change labels to lower-case Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 377/590] arm64: dts: qcom: sc7180: fix psci power domain node names Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 378/590] arm64: dts: qcom: sm8150-microsoft-surface-duo: fix typos in da7280 properties Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 379/590] arm64: dts: qcom: sc8280xp: Fix up remoteproc register space sizes Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 380/590] firmware: qcom: scm: Cleanup global __scm on probe failures Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 381/590] arm64: dts: mediatek: mt7988: Add missing clock-div property for i2c Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 382/590] dts: arm64: mediatek: mt8195: Remove MT8183 compatible for OVL Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 383/590] arm64: dts: mediatek: add per-SoC compatibles for keypad nodes Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 384/590] arm64: dts: qcom: sc8280xp: Fix interrupt type of camss interrupts Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 385/590] arm64: dts: qcom: sdm845: Fix interrupt types " Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 386/590] arm64: dts: qcom: sm8250: " Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 387/590] arm64: dts: marvell: cn9131-cf-solidwan: fix cp1 comphy links Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 388/590] ARM: dts: mediatek: mt7623: fix IR nodename Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 389/590] arm64: dts: rockchip: fix num-channels property of wolfvision pf5 mic Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 390/590] arm64: dts: ti: k3-am642-hummingboard-t: Convert overlay to board dts Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 391/590] fbdev: omapfb: Fix an OF node leak in dss_of_port_get_parent_device() Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 392/590] arm64: tegra: Fix DMA ID for SPI2 Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 393/590] arm64: dts: qcom: x1e80100-romulus: Update firmware nodes Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 394/590] i3c: dw: Fix use-after-free in dw_i3c_master driver due to race condition Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 395/590] RDMA/mlx5: Fix indirect mkey ODP page count Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 396/590] of: property: Avoiding using uninitialized variable @imaplen in parse_interrupt_map() Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 397/590] of: reserved-memory: Do not make kmemleak ignore freed address Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 398/590] efi: sysfb_efi: fix W=1 warnings when EFI is not set Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 399/590] RDMA/cxgb4: Notify rdma stack for IB_EVENT_QP_LAST_WQE_REACHED event Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 400/590] RDMA/rxe: Fix the warning "__rxe_cleanup+0x12c/0x170 [rdma_rxe]" Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 401/590] iommu: iommufd: fix WARNING in iommufd_device_unbind Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 402/590] iommufd/iova_bitmap: Fix shift-out-of-bounds in iova_bitmap_offset_to_index() Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 403/590] spi: omap2-mcspi: Correctly handle devm_clk_get_optional() errors Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 404/590] of: reserved_mem: Restructure how the reserved memory regions are processed Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 405/590] of/fdt: Restore possibility to use both ACPI and FDT from bootloader Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 406/590] media: rc: iguanair: handle timeouts Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 407/590] media: lmedm04: Handle errors for lme2510_int_read Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 408/590] PCI: endpoint: Destroy the EPC device in devm_pci_epc_destroy() Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 409/590] PCI/ASPM: Save parent L1SS config in pci_save_aspm_l1ss_state() Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 410/590] remoteproc: mtk_scp: Only populate devices for SCP cores Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 411/590] media: marvell: Add check for clk_enable() Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 412/590] media: i2c: imx290: Register 0x3011 varies between imx327 and imx290 Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 413/590] media: i2c: imx412: Add missing newline to prints Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 414/590] media: i2c: ov9282: Correct the exposure offset Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 415/590] media: mipi-csis: Add check for clk_enable() Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 416/590] media: camif-core: " Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 417/590] media: uvcvideo: Propagate buf->error to userspace Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 418/590] mtd: rawnand: brcmnand: fix status read of brcmnand_waitfunc Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 419/590] mtd: hyperbus: hbmc-am654: fix an OF node reference leak Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 420/590] media: nxp: imx8-isi: fix v4l2-compliance test errors Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 421/590] watchdog: rti_wdt: Fix an OF node leak in rti_wdt_probe() Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 422/590] staging: media: imx: fix OF node leak in imx_media_add_of_subdevs() Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 423/590] media: dvb-usb-v2: af9035: fix ISO C90 compilation error on af9035_i2c_master_xfer Greg Kroah-Hartman
2025-02-05 13:42 ` [PATCH 6.12 424/590] PCI: rcar-ep: Fix incorrect variable used when calling devm_request_mem_region() Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 425/590] PCI: imx6: Configure PHY based on Root Complex or Endpoint mode Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 426/590] PCI: imx6: Skip controller_id generation logic for i.MX7D Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 427/590] PCI: imx6: Deassert apps_reset in imx_pcie_deassert_core_reset() Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 428/590] PCI: imx6: Add missing reference clock disable logic Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 429/590] PCI: qcom: Update ICC and OPP values after Link Up event Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 430/590] PCI: dwc: Always stop link in the dw_pcie_suspend_noirq Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 431/590] PCI: endpoint: pci-epf-test: Set dma_chan_rx pointer to NULL on error Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 432/590] PCI: endpoint: pci-epf-test: Fix check for DMA MEMCPY test Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 433/590] PCI: microchip: Add support for using either Root Port 1 or 2 Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 434/590] PCI: microchip: Set inbound address translation for coherent or non-coherent mode Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 435/590] scsi: mpt3sas: Set ioc->manu_pg11.EEDPTagMode directly to 1 Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 436/590] scsi: ufs: bsg: Delete bsg_dev when setting up bsg fails Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 437/590] scsi: mpi3mr: Fix possible crash " Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 438/590] firewire: test: Fix potential null dereference in firewire kunit test Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 439/590] erofs: get rid of erofs_{find,insert}_workgroup Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 440/590] erofs: move erofs_workgroup operations into zdata.c Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 441/590] erofs: sunset `struct erofs_workgroup` Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 442/590] erofs: fix potential return value overflow of z_erofs_shrink_scan() Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 443/590] ocfs2: mark dquot as inactive if failed to start trans while releasing dquot Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 444/590] nilfs2: do not force clear folio if buffer is referenced Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 445/590] nilfs2: protect access to buffers with no active references Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 446/590] nilfs2: handle errors that nilfs_prepare_chunk() may return Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 447/590] module: Extend the preempt disabled section in dereference_symbol_descriptor() Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 448/590] module: Dont fail module loading when setting ro_after_init section RO failed Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 449/590] driver core: class: Fix wild pointer dereferences in API class_dev_iter_next() Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 450/590] tty: mips_ejtag_fdc: fix one more u8 warning Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 451/590] serial: 8250: Adjust the timeout for FIFO mode Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 452/590] nfs: fix incorrect error handling in LOCALIO Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 453/590] NFSv4.2: fix COPY_NOTIFY xdr buf size calculation Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 454/590] NFSv4.2: mark OFFLOAD_CANCEL MOVEABLE Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 455/590] LoongArch: Fix warnings during S3 suspend Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 456/590] tools/bootconfig: Fix the wrong format specifier Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 457/590] xfrm: replay: Fix the update of replay_esn->oseq_hi for GSO Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 458/590] xfrm: Add support for per cpu xfrm state handling Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 459/590] xfrm: Cache used outbound xfrm states at the policy Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 460/590] xfrm: Add an inbound percpu state cache Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 461/590] xfrm: state: fix out-of-bounds read during lookup Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 462/590] phy: freescale: fsl-samsung-hdmi: Replace register defines with macro Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 463/590] phy: freescale: fsl-samsung-hdmi: Simplify REG21_PMS_S_MASK lookup Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 464/590] phy: freescale: fsl-samsung-hdmi: Support dynamic integer Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 465/590] phy: freescale: fsl-samsung-hdmi: Clean up fld_tg_code calculation Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 466/590] dmaengine: ti: edma: fix OF node reference leaks in edma_driver Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 467/590] xfrm: delete intermediate secpath entry in packet offload mode Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 468/590] rtc: tps6594: Fix integer overflow on 32bit systems Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 469/590] rtc: pcf85063: fix potential OOB write in PCF85063 NVMEM read Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 470/590] rtc: loongson: clear TOY_MATCH0_REG in loongson_rtc_isr() Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 471/590] ubifs: skip dumping tnc tree when zroot is null Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 472/590] regulator: core: Add missing newline character Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 473/590] net: airoha: Fix wrong GDM4 register definition Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 474/590] net: hns3: fix oops when unload drivers paralleling Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 475/590] gpio: mxc: remove dead code after switch to DT-only Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 476/590] net: phy: marvell-88q2xxx: Fix temperature measurement with reset-gpios Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 477/590] net: fec: implement TSO descriptor cleanup Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 478/590] ipmr: do not call mr_mfc_uses_dev() for unres entries Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 479/590] PM: hibernate: Add error handling for syscore_suspend() Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 480/590] perf trace: Fix BPF loading failure (-E2BIG) Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 481/590] xfrm: Dont disable preemption while looking up cache state Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 482/590] idpf: add read memory barrier when checking descriptor done bit Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 483/590] idpf: fix transaction timeouts on reset Greg Kroah-Hartman
2025-02-05 13:43 ` [PATCH 6.12 484/590] idpf: Acquire the lock before accessing the xn->salt Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 485/590] idpf: convert workqueues to unbound Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 486/590] ice: fix ice_parser_rt::bst_key array size Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 487/590] ice: rework of dump serdes equalizer values feature Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 488/590] ice: extend " Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 489/590] ice: remove invalid parameter of equalizer Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 490/590] iavf: allow changing VLAN state without calling PF Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 491/590] s390/mm: Allow large pages for KASAN shadow mapping Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 492/590] net/ncsi: use dev_set_mac_address() for Get MC MAC Address handling Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 493/590] net: rose: fix timer races against user threads Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 494/590] net: netdevsim: try to close UDP port harness races Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 495/590] tools: ynl: c: correct reverse decode of empty attrs Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 496/590] selftests: mptcp: extend CFLAGS to keep options from environment Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 497/590] selftests: net/{lib,openvswitch}: " Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 498/590] rxrpc, afs: Fix peer hash locking vs RCU callback Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 499/590] vxlan: Fix uninit-value in vxlan_vnifilter_dump() Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 500/590] net: davicom: fix UAF in dm9000_drv_remove Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 501/590] ptp: Properly handle compat ioctls Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 502/590] net: ethtool: only allow set_rxnfc with rss + ring_cookie if driver opts in Greg Kroah-Hartman
2025-02-05 22:27 ` Edward Cree
2025-02-06 5:13 ` Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 503/590] ethtool: Fix set RXNFC command with symmetric RSS hash Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 504/590] net: stmmac: Limit the number of MTL queues to hardware capability Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 505/590] net: stmmac: Limit FIFO size by " Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 506/590] s390/sclp: Initialize sclp subsystem via arch_cpu_finalize_init() Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 507/590] perf trace: Fix runtime error of index out of bounds Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 508/590] perf test: Skip syscall enum test if no landlock syscall Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 509/590] PM: sleep: core: Synchronize runtime PM status of parents and children Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 510/590] Bluetooth: btusb: mediatek: Add locks for usb_driver_claim_interface() Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 511/590] Bluetooth: btnxpuart: Fix glitches seen in dual A2DP streaming Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 512/590] vsock: Keep the binding until socket destruction Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 513/590] vsock: Allow retrying on connect() failure Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 514/590] bgmac: reduce max frame size to support just MTU 1500 Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 515/590] tcp: correct handling of extreme memory squeeze Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 516/590] net: xdp: Disallow attaching device-bound programs in generic mode Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 517/590] net: ravb: Fix missing rtnl lock in suspend/resume path Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 518/590] net: sh_eth: " Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 519/590] net: hsr: fix fill_frame_info() regression vs VLAN packets Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 520/590] genksyms: fix memory leak when the same symbol is added from source Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 521/590] genksyms: fix memory leak when the same symbol is read from *.symref file Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 522/590] hostfs: fix string handling in __dentry_name() Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 523/590] tools/power turbostat: Allow using cpu device in perf counters on hybrid platforms Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 524/590] tools/power turbostat: Fix PMT mmaped file size rounding Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 525/590] RISC-V: Mark riscv_v_init() as __init Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 526/590] ASoC: rockchip: i2s_tdm: Re-add the set_sysclk callback Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 527/590] io_uring/uring_cmd: use cached cmd_op in io_uring_cmd_sock() Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 528/590] ASoC: amd: acp: Fix possible deadlock Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 529/590] tools/power turbostat: Fix forked child affinity regression Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 530/590] cifs: Validate EAs for WSL reparse points Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 531/590] cifs: Fix getting and setting SACLs over SMB1 Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 532/590] kconfig: fix file name in warnings when loading KCONFIG_DEFCONFIG_LIST Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 533/590] kconfig: fix memory leak in sym_warn_unmet_dep() Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 534/590] hexagon: fix using plain integer as NULL pointer warning in cmpxchg Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 535/590] hexagon: Fix unbalanced spinlock in die() Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 536/590] f2fs: Introduce linear search for dentries Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 537/590] md/md-bitmap: factor behind write counters out from bitmap_{start/end}write() Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 538/590] md/md-bitmap: remove the last parameter for bimtap_ops->endwrite() Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 539/590] md: add a new callback pers->bitmap_sector() Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 540/590] md/raid5: implement pers->bitmap_sector() Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 541/590] md/md-bitmap: move bitmap_{start, end}write to md upper layer Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 542/590] Revert "SUNRPC: Reduce thread wake-up rate when receiving large RPC messages" Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 543/590] kbuild: switch from lz4c to lz4 for compression Greg Kroah-Hartman
2025-02-05 13:44 ` [PATCH 6.12 544/590] netfilter: nf_tables: reject mismatching sum of field_len with set key length Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 545/590] drm/amd/display: Reduce accessing remote DPCD overhead Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 546/590] selftests/rseq: Fix handling of glibc without rseq support Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 547/590] selftests/ftrace: Fix to use remount when testing mount GID option Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 548/590] ktest.pl: Check kernelrelease return in get_version Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 549/590] xfs: check for dead buffers in xfs_buf_find_insert Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 550/590] xfs: dont shut down the filesystem for media failures beyond end of log Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 551/590] ALSA: usb-audio: Add delay quirk for iBasso DC07 Pro Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 552/590] net: usb: rtl8150: enable basic endpoint checking Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 553/590] usb: xhci: Fix NULL pointer dereference on certain command aborts Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 554/590] drivers/card_reader/rtsx_usb: Restore interrupt based detection Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 555/590] usb: gadget: f_tcm: Fix Get/SetInterface return value Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 556/590] usb: dwc3-am62: Fix an OF node leak in phy_syscon_pll_refclk() Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 557/590] usb: dwc3: core: Defer the probe until USB power supply ready Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 558/590] usb: dwc3: Skip resume if pm_runtime_set_active() fails Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 559/590] usb: typec: tcpm: set SRC_SEND_CAPABILITIES timeout to PD_T_SENDER_RESPONSE Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 560/590] usb: typec: tcpci: Prevent Sink disconnection before vPpsShutdown in SPR PPS Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 561/590] clk: qcom: gcc-x1e80100: Do not turn off usb_2 controller GDSC Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 562/590] mptcp: consolidate suboption status Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 563/590] mptcp: pm: only set fullmesh for subflow endp Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 564/590] mptcp: handle fastopen disconnect correctly Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 565/590] mptcp: blackhole only if 1st SYN retrans w/o MPC is accepted Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 566/590] RDMA/mlx5: Fix implicit ODP use after free Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 567/590] remoteproc: core: Fix ida_free call while not allocated Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 568/590] media: uvcvideo: Fix double free in error path Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 569/590] pps: Fix a use-after-free Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 570/590] usb: gadget: f_tcm: Dont free command immediately Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 571/590] staging: media: max96712: fix kernel oops when removing module Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 572/590] media: imx-jpeg: Fix potential error pointer dereference in detach_pm() Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 573/590] powerpc/pseries/iommu: Dont unset window if it was never set Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 574/590] md/md-bitmap: Synchronize bitmap_get_stats() with bitmap lifetime Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 575/590] btrfs: output the reason for open_ctree() failure Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 576/590] of: reserved-memory: Warn for missing static reserved memory regions Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 577/590] dma-mapping: save base/size instead of pointer to shared DMA pool Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 578/590] xfrm: Add error handling when nla_put_u32() returns an error Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 579/590] xfrm: Fix acquire state insertion Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 580/590] ethtool: Fix access to uninitialized fields in set RXNFC command Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 581/590] phy: freescale: fsl-samsung-hdmi: Fix 64-by-32 division cocci warnings Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 582/590] Revert "s390/mm: Allow large pages for KASAN shadow mapping" Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 583/590] selftests/bpf: Add test to verify tailcall and freplace restrictions Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 584/590] ASoC: da7213: Initialize the mutex Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 585/590] s390: Add -std=gnu11 to decompressor and purgatory CFLAGS Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 586/590] drm/amd/display: Add hubp cache reset when powergating Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 587/590] KVM: x86: Plumb in the vCPU to kvm_x86_ops.hwapic_isr_update() Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 588/590] memcg: fix soft lockup in the OOM process Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 589/590] LoongArch: Change 8 to 14 for LOONGARCH_MAX_{BRP,WRP} Greg Kroah-Hartman
2025-02-05 13:45 ` [PATCH 6.12 590/590] btrfs: do proper folio cleanup when run_delalloc_nocow() failed Greg Kroah-Hartman
2025-02-05 17:41 ` [PATCH 6.12 000/590] 6.12.13-rc1 review Florian Fainelli
2025-02-05 21:54 ` Justin Forbes
2025-02-05 21:59 ` Peter Schneider
2025-02-05 22:12 ` Mark Brown
2025-02-05 22:42 ` Takeshi Ogasawara
2025-02-06 0:42 ` [PATCH 6.12] " Hardik Garg
2025-02-06 5:20 ` [PATCH 6.12 000/590] " Harshit Mogalapalli
2025-02-06 9:42 ` Ron Economos
2025-02-06 11:28 ` Naresh Kamboju
2025-02-06 11:37 ` Jon Hunter
2025-02-06 11:41 ` Jon Hunter
2025-02-06 12:04 ` Jon Hunter
2025-02-06 14:47 ` Greg Kroah-Hartman
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=20250205134509.387389210@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=huangjunxian6@hisilicon.com \
--cc=leon@kernel.org \
--cc=patches@lists.linux.dev \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).