stable.vger.kernel.org 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, Namhyung Kim <namhyung@kernel.org>,
	Zhongqiu Han <quic_zhonhan@quicinc.com>,
	Adrian Hunter <adrian.hunter@intel.com>,
	Alexander Shishkin <alexander.shishkin@linux.intel.com>,
	Ian Rogers <irogers@google.com>, Ingo Molnar <mingo@redhat.com>,
	James Clark <james.clark@linaro.org>,
	Jiri Olsa <jolsa@kernel.org>,
	Kan Liang <kan.liang@linux.intel.com>,
	Mark Rutland <mark.rutland@arm.com>,
	Peter Zijlstra <peterz@infradead.org>, Song Liu <song@kernel.org>,
	Yicong Yang <yangyicong@hisilicon.com>,
	Arnaldo Carvalho de Melo <acme@redhat.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.13 268/623] perf header: Fix one memory leakage in process_bpf_prog_info()
Date: Wed,  5 Feb 2025 14:40:10 +0100	[thread overview]
Message-ID: <20250205134506.482044565@linuxfoundation.org> (raw)
In-Reply-To: <20250205134456.221272033@linuxfoundation.org>

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

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

From: Zhongqiu Han <quic_zhonhan@quicinc.com>

[ Upstream commit a7da6c7030e1aec32f0a41c7b4fa70ec96042019 ]

Function __perf_env__insert_bpf_prog_info() will return without inserting
bpf prog info node into perf env again due to a duplicate bpf prog info
node insertion, causing the temporary info_linear and info_node memory to
leak. Modify the return type of this function to bool and add a check to
ensure the memory is freed if the function returns false.

Fixes: 606f972b1361f477 ("perf bpf: Save bpf_prog_info information as headers to perf.data")
Reviewed-by: Namhyung Kim <namhyung@kernel.org>
Signed-off-by: Zhongqiu Han <quic_zhonhan@quicinc.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Ian Rogers <irogers@google.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: James Clark <james.clark@linaro.org>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Kan Liang <kan.liang@linux.intel.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Song Liu <song@kernel.org>
Cc: Yicong Yang <yangyicong@hisilicon.com>
Link: https://lore.kernel.org/r/20241205084500.823660-3-quic_zhonhan@quicinc.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 tools/perf/util/env.c    | 5 +++--
 tools/perf/util/env.h    | 2 +-
 tools/perf/util/header.c | 5 ++++-
 3 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/tools/perf/util/env.c b/tools/perf/util/env.c
index e2843ca2edd92..d7865ae5f8f55 100644
--- a/tools/perf/util/env.c
+++ b/tools/perf/util/env.c
@@ -32,7 +32,7 @@ void perf_env__insert_bpf_prog_info(struct perf_env *env,
 	up_write(&env->bpf_progs.lock);
 }
 
-void __perf_env__insert_bpf_prog_info(struct perf_env *env, struct bpf_prog_info_node *info_node)
+bool __perf_env__insert_bpf_prog_info(struct perf_env *env, struct bpf_prog_info_node *info_node)
 {
 	__u32 prog_id = info_node->info_linear->info.id;
 	struct bpf_prog_info_node *node;
@@ -50,13 +50,14 @@ void __perf_env__insert_bpf_prog_info(struct perf_env *env, struct bpf_prog_info
 			p = &(*p)->rb_right;
 		} else {
 			pr_debug("duplicated bpf prog info %u\n", prog_id);
-			return;
+			return false;
 		}
 	}
 
 	rb_link_node(&info_node->rb_node, parent, p);
 	rb_insert_color(&info_node->rb_node, &env->bpf_progs.infos);
 	env->bpf_progs.infos_cnt++;
+	return true;
 }
 
 struct bpf_prog_info_node *perf_env__find_bpf_prog_info(struct perf_env *env,
diff --git a/tools/perf/util/env.h b/tools/perf/util/env.h
index ae604c4edbb7e..9db2e5a625ede 100644
--- a/tools/perf/util/env.h
+++ b/tools/perf/util/env.h
@@ -176,7 +176,7 @@ const char *perf_env__raw_arch(struct perf_env *env);
 int perf_env__nr_cpus_avail(struct perf_env *env);
 
 void perf_env__init(struct perf_env *env);
-void __perf_env__insert_bpf_prog_info(struct perf_env *env,
+bool __perf_env__insert_bpf_prog_info(struct perf_env *env,
 				      struct bpf_prog_info_node *info_node);
 void perf_env__insert_bpf_prog_info(struct perf_env *env,
 				    struct bpf_prog_info_node *info_node);
diff --git a/tools/perf/util/header.c b/tools/perf/util/header.c
index fbba6ffafec4a..d06aa86352d3c 100644
--- a/tools/perf/util/header.c
+++ b/tools/perf/util/header.c
@@ -3158,7 +3158,10 @@ static int process_bpf_prog_info(struct feat_fd *ff, void *data __maybe_unused)
 		/* after reading from file, translate offset to address */
 		bpil_offs_to_addr(info_linear);
 		info_node->info_linear = info_linear;
-		__perf_env__insert_bpf_prog_info(env, info_node);
+		if (!__perf_env__insert_bpf_prog_info(env, info_node)) {
+			free(info_linear);
+			free(info_node);
+		}
 	}
 
 	up_write(&env->bpf_progs.lock);
-- 
2.39.5




  parent reply	other threads:[~2025-02-05 14:39 UTC|newest]

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

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=20250205134506.482044565@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=acme@redhat.com \
    --cc=adrian.hunter@intel.com \
    --cc=alexander.shishkin@linux.intel.com \
    --cc=irogers@google.com \
    --cc=james.clark@linaro.org \
    --cc=jolsa@kernel.org \
    --cc=kan.liang@linux.intel.com \
    --cc=mark.rutland@arm.com \
    --cc=mingo@redhat.com \
    --cc=namhyung@kernel.org \
    --cc=patches@lists.linux.dev \
    --cc=peterz@infradead.org \
    --cc=quic_zhonhan@quicinc.com \
    --cc=sashal@kernel.org \
    --cc=song@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=yangyicong@hisilicon.com \
    /path/to/YOUR_REPLY

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

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