From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Philipp Zabel <p.zabel@pengutronix.de>,
Rob Herring <robh@kernel.org>, Chris Healy <cphealy@gmail.com>,
Dmitry Baryshkov <dmitry.baryshkov@linaro.org>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.11 233/817] drm/imx: parallel-display: drop edid override support
Date: Tue, 3 Dec 2024 15:36:45 +0100 [thread overview]
Message-ID: <20241203144004.844746235@linuxfoundation.org> (raw)
In-Reply-To: <20241203143955.605130076@linuxfoundation.org>
6.11-stable review patch. If anyone has any objections, please let me know.
------------------
From: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
[ Upstream commit fe30fabf229f7542a10dd249079fdb83844a7dba ]
None of the in-kernel DT files ever used edid override with the
fsl-imx-drm driver. In case the EDID needs to be specified manually, DRM
core allows one to either override it via the debugfs or to load it via
request_firmware by using DRM_LOAD_EDID_FIRMWARE. In all other cases
EDID and/or modes are to be provided as a part of the panel driver.
Drop support for the edid property.
Reviewed-by: Philipp Zabel <p.zabel@pengutronix.de>
Acked-by: Rob Herring <robh@kernel.org>
Tested-by: Chris Healy <cphealy@gmail.com>
Tested-by: Philipp Zabel <p.zabel@pengutronix.de> # on imx6q-nitrogen6x
Link: https://patchwork.freedesktop.org/patch/msgid/20240602-drm-imx-cleanup-v3-4-e549e2a43100@linaro.org
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Stable-dep-of: f673055a4678 ("drm/imx: Add missing DRM_BRIDGE_CONNECTOR dependency")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
drivers/gpu/drm/imx/ipuv3/parallel-display.c | 17 -----------------
1 file changed, 17 deletions(-)
diff --git a/drivers/gpu/drm/imx/ipuv3/parallel-display.c b/drivers/gpu/drm/imx/ipuv3/parallel-display.c
index 91d7808a2d8d3..4d17fb96e77c5 100644
--- a/drivers/gpu/drm/imx/ipuv3/parallel-display.c
+++ b/drivers/gpu/drm/imx/ipuv3/parallel-display.c
@@ -16,7 +16,6 @@
#include <drm/drm_atomic_helper.h>
#include <drm/drm_bridge.h>
-#include <drm/drm_edid.h>
#include <drm/drm_managed.h>
#include <drm/drm_of.h>
#include <drm/drm_panel.h>
@@ -34,7 +33,6 @@ struct imx_parallel_display_encoder {
struct imx_parallel_display {
struct device *dev;
- const struct drm_edid *drm_edid;
u32 bus_format;
u32 bus_flags;
struct drm_display_mode mode;
@@ -62,11 +60,6 @@ static int imx_pd_connector_get_modes(struct drm_connector *connector)
if (num_modes > 0)
return num_modes;
- if (imxpd->drm_edid) {
- drm_edid_connector_update(connector, imxpd->drm_edid);
- num_modes = drm_edid_connector_add_modes(connector);
- }
-
if (np) {
struct drm_display_mode *mode = drm_mode_create(connector->dev);
int ret;
@@ -312,9 +305,7 @@ static int imx_pd_probe(struct platform_device *pdev)
{
struct device *dev = &pdev->dev;
struct device_node *np = dev->of_node;
- const u8 *edidp;
struct imx_parallel_display *imxpd;
- int edid_len;
int ret;
u32 bus_format = 0;
const char *fmt;
@@ -329,10 +320,6 @@ static int imx_pd_probe(struct platform_device *pdev)
if (ret && ret != -ENODEV)
return ret;
- edidp = of_get_property(np, "edid", &edid_len);
- if (edidp)
- imxpd->drm_edid = drm_edid_alloc(edidp, edid_len);
-
ret = of_property_read_string(np, "interface-pix-fmt", &fmt);
if (!ret) {
if (!strcmp(fmt, "rgb24"))
@@ -355,11 +342,7 @@ static int imx_pd_probe(struct platform_device *pdev)
static void imx_pd_remove(struct platform_device *pdev)
{
- struct imx_parallel_display *imxpd = platform_get_drvdata(pdev);
-
component_del(&pdev->dev, &imx_pd_ops);
-
- drm_edid_free(imxpd->drm_edid);
}
static const struct of_device_id imx_pd_dt_ids[] = {
--
2.43.0
next prev parent reply other threads:[~2024-12-03 15:05 UTC|newest]
Thread overview: 833+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-03 14:32 [PATCH 6.11 000/817] 6.11.11-rc1 review Greg Kroah-Hartman
2024-12-03 14:32 ` [PATCH 6.11 001/817] wifi: mac80211: Fix setting txpower with emulate_chanctx Greg Kroah-Hartman
2024-12-03 14:32 ` [PATCH 6.11 002/817] wifi: cfg80211: Add wiphy_delayed_work_pending() Greg Kroah-Hartman
2024-12-03 14:32 ` [PATCH 6.11 003/817] wifi: mac80211: Convert color collision detection to wiphy work Greg Kroah-Hartman
2024-12-03 14:32 ` [PATCH 6.11 004/817] wifi: radiotap: Avoid -Wflex-array-member-not-at-end warnings Greg Kroah-Hartman
2024-12-03 14:32 ` [PATCH 6.11 005/817] spi: stm32: fix missing device mode capability in stm32mp25 Greg Kroah-Hartman
2024-12-03 14:32 ` [PATCH 6.11 006/817] ASoC: codecs: rt5640: Always disable IRQs from rt5640_cancel_work() Greg Kroah-Hartman
2024-12-03 14:32 ` [PATCH 6.11 007/817] ASoC: Intel: bytcr_rt5640: Add support for non ACPI instantiated codec Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 008/817] ASoC: Intel: bytcr_rt5640: Add DMI quirk for Vexia Edu Atla 10 tablet Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 009/817] ASoC: Intel: sst: Support LPE0F28 ACPI HID Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 010/817] wifi: iwlwifi: mvm: Use the sync timepoint API in suspend Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 011/817] wifi: iwlwifi: mvm: SAR table alignment Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 012/817] mac80211: fix user-power when emulating chanctx Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 013/817] usb: add support for new USB device ID 0x17EF:0x3098 for the r8152 driver Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 014/817] usb: typec: use cleanup facility for altmodes_node Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 015/817] selftests/watchdog-test: Fix system accidentally reset after watchdog-test Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 016/817] ALSA: hda/realtek: Add subwoofer quirk for Infinix ZERO BOOK 13 Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 017/817] ASoC: codecs: wcd937x: add missing LO Switch control Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 018/817] ASoC: codecs: wcd937x: relax the AUX PDM watchdog Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 019/817] x86/amd_nb: Fix compile-testing without CONFIG_AMD_NB Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 020/817] bpf: fix filed access without lock Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 021/817] net: usb: qmi_wwan: add Quectel RG650V Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 022/817] soc: qcom: Add check devm_kasprintf() returned value Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 023/817] firmware: arm_scmi: Reject clear channel request on A2P Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 024/817] regulator: rk808: Add apply_bit for BUCK3 on RK809 Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 025/817] platform/x86: dell-smbios-base: Extends support to Alienware products Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 026/817] platform/x86: dell-wmi-base: Handle META key Lock/Unlock events Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 027/817] platform/x86: ideapad-laptop: add missing Ideapad Pro 5 fn keys Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 028/817] ASoC: tas2781: Add new driver version for tas2563 & tas2781 qfn chip Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 029/817] tools/lib/thermal: Remove the thermal.h soft link when doing make clean Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 030/817] can: j1939: fix error in J1939 documentation Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 031/817] platform/x86: thinkpad_acpi: Fix for ThinkPads with ECFW showing incorrect fan speed Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 032/817] ASoC: amd: yc: Support dmic on another model of Lenovo Thinkpad E14 Gen 6 Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 033/817] ASoC: stm: Prevent potential division by zero in stm32_sai_mclk_round_rate() Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 034/817] ASoC: stm: Prevent potential division by zero in stm32_sai_get_clk_div() Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 035/817] drm: panel-orientation-quirks: Make Lenovo Yoga Tab 3 X90F DMI match less strict Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 036/817] proc/softirqs: replace seq_printf with seq_put_decimal_ull_width Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 037/817] integrity: Use static_assert() to check struct sizes Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 038/817] ASoC: audio-graph-card2: Purge absent supplies for device tree nodes Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 039/817] LoongArch: For all possible CPUs setup logical-physical CPU mapping Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 040/817] LoongArch: Define a default value for VM_DATA_DEFAULT_FLAGS Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 041/817] ASoC: max9768: Fix event generation for playback mute Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 042/817] ALSA: usb-audio: Fix Yamaha P-125 Quirk Entry Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 043/817] ARM: 9420/1: smp: Fix SMP for xip kernels Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 044/817] ARM: 9434/1: cfi: Fix compilation corner case Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 045/817] ipmr: Fix access to mfc_cache_list without lock held Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 046/817] f2fs: fix fiemap failure issue when page size is 16KB Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 047/817] drm/amd/display: Skip Invalid Streams from DSC Policy Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 048/817] drm/amd/display: Fix incorrect DSC recompute trigger Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 049/817] s390/facilities: Fix warning about shadow of global variable Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 050/817] efs: fix the efs new mount api implementation Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 051/817] arm64: probes: Disable kprobes/uprobes on MOPS instructions Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 052/817] kselftest/arm64: hwcap: fix f8dp2 cpuinfo name Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 053/817] kselftest/arm64: mte: fix printf type warnings about __u64 Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 054/817] kselftest/arm64: mte: fix printf type warnings about longs Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 055/817] block/fs: Pass an iocb to generic_atomic_write_valid() Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 056/817] fs/block: Check for IOCB_DIRECT in generic_atomic_write_valid() Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 057/817] s390/cio: Do not unregister the subchannel based on DNV Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 058/817] s390/pageattr: Implement missing kernel_page_present() Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 059/817] x86/pvh: Set phys_base when calling xen_prepare_pvh() Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 060/817] x86/pvh: Call C code via the kernel virtual mapping Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 061/817] brd: defer automatic disk creation until module initialization succeeds Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 062/817] ext4: avoid remount errors with abort mount option Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 063/817] mips: asm: fix warning when disabling MIPS_FP_SUPPORT Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 064/817] initramfs: avoid filename buffer overrun Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 065/817] arm64: Expose ID_AA64ISAR1_EL1.XS to sanitised feature consumers Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 066/817] kselftest/arm64: Fix encoding for SVE B16B16 test Greg Kroah-Hartman
2024-12-03 14:33 ` [PATCH 6.11 067/817] nvme-pci: fix freeing of the HMB descriptor table Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 068/817] m68k: mvme147: Fix SCSI controller IRQ numbers Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 069/817] m68k: mvme147: Reinstate early console Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 070/817] arm64: fix .data.rel.ro size assertion when CONFIG_LTO_CLANG Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 071/817] acpi/arm64: Adjust error handling procedure in gtdt_parse_timer_block() Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 072/817] loop: fix type of block size Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 073/817] cachefiles: Fix incorrect length return value in cachefiles_ondemand_fd_write_iter() Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 074/817] cachefiles: Fix missing pos updates " Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 075/817] cachefiles: Fix NULL pointer dereference in object->file Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 076/817] netfs/fscache: Add a memory barrier for FSCACHE_VOLUME_CREATING Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 077/817] block: constify the lim argument to queue_limits_max_zone_append_sectors Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 078/817] block: properly handle REQ_OP_ZONE_APPEND in __bio_split_to_limits Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 079/817] block: take chunk_sectors into account in bio_split_write_zeroes Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 080/817] block: fix bio_split_rw_at to take zone_write_granularity into account Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 081/817] s390/syscalls: Avoid creation of arch/arch/ directory Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 082/817] hfsplus: dont query the device logical block size multiple times Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 083/817] ext4: pipeline buffer reads in mext_page_mkuptodate() Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 084/817] ext4: remove array of buffer_heads from mext_page_mkuptodate() Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 085/817] ext4: fix race in buffer_head read fault injection Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 086/817] nvme-pci: reverse request order in nvme_queue_rqs Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 087/817] virtio_blk: reverse request order in virtio_queue_rqs Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 088/817] crypto: mxs-dcp - Fix AES-CBC with hardware-bound keys Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 089/817] crypto: caam - Fix the pointer passed to caam_qi_shutdown() Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 090/817] crypto: qat - remove check after debugfs_create_dir() Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 091/817] crypto: powerpc/p10-aes-gcm - Register modules as SIMD Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 092/817] crypto: powerpc/p10-aes-gcm - Add dependency on CRYPTO_SIMDand re-enable CRYPTO_AES_GCM_P10 Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 093/817] crypto: qat/qat_420xx - fix off by one in uof_get_name() Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 094/817] crypto: qat/qat_4xxx " Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 095/817] firmware: google: Unregister driver_info on failure Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 096/817] EDAC/bluefield: Fix potential integer overflow Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 097/817] crypto: qat - remove faulty arbiter config reset Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 098/817] thermal: core: Initialize thermal zones before registering them Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 099/817] thermal: core: Drop thermal_zone_device_is_enabled() Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 100/817] thermal: core: Rearrange PM notification code Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 101/817] thermal: core: Represent suspend-related thermal zone flags as bits Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 102/817] thermal: core: Mark thermal zones as initializing to start with Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 103/817] thermal: core: Fix race between zone registration and system suspend Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 104/817] EDAC/fsl_ddr: Fix bad bit shift operations Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 105/817] EDAC/skx_common: Differentiate memory error sources Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 106/817] EDAC/{skx_common,i10nm}: Fix incorrect far-memory error source indicator Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 107/817] crypto: pcrypt - Call crypto layer directly when padata_do_parallel() return -EBUSY Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 108/817] crypto: cavium - Fix the if condition to exit loop after timeout Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 109/817] cpufreq/amd-pstate: Dont update CPPC request in amd_pstate_cpu_boost_update() Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 110/817] amd-pstate: Set min_perf to nominal_perf for active mode performance gov Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 111/817] crypto: hisilicon/qm - disable same error report before resetting Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 112/817] EDAC/igen6: Avoid segmentation fault on module unload Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 113/817] crypto: qat - Fix missing destroy_workqueue in adf_init_aer() Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 114/817] crypto: inside-secure - Fix the return value of safexcel_xcbcmac_cra_init() Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 115/817] sched/cpufreq: Ensure sd is rebuilt for EAS check Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 116/817] doc: rcu: update printed dynticks counter bits Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 117/817] rcu/srcutiny: dont return before reenabling preemption Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 118/817] rcu/kvfree: Fix data-race in __mod_timer / kvfree_call_rcu Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 119/817] hwmon: (pmbus/core) clear faults after setting smbalert mask Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 120/817] hwmon: (nct6775-core) Fix overflows seen when writing limit attributes Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 121/817] ACPI: CPPC: Fix _CPC register setting issue Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 122/817] crypto: caam - add error check to caam_rsa_set_priv_key_form Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 123/817] crypto: bcm - add error check in the ahash_hmac_init function Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 124/817] crypto: aes-gcm-p10 - Use the correct bit to test for P10 Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 125/817] crypto: cavium - Fix an error handling path in cpt_ucode_load_fw() Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 126/817] rcuscale: Do a proper cleanup if kfree_scale_init() fails Greg Kroah-Hartman
2024-12-03 14:34 ` [PATCH 6.11 127/817] tools/lib/thermal: Make more generic the command encoding function Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 128/817] thermal/lib: Fix memory leak on error in thermal_genl_auto() Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 129/817] x86/unwind/orc: Fix unwind for newly forked tasks Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 130/817] Revert "scripts/faddr2line: Check only two symbols when calculating symbol size" Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 131/817] cleanup: Remove address space of returned pointer Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 132/817] time: Partially revert cleanup on msecs_to_jiffies() documentation Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 133/817] time: Fix references to _msecs_to_jiffies() handling of values Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 134/817] locking/atomic/x86: Use ALT_OUTPUT_SP() for __alternative_atomic64() Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 135/817] locking/atomic/x86: Use ALT_OUTPUT_SP() for __arch_{,try_}cmpxchg64_emu() Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 136/817] kcsan, seqlock: Support seqcount_latch_t Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 137/817] kcsan, seqlock: Fix incorrect assumption in read_seqbegin() Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 138/817] clocksource/drivers:sp804: Make user selectable Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 139/817] clocksource/drivers/timer-ti-dm: Fix child node refcount handling Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 140/817] regulator: qcom-smd: make smd_vreg_rpm static Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 141/817] spi: spi-fsl-lpspi: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 142/817] arm64: dts: qcom: qcs6390-rb3gen2: use modem.mbn for modem DSP Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 143/817] ARM: dts: renesas: genmai: Fix partition size for QSPI NOR Flash Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 144/817] drivers: soc: xilinx: add the missing kfree in xlnx_add_cb_for_suspend() Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 145/817] microblaze: Export xmb_manager functions Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 146/817] arm64: dts: mediatek: mt8188: Fix wrong clock provider in MFG1 power domain Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 147/817] arm64: dts: mediatek: mt8395-genio-1200-evk: Fix dtbs_check error for phy Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 148/817] arm64: dts: mt8195: Fix dtbs_check error for mutex node Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 149/817] arm64: dts: mt8195: Fix dtbs_check error for infracfg_ao node Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 150/817] soc: ti: smartreflex: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 151/817] soc: qcom: geni-se: fix array underflow in geni_se_clk_tbl_get() Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 152/817] arm64: dts: qcom: sm6350: Fix GPU frequencies missing on some speedbins Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 153/817] arm64: dts: qcom: sda660-ifc6560: fix l10a voltage ranges Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 154/817] ARM: dts: microchip: sam9x60: Add missing property atmel,usart-mode Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 155/817] mmc: mmc_spi: drop buggy snprintf() Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 156/817] scripts/kernel-doc: Do not track section counter across processed files Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 157/817] arm64: dts: qcom: x1e80100-slim7x: Drop orientation-switch from USB SS[0-1] QMP PHYs Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 158/817] arm64: dts: qcom: x1e80100-vivobook-s15: " Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 159/817] openrisc: Implement fixmap to fix earlycon Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 160/817] efi/libstub: fix efi_parse_options() ignoring the default command line Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 161/817] tpm: fix signed/unsigned bug when checking event logs Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 162/817] media: i2c: vgxy61: Fix an error handling path in vgxy61_detect() Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 163/817] media: i2c: ds90ub960: Fix missing return check on ub960_rxport_read call Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 164/817] arm64: dts: mt8183: krane: Fix the address of eeprom at i2c4 Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 165/817] arm64: dts: mt8183: kukui: " Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 166/817] arm64: dts: qcom: x1e80100: Resize GIC Redistributor register region Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 167/817] kernel-doc: allow object-like macros in ReST output Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 168/817] arm64: dts: ti: k3-am62x-phyboard-lyra: Drop unnecessary McASP AFIFOs Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 169/817] arm64: dts: mediatek: mt8173-elm-hana: Add vdd-supply to second source trackpad Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 170/817] arm64: dts: mediatek: mt8188: Fix USB3 PHY port default status Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 171/817] arm64: dts: mediatek: mt8195-cherry: Use correct audio codec DAI Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 172/817] Revert "cgroup: Fix memory leak caused by missing cgroup_bpf_offline" Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 173/817] cgroup/bpf: only cgroup v2 can be attached by bpf programs Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 174/817] regulator: rk808: Restrict DVS GPIOs to the RK808 variant only Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 175/817] power: sequencing: make the QCom PMU pwrseq driver depend on CONFIG_OF Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 176/817] arm64: dts: rockchip: Remove enable-active-low from two boards Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 177/817] arm64: dts: mt8183: fennel: add i2c2s i2c-scl-internal-delay-ns Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 178/817] arm64: dts: mt8183: burnet: " Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 179/817] arm64: dts: mt8183: cozmo: " Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 180/817] arm64: dts: mt8183: Damu: " Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 181/817] pwm: imx27: Workaround of the pwm output bug when decrease the duty cycle Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 182/817] ARM: dts: cubieboard4: Fix DCDC5 regulator constraints Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 183/817] arm64: dts: ti: k3-j7200: Fix register map for main domain pmx Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 184/817] arm64: dts: ti: k3-j7200: Fix clock ids for MCSPI instances Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 185/817] arm64: dts: ti: k3-j721e: Fix clock IDs " Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 186/817] arm64: dts: ti: k3-j721s2: " Greg Kroah-Hartman
2024-12-03 14:35 ` [PATCH 6.11 187/817] watchdog: Add HAS_IOPORT dependency for SBC8360 and SBC7240 Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 188/817] arm64: dts: qcom: x1e80100: Update C4/C5 residency/exit numbers Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 189/817] dt-bindings: cache: qcom,llcc: Fix X1E80100 reg entries Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 190/817] of/fdt: add dt_phys arg to early_init_dt_scan and early_init_dt_verify Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 191/817] pmdomain: ti-sci: Add missing of_node_put() for args.np Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 192/817] spi: tegra210-quad: Avoid shift-out-of-bounds Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 193/817] spi: zynqmp-gqspi: Undo runtime PM changes at driver exit time Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 194/817] regmap: irq: Set lockdep class for hierarchical IRQ domains Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 195/817] arm64: dts: renesas: hihope: Drop #sound-dai-cells Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 196/817] arm64: dts: imx8mn-tqma8mqnl-mba8mx-usbot: fix coexistence of output-low and output-high in GPIO Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 197/817] arm64: dts: mediatek: Add ADC node on MT6357, MT6358, MT6359 PMICs Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 198/817] arm64: dts: mediatek: mt6358: fix dtbs_check error Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 199/817] arm64: dts: mediatek: mt8183-kukui-jacuzzi: Fix DP bridge supply names Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 200/817] arm64: dts: mediatek: mt8183-kukui-jacuzzi: Add supplies for fixed regulators Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 201/817] selftests/resctrl: Print accurate buffer size as part of MBM results Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 202/817] selftests/resctrl: Fix memory overflow due to unhandled wraparound Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 203/817] selftests/resctrl: Protect against array overrun during iMC config parsing Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 204/817] firmware: arm_scpi: Check the DVFS OPP count returned by the firmware Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 205/817] media: ipu6: Fix DMA and physical address debugging messages for 32-bit Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 206/817] media: ipu6: not override the dma_ops of device in driver Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 207/817] media: venus: fix enc/dec destruction order Greg Kroah-Hartman
2024-12-04 3:10 ` Sergey Senozhatsky
2024-12-04 7:10 ` Greg Kroah-Hartman
2024-12-04 7:16 ` Sergey Senozhatsky
2024-12-04 9:43 ` Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 208/817] media: venus: sync with threaded IRQ during inst destruction Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 209/817] pwm: Assume a disabled PWM to emit a constant inactive output Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 210/817] media: atomisp: Add check for rgby_data memory allocation failure Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 211/817] arm64: dts: rockchip: correct analog audio name on Indiedroid Nova Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 212/817] HID: hyperv: streamline driver probe to avoid devres issues Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 213/817] platform/x86: panasonic-laptop: Return errno correctly in show callback Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 214/817] drm/imagination: Convert to use time_before macro Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 215/817] drm/imagination: Use pvr_vm_context_get() Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 216/817] drm/mm: Mark drm_mm_interval_tree*() functions with __maybe_unused Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 217/817] drm/vc4: hvs: Dont write gamma luts on 2711 Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 218/817] drm/vc4: hdmi: Avoid hang with debug registers when suspended Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 219/817] drm/vc4: hvs: Fix dlist debug not resetting the next entry pointer Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 220/817] drm/vc4: hvs: Remove incorrect limit from hvs_dlist debugfs function Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 221/817] drm/vc4: hvs: Correct logic on stopping an HVS channel Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 222/817] wifi: ath9k: add range check for conn_rsp_epid in htc_connect_service() Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 223/817] drm/omap: Fix possible NULL dereference Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 224/817] drm/omap: Fix locking in omap_gem_new_dmabuf() Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 225/817] drm/v3d: Appease lockdep while updating GPU stats Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 226/817] wifi: p54: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 227/817] wifi: mwifiex: " Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 228/817] udmabuf: change folios array from kmalloc to kvmalloc Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 229/817] udmabuf: fix vmap_udmabuf error page set Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 230/817] drm/imx/dcss: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 231/817] drm/imx/ipuv3: " Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 232/817] drm/ipuv3/parallel: convert to struct drm_edid Greg Kroah-Hartman
2024-12-03 14:36 ` Greg Kroah-Hartman [this message]
2024-12-03 14:36 ` [PATCH 6.11 234/817] drm/imx: ldb: drop custom EDID support Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 235/817] drm/imx: ldb: drop custom DDC bus support Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 236/817] drm/imx: ldb: switch to drm_panel_bridge Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 237/817] drm/imx: parallel-display: " Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 238/817] drm/imx: Add missing DRM_BRIDGE_CONNECTOR dependency Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 239/817] drm/panel: nt35510: Make new commands optional Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 240/817] drm/v3d: Address race-condition in MMU flush Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 241/817] drm/v3d: Flush the MMU before we supply more memory to the binner Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 242/817] drm/amdgpu: Fix JPEG v4.0.3 register write Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 243/817] wifi: ath10k: fix invalid VHT parameters in supported_vht_mcs_rate_nss1 Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 244/817] wifi: ath10k: fix invalid VHT parameters in supported_vht_mcs_rate_nss2 Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 245/817] wifi: ath12k: Skip Rx TID cleanup for self peer Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 246/817] dt-bindings: vendor-prefixes: Add NeoFidelity, Inc Greg Kroah-Hartman
2024-12-03 14:36 ` [PATCH 6.11 247/817] ASoC: fsl_micfil: fix regmap_write_bits usage Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 248/817] ASoC: dt-bindings: mt6359: Update generic node name and dmic-mode Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 249/817] ASoC: fsl-asoc-card: Add missing handling of {hp,mic}-dt-gpios Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 250/817] drm/bridge: anx7625: Drop EDID cache on bridge power off Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 251/817] drm/bridge: it6505: " Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 252/817] libbpf: Fix expected_attach_type set handling in program load callback Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 253/817] libbpf: Fix output .symtab byte-order during linking Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 254/817] dlm: fix swapped args sb_flags vs sb_status Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 255/817] wifi: rtl8xxxu: Perform update_beacon_work when beaconing is enabled Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 256/817] drm/amd/display: fix a memleak issue when driver is removed Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 257/817] wifi: ath12k: fix use-after-free in ath12k_dp_cc_cleanup() Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 258/817] wifi: ath12k: fix one more memcpy size error Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 259/817] bpf: Fix the xdp_adjust_tail sample prog issue Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 260/817] selftests/bpf: netns_new() and netns_free() helpers Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 261/817] selftests/bpf: Fix backtrace printing for selftests crashes Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 262/817] wifi: ath11k: Fix CE offset address calculation for WCN6750 in SSR Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 263/817] selftests/bpf: add missing header include for htons Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 264/817] wifi: cfg80211: check radio iface combination for multi radio per wiphy Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 265/817] ice: consistently use q_idx in ice_vc_cfg_qs_msg() Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 266/817] drm/vc4: hdmi: Increase audio MAI fifo dreq threshold Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 267/817] drm/vc4: Introduce generation number enum Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 268/817] drm/vc4: Match drm_dev_enter and exit calls in vc4_hvs_lut_load Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 269/817] drm/vc4: Match drm_dev_enter and exit calls in vc4_hvs_atomic_flush Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 270/817] drm/vc4: Correct generation check in vc4_hvs_lut_load Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 271/817] libbpf: fix sym_is_subprog() logic for weak global subprogs Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 272/817] accel/ivpu: Prevent recovery invocation during probe and resume Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 273/817] ASoC: rt722-sdca: Remove logically deadcode in rt722-sdca.c Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 274/817] libbpf: never interpret subprogs in .text as entry programs Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 275/817] netdevsim: copy addresses for both in and out paths Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 276/817] drm/bridge: tc358767: Fix link properties discovery Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 277/817] selftests/bpf: Fix msg_verify_data in test_sockmap Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 278/817] selftests/bpf: Fix txmsg_redir of test_txmsg_pull " Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 279/817] wifi: wilc1000: Set MAC after operation mode Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 280/817] wifi: mwifiex: Fix memcpy() field-spanning write warning in mwifiex_config_scan() Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 281/817] drm: fsl-dcu: enable PIXCLK on LS1021A Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 282/817] drm: panel: nv3052c: correct spi_device_id for RG35XX panel Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 283/817] drm/msm/dpu: on SDM845 move DSPP_3 to LM_5 block Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 284/817] drm/msm/dpu: drop LM_3 / LM_4 on SDM845 Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 285/817] drm/msm/dpu: drop LM_3 / LM_4 on MSM8998 Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 286/817] octeontx2-pf: handle otx2_mbox_get_rsp errors in otx2_common.c Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 287/817] octeontx2-pf: handle otx2_mbox_get_rsp errors in otx2_ethtool.c Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 288/817] octeontx2-pf: handle otx2_mbox_get_rsp errors in otx2_flows.c Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 289/817] octeontx2-pf: handle otx2_mbox_get_rsp errors in cn10k.c Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 290/817] octeontx2-pf: handle otx2_mbox_get_rsp errors in otx2_dmac_flt.c Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 291/817] octeontx2-pf: handle otx2_mbox_get_rsp errors in otx2_dcbnl.c Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 292/817] selftests/bpf: fix test_spin_lock_fail.cs global vars usage Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 293/817] libbpf: move global data mmap()ing into bpf_object__load() Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 294/817] drm/panfrost: Remove unused id_mask from struct panfrost_model Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 295/817] bpf, arm64: Remove garbage frame for struct_ops trampoline Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 296/817] drm/msm/adreno: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 297/817] drm/msm/gpu: Check the status of registration to PM QoS Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 298/817] drm/xe/hdcp: Fix gsc structure check in fw check status Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 299/817] drm/etnaviv: Request pages from DMA32 zone on addressing_limited Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 300/817] drm/etnaviv: hold GPU lock across perfmon sampling Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 301/817] drm/amd/display: Increase idle worker HPD detection time Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 302/817] drm/amd/display: Reduce HPD Detection Interval for IPS Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 303/817] drm/nouveau/gr/gf100: Fix missing unlock in gf100_gr_chan_new() Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 304/817] drm: zynqmp_kms: Unplug DRM device before removal Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 305/817] drm: xlnx: zynqmp_disp: layer may be null while releasing Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 306/817] wifi: wfx: Fix error handling in wfx_core_init() Greg Kroah-Hartman
2024-12-03 14:37 ` [PATCH 6.11 307/817] wifi: cw1200: Fix potential NULL dereference Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 308/817] drm/msm/dpu: cast crtc_clk calculation to u64 in _dpu_core_perf_calc_clk() Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 309/817] bpf, bpftool: Fix incorrect disasm pc Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 310/817] bpf: Tighten tail call checks for lingering locks, RCU, preempt_disable Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 311/817] drm/vkms: Drop unnecessary call to drm_crtc_cleanup() Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 312/817] drm/amdgpu: Fix the memory allocation issue in amdgpu_discovery_get_nps_info() Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 313/817] bpf: Support __nullable argument suffix for tp_btf Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 314/817] selftests/bpf: Add test for __nullable suffix in tp_btf Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 315/817] bpf: Mark raw_tp arguments with PTR_MAYBE_NULL Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 316/817] drm: use ATOMIC64_INIT() for atomic64_t Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 317/817] netfilter: nf_tables: avoid false-positive lockdep splat on rule deletion Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 318/817] netfilter: nf_tables: must hold rcu read lock while iterating expression type list Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 319/817] netfilter: nf_tables: must hold rcu read lock while iterating object " Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 320/817] netlink: typographical error in nlmsg_type constants definition Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 321/817] wifi: rtw89: coex: check NULL return of kmalloc in btc_fw_set_monreg() Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 322/817] drm/panfrost: Add missing OPP table refcnt decremental Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 323/817] drm/panthor: introduce job cycle and timestamp accounting Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 324/817] drm/panthor: record current and maximum device clock frequencies Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 325/817] drm/panthor: Fix OPP refcnt leaks in devfreq initialisation Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 326/817] isofs: avoid memory leak in iocharset Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 327/817] selftests/bpf: Add txmsg_pass to pull/push/pop in test_sockmap Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 328/817] selftests/bpf: Fix SENDPAGE data logic " Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 329/817] selftests/bpf: Fix total_bytes in msg_loop_rx " Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 330/817] selftests/bpf: Add push/pop checking for msg_verify_data " Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 331/817] bpf, sockmap: Several fixes to bpf_msg_push_data Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 332/817] bpf, sockmap: Several fixes to bpf_msg_pop_data Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 333/817] bpf, sockmap: Fix sk_msg_reset_curr Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 334/817] ipv6: release nexthop on device removal Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 335/817] selftests: net: really check for bg process completion Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 336/817] wifi: cfg80211: Remove the Medium Synchronization Delay validity check Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 337/817] wifi: iwlwifi: allow fast resume on ax200 Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 338/817] wifi: iwlwifi: mvm: tell iwlmei when we finished suspending Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 339/817] drm/amdgpu: fix ACA bank count boundary check error Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 340/817] drm/amdgpu: Fix map/unmap queue logic Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 341/817] drm/amdkfd: Fix wrong usage of INIT_WORK() Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 342/817] bpf: Allow return values 0 and 1 for kprobe session Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 343/817] bpf: Force uprobe bpf program to always return 0 Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 344/817] selftests/bpf: skip the timer_lockup test for single-CPU nodes Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 345/817] ipv6: Fix soft lockups in fib6_select_path under high next hop churn Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 346/817] net: rfkill: gpio: Add check for clk_enable() Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 347/817] Revert "wifi: iwlegacy: do not skip frames with bad FCS" Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 348/817] bpf: Use function pointers count as struct_ops links count Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 349/817] bpf: Add kernel symbol for struct_ops trampoline Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 350/817] ALSA: usx2y: Use snd_card_free_when_closed() at disconnection Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 351/817] ALSA: us122l: " Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 352/817] ALSA: caiaq: " Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 353/817] ALSA: 6fire: Release resources at card release Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 354/817] i2c: dev: Fix memory leak when underlying adapter does not support I2C Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 355/817] selftests: netfilter: Fix missing return values in conntrack_dump_flush Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 356/817] Bluetooth: btintel_pcie: Add handshake between driver and firmware Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 357/817] Bluetooth: btintel: Do no pass vendor events to stack Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 358/817] Bluetooth: btmtk: adjust the position to init iso data anchor Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 359/817] Bluetooth: btbcm: fix missing of_node_put() in btbcm_get_board_name() Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 360/817] Bluetooth: ISO: Use kref to track lifetime of iso_conn Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 361/817] Bluetooth: ISO: Do not emit LE PA Create Sync if previous is pending Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 362/817] Bluetooth: ISO: Do not emit LE BIG " Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 363/817] Bluetooth: ISO: Send BIG Create Sync via hci_sync Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 364/817] Bluetooth: fix use-after-free in device_for_each_child() Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 365/817] xsk: Free skb when TX metadata options are invalid Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 366/817] erofs: handle NONHEAD !delta[1] lclusters gracefully Greg Kroah-Hartman
2024-12-03 14:38 ` [PATCH 6.11 367/817] dlm: fix dlm_recover_members refcount on error Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 368/817] eth: fbnic: dont disable the PCI device twice Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 369/817] net: txgbe: remove GPIO interrupt controller Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 370/817] net: txgbe: fix null pointer to pcs Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 371/817] netpoll: Use rcu_access_pointer() in netpoll_poll_lock Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 372/817] wireguard: selftests: load nf_conntrack if not present Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 373/817] bpf: fix recursive lock when verdict program return SK_PASS Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 374/817] unicode: Fix utf8_load() error path Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 375/817] cppc_cpufreq: Use desired perf if feedback ctrs are 0 or unchanged Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 376/817] RDMA/core: Provide rdma_user_mmap_disassociate() to disassociate mmap pages Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 377/817] RDMA/hns: Disassociate mmap pages for all uctx when HW is being reset Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 378/817] clk: mediatek: drop two dead config options Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 379/817] trace/trace_event_perf: remove duplicate samples on the first tracepoint event Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 380/817] pinctrl: zynqmp: drop excess struct member description Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 381/817] pinctrl: renesas: Select PINCTRL_RZG2L for RZ/V2H(P) SoC Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 382/817] clk: qcom: videocc-sm8550: depend on either gcc-sm8550 or gcc-sm8650 Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 383/817] iommu/s390: Implement blocking domain Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 384/817] scsi: hisi_sas: Enable all PHYs that are not disabled by user during controller reset Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 385/817] powerpc/vdso: Flag VDSO64 entry points as functions Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 386/817] mfd: tps65010: Use IRQF_NO_AUTOEN flag in request_irq() to fix race Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 387/817] mfd: da9052-spi: Change read-mask to write-mask Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 388/817] mfd: intel_soc_pmic_bxtwc: Use IRQ domain for USB Type-C device Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 389/817] mfd: intel_soc_pmic_bxtwc: Use IRQ domain for TMU device Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 390/817] mfd: intel_soc_pmic_bxtwc: Use IRQ domain for PMIC devices Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 391/817] irqdomain: Simplify simple and legacy domain creation Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 392/817] irqdomain: Cleanup domain name allocation Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 393/817] irqdomain: Allow giving name suffix for domain Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 394/817] regmap: Allow setting IRQ domain name suffix Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 395/817] mfd: intel_soc_pmic_bxtwc: Fix IRQ domain names duplication Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 396/817] cpufreq: loongson2: Unregister platform_driver on failure Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 397/817] powerpc/fadump: Refactor and prepare fadump_cma_init for late init Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 398/817] powerpc/fadump: Move fadump_cma_init to setup_arch() after initmem_init() Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 399/817] mtd: hyperbus: rpc-if: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 400/817] mtd: rawnand: atmel: Fix possible memory leak Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 401/817] powerpc/mm/fault: Fix kfence page fault reporting Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 402/817] clk: sophgo: avoid integer overflow in sg2042_pll_recalc_rate() Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 403/817] mtd: spi-nor: spansion: Use nor->addr_nbytes in octal DTR mode in RD_ANY_REG_OP Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 404/817] powerpc/pseries: Fix dtl_access_lock to be a rw_semaphore Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 405/817] cpufreq: CPPC: Fix possible null-ptr-deref for cpufreq_cpu_get_raw() Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 406/817] cpufreq: CPPC: Fix possible null-ptr-deref for cppc_get_cpu_cost() Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 407/817] iommu/amd: Remove amd_iommu_domain_update() from page table freeing Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 408/817] iommu/amd: Remove the amd_iommu_domain_set_pt_root() and related Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 409/817] iommu/amd: Rename struct amd_io_pgtable iopt to pgtbl Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 410/817] iommu/amd: Store the nid in io_pgtable_cfg instead of the domain Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 411/817] iommu/amd: Narrow the use of struct protection_domain to invalidation Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 412/817] iommu/amd/pgtbl_v2: Take protection domain lock before invalidating TLB Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 413/817] RDMA/hns: Fix an AEQE overflow error caused by untimely update of eq_db_ci Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 414/817] RDMA/hns: Fix flush cqe error when racing with destroy qp Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 415/817] RDMA/hns: Modify debugfs name Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 416/817] RDMA/hns: Use dev_* printings in hem code instead of ibdev_* Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 417/817] RDMA/hns: Fix cpu stuck caused by printings during reset Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 418/817] RDMA/rxe: Fix the qp flush warnings in req Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 419/817] RDMA/bnxt_re: Check cqe flags to know imm_data vs inv_irkey Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 420/817] clk: sunxi-ng: d1: Fix PLL_AUDIO0 preset Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 421/817] clk: renesas: rzg2l: Fix FOUTPOSTDIV clk Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 422/817] RDMA/rxe: Set queue pair cur_qp_state when being queried Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 423/817] RISC-V: KVM: Fix APLIC in_clrip and clripnum write emulation Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 424/817] riscv: kvm: Fix out-of-bounds array access Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 425/817] clk: imx: lpcg-scu: SW workaround for errata (e10858) Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 426/817] clk: imx: fracn-gppll: correct PLL initialization flow Greg Kroah-Hartman
2024-12-03 14:39 ` [PATCH 6.11 427/817] clk: imx: fracn-gppll: fix pll power up Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 428/817] clk: imx: clk-scu: fix clk enable state save and restore Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 429/817] clk: imx: imx8-acm: Fix return value check in clk_imx_acm_attach_pm_domains() Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 430/817] iommu/vt-d: Fix checks and print in dmar_fault_dump_ptes() Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 431/817] iommu/vt-d: Fix checks and print in pgtable_walk() Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 432/817] checkpatch: always parse orig_commit in fixes tag Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 433/817] mfd: rt5033: Fix missing regmap_del_irq_chip() Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 434/817] leds: max5970: Fix unreleased fwnode_handle in probe function Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 435/817] leds: ktd2692: Set missing timing properties Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 436/817] fs/proc/kcore.c: fix coccinelle reported ERROR instances Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 437/817] scsi: target: Fix incorrect function name in pscsi_create_type_disk() Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 438/817] scsi: bfa: Fix use-after-free in bfad_im_module_exit() Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 439/817] scsi: fusion: Remove unused variable rc Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 440/817] scsi: qedf: Fix a possible memory leak in qedf_alloc_and_init_sb() Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 441/817] scsi: qedi: Fix a possible memory leak in qedi_alloc_and_init_sb() Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 442/817] scsi: sg: Enable runtime power management Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 443/817] x86/tdx: Introduce wrappers to read and write TD metadata Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 444/817] x86/tdx: Rename tdx_parse_tdinfo() to tdx_setup() Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 445/817] x86/tdx: Dynamically disable SEPT violations from causing #VEs Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 446/817] powerpc/fadump: allocate memory for additional parameters early Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 447/817] fadump: reserve param area if below boot_mem_top Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 448/817] RDMA/hns: Fix out-of-order issue of requester when setting FENCE Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 449/817] RDMA/hns: Fix NULL pointer derefernce in hns_roce_map_mr_sg() Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 450/817] cpufreq: loongson3: Check for error code from devm_mutex_init() call Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 451/817] cpufreq: CPPC: Fix wrong return value in cppc_get_cpu_cost() Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 452/817] cpufreq: CPPC: Fix wrong return value in cppc_get_cpu_power() Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 453/817] kasan: move checks to do_strncpy_from_user Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 454/817] kunit: skb: use "gfp" variable instead of hardcoding GFP_KERNEL Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 455/817] ocfs2: fix uninitialized value in ocfs2_file_read_iter() Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 456/817] dax: delete a stale directory pmem Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 457/817] KVM: PPC: Book3S HV: Stop using vc->dpdes for nested KVM guests Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 458/817] KVM: PPC: Book3S HV: Avoid returning to nested hypervisor on pending doorbells Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 459/817] powerpc/sstep: make emulate_vsx_load and emulate_vsx_store static Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 460/817] RDMA/hns: Fix different dgids mapping to the same dip_idx Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 461/817] KVM: PPC: Book3S HV: Fix kmv -> kvm typo Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 462/817] powerpc/kexec: Fix return of uninitialized variable Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 463/817] fbdev: sh7760fb: Fix a possible memory leak in sh7760fb_alloc_mem() Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 464/817] RDMA/mlx5: Move events notifier registration to be after device registration Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 465/817] clk: clk-apple-nco: Add NULL check in applnco_probe Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 466/817] clk: ralink: mtmips: fix clock plan for Ralink SoC RT3883 Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 467/817] clk: ralink: mtmips: fix clocks probe order in oldest ralink SoCs Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 468/817] clk: en7523: remove REG_PCIE*_{MEM,MEM_MASK} configuration Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 469/817] clk: en7523: move clock_register in hw_init callback Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 470/817] clk: en7523: introduce chip_scu regmap Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 471/817] clk: en7523: fix estimation of fixed rate for EN7581 Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 472/817] dt-bindings: clock: axi-clkgen: include AXI clk Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 473/817] clk: clk-axi-clkgen: make sure to enable the AXI bus clock Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 474/817] arm64: dts: qcom: sc8180x: Add a SoC-specific compatible to cpufreq-hw Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 475/817] pinctrl: k210: Undef K210_PC_DEFAULT Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 476/817] rtla/timerlat: Do not set params->user_workload with -U Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 477/817] smb: cached directories can be more than root file handle Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 478/817] mailbox: mtk-cmdq: fix wrong use of sizeof in cmdq_get_clocks() Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 479/817] mailbox: arm_mhuv2: clean up loop in get_irq_chan_comb() Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 480/817] x86: fix off-by-one in access_ok() Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 481/817] perf cs-etm: Dont flush when packet_queue fills up Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 482/817] gfs2: Rename GLF_VERIFY_EVICT to GLF_VERIFY_DELETE Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 483/817] gfs2: Allow immediate GLF_VERIFY_DELETE work Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 484/817] gfs2: Fix unlinked inode cleanup Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 485/817] perf test: Add test for Intel TPEBS counting mode Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 486/817] perf stat: Uniquify event name improvements Greg Kroah-Hartman
2024-12-03 14:40 ` [PATCH 6.11 487/817] perf mem: Fix printing PERF_MEM_LVLNUM_{L2_MHB|MSC} Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 488/817] PCI: Fix reset_method_store() memory leak Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 489/817] perf stat: Close cork_fd when create_perf_stat_counter() failed Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 490/817] perf stat: Fix affinity memory leaks on error path Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 491/817] perf trace: Keep exited threads for summary Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 492/817] perf test attr: Add back missing topdown events Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 493/817] f2fs: compress: fix inconsistent update of i_blocks in release_compress_blocks and reserve_compress_blocks Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 494/817] f2fs: fix null-ptr-deref in f2fs_submit_page_bio() Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 495/817] f2fs: fix to account dirty data in __get_secs_required() Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 496/817] perf dso: Fix symtab_type for kmod compression Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 497/817] perf probe: Fix libdw memory leak Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 498/817] perf probe: Correct demangled symbols in C++ program Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 499/817] rust: kernel: fix THIS_MODULE header path in ThisModule doc comment Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 500/817] rust: macros: fix documentation of the paste! macro Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 501/817] PCI: cpqphp: Use PCI_POSSIBLE_ERROR() to check config reads Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 502/817] PCI: cpqphp: Fix PCIBIOS_* return value confusion Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 503/817] rust: block: fix formatting of `kernel::block::mq::request` module Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 504/817] perf disasm: Use disasm_line__free() to properly free disasm_line Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 505/817] virtiofs: use pages instead of pointer for kernel direct IO Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 506/817] perf ftrace latency: Fix unit on histogram first entry when using --use-nsec Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 507/817] i3c: master: Remove i3c_dev_disable_ibi_locked(olddev) on device hotjoin Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 508/817] f2fs: fix the wrong f2fs_bug_on condition in f2fs_do_replace_block Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 509/817] f2fs: check curseg->inited before write_sum_page in change_curseg Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 510/817] f2fs: Fix not used variable index Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 511/817] f2fs: fix to avoid potential deadlock in f2fs_record_stop_reason() Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 512/817] f2fs: fix to avoid use GC_AT when setting gc_mode as GC_URGENT_LOW or GC_URGENT_MID Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 513/817] PCI: qcom-ep: Move controller cleanups to qcom_pcie_perst_deassert() Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 514/817] PCI: tegra194: Move controller cleanups to pex_ep_event_pex_rst_deassert() Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 515/817] PCI: cadence: Extract link setup sequence from cdns_pcie_host_setup() Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 516/817] PCI: cadence: Set cdns_pcie_host_init() global Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 517/817] PCI: j721e: Add reset GPIO to struct j721e_pcie Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 518/817] PCI: j721e: Use T_PERST_CLK_US macro Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 519/817] PCI: j721e: Add suspend and resume support Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 520/817] PCI: j721e: Deassert PERST# after a delay of PCIE_T_PVPERL_MS milliseconds Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 521/817] perf build: Add missing cflags when building with custom libtraceevent Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 522/817] f2fs: fix race in concurrent f2fs_stop_gc_thread Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 523/817] f2fs: fix to map blocks correctly for direct write Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 524/817] f2fs: fix to avoid forcing direct write to use buffered IO on inline_data inode Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 525/817] perf trace: avoid garbage when not printing a trace events arguments Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 526/817] m68k: mcfgpio: Fix incorrect register offset for CONFIG_M5441x Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 527/817] m68k: coldfire/device.c: only build FEC when HW macros are defined Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 528/817] svcrdma: Address an integer overflow Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 529/817] nfsd: drop inode parameter from nfsd4_change_attribute() Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 530/817] perf list: Fix topic and pmu_name argument order Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 531/817] perf trace: Fix tracing itself, creating feedback loops Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 532/817] perf trace: Do not lose last events in a race Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 533/817] perf trace: Avoid garbage when not printing a syscalls arguments Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 534/817] remoteproc: qcom: pas: Remove subdevs on the error path of adsp_probe() Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 535/817] remoteproc: qcom: adsp: " Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 536/817] remoteproc: qcom: pas: add minidump_id to SM8350 resources Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 537/817] rpmsg: glink: use only lower 16-bits of param2 for CMD_OPEN name length Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 538/817] remoteproc: qcom_q6v5_mss: Re-order writes to the IMEM region Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 539/817] PCI: endpoint: epf-mhi: Avoid NULL dereference if DT lacks mmio Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 540/817] NFSD: Prevent NULL dereference in nfsd4_process_cb_update() Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 541/817] NFSD: Cap the number of bytes copied by nfs4_reset_recoverydir() Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 542/817] nfsd: release svc_expkey/svc_export with rcu_work Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 543/817] svcrdma: fix miss destroy percpu_counter in svc_rdma_proc_init() Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 544/817] NFSD: Fix nfsd4_shutdown_copy() Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 545/817] f2fs: clean up val{>>,<<}F2FS_BLKSIZE_BITS Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 546/817] f2fs: fix to do cast in F2FS_{BLK_TO_BYTES, BTYES_TO_BLK} to avoid overflow Greg Kroah-Hartman
2024-12-03 14:41 ` [PATCH 6.11 547/817] hwmon: (tps23861) Fix reporting of negative temperatures Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 548/817] hwmon: (aquacomputer_d5next) Fix length of speed_input array Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 549/817] phy: airoha: Fix REG_CSR_2L_PLL_CMN_RESERVE0 config in airoha_pcie_phy_init_clk_out() Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 550/817] phy: airoha: Fix REG_PCIE_PMA_TX_RESET config in airoha_pcie_phy_init_csr_2l() Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 551/817] phy: airoha: Fix REG_CSR_2L_JCPLL_SDM_HREN config in airoha_pcie_phy_init_ssc_jcpll() Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 552/817] phy: airoha: Fix REG_CSR_2L_RX{0,1}_REV0 definitions Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 553/817] vdpa/mlx5: Fix suboptimal range on iotlb iteration Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 554/817] vfio/mlx5: Fix an unwind issue in mlx5vf_add_migration_pages() Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 555/817] vfio/mlx5: Fix unwind flows in mlx5vf_pci_save/resume_device_data() Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 556/817] selftests/mount_setattr: Fix failures on 64K PAGE_SIZE kernels Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 557/817] gpio: zevio: Add missed label initialisation Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 558/817] vfio/pci: Properly hide first-in-list PCIe extended capability Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 559/817] fs_parser: update mount_api doc to match function signature Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 560/817] LoongArch: Fix build failure with GCC 15 (-std=gnu23) Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 561/817] LoongArch: BPF: Sign-extend return values Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 562/817] power: supply: core: Remove might_sleep() from power_supply_put() Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 563/817] power: supply: bq27xxx: Fix registers of bq27426 Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 564/817] power: supply: rt9471: Fix wrong WDT function regfield declaration Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 565/817] power: supply: rt9471: Use IC status regfield to report real charger status Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 566/817] net: usb: lan78xx: Fix double free issue with interrupt buffer allocation Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 567/817] net: usb: lan78xx: Fix memory leak on device unplug by freeing PHY device Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 568/817] tg3: Set coherent DMA mask bits to 31 for BCM57766 chipsets Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 569/817] net: usb: lan78xx: Fix refcounting and autosuspend on invalid WoL configuration Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 570/817] net: microchip: vcap: Add typegroup table terminators in kunit tests Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 571/817] netlink: fix false positive warning in extack during dumps Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 572/817] exfat: fix file being changed by unaligned direct write Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 573/817] s390/iucv: MSG_PEEK causes memory leak in iucv_sock_destruct() Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 574/817] net/ipv6: delete temporary address if mngtmpaddr is removed or unmanaged Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 575/817] net: mdio-ipq4019: add missing error check Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 576/817] marvell: pxa168_eth: fix call balance of pep->clk handling routines Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 577/817] net: stmmac: dwmac-socfpga: Set RX watchdog interrupt as broken Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 578/817] octeontx2-af: RPM: Fix mismatch in lmac type Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 579/817] octeontx2-af: RPM: Fix low network performance Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 580/817] octeontx2-af: RPM: fix stale RSFEC counters Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 581/817] octeontx2-af: RPM: fix stale FCFEC counters Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 582/817] octeontx2-af: Quiesce traffic before NIX block reset Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 583/817] spi: atmel-quadspi: Fix register name in verbose logging function Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 584/817] net: hsr: fix hsr_init_sk() vs network/transport headers Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 585/817] bnxt_en: Reserve rings after PCIe AER recovery if NIC interface is down Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 586/817] bnxt_en: Set backplane link modes correctly for ethtool Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 587/817] bnxt_en: Fix receive ring space parameters when XDP is active Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 588/817] bnxt_en: Refactor bnxt_ptp_init() Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 589/817] bnxt_en: Unregister PTP during PCI shutdown and suspend Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 590/817] Bluetooth: MGMT: Fix slab-use-after-free Read in set_powered_sync Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 591/817] Bluetooth: MGMT: Fix possible deadlocks Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 592/817] llc: Improve setsockopt() handling of malformed user input Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 593/817] rxrpc: " Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 594/817] tcp: Fix use-after-free of nreq in reqsk_timer_handler() Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 595/817] ip6mr: fix tables suspicious RCU usage Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 596/817] ipmr: " Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 597/817] iio: light: al3010: Fix an error handling path in al3010_probe() Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 598/817] usb: using mutex lock and supporting O_NONBLOCK flag in iowarrior_read() Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 599/817] usb: yurex: make waiting on yurex_write interruptible Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 600/817] USB: chaoskey: fail open after removal Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 601/817] USB: chaoskey: Fix possible deadlock chaoskey_list_lock Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 602/817] misc: apds990x: Fix missing pm_runtime_disable() Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 603/817] devres: Fix page faults when tracing devres from unloaded modules Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 604/817] usb: gadget: uvc: wake pump everytime we update the free list Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 605/817] interconnect: qcom: icc-rpmh: probe defer incase of missing QoS clock dependency Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 606/817] phy: realtek: usb: fix NULL deref in rtk_usb2phy_probe Greg Kroah-Hartman
2024-12-03 14:42 ` [PATCH 6.11 607/817] phy: realtek: usb: fix NULL deref in rtk_usb3phy_probe Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 608/817] counter: stm32-timer-cnt: Add check for clk_enable() Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 609/817] counter: ti-ecap-capture: " Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 610/817] bus: mhi: host: Switch trace_mhi_gen_tre fields to native endian Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 611/817] usb: typec: fix potential array underflow in ucsi_ccg_sync_control() Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 612/817] firmware_loader: Fix possible resource leak in fw_log_firmware_info() Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 613/817] ALSA: hda/realtek: Update ALC256 depop procedure Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 614/817] drm/radeon: add helper rdev_to_drm(rdev) Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 615/817] drm/radeon: change rdev->ddev to rdev_to_drm(rdev) Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 616/817] drm/radeon: Fix spurious unplug event on radeon HDMI Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 617/817] drm/amd/display: Fix null check for pipe_ctx->plane_state in dcn20_program_pipe Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 618/817] drm/amd/display: Fix null check for pipe_ctx->plane_state in hwss_setup_dpp Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 619/817] ASoC: imx-audmix: Add NULL check in imx_audmix_probe Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 620/817] drm/xe/ufence: Wake up waiters after setting ufence->signalled Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 621/817] apparmor: fix Do simple duplicate message elimination Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 622/817] ALSA: core: Fix possible NULL dereference caused by kunit_kzalloc() Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 623/817] ASoC: amd: yc: Fix for enabling DMIC on acp6x via _DSD entry Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 624/817] ASoC: mediatek: Check num_codecs is not zero to avoid panic during probe Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 625/817] s390/pci: Fix potential double remove of hotplug slot Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 626/817] net_sched: sch_fq: dont follow the fast path if Tx is behind now Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 627/817] xen: Fix the issue of resource not being properly released in xenbus_dev_probe() Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 628/817] ALSA: usb-audio: Fix potential out-of-bound accesses for Extigy and Mbox devices Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 629/817] ALSA: usb-audio: Fix out of bounds reads when finding clock sources Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 630/817] usb: ehci-spear: fix call balance of sehci clk handling routines Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 631/817] usb: typec: ucsi: glink: fix off-by-one in connector_status Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 632/817] dm-cache: fix warnings about duplicate slab caches Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 633/817] dm-bufio: " Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 634/817] ASoC: Intel: sst: Fix used of uninitialized ctx to log an error Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 635/817] soc: qcom: socinfo: fix revision check in qcom_socinfo_probe() Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 636/817] irqdomain: Always associate interrupts for legacy domains Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 637/817] ext4: supress data-race warnings in ext4_free_inodes_{count,set}() Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 638/817] ext4: fix FS_IOC_GETFSMAP handling Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 639/817] jfs: xattr: check invalid xattr size more strictly Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 640/817] ASoC: amd: yc: Add a quirk for microfone on Lenovo ThinkPad P14s Gen 5 21MES00B00 Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 641/817] ASoC: codecs: Fix atomicity violation in snd_soc_component_get_drvdata() Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 642/817] ASoC: da7213: Populate max_register to regmap_config Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 643/817] perf/x86/intel/pt: Fix buffer full but size is 0 case Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 644/817] crypto: x86/aegis128 - access 32-bit arguments as 32-bit Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 645/817] KVM: x86: switch hugepage recovery thread to vhost_task Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 646/817] KVM: x86/mmu: Skip the "try unsync" path iff the old SPTE was a leaf SPTE Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 647/817] powerpc/pseries: Fix KVM guest detection for disabling hardlockup detector Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 648/817] KVM: arm64: vgic-v3: Sanitise guest writes to GICR_INVLPIR Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 649/817] KVM: arm64: Ignore PMCNTENSET_EL0 while checking for overflow status Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 650/817] KVM: arm64: Dont retire aborted MMIO instruction Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 651/817] KVM: arm64: vgic-its: Clear ITE when DISCARD frees an ITE Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 652/817] KVM: arm64: Get rid of userspace_irqchip_in_use Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 653/817] KVM: arm64: vgic-its: Add a data length check in vgic_its_save_* Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 654/817] KVM: arm64: vgic-its: Clear DTE when MAPD unmaps a device Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 655/817] Compiler Attributes: disable __counted_by for clang < 19.1.3 Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 656/817] PCI: Fix use-after-free of slot->bus on hot remove Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 657/817] LoongArch: Explicitly specify code model in Makefile Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 658/817] clk: clk-loongson2: Fix memory corruption bug in struct loongson2_clk_provider Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 659/817] clk: clk-loongson2: Fix potential buffer overflow in flexible-array member access Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 660/817] fsnotify: fix sending inotify event with unexpected filename Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 661/817] fsnotify: Fix ordering of iput() and watched_objects decrement Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 662/817] comedi: Flush partial mappings in error case Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 663/817] apparmor: test: Fix memory leak for aa_unpack_strdup() Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 664/817] iio: dac: adi-axi-dac: fix wrong register bitfield Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 665/817] tty: ldsic: fix tty_ldisc_autoload sysctls proc_handler Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 666/817] locking/lockdep: Avoid creating new name string literals in lockdep_set_subclass() Greg Kroah-Hartman
2024-12-03 14:43 ` [PATCH 6.11 667/817] tools/nolibc: s390: include std.h Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 668/817] pinctrl: qcom: spmi: fix debugfs drive strength Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 669/817] dt-bindings: pinctrl: samsung: Fix interrupt constraint for variants with fallbacks Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 670/817] dt-bindings: iio: dac: ad3552r: fix maximum spi speed Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 671/817] exfat: fix uninit-value in __exfat_get_dentry_set Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 672/817] exfat: fix out-of-bounds access of directory entries Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 673/817] xhci: Fix control transfer error on Etron xHCI host Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 674/817] xhci: Combine two if statements for " Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 675/817] xhci: Dont perform Soft Retry " Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 676/817] xhci: Dont issue Reset Device command to " Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 677/817] Bluetooth: Fix type of len in rfcomm_sock_getsockopt{,_old}() Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 678/817] usb: xhci: Limit Stop Endpoint retries Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 679/817] usb: xhci: Fix TD invalidation under pending Set TR Dequeue Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 680/817] usb: xhci: Avoid queuing redundant Stop Endpoint commands Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 681/817] ARM: dts: omap36xx: declare 1GHz OPP as turbo again Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 682/817] wifi: ath12k: fix warning when unbinding Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 683/817] wifi: rtlwifi: Drastically reduce the attempts to read efuse in case of failures Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 684/817] wifi: nl80211: fix bounds checker error in nl80211_parse_sched_scan Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 685/817] wifi: ath12k: fix crash when unbinding Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 686/817] wifi: brcmfmac: release root node in all execution paths Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 687/817] Revert "exec: dont WARN for racy path_noexec check" Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 688/817] Revert "fs: dont block i_writecount during exec" Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 689/817] Revert "f2fs: remove unreachable lazytime mount option parsing" Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 690/817] Revert "usb: gadget: composite: fix OS descriptors w_value logic" Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 691/817] serial: sh-sci: Clean sci_ports[0] after at earlycon exit Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 692/817] Revert "serial: sh-sci: Clean sci_ports[0] after at earlycon exit" Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 693/817] io_uring: fix corner case forgetting to vunmap Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 694/817] io_uring: check for overflows in io_pin_pages Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 695/817] blk-settings: round down io_opt to physical_block_size Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 696/817] gpio: exar: set value when external pull-up or pull-down is present Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 697/817] netfilter: ipset: add missing range check in bitmap_ip_uadt Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 698/817] spi: Fix acpi deferred irq probe Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 699/817] mtd: spi-nor: core: replace dummy buswidth from addr to data Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 700/817] cpufreq: mediatek-hw: Fix wrong return value in mtk_cpufreq_get_cpu_power() Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 701/817] cifs: support mounting with alternate password to allow password rotation Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 702/817] parisc/ftrace: Fix function graph tracing disablement Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 703/817] RISC-V: Scalar unaligned access emulated on hotplug CPUs Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 704/817] RISC-V: Check scalar unaligned access on all CPUs Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 705/817] ksmbd: fix use-after-free in SMB request handling Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 706/817] smb: client: fix NULL ptr deref in crypto_aead_setkey() Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 707/817] platform/chrome: cros_ec_typec: fix missing fwnode reference decrement Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 708/817] irqchip/irq-mvebu-sei: Move misplaced select() callback to SEI CP domain Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 709/817] x86/CPU/AMD: Terminate the erratum_1386_microcode array Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 710/817] ubi: wl: Put source PEB into correct list if trying locking LEB failed Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 711/817] um: ubd: Do not use drvdata in release Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 712/817] um: net: " Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 713/817] dt-bindings: serial: rs485: Fix rs485-rts-delay property Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 714/817] serial: 8250_fintek: Add support for F81216E Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 715/817] serial: 8250: omap: Move pm_runtime_get_sync Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 716/817] serial: amba-pl011: Fix RX stall when DMA is used Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 717/817] serial: amba-pl011: fix build regression Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 718/817] mtd: ubi: fix unreleased fwnode_handle in find_volume_fwnode() Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 719/817] block: Prevent potential deadlock in blk_revalidate_disk_zones() Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 720/817] um: vector: Do not use drvdata in release Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 721/817] sh: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 722/817] iio: gts: Fix uninitialized symbol ret Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 723/817] ublk: fix ublk_ch_mmap() for 64K page size Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 724/817] arm64: tls: Fix context-switching of tpidrro_el0 when kpti is enabled Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 725/817] block: fix missing dispatching request when queue is started or unquiesced Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 726/817] block: fix ordering between checking QUEUE_FLAG_QUIESCED request adding Greg Kroah-Hartman
2024-12-03 14:44 ` [PATCH 6.11 727/817] block: fix ordering between checking BLK_MQ_S_STOPPED " Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 728/817] blk-mq: Make blk_mq_quiesce_tagset() hold the tag list mutex less long Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 729/817] gve: Flow steering trigger reset only for timeout error Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 730/817] HID: wacom: Interpret tilt data from Intuos Pro BT as signed values Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 731/817] i40e: Fix handling changed priv flags Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 732/817] media: wl128x: Fix atomicity violation in fmc_send_cmd() Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 733/817] media: intel/ipu6: do not handle interrupts when device is disabled Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 734/817] arm64: dts: mediatek: mt8186-corsola-voltorb: Merge speaker codec nodes Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 735/817] netdev-genl: Hold rcu_read_lock in napi_get Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 736/817] soc: fsl: rcpm: fix missing of_node_put() in copy_ippdexpcr1_setting() Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 737/817] media: v4l2-core: v4l2-dv-timings: check cvt/gtf result Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 738/817] ALSA: rawmidi: Fix kvfree() call in spinlock Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 739/817] ALSA: ump: Fix evaluation of MIDI 1.0 FB info Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 740/817] ALSA: pcm: Add sanity NULL check for the default mmap fault handler Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 741/817] ALSA: hda/realtek: Update ALC225 depop procedure Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 742/817] ALSA: hda/realtek: Set PCBeep to default value for ALC274 Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 743/817] ALSA: hda/realtek: Fix Internal Speaker and Mic boost of Infinix Y4 Max Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 744/817] ALSA: hda/realtek: Apply quirk for Medion E15433 Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 745/817] smb3: request handle caching when caching directories Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 746/817] smb: client: handle max length for SMB symlinks Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 747/817] smb: Dont leak cfid when reconnect races with open_cached_dir Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 748/817] smb: prevent use-after-free due to open_cached_dir error paths Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 749/817] smb: During unmount, ensure all cached dir instances drop their dentry Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 750/817] usb: misc: ljca: set small runtime autosuspend delay Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 751/817] usb: misc: ljca: move usb_autopm_put_interface() after wait for response Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 752/817] usb: dwc3: ep0: Dont clear ep0 DWC3_EP_TRANSFER_STARTED Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 753/817] usb: musb: Fix hardware lockup on first Rx endpoint request Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 754/817] usb: dwc3: gadget: Fix checking for number of TRBs left Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 755/817] usb: dwc3: gadget: Fix looping of queued SG entries Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 756/817] staging: vchiq_arm: Fix missing refcount decrement in error path for fw_node Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 757/817] counter: stm32-timer-cnt: fix device_node handling in probe_encoder() Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 758/817] ublk: fix error code for unsupported command Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 759/817] lib: string_helpers: silence snprintf() output truncation warning Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 760/817] f2fs: fix to do sanity check on node blkaddr in truncate_node() Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 761/817] ipc: fix memleak if msg_init_ns failed in create_ipc_ns Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 762/817] Input: cs40l50 - fix wrong usage of INIT_WORK() Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 763/817] NFSD: Prevent a potential integer overflow Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 764/817] SUNRPC: make sure cache entry active before cache_show Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 765/817] um: Fix potential integer overflow during physmem setup Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 766/817] um: Fix the return value of elf_core_copy_task_fpregs Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 767/817] kfifo: dont include dma-mapping.h in kfifo.h Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 768/817] um: ubd: Initialize ubds disk pointer in ubd_add Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 769/817] um: Always dump trace for specified task in show_stack Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 770/817] NFSv4.0: Fix a use-after-free problem in the asynchronous open() Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 771/817] rtc: st-lpc: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 772/817] rtc: abx80x: Fix WDT bit position of the status register Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 773/817] rtc: check if __rtc_read_time was successful in rtc_timer_do_work() Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 774/817] ubi: fastmap: wl: Schedule fm_work if wear-leveling pool is empty Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 775/817] ubifs: Correct the total block count by deducting journal reservation Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 776/817] ubi: fastmap: Fix duplicate slab cache names while attaching Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 777/817] ubifs: authentication: Fix use-after-free in ubifs_tnc_end_commit Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 778/817] jffs2: fix use of uninitialized variable Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 779/817] rtc: rzn1: fix BCD to rtc_time conversion errors Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 780/817] Revert "nfs: dont reuse partially completed requests in nfs_lock_and_join_requests" Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 781/817] nvme-multipath: avoid hang on inaccessible namespaces Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 782/817] nvme/multipath: Fix RCU list traversal to use SRCU primitive Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 783/817] blk-mq: add non_owner variant of start_freeze/unfreeze queue APIs Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 784/817] block: model freeze & enter queue as lock for supporting lockdep Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 785/817] block: fix uaf for flush rq while iterating tags Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 786/817] block: return unsigned int from bdev_io_min Greg Kroah-Hartman
2024-12-03 14:45 ` [PATCH 6.11 787/817] nvme-fabrics: fix kernel crash while shutting down controller Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 788/817] 9p/xen: fix init sequence Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 789/817] 9p/xen: fix release of IRQ Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 790/817] perf/arm-smmuv3: Fix lockdep assert in ->event_init() Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 791/817] perf/arm-cmn: Ensure port and device id bits are set properly Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 792/817] smb: client: disable directory caching when dir_cache_timeout is zero Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 793/817] x86/Documentation: Update algo in init_size description of boot protocol Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 794/817] cifs: Fix parsing native symlinks relative to the export Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 795/817] cifs: Fix parsing reparse point with native symlink in SMB1 non-UNICODE session Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 796/817] rtc: ab-eoz9: dont fail temperature reads on undervoltage notification Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 797/817] Rename .data.unlikely to .data..unlikely Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 798/817] Rename .data.once to .data..once to fix resetting WARN*_ONCE Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 799/817] kbuild: deb-pkg: Dont fail if modules.order is missing Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 800/817] smb: Initialize cfid->tcon before performing network ops Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 801/817] block: Dont allow an atomic write be truncated in blkdev_write_iter() Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 802/817] modpost: remove incorrect code in do_eisa_entry() Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 803/817] cifs: during remount, make sure passwords are in sync Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 804/817] cifs: unlock on error in smb3_reconfigure() Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 805/817] nfs: ignore SB_RDONLY when mounting nfs Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 806/817] sunrpc: clear XPRT_SOCK_UPD_TIMEOUT when reset transport Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 807/817] SUNRPC: timeout and cancel TLS handshake with -ETIMEDOUT Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 808/817] sunrpc: fix one UAF issue caused by sunrpc kernel tcp socket Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 809/817] nfs/blocklayout: Dont attempt unregister for invalid block device Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 810/817] nfs/blocklayout: Limit repeat device registration on failure Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 811/817] block, bfq: fix bfqq uaf in bfq_limit_depth() Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 812/817] brd: decrease the number of allocated pages which discarded Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 813/817] sh: intc: Fix use-after-free bug in register_intc_controller() Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 814/817] tools/power turbostat: Fix trailing \n parsing Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 815/817] tools/power turbostat: Fix childs argument forwarding Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 816/817] block: always verify unfreeze lock on the owner task Greg Kroah-Hartman
2024-12-03 14:46 ` [PATCH 6.11 817/817] block: dont verify IO lock for freeze/unfreeze in elevator_init_mq() Greg Kroah-Hartman
2024-12-03 22:07 ` [PATCH 6.11 000/817] 6.11.11-rc1 review Mark Brown
2024-12-03 22:09 ` Peter Schneider
2024-12-03 22:33 ` Florian Fainelli
2024-12-04 0:23 ` SeongJae Park
2024-12-04 7:16 ` Ron Economos
2024-12-04 13:25 ` Naresh Kamboju
2024-12-04 16:55 ` Shuah Khan
2024-12-04 18:51 ` Miguel Ojeda
2024-12-05 11:05 ` Muhammad Usama Anjum
2024-12-05 14:39 ` Jon Hunter
2024-12-05 14:45 ` Jon Hunter
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241203144004.844746235@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=cphealy@gmail.com \
--cc=dmitry.baryshkov@linaro.org \
--cc=p.zabel@pengutronix.de \
--cc=patches@lists.linux.dev \
--cc=robh@kernel.org \
--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).