From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Vimal Agrawal <vimal.agrawal@sophos.com>,
Dirk VanDerMerwe <dirk.vandermerwe@sophos.com>
Subject: [PATCH 6.12 374/422] misc: misc_minor_alloc to use ida for all dynamic/misc dynamic minors
Date: Thu, 13 Feb 2025 15:28:43 +0100 [thread overview]
Message-ID: <20250213142450.979943955@linuxfoundation.org> (raw)
In-Reply-To: <20250213142436.408121546@linuxfoundation.org>
6.12-stable review patch. If anyone has any objections, please let me know.
------------------
From: Vimal Agrawal <vimal.agrawal@sophos.com>
commit 6d04d2b554b14ae6c428a9c60b6c85f1e5c89f68 upstream.
misc_minor_alloc was allocating id using ida for minor only in case of
MISC_DYNAMIC_MINOR but misc_minor_free was always freeing ids
using ida_free causing a mismatch and following warn:
> > WARNING: CPU: 0 PID: 159 at lib/idr.c:525 ida_free+0x3e0/0x41f
> > ida_free called for id=127 which is not allocated.
> > <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
...
> > [<60941eb4>] ida_free+0x3e0/0x41f
> > [<605ac993>] misc_minor_free+0x3e/0xbc
> > [<605acb82>] misc_deregister+0x171/0x1b3
misc_minor_alloc is changed to allocate id from ida for all minors
falling in the range of dynamic/ misc dynamic minors
Fixes: ab760791c0cf ("char: misc: Increase the maximum number of dynamic misc devices to 1048448")
Signed-off-by: Vimal Agrawal <vimal.agrawal@sophos.com>
Reviewed-by: Dirk VanDerMerwe <dirk.vandermerwe@sophos.com>
Cc: stable@vger.kernel.org
Link: https://lore.kernel.org/r/20241021133812.23703-1-vimal.agrawal@sophos.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/char/misc.c | 37 +++++++++++++++++++++++++++++--------
1 file changed, 29 insertions(+), 8 deletions(-)
--- a/drivers/char/misc.c
+++ b/drivers/char/misc.c
@@ -63,16 +63,30 @@ static DEFINE_MUTEX(misc_mtx);
#define DYNAMIC_MINORS 128 /* like dynamic majors */
static DEFINE_IDA(misc_minors_ida);
-static int misc_minor_alloc(void)
+static int misc_minor_alloc(int minor)
{
- int ret;
+ int ret = 0;
- ret = ida_alloc_max(&misc_minors_ida, DYNAMIC_MINORS - 1, GFP_KERNEL);
- if (ret >= 0) {
- ret = DYNAMIC_MINORS - ret - 1;
+ if (minor == MISC_DYNAMIC_MINOR) {
+ /* allocate free id */
+ ret = ida_alloc_max(&misc_minors_ida, DYNAMIC_MINORS - 1, GFP_KERNEL);
+ if (ret >= 0) {
+ ret = DYNAMIC_MINORS - ret - 1;
+ } else {
+ ret = ida_alloc_range(&misc_minors_ida, MISC_DYNAMIC_MINOR + 1,
+ MINORMASK, GFP_KERNEL);
+ }
} else {
- ret = ida_alloc_range(&misc_minors_ida, MISC_DYNAMIC_MINOR + 1,
- MINORMASK, GFP_KERNEL);
+ /* specific minor, check if it is in dynamic or misc dynamic range */
+ if (minor < DYNAMIC_MINORS) {
+ minor = DYNAMIC_MINORS - minor - 1;
+ ret = ida_alloc_range(&misc_minors_ida, minor, minor, GFP_KERNEL);
+ } else if (minor > MISC_DYNAMIC_MINOR) {
+ ret = ida_alloc_range(&misc_minors_ida, minor, minor, GFP_KERNEL);
+ } else {
+ /* case of non-dynamic minors, no need to allocate id */
+ ret = 0;
+ }
}
return ret;
}
@@ -219,7 +233,7 @@ int misc_register(struct miscdevice *mis
mutex_lock(&misc_mtx);
if (is_dynamic) {
- int i = misc_minor_alloc();
+ int i = misc_minor_alloc(misc->minor);
if (i < 0) {
err = -EBUSY;
@@ -228,6 +242,7 @@ int misc_register(struct miscdevice *mis
misc->minor = i;
} else {
struct miscdevice *c;
+ int i;
list_for_each_entry(c, &misc_list, list) {
if (c->minor == misc->minor) {
@@ -235,6 +250,12 @@ int misc_register(struct miscdevice *mis
goto out;
}
}
+
+ i = misc_minor_alloc(misc->minor);
+ if (i < 0) {
+ err = -EBUSY;
+ goto out;
+ }
}
dev = MKDEV(MISC_MAJOR, misc->minor);
next prev parent reply other threads:[~2025-02-13 14:54 UTC|newest]
Thread overview: 441+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-13 14:22 [PATCH 6.12 000/422] 6.12.14-rc1 review Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 001/422] irqchip/lan966x-oic: Make CONFIG_LAN966X_OIC depend on CONFIG_MCHP_LAN966X_PCI Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 002/422] btrfs: fix assertion failure when splitting ordered extent after transaction abort Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 003/422] btrfs: do not output error message if a qgroup has been already cleaned up Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 004/422] btrfs: fix use-after-free when attempting to join an aborted transaction Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 005/422] arm64/mm: Ensure adequate HUGE_MAX_HSTATE Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 006/422] exec: fix up /proc/pid/comm in the execveat(AT_EMPTY_PATH) case Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 007/422] s390/stackleak: Use exrl instead of ex in __stackleak_poison() Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 008/422] btrfs: fix data race when accessing the inodes disk_i_size at btrfs_drop_extents() Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 009/422] btrfs: convert BUG_ON in btrfs_reloc_cow_block() to proper error handling Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 010/422] sched: Dont try to catch up excess steal time Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 011/422] sched/deadline: Correctly account for allocated bandwidth during hotplug Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 012/422] sched/deadline: Check bandwidth overflow earlier for hotplug Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 013/422] x86: Convert unreachable() to BUG() Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 014/422] locking/ww_mutex/test: Use swap() macro Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 015/422] lockdep: Fix upper limit for LOCKDEP_*_BITS configs Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 016/422] x86/amd_nb: Restrict init function to AMD-based systems Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 017/422] drm/virtio: New fence for every plane update Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 018/422] drm: Add panel backlight quirks Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 019/422] drm: panel-backlight-quirks: Add Framework 13 matte panel Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 020/422] drm: panel-backlight-quirks: Add Framework 13 glossy and 2.8k panels Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 021/422] nvkm/gsp: correctly advance the read pointer of GSP message queue Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 022/422] nvkm: correctly calculate the available space of the GSP cmdq buffer Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 023/422] drm/tests: hdmi: handle empty modes in find_preferred_mode() Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 024/422] drm/tests: hdmi: return meaningful value from set_connector_edid() Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 025/422] drm/amd/display: Populate chroma prefetch parameters, DET buffer fix Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 026/422] drm/amd/display: Overwriting dualDPP UBF values before usage Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 027/422] printk: Fix signed integer overflow when defining LOG_BUF_LEN_MAX Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 028/422] drm/connector: add mutex to protect ELD from concurrent access Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 029/422] drm/bridge: anx7625: use eld_mutex to protect access to connector->eld Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.12 030/422] drm/bridge: ite-it66121: " Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 031/422] drm/amd/display: " Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 032/422] drm/exynos: hdmi: " Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 033/422] drm/radeon: " Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 034/422] drm/sti: hdmi: " Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 035/422] drm/vc4: " Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 036/422] drm/amd/display: Fix Mode Cutoff in DSC Passthrough to DP2.1 Monitor Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 037/422] drm/amdgpu: Dont enable sdma 4.4.5 CTXEMPTY interrupt Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 038/422] drm/amdkfd: Queue interrupt work to different CPU Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 039/422] drm/bridge: it6505: Change definition MAX_HDCP_DOWN_STREAM_COUNT Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 040/422] drm/bridge: it6505: fix HDCP Bstatus check Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 041/422] drm/bridge: it6505: fix HDCP encryption when R0 ready Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 042/422] drm/bridge: it6505: fix HDCP CTS compare V matching Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 043/422] drm/bridge: it6505: fix HDCP CTS KSV list wait timer Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 044/422] safesetid: check size of policy writes Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 045/422] drm/amd/display: Increase sanitizer frame larger than limit when compile testing with clang Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 046/422] drm/amd/display: Limit Scaling Ratio on DCN3.01 Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 047/422] ring-buffer: Make reading page consistent with the code logic Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 048/422] wifi: rtw89: add crystal_cap check to avoid setting as overflow value Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 049/422] tun: fix group permission check Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 050/422] mmc: core: Respect quirk_max_rate for non-UHS SDIO card Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 051/422] mmc: sdhci-esdhc-imx: enable SDHCI_QUIRK_NO_LED quirk for S32G Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 052/422] wifi: brcmsmac: add gain range check to wlc_phy_iqcal_gainparams_nphy() Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 053/422] tomoyo: dont emit warning in tomoyo_write_control() Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 054/422] mfd: lpc_ich: Add another Gemini Lake ISA bridge PCI device-id Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 055/422] wifi: rtw88: add __packed attribute to efuse layout struct Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 056/422] clk: qcom: Make GCC_8150 depend on QCOM_GDSC Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 057/422] HID: multitouch: Add quirk for Hantick 5288 touchpad Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 058/422] HID: Wacom: Add PCI Wacom device support Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 059/422] net/mlx5: use do_aux_work for PHC overflow checks Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 060/422] wifi: brcmfmac: Check the return value of of_property_read_string_index() Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 061/422] wifi: iwlwifi: pcie: Add support for new device ids Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 062/422] wifi: iwlwifi: avoid memory leak Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 063/422] i2c: Force ELAN06FA touchpad I2C bus freq to 100KHz Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 064/422] APEI: GHES: Have GHES honor the panic= setting Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 065/422] Bluetooth: btusb: Add new VID/PID 13d3/3610 for MT7922 Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 066/422] Bluetooth: btusb: Add new VID/PID 13d3/3628 for MT7925 Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 067/422] Bluetooth: MGMT: Fix slab-use-after-free Read in mgmt_remove_adv_monitor_sync Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 068/422] net: wwan: iosm: Fix hibernation by re-binding the driver around it Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 069/422] HID: hid-asus: Disable OOBE mode on the ProArt P16 Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 070/422] mmc: sdhci-msm: Correctly set the load for the regulator Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 071/422] octeon_ep: update tx/rx stats locally for persistence Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 072/422] octeon_ep_vf: " Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 073/422] tipc: re-order conditions in tipc_crypto_key_rcv() Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 074/422] selftests/net/ipsec: Fix Null pointer dereference in rtattr_pack() Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 075/422] net: ethernet: ti: am65-cpsw: ensure proper channel cleanup in error path Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 076/422] ASoC: SOF: Intel: hda-dai: Ensure DAI widget is valid during params Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 077/422] x86/kexec: Allocate PGD for x86_64 transition page tables separately Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 078/422] ASoC: Intel: sof_sdw: Correct quirk for Lenovo Yoga Slim 7 Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 079/422] iommu/arm-smmu-qcom: add sdm670 adreno iommu compatible Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 080/422] iommu/arm-smmu-v3: Clean up more on probe failure Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 081/422] platform/x86: int3472: Check for adev == NULL Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 082/422] platform/x86: acer-wmi: Add support for Acer PH14-51 Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 083/422] ASoC: soc-pcm: dont use soc_pcm_ret() on .prepare callback Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 084/422] platform/x86: acer-wmi: Add support for Acer Predator PH16-72 Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 085/422] ASoC: amd: Add ACPI dependency to fix build error Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 086/422] Input: allocate keycode for phone linking Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 087/422] platform/x86: acer-wmi: add support for Acer Nitro AN515-58 Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 088/422] platform/x86: acer-wmi: Ignore AC events Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 089/422] KVM: PPC: e500: Mark "struct page" dirty in kvmppc_e500_shadow_map() Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.12 090/422] KVM: PPC: e500: Mark "struct page" pfn accessed before dropping mmu_lock Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 091/422] KVM: PPC: e500: Use __kvm_faultin_pfn() to handle page faults Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 092/422] KVM: e500: always restore irqs Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 093/422] drm/amdgpu: Fix Circular Locking Dependency in AMDGPU GFX Isolation Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 094/422] xfs: report realtime block quota limits on realtime directories Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 095/422] xfs: dont over-report free space or inodes in statvfs Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 096/422] tty: xilinx_uartps: split sysrq handling Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 097/422] tty: Permit some TIOCL_SETSEL modes without CAP_SYS_ADMIN Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 098/422] platform/x86: serdev_helpers: Check for serial_ctrl_uid == NULL Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 099/422] sched/fair: Fix inaccurate h_nr_runnable accounting with delayed dequeue Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 100/422] nvme: handle connectivity loss in nvme_set_queue_count Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 101/422] firmware: iscsi_ibft: fix ISCSI_IBFT Kconfig entry Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 102/422] gpu: drm_dp_cec: fix broken CEC adapter properties check Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 103/422] ice: put Rx buffers after being done with current frame Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 104/422] ice: gather page_count()s of each frag right before XDP prog call Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 105/422] ice: stop storing XDP verdict within ice_rx_buf Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 106/422] nvme: make nvme_tls_attrs_group static Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 107/422] nvme-fc: use ctrl state getter Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 108/422] net: bcmgenet: Correct overlaying of PHY and MAC Wake-on-LAN Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 109/422] ice: Add check for devm_kzalloc() Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 110/422] vmxnet3: Fix tx queue race condition with XDP Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 111/422] tg3: Disable tg3 PCIe AER on system reboot Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 112/422] udp: gso: do not drop small packets when PMTU reduces Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 113/422] drm/i915/dp: fix the Adaptive sync Operation mode for SDP Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 114/422] ethtool: rss: fix hiding unsupported fields in dumps Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 115/422] rxrpc: Fix the rxrpc_connection attend queue handling Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 116/422] gpio: pca953x: Improve interrupt support Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 117/422] net: atlantic: fix warning during hot unplug Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 118/422] net: rose: lock the socket in rose_bind() Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 119/422] gpio: sim: lock hog configfs items if present Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 120/422] x86/xen: fix xen_hypercall_hvm() to not clobber %rbx Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 121/422] x86/xen: add FRAME_END to xen_hypercall_hvm() Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 122/422] ACPI: property: Fix return value for nval == 0 in acpi_data_prop_read() Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 123/422] pfifo_tail_enqueue: Drop new packet when sch->limit == 0 Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 124/422] netem: Update sch->q.qlen before qdisc_tree_reduce_backlog() Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 125/422] tun: revert fix group permission check Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 126/422] net: sched: Fix truncation of offloaded action statistics Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 127/422] rxrpc: Fix call state set to not include the SERVER_SECURING state Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 128/422] cpufreq: fix using cpufreq-dt as module Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 129/422] cpufreq: s3c64xx: Fix compilation warning Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 130/422] leds: lp8860: Write full EEPROM, not only half of it Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 131/422] ALSA: hda/realtek: Enable Mute LED on HP Laptop 14s-fq1xxx Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 132/422] cifs: Remove intermediate object of failed create SFU call Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 133/422] drm/modeset: Handle tiled displays in pan_display_atomic Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 134/422] drm/client: Handle tiled displays better Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 135/422] smb: client: fix order of arguments of tracepoints Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 136/422] smb: client: change lease epoch type from unsigned int to __u16 Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 137/422] md: reintroduce md-linear Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 138/422] s390/futex: Fix FUTEX_OP_ANDN implementation Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 139/422] arm64: Filter out SVE hwcaps when FEAT_SVE isnt implemented Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 140/422] m68k: vga: Fix I/O defines Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 141/422] fs/proc: do_task_stat: Fix ESP not readable during coredump Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 142/422] binfmt_flat: Fix integer overflow bug on 32 bit systems Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 143/422] accel/ivpu: Fix Qemu crash when running in passthrough Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 144/422] arm64/kvm: Configure HYP TCR.PS/DS based on host stage1 Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 145/422] arm64/mm: Override PARange for !LPA2 and use it consistently Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 146/422] arm64/sme: Move storage of reg_smidr to __cpuinfo_store_cpu() Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 147/422] arm64/mm: Reduce PA space to 48 bits when LPA2 is not enabled Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 148/422] KVM: arm64: timer: Always evaluate the need for a soft timer Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 149/422] drm/rockchip: cdn-dp: Use drm_connector_helper_hpd_irq_event() Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.12 150/422] arm64: dts: rockchip: increase gmac rx_delay on rk3399-puma Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 151/422] remoteproc: omap: Handle ARM dma_iommu_mapping Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 152/422] KVM: Explicitly verify target vCPU is online in kvm_get_vcpu() Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 153/422] kvm: defer huge page recovery vhost task to later Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 154/422] KVM: s390: vsie: fix some corner-cases when grabbing vsie pages Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 155/422] ksmbd: fix integer overflows on 32 bit systems Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 156/422] drm/amd/display: Optimize cursor position updates Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 157/422] drm/amd/pm: Mark MM activity as unsupported Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 158/422] drm/amd/amdgpu: change the config of cgcg on gfx12 Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 159/422] drm/amdkfd: only flush the validate MES contex Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 160/422] drm/amdkfd: Block per-queue reset when halt_if_hws_hang=1 Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 161/422] Revert "drm/amd/display: Use HW lock mgr for PSR1" Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 162/422] drm/i915/guc: Debug print LRC state entries only if the context is pinned Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 163/422] drm/i915: Fix page cleanup on DMA remap failure Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 164/422] drm/komeda: Add check for komeda_get_layer_fourcc_list() Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 165/422] drm/xe/devcoredump: Move exec queue snapshot to Contexts section Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 166/422] drm/i915/dp: Iterate DSC BPP from high to low on all platforms Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 167/422] drm/i915: Drop 64bpp YUV formats from ICL+ SDR planes Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 168/422] drm/amdgpu: add a BO metadata flag to disable write compression for Vulkan Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 169/422] drm/amd/display: Fix seamless boot sequence Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 170/422] Bluetooth: L2CAP: handle NULL sock pointer in l2cap_sock_alloc Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 171/422] Bluetooth: L2CAP: accept zero as a special value for MTU auto-selection Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 172/422] KEYS: trusted: dcp: fix improper sg use with CONFIG_VMAP_STACK=y Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 173/422] clk: sunxi-ng: a100: enable MMC clock reparenting Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 174/422] clk: mmp2: call pm_genpd_init() only after genpd.name is set Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 175/422] media: i2c: ds90ub960: Fix UB9702 refclk register access Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 176/422] clk: clk-loongson2: Fix the number count of clk provider Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 177/422] clk: qcom: clk-alpha-pll: fix alpha mode configuration Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 178/422] clk: qcom: gcc-sm8550: Do not turn off PCIe GDSCs during gdsc_disable() Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 179/422] clk: qcom: gcc-sm8650: " Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 180/422] clk: qcom: gcc-sm6350: Add missing parent_map for two clocks Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 181/422] clk: qcom: dispcc-sm6350: Add missing parent_map for a clock Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 182/422] clk: qcom: gcc-mdm9607: Fix cmd_rcgr offset for blsp1_uart6 rcg Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 183/422] clk: qcom: clk-rpmh: prevent integer overflow in recalc_rate Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 184/422] clk: mediatek: mt2701-vdec: fix conversion to mtk_clk_simple_probe Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 185/422] clk: mediatek: mt2701-aud: " Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 186/422] clk: mediatek: mt2701-bdp: add missing dummy clk Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 187/422] clk: mediatek: mt2701-img: " Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 188/422] clk: mediatek: mt2701-mm: " Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 189/422] seccomp: passthrough uretprobe systemcall without filtering Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 190/422] blk-cgroup: Fix class @block_classs subsystem refcount leakage Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 191/422] efi: libstub: Use -std=gnu11 to fix build with GCC 15 Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 192/422] perf bench: Fix undefined behavior in cmpworker() Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 193/422] scsi: ufs: core: Fix the HIGH/LOW_TEMP Bit Definitions Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 194/422] of: Correct child specifier used as input of the 2nd nexus node Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 195/422] of: address: Fix empty resource handling in __of_address_resource_bounds() Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 196/422] of: Fix of_find_node_opts_by_path() handling of alias+path+options Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 197/422] of: reserved-memory: Fix using wrong number of cells to get property alignment Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 198/422] Input: bbnsm_pwrkey - add remove hook Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 199/422] HID: hid-sensor-hub: dont use stale platform-data on remove Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 200/422] ring-buffer: Do not allow events in NMI with generic atomic64 cmpxchg() Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 201/422] atomic64: Use arch_spin_locks instead of raw_spin_locks Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 202/422] wifi: rtlwifi: rtl8821ae: Fix media status report Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 203/422] wifi: brcmfmac: fix NULL pointer dereference in brcmf_txfinalize() Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 204/422] wifi: mt76: mt7921u: Add VID/PID for TP-Link TXE50UH Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 205/422] wifi: rtw88: sdio: Fix disconnection after beacon loss Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 206/422] wifi: mt76: mt7915: add module param to select 5 GHz or 6 GHz on MT7916 Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 207/422] wifi: rtw88: 8703b: Fix RX/TX issues Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 208/422] usb: gadget: f_tcm: Translate error to sense Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 209/422] usb: gadget: f_tcm: Decrement command ref count on cleanup Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.12 210/422] usb: gadget: f_tcm: ep_autoconfig with fullspeed endpoint Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 211/422] usb: gadget: f_tcm: Dont prepare BOT write request twice Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 212/422] usbnet: ipheth: fix possible overflow in DPE length check Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 213/422] usbnet: ipheth: use static NDP16 location in URB Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 214/422] usbnet: ipheth: check that DPE points past NCM header Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 215/422] usbnet: ipheth: refactor NCM datagram loop Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 216/422] usbnet: ipheth: break up NCM header size computation Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 217/422] usbnet: ipheth: fix DPE OoB read Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 218/422] usbnet: ipheth: document scope of NCM implementation Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 219/422] arm64: dts: qcom: x1e80100-asus-vivobook-s15: Fix USB QMP PHY supplies Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 220/422] arm64: dts: qcom: x1e80100-qcp: " Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 221/422] arm64: dts: qcom: x1e78100-lenovo-thinkpad-t14s: " Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 222/422] arm64: dts: qcom: x1e80100-crd: " Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 223/422] arm64: dts: qcom: x1e80100-lenovo-yoga-slim7x: " Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 224/422] arm64: dts: qcom: x1e80100-microsoft-romulus: " Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 225/422] arm64: dts: qcom: x1e80100: Fix usb_2 controller interrupts Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 226/422] ASoC: acp: Support microphone from Lenovo Go S Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 227/422] soc: qcom: socinfo: Avoid out of bounds read of serial number Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 228/422] serial: sh-sci: Drop __initdata macro for port_cfg Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 229/422] serial: sh-sci: Do not probe the serial port if its slot in sci_ports[] is in use Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 230/422] MIPS: Loongson64: remove ROM Size unit in boardinfo Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 231/422] LoongArch: Extend the maximum number of watchpoints Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 232/422] powerpc/pseries/eeh: Fix get PE state translation Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 233/422] dm-crypt: dont update io->sector after kcryptd_crypt_write_io_submit() Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 234/422] dm-crypt: track tag_offset in convert_context Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 235/422] mips/math-emu: fix emulation of the prefx instruction Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 236/422] MIPS: pci-legacy: Override pci_address_to_pio Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 237/422] Revert "MIPS: csrc-r4k: Select HAVE_UNSTABLE_SCHED_CLOCK if SMP && 64BIT" Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 238/422] block: dont revert iter for -EIOCBQUEUED Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 239/422] Revert "media: uvcvideo: Require entities to have a non-zero unique ID" Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 240/422] firmware: qcom: scm: Fix missing read barrier in qcom_scm_is_available() Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 241/422] firmware: qcom: scm: Fix missing read barrier in qcom_scm_get_tzmem_pool() Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 242/422] ALSA: hda/realtek: Enable headset mic on Positivo C6400 Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 243/422] ALSA: hda/realtek: Fix quirk matching for Legion Pro 7 Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 244/422] ALSA: hda: Fix headset detection failure due to unstable sort Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 245/422] arm64: tegra: Fix Tegra234 PCIe interrupt-map Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 246/422] s390/pci: Fix SR-IOV for PFs initially in standby Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 247/422] PCI: Avoid putting some root ports into D3 on TUXEDO Sirius Gen1 Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 248/422] PCI: endpoint: Finish virtual EP removal in pci_epf_remove_vepf() Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 249/422] PCI: dwc: ep: Write BAR_MASK before iATU registers in pci_epc_set_bar() Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 250/422] PCI: dwc: ep: Prevent changing BAR size/flags " Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 251/422] nvme-pci: Add TUXEDO InfinityFlex to Samsung sleep quirk Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 252/422] nvme-pci: Add TUXEDO IBP Gen9 " Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 253/422] KVM: x86/mmu: Ensure NX huge page recovery thread is alive before waking Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 254/422] scsi: st: Dont set pos_unknown just after device recognition Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 255/422] scsi: qla2xxx: Move FCE Trace buffer allocation to user control Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 256/422] scsi: ufs: qcom: Fix crypto key eviction Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 257/422] scsi: ufs: core: Fix use-after free in init error and remove paths Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 258/422] scsi: storvsc: Set correct data length for sending SCSI command without payload Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 259/422] scsi: core: Do not retry I/Os during depopulation Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 260/422] kbuild: Move -Wenum-enum-conversion to W=2 Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 261/422] rust: init: use explicit ABI to clean warning in future compilers Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 262/422] x86: rust: set rustc-abi=x86-softfloat on rustc>=1.86.0 Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 263/422] x86/acpi: Fix LAPIC/x2APIC parsing order Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 264/422] x86/boot: Use -std=gnu11 to fix build with GCC 15 Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 265/422] ubi: Add a check for ubi_num Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 266/422] ARM: dts: dra7: Add bus_dma_limit for l4 cfg bus Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 267/422] ARM: dts: ti/omap: gta04: fix pm issues caused by spi module Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 268/422] arm64: dts: mediatek: mt8183: Disable DPI display output by default Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 269/422] arm64: dts: qcom: sdx75: Fix MPSS memory length Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.12 270/422] arm64: dts: qcom: x1e80100: Fix ADSP memory base and length Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 271/422] arm64: dts: qcom: x1e80100: Fix CDSP memory length Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 272/422] arm64: dts: qcom: sm6115: Fix MPSS " Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 273/422] arm64: dts: qcom: sm6115: Fix CDSP " Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 274/422] arm64: dts: qcom: sm6115: Fix ADSP memory base and length Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 275/422] arm64: dts: qcom: sm6350: Fix ADSP memory length Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 276/422] arm64: dts: qcom: sm6350: Fix MPSS " Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 277/422] arm64: dts: qcom: sm6350: Fix uart1 interconnect path Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 278/422] arm64: dts: qcom: sm6375: Fix ADSP memory length Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 279/422] arm64: dts: qcom: sm6375: Fix CDSP memory base and length Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 280/422] arm64: dts: qcom: sm6375: Fix MPSS " Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 281/422] arm64: dts: qcom: sm8350: Fix ADSP " Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 282/422] arm64: dts: qcom: sm8350: Fix CDSP " Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 283/422] arm64: dts: qcom: sm8350: Fix MPSS memory length Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 284/422] arm64: dts: qcom: sm8450: Fix ADSP memory base and length Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 285/422] arm64: dts: qcom: sm8450: Fix CDSP memory length Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 286/422] arm64: dts: qcom: sm8450: Fix MPSS " Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 287/422] arm64: dts: qcom: sm8550: Fix ADSP memory base and length Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 288/422] arm64: dts: qcom: sm8550: Fix CDSP memory length Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 289/422] arm64: dts: qcom: sm8550: Fix MPSS " Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 290/422] arm64: dts: qcom: sm8650: Fix ADSP memory base and length Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 291/422] arm64: dts: qcom: sm8650: Fix CDSP memory length Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 292/422] arm64: dts: qcom: sm8650: Fix MPSS " Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 293/422] arm64: dts: qcom: sm8550: correct MDSS interconnects Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 294/422] arm64: dts: qcom: sm8650: " Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 295/422] crypto: qce - fix priority to be less than ARMv8 CE Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 296/422] arm64: tegra: Fix typo in Tegra234 dce-fabric compatible Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 297/422] arm64: tegra: Disable Tegra234 sce-fabric node Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 298/422] parisc: Temporarily disable jump label support Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 299/422] pwm: microchip-core: fix incorrect comparison with max period Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 300/422] xfs: dont call remap_verify_area with sb write protection held Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 301/422] xfs: Propagate errors from xfs_reflink_cancel_cow_range in xfs_dax_write_iomap_end Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 302/422] xfs: Add error handling for xfs_reflink_cancel_cow_range Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 303/422] accel/ivpu: Clear runtime_error after pm_runtime_resume_and_get() fails Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 304/422] ACPI: PRM: Remove unnecessary strict handler address checks Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 305/422] tpm: Change to kvalloc() in eventlog/acpi.c Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 306/422] rv: Reset per-task monitors also for idle tasks Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 307/422] hrtimers: Force migrate away hrtimers queued after CPUHP_AP_HRTIMERS_DYING Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 308/422] iommufd: Fix struct iommu_hwpt_pgfault init and padding Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 309/422] kfence: skip __GFP_THISNODE allocations on NUMA systems Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 310/422] media: ccs: Clean up parsed CCS static data on parse failure Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 311/422] mm/hugetlb: fix avoid_reserve to allow taking folio from subpool Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 312/422] iio: light: as73211: fix channel handling in only-color triggered buffer Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 313/422] iommu/tegra241-cmdqv: Read SMMU IDR1.CMDQS instead of hardcoding Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 314/422] iommufd/fault: Destroy response and mutex in iommufd_fault_destroy() Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 315/422] iommufd/fault: Use a separate spinlock to protect fault->deliver list Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 316/422] soc: samsung: exynos-pmu: Fix uninitialized ret in tensor_set_bits_atomic() Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 317/422] soc: mediatek: mtk-devapc: Fix leaking IO map on error paths Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 318/422] soc: mediatek: mtk-devapc: Fix leaking IO map on driver remove Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 319/422] soc: qcom: llcc: Enable LLCC_WRCACHE at boot on X1 Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 320/422] soc: qcom: smem_state: fix missing of_node_put in error path Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 321/422] media: mmp: Bring back registration of the device Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 322/422] media: mc: fix endpoint iteration Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 323/422] media: nuvoton: Fix an error check in npcm_video_ece_init() Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 324/422] media: imx296: Add standby delay during probe Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 325/422] media: intel/ipu6: remove cpu latency qos request on error Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 326/422] media: ov5640: fix get_light_freq on auto Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 327/422] media: stm32: dcmipp: correct dma_set_mask_and_coherent mask value Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 328/422] media: ccs: Fix CCS static data parsing for large block sizes Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 329/422] media: ccs: Fix cleanup order in ccs_probe() Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.12 330/422] media: i2c: ds90ub9x3: Fix extra fwnode_handle_put() Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 331/422] media: i2c: ds90ub960: Fix use of non-existing registers on UB9702 Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 332/422] media: i2c: ds90ub960: Fix UB9702 VC map Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 333/422] media: i2c: ds90ub960: Fix logging SP & EQ status only for UB9702 Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 334/422] media: uvcvideo: Fix crash during unbind if gpio unit is in use Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 335/422] media: uvcvideo: Fix event flags in uvc_ctrl_send_events Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 336/422] media: uvcvideo: Support partial control reads Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 337/422] media: uvcvideo: Only save async fh if success Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 338/422] media: uvcvideo: Remove redundant NULL assignment Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 339/422] media: uvcvideo: Remove dangling pointers Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 340/422] mm: kmemleak: fix upper boundary check for physical address objects Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 341/422] mm: gup: fix infinite loop within __get_longterm_locked Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 342/422] mm/vmscan: accumulate nr_demoted for accurate demotion statistics Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 343/422] mm/hugetlb: fix hugepage allocation for interleaved memory nodes Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 344/422] mm/compaction: fix UBSAN shift-out-of-bounds warning Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 345/422] ata: libata-core: Add ATA_QUIRK_NOLPM for Samsung SSD 870 QVO drives Greg Kroah-Hartman
2025-02-14 5:54 ` Daniel Baumann
2025-02-14 7:52 ` Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 346/422] ata: libata-sff: Ensure that we cannot write outside the allocated buffer Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 347/422] irqchip/irq-mvebu-icu: Fix access to msi_data from irq_domain::host_data Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 348/422] crypto: qce - fix goto jump in error path Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 349/422] crypto: qce - unregister previously registered algos " Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 350/422] ceph: fix memory leak in ceph_mds_auth_match() Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 351/422] nvmem: qcom-spmi-sdam: Set size in struct nvmem_config Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 352/422] nvmem: core: improve range check for nvmem_cell_write() Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 353/422] nvmem: imx-ocotp-ele: simplify read beyond device check Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 354/422] nvmem: imx-ocotp-ele: fix MAC address byte order Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 355/422] nvmem: imx-ocotp-ele: fix reading from non zero offset Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 356/422] nvmem: imx-ocotp-ele: set word length to 1 Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 357/422] io_uring: fix multishots with selected buffers Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 358/422] io_uring/net: dont retry connect operation on EPOLLERR Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 359/422] vfio/platform: check the bounds of read/write syscalls Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 360/422] selftests: mptcp: connect: -f: no reconnect Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 361/422] pnfs/flexfiles: retry getting layout segment for reads Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 362/422] ocfs2: fix incorrect CPU endianness conversion causing mount failure Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 363/422] ocfs2: handle a symlink read error correctly Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 364/422] nilfs2: fix possible int overflows in nilfs_fiemap() Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 365/422] nfs: Make NFS_FSCACHE select NETFS_SUPPORT instead of depending on it Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 366/422] NFSD: Encode COMPOUND operation status on page boundaries Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 367/422] mailbox: tegra-hsp: Clear mailbox before using message Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 368/422] mailbox: zynqmp: Remove invalid __percpu annotation in zynqmp_ipi_probe() Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 369/422] NFC: nci: Add bounds checking in nci_hci_create_pipe() Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 370/422] fgraph: Fix set_graph_notrace with setting TRACE_GRAPH_NOTRACE_BIT Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 371/422] i3c: master: Fix missing ret assignment in set_speed() Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 372/422] irqchip/apple-aic: Only handle PMC interrupt as FIQ when configured so Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 373/422] mtd: onenand: Fix uninitialized retlen in do_otp_read() Greg Kroah-Hartman
2025-02-13 14:28 ` Greg Kroah-Hartman [this message]
2025-02-13 14:28 ` [PATCH 6.12 375/422] misc: fastrpc: Deregister device nodes properly in error scenarios Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 376/422] misc: fastrpc: Fix registered buffer page address Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 377/422] misc: fastrpc: Fix copy buffer page size Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 378/422] net/ncsi: wait for the last response to Deselect Package before configuring channel Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 379/422] net: phy: c45-tjaxx: add delay between MDIO write and read in soft_reset Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 380/422] maple_tree: simplify split calculation Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 381/422] scripts/gdb: fix aarch64 userspace detection in get_current_task Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 382/422] tracing/osnoise: Fix resetting of tracepoints Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 383/422] rtla/osnoise: Distinguish missing workload option Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 384/422] rtla/timerlat_hist: Set OSNOISE_WORKLOAD for kernel threads Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 385/422] rtla/timerlat_top: " Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 386/422] rtla: Add trace_instance_stop Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 387/422] rtla/timerlat_hist: Stop timerlat tracer on signal Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 388/422] rtla/timerlat_top: " Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 389/422] pinctrl: samsung: fix fwnode refcount cleanup if platform_get_irq_optional() fails Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.12 390/422] pinctrl: renesas: rzg2l: Fix PFC_MASK for RZ/V2H and RZ/G3E Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 391/422] ptp: Ensure info->enable callback is always set Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 392/422] RDMA/mlx5: Fix a race for an ODP MR which leads to CQE with error Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 393/422] rtc: zynqmp: Fix optional clock name property Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 394/422] timers/migration: Fix off-by-one root mis-connection Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 395/422] s390/fpu: Add fpc exception handler / remove fixup section again Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 396/422] MIPS: ftrace: Declare ftrace_get_parent_ra_addr() as static Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 397/422] xfs: avoid nested calls to __xfs_trans_commit Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 398/422] xfs: dont lose solo superblock counter update transactions Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 399/422] xfs: dont lose solo dquot " Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 400/422] xfs: separate dquot buffer reads from xfs_dqflush Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 401/422] xfs: clean up log item accesses in xfs_qm_dqflush{,_done} Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 402/422] xfs: attach dquot buffer to dquot log item buffer Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 403/422] xfs: convert quotacheck to attach dquot buffers Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 404/422] xfs: release the dquot buf outside of qli_lock Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 405/422] xfs: lock dquot buffer before detaching dquot from b_li_list Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 406/422] xfs: fix mount hang during primary superblock recovery failure Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 407/422] spi: atmel-quadspi: Create `atmel_qspi_ops` to support newer SoC families Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 408/422] spi: atmel-qspi: Memory barriers after memory-mapped I/O Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 409/422] Revert "btrfs: avoid monopolizing a core when activating a swap file" Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 410/422] btrfs: avoid monopolizing a core when activating a swap file Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 411/422] mptcp: prevent excessive coalescing on receive Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 412/422] x86/mm: Convert unreachable() to BUG() Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 413/422] md/md-linear: Fix a NULL vs IS_ERR() bug in linear_add() Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 414/422] md: Fix linear_set_limits() Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 415/422] [PATCH 6.12] Revert "selftests/sched_ext: fix build after renames in sched_ext API" Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 416/422] Revert "drm/amd/display: Fix green screen issue after suspend" Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 417/422] drm/xe: Fix and re-enable xe_print_blob_ascii85() Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 418/422] fs: prepend statmount.mnt_opts string with security_sb_mnt_opts() Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 419/422] fs: fix adding security options to statmount.mnt_opt Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 420/422] statmount: let unset strings be empty Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 421/422] arm64: dts: rockchip: add reset-names for combphy on rk3568 Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.12 422/422] ocfs2: check dir i_size in ocfs2_find_entry Greg Kroah-Hartman
2025-02-13 18:43 ` [PATCH 6.12 000/422] 6.12.14-rc1 review SeongJae Park
2025-02-13 19:47 ` Florian Fainelli
2025-02-13 23:59 ` Mark Brown
2025-02-14 0:57 ` [PATCH 6.12 000/583] " Hardik Garg
2025-02-14 1:55 ` [PATCH 6.12 000/422] " Peter Schneider
2025-02-14 6:16 ` Ron Economos
2025-02-14 7:53 ` Harshit Mogalapalli
2025-02-14 8:20 ` Greg Kroah-Hartman
2025-02-14 9:54 ` Harshit Mogalapalli
2025-02-14 13:36 ` Greg Kroah-Hartman
2025-02-14 8:46 ` Naresh Kamboju
2025-02-14 12:29 ` Naresh Kamboju
2025-02-14 13:36 ` Greg Kroah-Hartman
2025-02-14 9:45 ` Jon Hunter
2025-02-14 9:46 ` Jon Hunter
2025-02-14 15:33 ` Justin Forbes
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=20250213142450.979943955@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=dirk.vandermerwe@sophos.com \
--cc=patches@lists.linux.dev \
--cc=stable@vger.kernel.org \
--cc=vimal.agrawal@sophos.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).