From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Sean Anderson <sean.anderson@linux.dev>,
Bjorn Helgaas <bhelgaas@google.com>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 4.19 122/350] PCI: xilinx-nwl: Fix off-by-one in INTx IRQ handler
Date: Wed, 6 Nov 2024 13:00:50 +0100 [thread overview]
Message-ID: <20241106120323.921672985@linuxfoundation.org> (raw)
In-Reply-To: <20241106120320.865793091@linuxfoundation.org>
4.19-stable review patch. If anyone has any objections, please let me know.
------------------
From: Sean Anderson <sean.anderson@linux.dev>
[ Upstream commit 0199d2f2bd8cd97b310f7ed82a067247d7456029 ]
MSGF_LEG_MASK is laid out with INTA in bit 0, INTB in bit 1, INTC in bit 2,
and INTD in bit 3. Hardware IRQ numbers start at 0, and we register
PCI_NUM_INTX IRQs. So to enable INTA (aka hwirq 0) we should set bit 0.
Remove the subtraction of one.
This bug would cause INTx interrupts not to be delivered, as enabling INTB
would actually enable INTA, and enabling INTA wouldn't enable anything at
all. It is likely that this got overlooked for so long since most PCIe
hardware uses MSIs. This fixes the following UBSAN error:
UBSAN: shift-out-of-bounds in ../drivers/pci/controller/pcie-xilinx-nwl.c:389:11
shift exponent 18446744073709551615 is too large for 32-bit type 'int'
CPU: 1 PID: 61 Comm: kworker/u10:1 Not tainted 6.6.20+ #268
Hardware name: xlnx,zynqmp (DT)
Workqueue: events_unbound deferred_probe_work_func
Call trace:
dump_backtrace (arch/arm64/kernel/stacktrace.c:235)
show_stack (arch/arm64/kernel/stacktrace.c:242)
dump_stack_lvl (lib/dump_stack.c:107)
dump_stack (lib/dump_stack.c:114)
__ubsan_handle_shift_out_of_bounds (lib/ubsan.c:218 lib/ubsan.c:387)
nwl_unmask_leg_irq (drivers/pci/controller/pcie-xilinx-nwl.c:389 (discriminator 1))
irq_enable (kernel/irq/internals.h:234 kernel/irq/chip.c:170 kernel/irq/chip.c:439 kernel/irq/chip.c:432 kernel/irq/chip.c:345)
__irq_startup (kernel/irq/internals.h:239 kernel/irq/chip.c:180 kernel/irq/chip.c:250)
irq_startup (kernel/irq/chip.c:270)
__setup_irq (kernel/irq/manage.c:1800)
request_threaded_irq (kernel/irq/manage.c:2206)
pcie_pme_probe (include/linux/interrupt.h:168 drivers/pci/pcie/pme.c:348)
Fixes: 9a181e1093af ("PCI: xilinx-nwl: Modify IRQ chip for legacy interrupts")
Link: https://lore.kernel.org/r/20240531161337.864994-3-sean.anderson@linux.dev
Signed-off-by: Sean Anderson <sean.anderson@linux.dev>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Cc: stable@vger.kernel.org
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
drivers/pci/controller/pcie-xilinx-nwl.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/pci/controller/pcie-xilinx-nwl.c b/drivers/pci/controller/pcie-xilinx-nwl.c
index 79d72ec8f5c36..9fde526045ec0 100644
--- a/drivers/pci/controller/pcie-xilinx-nwl.c
+++ b/drivers/pci/controller/pcie-xilinx-nwl.c
@@ -389,7 +389,7 @@ static void nwl_mask_leg_irq(struct irq_data *data)
u32 mask;
u32 val;
- mask = 1 << (data->hwirq - 1);
+ mask = 1 << data->hwirq;
raw_spin_lock_irqsave(&pcie->leg_mask_lock, flags);
val = nwl_bridge_readl(pcie, MSGF_LEG_MASK);
nwl_bridge_writel(pcie, (val & (~mask)), MSGF_LEG_MASK);
@@ -403,7 +403,7 @@ static void nwl_unmask_leg_irq(struct irq_data *data)
u32 mask;
u32 val;
- mask = 1 << (data->hwirq - 1);
+ mask = 1 << data->hwirq;
raw_spin_lock_irqsave(&pcie->leg_mask_lock, flags);
val = nwl_bridge_readl(pcie, MSGF_LEG_MASK);
nwl_bridge_writel(pcie, (val | mask), MSGF_LEG_MASK);
--
2.43.0
next prev parent reply other threads:[~2024-11-06 12:12 UTC|newest]
Thread overview: 614+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-06 11:58 [PATCH 4.19 000/350] 4.19.323-rc1 review Greg Kroah-Hartman
2024-11-06 11:58 ` [PATCH 4.19 001/350] staging: iio: frequency: ad9833: Get frequency value statically Greg Kroah-Hartman
2024-11-06 11:58 ` [PATCH 4.19 002/350] staging: iio: frequency: ad9833: Load clock using clock framework Greg Kroah-Hartman
2024-11-06 11:58 ` [PATCH 4.19 003/350] staging: iio: frequency: ad9834: Validate frequency parameter value Greg Kroah-Hartman
2024-11-06 11:58 ` [PATCH 4.19 004/350] usbnet: ipheth: fix carrier detection in modes 1 and 4 Greg Kroah-Hartman
2024-11-06 11:58 ` [PATCH 4.19 005/350] net: ethernet: use ip_hdrlen() instead of bit shift Greg Kroah-Hartman
2024-11-06 11:58 ` [PATCH 4.19 006/350] net: phy: vitesse: repair vsc73xx autonegotiation Greg Kroah-Hartman
2024-11-06 11:58 ` [PATCH 4.19 007/350] scripts: kconfig: merge_config: config files: add a trailing newline Greg Kroah-Hartman
2024-11-06 11:58 ` [PATCH 4.19 008/350] arm64: dts: rockchip: override BIOS_DISABLE signal via GPIO hog on RK3399 Puma Greg Kroah-Hartman
2024-11-06 11:58 ` [PATCH 4.19 009/350] net/mlx5: Update the list of the PCI supported devices Greg Kroah-Hartman
2024-11-06 11:58 ` [PATCH 4.19 010/350] net: ftgmac100: Enable TX interrupt to avoid TX timeout Greg Kroah-Hartman
2024-11-06 11:58 ` [PATCH 4.19 011/350] net: dpaa: Pad packets to ETH_ZLEN Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 012/350] soundwire: stream: Revert "soundwire: stream: fix programming slave ports for non-continous port maps" Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 013/350] selftests/vm: remove call to ksft_set_plan() Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 014/350] selftests/kcmp: " Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 015/350] ASoC: allow module autoloading for table db1200_pids Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 016/350] pinctrl: at91: make it work with current gpiolib Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 017/350] microblaze: dont treat zero reserved memory regions as error Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 018/350] net: ftgmac100: Ensure tx descriptor updates are visible Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 019/350] wifi: iwlwifi: mvm: fix iwl_mvm_max_scan_ie_fw_cmd_room() Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 020/350] wifi: iwlwifi: mvm: dont wait for tx queues if firmware is dead Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 021/350] ASoC: tda7419: fix module autoloading Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 022/350] spi: bcm63xx: Enable " Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 023/350] x86/hyperv: Set X86_FEATURE_TSC_KNOWN_FREQ when Hyper-V provides frequency Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 024/350] ocfs2: add bounds checking to ocfs2_xattr_find_entry() Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 025/350] ocfs2: strict bound check before memcmp in ocfs2_xattr_find_entry() Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 026/350] gpio: prevent potential speculation leaks in gpio_device_get_desc() Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 027/350] USB: serial: pl2303: add device id for Macrosilicon MS3020 Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 028/350] ACPI: PMIC: Remove unneeded check in tps68470_pmic_opregion_probe() Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 029/350] wifi: ath9k: fix parameter check in ath9k_init_debug() Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 030/350] wifi: ath9k: Remove error checks when creating debugfs entries Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 031/350] netfilter: nf_tables: elements with timeout below CONFIG_HZ never expire Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 032/350] wifi: cfg80211: fix UBSAN noise in cfg80211_wext_siwscan() Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 033/350] wifi: cfg80211: fix two more possible UBSAN-detected off-by-one errors Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 034/350] wifi: mac80211: use two-phase skb reclamation in ieee80211_do_stop() Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 035/350] can: bcm: Clear bo->bcm_proc_read after remove_proc_entry() Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 036/350] Bluetooth: btusb: Fix not handling ZPL/short-transfer Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 037/350] block, bfq: fix possible UAF for bfqq->bic with merge chain Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 105/245] ALSA: usb-audio: Add quirks for Dell WD19 dock Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 038/350] block, bfq: choose the last bfqq from merge chain in bfq_setup_cooperator() Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 039/350] block, bfq: dont break merge chain in bfq_split_bfqq() Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 040/350] spi: ppc4xx: handle irq_of_parse_and_map() errors Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 041/350] spi: ppc4xx: Avoid returning 0 when failed to parse and map IRQ Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 042/350] ARM: versatile: fix OF node leak in CPUs prepare Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 043/350] reset: berlin: fix OF node leak in probe() error path Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 044/350] clocksource/drivers/qcom: Add missing iounmap() on errors in msm_dt_timer_init() Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 045/350] hwmon: (max16065) Fix overflows seen when writing limits Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 046/350] mtd: slram: insert break after errors in parsing the map Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 047/350] hwmon: (ntc_thermistor) fix module autoloading Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 048/350] power: supply: max17042_battery: Fix SOC threshold calc w/ no current sense Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 049/350] fbdev: hpfb: Fix an error handling path in hpfb_dio_probe() Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 050/350] drm/stm: Fix an error handling path in stm_drm_platform_probe() Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 051/350] drm/amd: fix typo Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 052/350] drm/amdgpu: Replace one-element array with flexible-array member Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 053/350] drm/amdgpu: properly handle vbios fake edid sizing Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 054/350] drm/radeon: Replace one-element array with flexible-array member Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 055/350] drm/radeon: properly handle vbios fake edid sizing Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 056/350] drm/rockchip: vop: Allow 4096px width scaling Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 057/350] drm/radeon/evergreen_cs: fix int overflow errors in cs track offsets Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 058/350] jfs: fix out-of-bounds in dbNextAG() and diAlloc() Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 059/350] drm/msm/a5xx: properly clear preemption records on resume Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 060/350] drm/msm/a5xx: fix races in preemption evaluation stage Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 061/350] ipmi: docs: dont advertise deprecated sysfs entries Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 062/350] drm/msm: fix %s null argument error Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 063/350] xen: use correct end address of kernel for conflict checking Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 064/350] xen/swiotlb: simplify range_straddles_page_boundary() Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 065/350] xen/swiotlb: add alignment check for dma buffers Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 066/350] selftests/bpf: Fix error compiling test_lru_map.c Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 067/350] xz: cleanup CRC32 edits from 2018 Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 068/350] kthread: add kthread_work tracepoints Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 069/350] kthread: fix task state in kthread worker if being frozen Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 070/350] jbd2: introduce/export functions jbd2_journal_submit|finish_inode_data_buffers() Greg Kroah-Hartman
2024-11-06 11:59 ` [PATCH 4.19 071/350] ext4: clear EXT4_GROUP_INFO_WAS_TRIMMED_BIT even mount with discard Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 072/350] smackfs: Use rcu_assign_pointer() to ensure safe assignment in smk_set_cipso Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 073/350] ext4: avoid negative min_clusters in find_group_orlov() Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 074/350] ext4: return error on ext4_find_inline_entry Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 075/350] ext4: avoid OOB when system.data xattr changes underneath the filesystem Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 076/350] nilfs2: fix potential null-ptr-deref in nilfs_btree_insert() Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 077/350] nilfs2: determine empty node blocks as corrupted Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 078/350] nilfs2: fix potential oob read in nilfs_btree_check_delete() Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 079/350] perf sched timehist: Fix missing free of session in perf_sched__timehist() Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 080/350] perf sched timehist: Fixed timestamp error when unable to confirm event sched_in time Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 081/350] perf time-utils: Fix 32-bit nsec parsing Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 082/350] clk: rockchip: Set parent rate for DCLK_VOP clock on RK3228 Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 083/350] drivers: media: dvb-frontends/rtl2832: fix an out-of-bounds write error Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 084/350] drivers: media: dvb-frontends/rtl2830: " Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 085/350] PCI: xilinx-nwl: Fix register misspelling Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 086/350] RDMA/iwcm: Fix WARNING:at_kernel/workqueue.c:#check_flush_dependency Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 087/350] pinctrl: single: fix missing error code in pcs_probe() Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 088/350] clk: ti: dra7-atl: Fix leak of of_nodes Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 089/350] pinctrl: mvebu: Use devm_platform_get_and_ioremap_resource() Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 090/350] pinctrl: mvebu: Fix devinit_dove_pinctrl_probe function Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 091/350] RDMA/cxgb4: Added NULL check for lookup_atid Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 092/350] ntb: intel: Fix the NULL vs IS_ERR() bug for debugfs_create_dir() Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 093/350] nfsd: call cache_put if xdr_reserve_space returns NULL Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 094/350] f2fs: enhance to update i_mode and acl atomically in f2fs_setattr() Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 095/350] f2fs: fix typo Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 096/350] f2fs: fix to update i_ctime in __f2fs_setxattr() Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 097/350] f2fs: remove unneeded check condition " Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 098/350] f2fs: reduce expensive checkpoint trigger frequency Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 099/350] coresight: tmc: sg: Do not leak sg_table Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 100/350] netfilter: nf_reject_ipv6: fix nf_reject_ip6_tcphdr_put() Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 101/350] net: seeq: Fix use after free vulnerability in ether3 Driver Due to Race Condition Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 102/350] tcp: introduce tcp_skb_timestamp_us() helper Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 103/350] tcp: check skb is non-NULL in tcp_rto_delta_us() Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 104/350] net: qrtr: Update packets cloning when broadcasting Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 105/350] netfilter: ctnetlink: compile ctnetlink_label_size with CONFIG_NF_CONNTRACK_EVENTS Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 106/350] crypto: aead,cipher - zeroize key buffer after use Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 174/245] fork: do not invoke uffd on fork if error occurs Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 107/350] Remove *.orig pattern from .gitignore Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 108/350] soc: versatile: integrator: fix OF node leak in probe() error path Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 109/350] USB: appledisplay: close race between probe and completion handler Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 110/350] USB: misc: cypress_cy7c63: check for short transfer Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 111/350] firmware_loader: Block path traversal Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 112/350] tty: rp2: Fix reset with non forgiving PCIe host bridges Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 113/350] drbd: Fix atomicity violation in drbd_uuid_set_bm() Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 114/350] drbd: Add NULL check for net_conf to prevent dereference in state validation Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 115/350] ACPI: sysfs: validate return type of _STR method Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 116/350] f2fs: prevent possible int overflow in dir_block_index() Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 117/350] f2fs: avoid potential int overflow in sanity_check_area_boundary() Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 118/350] vfs: fix race between evice_inodes() and find_inode()&iput() Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 119/350] fs: Fix file_set_fowner LSM hook inconsistencies Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 120/350] nfs: fix memory leak in error path of nfs4_do_reclaim Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 121/350] PCI: xilinx-nwl: Use irq_data_get_irq_chip_data() Greg Kroah-Hartman
2024-11-06 12:00 ` Greg Kroah-Hartman [this message]
2024-11-06 12:00 ` [PATCH 4.19 123/350] soc: versatile: realview: fix memory leak during device remove Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 124/350] soc: versatile: realview: fix soc_dev " Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 125/350] usb: yurex: Replace snprintf() with the safer scnprintf() variant Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 126/350] USB: misc: yurex: fix race between read and write Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 127/350] pps: remove usage of the deprecated ida_simple_xx() API Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 128/350] pps: add an error check in parport_attach Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 129/350] i2c: aspeed: Update the stop sw state when the bus recovery occurs Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 130/350] i2c: isch: Add missed else Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 4.19 131/350] usb: yurex: Fix inconsistent locking bug in yurex_read() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 132/350] mailbox: rockchip: fix a typo in module autoloading Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 133/350] mailbox: bcm2835: Fix timeout during suspend mode Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 134/350] ceph: remove the incorrect Fw reference check when dirtying pages Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 135/350] netfilter: uapi: NFTA_FLOWTABLE_HOOK is NLA_NESTED Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 136/350] netfilter: nf_tables: prevent nf_skb_duplicated corruption Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 137/350] r8152: Factor out OOB link list waits Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 138/350] net: ethernet: lantiq_etop: fix memory disclosure Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 139/350] net: avoid potential underflow in qdisc_pkt_len_init() with UFO Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 140/350] net: add more sanity checks to qdisc_pkt_len_init() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 141/350] ipv4: ip_gre: Fix drops of small packets in ipgre_xmit Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 142/350] sctp: set sk_state back to CLOSED if autobind fails in sctp_listen_start Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 143/350] ALSA: hda/generic: Unconditionally prefer preferred_dacs pairs Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 144/350] ALSA: hda/conexant: Fix conflicting quirk for System76 Pangolin Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 145/350] f2fs: Require FMODE_WRITE for atomic write ioctls Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 146/350] wifi: ath9k: fix possible integer overflow in ath9k_get_et_stats() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 147/350] wifi: ath9k_htc: Use __skb_set_length() for resetting urb before resubmit Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 148/350] net: hisilicon: hip04: fix OF node leak in probe() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 149/350] net: hisilicon: hns_dsaf_mac: fix OF node leak in hns_mac_get_info() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 150/350] net: hisilicon: hns_mdio: fix OF node leak in probe() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 151/350] ACPICA: Fix memory leak if acpi_ps_get_next_namepath() fails Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 152/350] ACPICA: Fix memory leak if acpi_ps_get_next_field() fails Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 153/350] ACPI: EC: Do not release locks during operation region accesses Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 154/350] ACPICA: check null return of ACPI_ALLOCATE_ZEROED() in acpi_db_convert_to_package() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 155/350] tipc: guard against string buffer overrun Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 156/350] net: mvpp2: Increase size of queue_name buffer Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 157/350] ipv4: Check !in_dev earlier for ioctl(SIOCSIFADDR) Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 158/350] ipv4: Mask upper DSCP bits and ECN bits in NETLINK_FIB_LOOKUP family Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 159/350] tcp: avoid reusing FIN_WAIT2 when trying to find port in connect() process Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 160/350] ACPICA: iasl: handle empty connection_node Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 161/350] wifi: mwifiex: Fix memcpy() field-spanning write warning in mwifiex_cmd_802_11_scan_ext() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 162/350] signal: Replace BUG_ON()s Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 163/350] ALSA: asihpi: Fix potential OOB array access Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 164/350] ALSA: hdsp: Break infinite MIDI input flush loop Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 165/350] fbdev: pxafb: Fix possible use after free in pxafb_task() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 166/350] power: reset: brcmstb: Do not go into infinite loop if reset fails Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 167/350] ata: sata_sil: Rename sil_blacklist to sil_quirks Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 168/350] jfs: UBSAN: shift-out-of-bounds in dbFindBits Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 169/350] jfs: Fix uaf in dbFreeBits Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 170/350] jfs: check if leafidx greater than num leaves per dmap tree Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 171/350] jfs: Fix uninit-value access of new_ea in ea_buffer Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 172/350] drm/amd/display: Check stream before comparing them Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 173/350] drm/amd/display: Fix index out of bounds in degamma hardware format translation Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 174/350] drm/printer: Allow NULL data in devcoredump printer Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 175/350] scsi: aacraid: Rearrange order of struct aac_srb_unit Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 176/350] drm/radeon/r100: Handle unknown family in r100_cp_init_microcode() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 177/350] of/irq: Refer to actual buffer size in of_irq_parse_one() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 178/350] ext4: ext4_search_dir should return a proper error Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 179/350] ext4: fix i_data_sem unlock order in ext4_ind_migrate() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 180/350] spi: s3c64xx: fix timeout counters in flush_fifo Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 181/350] selftests: breakpoints: use remaining time to check if suspend succeed Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 182/350] selftests: vDSO: fix vDSO symbols lookup for powerpc64 Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 183/350] i2c: xiic: Wait for TX empty to avoid missed TX NAKs Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 184/350] spi: bcm63xx: Fix module autoloading Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 185/350] perf/core: Fix small negative period being ignored Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 186/350] parisc: Fix itlb miss handler for 64-bit programs Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 187/350] ALSA: core: add isascii() check to card ID generator Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 188/350] ext4: no need to continue when the number of entries is 1 Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 189/350] ext4: propagate errors from ext4_find_extent() in ext4_insert_range() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 190/350] ext4: fix incorrect tid assumption in __jbd2_log_wait_for_space() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 4.19 191/350] ext4: aovid use-after-free in ext4_ext_insert_extent() Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 192/350] ext4: fix double brelse() the buffer of the extents path Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 193/350] ext4: fix incorrect tid assumption in ext4_wait_for_tail_page_commit() Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 194/350] parisc: Fix 64-bit userspace syscall path Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 195/350] of/irq: Support #msi-cells=<0> in of_msi_get_domain Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 196/350] jbd2: stop waiting for space when jbd2_cleanup_journal_tail() returns error Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 197/350] ocfs2: fix the la space leak when unmounting an ocfs2 volume Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 198/350] ocfs2: fix uninit-value in ocfs2_get_block() Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 199/350] ocfs2: reserve space for inline xattr before attaching reflink tree Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 200/350] ocfs2: cancel dqi_sync_work before freeing oinfo Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 201/350] ocfs2: remove unreasonable unlock in ocfs2_read_blocks Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 202/350] ocfs2: fix null-ptr-deref when journal load failed Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 203/350] ocfs2: fix possible null-ptr-deref in ocfs2_set_buffer_uptodate Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 204/350] riscv: define ILLEGAL_POINTER_VALUE for 64bit Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 205/350] aoe: fix the potential use-after-free problem in more places Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 206/350] clk: rockchip: fix error for unknown clocks Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 207/350] media: uapi/linux/cec.h: cec_msg_set_reply_to: zero flags Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 208/350] media: venus: fix use after free bug in venus_remove due to race condition Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 209/350] iio: magnetometer: ak8975: Fix reading for ak099xx sensors Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 210/350] tomoyo: fallback to realpath if symlinks pathname does not exist Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 211/350] Input: adp5589-keys - fix adp5589_gpio_get_value() Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 212/350] btrfs: wait for fixup workers before stopping cleaner kthread during umount Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 213/350] gpio: davinci: fix lazy disable Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 214/350] ext4: avoid ext4_error()s caused by ENOMEM in the truncate path Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 215/350] ext4: fix slab-use-after-free in ext4_split_extent_at() Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 216/350] ext4: update orig_path in ext4_find_extent() Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 217/350] arm64: Add Cortex-715 CPU part definition Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 218/350] arm64: cputype: Add Neoverse-N3 definitions Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 219/350] arm64: errata: Expand speculative SSBS workaround once more Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 220/350] uprobes: fix kernel info leak via "[uprobes]" vma Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 221/350] nfsd: use ktime_get_seconds() for timestamps Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 222/350] nfsd: fix delegation_blocked() to block correctly for at least 30 seconds Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 223/350] rtc: at91sam9: drop platform_data support Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 224/350] rtc: at91sam9: fix OF node leak in probe() error path Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 225/350] ACPI: battery: Simplify battery hook locking Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 226/350] ACPI: battery: Fix possible crash when unregistering a battery hook Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 227/350] ext4: fix inode tree inconsistency caused by ENOMEM Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 228/350] net: ethernet: cortina: Drop TSO support Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 229/350] tracing: Remove precision vsnprintf() check from print event Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 230/350] drm: Move drm_mode_setcrtc() local re-init to failure path Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 231/350] drm/crtc: fix uninitialized variable use even harder Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 232/350] virtio_console: fix misc probe bugs Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 233/350] Input: synaptics-rmi4 - fix UAF of IRQ domain on driver removal Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 234/350] bpf: Check percpu map value size first Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 235/350] s390/facility: Disable compile time optimization for decompressor code Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 236/350] s390/mm: Add cond_resched() to cmm_alloc/free_pages() Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 237/350] ext4: nested locking for xattr inode Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 238/350] s390/cpum_sf: Remove WARN_ON_ONCE statements Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 239/350] ktest.pl: Avoid false positives with grub2 skip regex Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 240/350] clk: bcm: bcm53573: fix OF node leak in init Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 241/350] i2c: i801: Use a different adapter-name for IDF adapters Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 242/350] PCI: Mark Creative Labs EMU20k2 INTx masking as broken Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 243/350] media: videobuf2-core: clear memory related fields in __vb2_plane_dmabuf_put() Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 244/350] usb: chipidea: udc: enable suspend interrupt after usb reset Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 245/350] tools/iio: Add memory allocation failure check for trigger_name Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 246/350] driver core: bus: Return -EIO instead of 0 when show/store invalid bus attribute Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 247/350] fbdev: sisfb: Fix strbuf array overflow Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 248/350] NFS: Remove print_overflow_msg() Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 249/350] SUNRPC: Fix integer overflow in decode_rc_list() Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 250/350] tcp: fix tcp_enter_recovery() to zero retrans_stamp when its safe Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 4.19 251/350] netfilter: br_netfilter: fix panic with metadata_dst skb Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 252/350] Bluetooth: RFCOMM: FIX possible deadlock in rfcomm_sk_state_change Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 253/350] gpio: aspeed: Add the flush write to ensure the write complete Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 254/350] clk: Add (devm_)clk_get_optional() functions Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 255/350] clk: generalize devm_clk_get() a bit Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 256/350] clk: Provide new devm_clk helpers for prepared and enabled clocks Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 257/350] gpio: aspeed: Use devm_clk api to manage clock source Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 258/350] igb: Do not bring the device up after non-fatal error Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 259/350] net: ibm: emac: mal: fix wrong goto Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 260/350] ppp: fix ppp_async_encode() illegal access Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 261/350] net: ipv6: ensure we call ipv6_mc_down() at most once Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 262/350] CDC-NCM: avoid overflow in sanity checking Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 263/350] HID: plantronics: Workaround for an unexcepted opposite volume key Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 264/350] Revert "usb: yurex: Replace snprintf() with the safer scnprintf() variant" Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 265/350] usb: xhci: Fix problem with xhci resume from suspend Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 266/350] usb: storage: ignore bogus device raised by JieLi BR21 USB sound chip Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 267/350] net: Fix an unsafe loop on the list Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 268/350] posix-clock: Fix missing timespec64 check in pc_clock_settime() Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 269/350] arm64: probes: Remove broken LDR (literal) uprobe support Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 270/350] arm64: probes: Fix simulate_ldr*_literal() Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 271/350] PCI: Add function 0 DMA alias quirk for Glenfly Arise chip Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 272/350] fat: fix uninitialized variable Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 273/350] KVM: Fix a data race on last_boosted_vcpu in kvm_vcpu_on_spin() Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 274/350] net: dsa: mv88e6xxx: Fix out-of-bound access Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 275/350] s390/sclp_vt220: Convert newlines to CRLF instead of LFCR Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 276/350] KVM: s390: Change virtual to physical address access in diag 0x258 handler Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 277/350] x86/cpufeatures: Define X86_FEATURE_AMD_IBPB_RET Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 278/350] drm/vmwgfx: Handle surface check failure correctly Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 279/350] iio: dac: stm32-dac-core: add missing select REGMAP_MMIO in Kconfig Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 280/350] iio: adc: ti-ads8688: add missing select IIO_(TRIGGERED_)BUFFER " Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 281/350] iio: hid-sensors: Fix an error handling path in _hid_sensor_set_report_latency() Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 282/350] iio: light: opt3001: add missing full-scale range value Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 283/350] Bluetooth: Remove debugfs directory on module init failure Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 284/350] Bluetooth: btusb: Fix regression with fake CSR controllers 0a12:0001 Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 285/350] xhci: Fix incorrect stream context type macro Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 286/350] USB: serial: option: add support for Quectel EG916Q-GL Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 287/350] USB: serial: option: add Telit FN920C04 MBIM compositions Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 288/350] parport: Proper fix for array out-of-bounds access Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 289/350] x86/apic: Always explicitly disarm TSC-deadline timer Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 290/350] nilfs2: propagate directory read errors from nilfs_find_entry() Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 291/350] clk: Fix pointer casting to prevent oops in devm_clk_release() Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 292/350] clk: Fix slab-out-of-bounds error " Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 293/350] RDMA/bnxt_re: Fix incorrect AVID type in WQE structure Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 294/350] RDMA/cxgb4: Fix RDMA_CM_EVENT_UNREACHABLE error for iWARP Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 295/350] RDMA/bnxt_re: Return more meaningful error Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 296/350] drm/msm/dsi: fix 32-bit signed integer extension in pclk_rate calculation Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 297/350] macsec: dont increment counters for an unrelated SA Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 298/350] net: ethernet: aeroflex: fix potential memory leak in greth_start_xmit_gbit() Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 299/350] net: systemport: fix potential memory leak in bcm_sysport_xmit() Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 300/350] usb: typec: altmode should keep reference to parent Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 301/350] Bluetooth: bnep: fix wild-memory-access in proto_unregister Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 302/350] arm64:uprobe fix the uprobe SWBP_INSN in big-endian Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 303/350] arm64: probes: Fix uprobes for big-endian kernels Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 304/350] KVM: s390: gaccess: Refactor gpa and length calculation Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 305/350] KVM: s390: gaccess: Refactor access address range check Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 306/350] KVM: s390: gaccess: Cleanup access to guest pages Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 307/350] KVM: s390: gaccess: Check if guest address is in memslot Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 308/350] udf: fix uninit-value use in udf_get_fileshortad Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 309/350] jfs: Fix sanity check in dbMount Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 310/350] net/sun3_82586: fix potential memory leak in sun3_82586_send_packet() Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 4.19 311/350] be2net: fix potential memory leak in be_xmit() Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 312/350] dt-bindings: power: Add r8a774b1 SYSC power domain definitions Greg Kroah-Hartman
2024-11-06 12:55 ` Geert Uytterhoeven
2024-11-07 9:06 ` Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 313/350] net: usb: usbnet: fix name regression Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 314/350] posix-clock: posix-clock: Fix unbalanced locking in pc_clock_settime() Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 315/350] ALSA: hda/realtek: Update default depop procedure Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 316/350] drm/amd: Guard against bad data for ATIF ACPI method Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 317/350] ACPI: button: Add DMI quirk for Samsung Galaxy Book2 to fix initial lid detection issue Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 318/350] nilfs2: fix kernel bug due to missing clearing of buffer delay flag Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 319/350] hv_netvsc: Fix VF namespace also in synthetic NIC NETDEV_REGISTER event Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 320/350] selinux: improve error checking in sel_write_load() Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 321/350] arm64/uprobes: change the uprobe_opcode_t typedef to fix the sparse warning Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 322/350] xfrm: validate new SAs prefixlen using SA family when sel.family is unset Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 323/350] usb: dwc3: remove generic PHY calibrate() calls Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 324/350] usb: dwc3: Add splitdisable quirk for Hisilicon Kirin Soc Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 325/350] usb: dwc3: core: Stop processing of pending events if controller is halted Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 326/350] cgroup: Fix potential overflow issue when checking max_depth Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 327/350] wifi: mac80211: skip non-uploaded keys in ieee80211_iter_keys Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 328/350] igb: Disable threaded IRQ for igb_msix_other Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 329/350] gtp: simplify error handling code in gtp_encap_enable() Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 330/350] gtp: allow -1 to be specified as file description from userspace Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 331/350] net/sched: stop qdisc_tree_reduce_backlog on TC_H_ROOT Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 332/350] bpf: Fix out-of-bounds write in trie_get_next_key() Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 333/350] net: support ip generic csum processing in skb_csum_hwoffload_help Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 334/350] net: skip offload for NETIF_F_IPV6_CSUM if ipv6 header contains extension Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 335/350] netfilter: nft_payload: sanitize offset and length before calling skb_checksum() Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 336/350] firmware: arm_sdei: Fix the input parameter of cpuhp_remove_state() Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 337/350] net: amd: mvme147: Fix probe banner message Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 338/350] misc: sgi-gru: Dont disable preemption in GRU driver Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 339/350] usbip: tools: Fix detach_port() invalid port error path Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 340/350] usb: phy: Fix API devm_usb_put_phy() can not release the phy Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 341/350] xhci: Fix Link TRB DMA in command ring stopped completion event Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 342/350] Revert "driver core: Fix uevent_show() vs driver detach race" Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 343/350] wifi: mac80211: do not pass a stopped vif to the driver in .get_txpower Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 344/350] wifi: ath10k: Fix memory leak in management tx Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 345/350] wifi: iwlegacy: Clear stale interrupts before resuming device Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 346/350] nilfs2: fix potential deadlock with newly created symlinks Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 347/350] ocfs2: pass u64 to ocfs2_truncate_inline maybe overflow Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 348/350] nilfs2: fix kernel bug due to missing clearing of checked flag Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 349/350] mm: shmem: fix data-race in shmem_getattr() Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 4.19 350/350] vt: prevent kernel-infoleak in con_font_get() Greg Kroah-Hartman
2024-11-06 14:46 ` [PATCH 4.19 000/350] 4.19.323-rc1 review Naresh Kamboju
2024-11-06 17:27 ` Pavel Machek
2024-11-07 6:32 ` Greg Kroah-Hartman
2024-11-07 3:00 ` Shuah Khan
-- strict thread matches above, loose matches on Subject: below --
2024-11-06 12:00 [PATCH 6.11 000/245] 6.11.7-rc1 review Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 6.11 001/245] lib: alloc_tag_module_unload must wait for pending kfree_rcu calls Greg Kroah-Hartman
2024-11-06 17:13 ` Suren Baghdasaryan
2024-11-06 12:00 ` [PATCH 6.11 002/245] drm/amdgpu: fix random data corruption for sdma 7 Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 6.11 003/245] cgroup: Fix potential overflow issue when checking max_depth Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 6.11 004/245] spi: geni-qcom: Fix boot warning related to pm_runtime and devres Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 6.11 005/245] slub/kunit: fix a WARNING due to unwrapped __kmalloc_cache_noprof Greg Kroah-Hartman
2024-11-06 12:00 ` [PATCH 6.11 006/245] perf trace: Fix non-listed archs in the syscalltbl routines Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 007/245] perf python: Fix up the build on architectures without HAVE_KVM_STAT_SUPPORT Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 008/245] scsi: scsi_debug: Fix do_device_access() handling of unexpected SG copy length Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 009/245] wifi: iwlegacy: Fix "field-spanning write" warning in il_enqueue_hcmd() Greg Kroah-Hartman
2024-11-07 11:08 ` Martin-Éric Racine
2024-11-06 12:01 ` [PATCH 6.11 010/245] mac80211: MAC80211_MESSAGE_TRACING should depend on TRACING Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 011/245] wifi: mac80211: skip non-uploaded keys in ieee80211_iter_keys Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 012/245] wifi: ath11k: Fix invalid ring usage in full monitor mode Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 013/245] wifi: rtw89: pci: early chips only enable 36-bit DMA on specific PCI hosts Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 014/245] wifi: brcm80211: BRCM_TRACING should depend on TRACING Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 015/245] RDMA/cxgb4: Dump vendor specific QP details Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 016/245] RDMA/mlx5: Round max_rd_atomic/max_dest_rd_atomic up instead of down Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 017/245] RDMA/bnxt_re: Fix the usage of control path spin locks Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 018/245] RDMA/bnxt_re: synchronize the qp-handle table array Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 019/245] wifi: iwlwifi: mvm: dont leak a link on AP removal Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 020/245] wifi: iwlwifi: mvm: really send iwl_txpower_constraints_cmd Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 021/245] wifi: iwlwifi: mvm: Fix response handling in iwl_mvm_send_recovery_cmd() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 022/245] wifi: iwlwifi: mvm: dont add default link in fw restart flow Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 023/245] Revert "wifi: iwlwifi: remove retry loops in start" Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 024/245] ASoC: cs42l51: Fix some error handling paths in cs42l51_probe() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 025/245] macsec: Fix use-after-free while sending the offloading packet Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 026/245] ASoC: dapm: fix bounds checker error in dapm_widget_list_create Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 027/245] sock_map: fix a NULL pointer dereference in sock_map_link_update_prog() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 028/245] net: stmmac: dwmac4: Fix high address display by updating reg_space[] from register values Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 029/245] net: stmmac: TSO: Fix unbalanced DMA map/unmap for non-paged SKB data Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 030/245] igb: Disable threaded IRQ for igb_msix_other Greg Kroah-Hartman
2024-11-08 7:01 ` Jan Kiszka
2024-11-08 7:21 ` Sebastian Andrzej Siewior
2024-11-08 7:35 ` Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 031/245] dpll: add Embedded SYNC feature for a pin Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 032/245] ice: add callbacks for Embedded SYNC enablement on dpll pins Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 033/245] ice: fix crash on probe for DPLL enabled E810 LOM Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 034/245] ipv4: ip_tunnel: Fix suspicious RCU usage warning in ip_tunnel_init_flow() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 035/245] ipv4: ip_tunnel: Fix suspicious RCU usage warning in ip_tunnel_find() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 036/245] gtp: allow -1 to be specified as file description from userspace Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 037/245] net/sched: stop qdisc_tree_reduce_backlog on TC_H_ROOT Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 038/245] bpf: Force checkpoint when jmp history is too long Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 039/245] netdevsim: Add trailing zero to terminate the string in nsim_nexthop_bucket_activity_write() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 040/245] net/sched: sch_api: fix xa_insert() error path in tcf_block_get_ext() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 041/245] bpf: Fix out-of-bounds write in trie_get_next_key() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 042/245] net: fix crash when config small gso_max_size/gso_ipv4_max_size Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 043/245] netfilter: Fix use-after-free in get_info() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 044/245] netfilter: nf_reject_ipv6: fix potential crash in nf_send_reset6() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 045/245] Bluetooth: hci: fix null-ptr-deref in hci_read_supported_codecs Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 046/245] bpf: Free dynamically allocated bits in bpf_iter_bits_destroy() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 047/245] bpf: Add bpf_mem_alloc_check_size() helper Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 048/245] bpf: Check the validity of nr_words in bpf_iter_bits_new() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 049/245] net: skip offload for NETIF_F_IPV6_CSUM if ipv6 header contains extension Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 050/245] mlxsw: spectrum_ptp: Add missing verification before pushing Tx header Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 051/245] mlxsw: pci: Sync Rx buffers for CPU Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 052/245] mlxsw: pci: Sync Rx buffers for device Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 053/245] mlxsw: spectrum_ipip: Fix memory leak when changing remote IPv6 address Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 054/245] net: ethernet: mtk_wed: fix path of MT7988 WO firmware Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 055/245] netfilter: nft_payload: sanitize offset and length before calling skb_checksum() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 056/245] bpf, test_run: Fix LIVE_FRAME frame update after a page has been recycled Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 057/245] iomap: improve shared block detection in iomap_unshare_iter Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 058/245] iomap: dont bother unsharing delalloc extents Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 059/245] iomap: share iomap_unshare_iter predicate code with fsdax Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 060/245] fsdax: remove zeroing code from dax_unshare_iter Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 061/245] fsdax: dax_unshare_iter needs to copy entire blocks Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 062/245] iomap: turn iomap_want_unshare_iter into an inline function Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 063/245] kasan: Fix Software Tag-Based KASAN with GCC Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 064/245] firmware: arm_sdei: Fix the input parameter of cpuhp_remove_state() Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 065/245] afs: Fix missing subdir edit when renamed between parent dirs Greg Kroah-Hartman
2024-11-06 12:01 ` [PATCH 6.11 066/245] ACPI: CPPC: Make rmw_lock a raw_spin_lock Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 067/245] gpio: sloppy-logic-analyzer: Check for error code from devm_mutex_init() call Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 068/245] smb: client: fix parsing of device numbers Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 069/245] smb: client: set correct device number on nfs reparse points Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 070/245] drm/mediatek: ovl: Remove the color format comment for ovl_fmt_convert() Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 071/245] drm/mediatek: Fix color format MACROs in OVL Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 072/245] drm/mediatek: Fix get efuse issue for MT8188 DPTX Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 073/245] drm/mediatek: Use cmdq_pkt_create() and cmdq_pkt_destroy() Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 074/245] drm/mediatek: Fix potential NULL dereference in mtk_crtc_destroy() Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 075/245] drm/tegra: Fix NULL vs IS_ERR() check in probe() Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 076/245] cxl/events: Fix Trace DRAM Event Record Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 077/245] PCI: Fix pci_enable_acs() support for the ACS quirks Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 078/245] nvme: module parameter to disable pi with offsets Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 079/245] drm/panthor: Fix firmware initialization on systems with a page size > 4k Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 080/245] drm/panthor: Fail job creation when the group is dead Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 081/245] drm/panthor: Report group as timedout when we fail to properly suspend Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 082/245] ntfs3: Add bounds checking to mi_enum_attr() Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 083/245] fs/ntfs3: Check if more than chunk-size bytes are written Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 084/245] fs/ntfs3: Fix warning possible deadlock in ntfs_set_state Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 085/245] fs/ntfs3: Stale inode instead of bad Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 086/245] fs/ntfs3: Add rough attr alloc_size check Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 087/245] fs/ntfs3: Fix possible deadlock in mi_read Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 088/245] fs/ntfs3: Additional check in ni_clear() Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 089/245] fs/ntfs3: Fix general protection fault in run_is_mapped_full Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 090/245] fs/ntfs3: Additional check in ntfs_file_release Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 091/245] rust: device: change the from_raw() function Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 092/245] scsi: scsi_transport_fc: Allow setting rport state to current state Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 093/245] cifs: Improve creating native symlinks pointing to directory Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 094/245] cifs: Fix creating native symlinks pointing to current or parent directory Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 095/245] ACPI: resource: Fold Asus Vivobook Pro N6506M* DMI quirks together Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 096/245] powercap: intel_rapl_msr: Add PL4 support for Arrowlake-U Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 097/245] thermal: intel: int340x: processor: Remove MMIO RAPL CPU hotplug support Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 098/245] thermal: intel: int340x: processor: Add MMIO RAPL PL4 support Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 099/245] net: amd: mvme147: Fix probe banner message Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 100/245] NFS: remove revoked delegation from servers delegation list Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 101/245] misc: sgi-gru: Dont disable preemption in GRU driver Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 102/245] NFSD: Initialize struct nfsd4_copy earlier Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 103/245] NFSD: Never decrement pending_async_copies on error Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 104/245] rpcrdma: Always release the rpcrdma_devices xa_array Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 106/245] wifi: rtlwifi: rtl8192du: Dont claim USB ID 0bda:8171 Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 107/245] usbip: tools: Fix detach_port() invalid port error path Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 108/245] usb: phy: Fix API devm_usb_put_phy() can not release the phy Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 109/245] usb: typec: fix unreleased fwnode_handle in typec_port_register_altmodes() Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 110/245] usb: typec: tcpm: restrict SNK_WAIT_CAPABILITIES_TIMEOUT transitions to non self-powered devices Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 111/245] usb: typec: qcom-pmic-typec: use fwnode_handle_put() to release fwnodes Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 112/245] usb: typec: qcom-pmic-typec: fix missing fwnode removal in error path Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 113/245] phy: qcom: qmp-usb: fix NULL-deref on runtime suspend Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 114/245] phy: qcom: qmp-usb-legacy: " Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 115/245] phy: qcom: qmp-usbc: " Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 116/245] xhci: Fix Link TRB DMA in command ring stopped completion event Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 117/245] xhci: Use pm_runtime_get to prevent RPM on unsupported systems Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 118/245] Revert "driver core: Fix uevent_show() vs driver detach race" Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 119/245] Revert "drm/amd/display: update DML2 policy EnhancedPrefetchScheduleAccelerationFinal DCN35" Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 120/245] Revert "selftests/mm: fix deadlock for fork after pthread_create on ARM" Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 121/245] Revert "selftests/mm: replace atomic_bool with pthread_barrier_t" Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 122/245] wifi: mac80211: do not pass a stopped vif to the driver in .get_txpower Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 123/245] wifi: ath10k: Fix memory leak in management tx Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 124/245] wifi: cfg80211: clear wdev->cqm_config pointer on free Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 125/245] wifi: iwlegacy: Clear stale interrupts before resuming device Greg Kroah-Hartman
2024-11-06 12:02 ` [PATCH 6.11 126/245] wifi: iwlwifi: mvm: fix 6 GHz scan construction Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 127/245] staging: iio: frequency: ad9832: fix division by zero in ad9832_calc_freqreg() Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 128/245] dt-bindings: iio: adc: ad7380: fix ad7380-4 reference supply Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 129/245] iio: adc: ad7124: fix division by zero in ad7124_set_channel_odr() Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 130/245] iio: gts-helper: Fix memory leaks for the error path of iio_gts_build_avail_scale_table() Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 131/245] iio: gts-helper: Fix memory leaks in iio_gts_build_avail_scale_table() Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 132/245] iio: light: veml6030: fix microlux value calculation Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 133/245] nilfs2: fix kernel bug due to missing clearing of checked flag Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 134/245] nilfs2: fix potential deadlock with newly created symlinks Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 135/245] RISC-V: ACPI: fix early_ioremap to early_memremap Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 136/245] mm: shmem: fix data-race in shmem_getattr() Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 137/245] tools/mm: -Werror fixes in page-types/slabinfo Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 138/245] mm: shrinker: avoid memleak in alloc_shrinker_info Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 139/245] firmware: microchip: auto-update: fix poll_complete() to not report spurious timeout errors Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 140/245] thunderbolt: Fix KASAN reported stack out-of-bounds read in tb_retimer_scan() Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 141/245] thunderbolt: Honor TMU requirements in the domain when setting TMU mode Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 142/245] soc: qcom: pmic_glink: Handle GLINK intent allocation rejections Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 143/245] cxl/port: Fix use-after-free, permit out-of-order decoder shutdown Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 144/245] cxl/port: Fix CXL port initialization order when the subsystem is built-in Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 145/245] mmc: sdhci-pci-gli: GL9767: Fix low power mode on the set clock function Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 146/245] mmc: sdhci-pci-gli: GL9767: Fix low power mode in the SD Express process Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 147/245] block: fix sanity checks in blk_rq_map_user_bvec Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 148/245] cgroup/bpf: use a dedicated workqueue for cgroup bpf destruction Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 149/245] phy: freescale: imx8m-pcie: Do CMN_RST just before PHY PLL lock check Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 150/245] btrfs: merge btrfs_orig_bbio_end_io() into btrfs_bio_end_io() Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 151/245] btrfs: fix error propagation of split bios Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 152/245] spi: spi-fsl-dspi: Fix crash when not using GPIO chip select Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 153/245] riscv: vdso: Prevent the compiler from inserting calls to memset() Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 154/245] Input: edt-ft5x06 - fix regmap leak when probe fails Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 155/245] ALSA: hda/realtek: Limit internal Mic boost on Dell platform Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 156/245] riscv: efi: Set NX compat flag in PE/COFF header Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 157/245] riscv: Prevent a bad reference count on CPU nodes Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 158/245] riscv: Use %u to format the output of cpu Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 159/245] riscv: Remove unused GENERATING_ASM_OFFSETS Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 160/245] riscv: Remove duplicated GET_RM Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 161/245] scsi: ufs: core: Fix another deadlock during RTC update Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 162/245] cxl/port: Fix cxl_bus_rescan() vs bus_rescan_devices() Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 163/245] cxl/acpi: Ensure ports ready at cxl_acpi_probe() return Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 164/245] sched/numa: Fix the potential null pointer dereference in task_numa_work() Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 165/245] posix-cpu-timers: Clear TICK_DEP_BIT_POSIX_TIMER on clone Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 166/245] iov_iter: fix copy_page_from_iter_atomic() if KMAP_LOCAL_FORCE_MAP Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 167/245] tpm: Return tpm2_sessions_init() when null key creation fails Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 168/245] tpm: Rollback tpm2_load_null() Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 169/245] drm/amd/pm: Vangogh: Fix kernel memory out of bounds write Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 170/245] drm/amdgpu/smu13: fix profile reporting Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 171/245] tpm: Lazily flush the auth session Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 172/245] mptcp: init: protect sched with rcu_read_lock Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 173/245] mei: use kvmalloc for read buffer Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 175/245] fork: only invoke khugepaged, ksm hooks if no error Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 176/245] mm/page_alloc: let GFP_ATOMIC order-0 allocs access highatomic reserves Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 177/245] x86/traps: Enable UBSAN traps on x86 Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 178/245] x86/traps: move kmsan check after instrumentation_begin Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 179/245] ocfs2: pass u64 to ocfs2_truncate_inline maybe overflow Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 180/245] resource,kexec: walk_system_ram_res_rev must retain resource flags Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 181/245] mctp i2c: handle NULL header address Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 182/245] btrfs: fix use-after-free of block device file in __btrfs_free_extra_devids() Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 183/245] accel/ivpu: Fix NOC firewall interrupt handling Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 184/245] xfs: fix finding a last resort AG in xfs_filestream_pick_ag Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 185/245] ALSA: hda/realtek: Fix headset mic on TUXEDO Gemini 17 Gen3 Greg Kroah-Hartman
2024-11-06 12:03 ` [PATCH 6.11 186/245] ALSA: hda/realtek: Fix headset mic on TUXEDO Stellaris 16 Gen6 mb1 Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 187/245] nvmet-auth: assign dh_key to NULL after kfree_sensitive Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 188/245] nvme: re-fix error-handling for io_uring nvme-passthrough Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 189/245] kasan: remove vmalloc_percpu test Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 190/245] drm/tests: helpers: Add helper for drm_display_mode_from_cea_vic() Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 191/245] drm/connector: hdmi: Fix memory leak in drm_display_mode_from_cea_vic() Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 192/245] drm/tests: hdmi: Fix memory leaks " Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 193/245] drm/xe: Fix register definition order in xe_regs.h Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 194/245] drm/xe: Kill regs/xe_sriov_regs.h Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 195/245] drm/xe: Add mmio read before GGTT invalidate Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 196/245] drm/xe: Dont short circuit TDR on jobs not started Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 197/245] io_uring/rw: fix missing NOWAIT check for O_DIRECT start write Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 198/245] btrfs: fix extent map merging not happening for adjacent extents Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 199/245] btrfs: fix defrag not merging contiguous extents due to merged extent maps Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 200/245] gpiolib: fix debugfs newline separators Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 201/245] gpiolib: fix debugfs dangling chip separator Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 202/245] vmscan,migrate: fix page count imbalance on node stats when demoting pages Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 203/245] mm, mmap: limit THP alignment of anonymous mappings to PMD-aligned sizes Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 204/245] Input: fix regression when re-registering input handlers Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 205/245] mm: multi-gen LRU: ignore non-leaf pmd_young for force_scan=true Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 206/245] mm: multi-gen LRU: remove MM_LEAF_OLD and MM_NONLEAF_TOTAL stats Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 207/245] mm: shrink skip folio mapped by an exiting process Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 208/245] mm: multi-gen LRU: use {ptep,pmdp}_clear_young_notify() Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 209/245] riscv: dts: starfive: Update ethernet phy0 delay parameter values for Star64 Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 210/245] riscv: dts: starfive: disable unused csi/camss nodes Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 211/245] arm64: dts: qcom: msm8939: revert use of APCS mbox for RPM Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 212/245] arm64: dts: qcom: x1e80100-yoga-slim7x: fix nvme regulator boot glitch Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 213/245] arm64: dts: qcom: x1e80100: Fix up BAR spaces Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 214/245] arm64: dts: qcom: x1e80100-vivobook-s15: fix nvme regulator boot glitch Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 215/245] arm64: dts: qcom: x1e80100: fix PCIe4 interconnect Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 216/245] arm64: dts: qcom: x1e80100-qcp: fix nvme regulator boot glitch Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 217/245] arm64: dts: qcom: x1e80100-crd: " Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 218/245] arm64: dts: imx8ulp: correct the flexspi compatible string Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 219/245] arm64: dts: qcom: x1e80100: Add Broadcast_AND region in LLCC block Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 220/245] arm64: dts: qcom: x1e80100: fix PCIe4 and PCIe6a PHY clocks Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 221/245] drm/i915: Skip programming FIA link enable bits for MTL+ Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 222/245] drm/i915: disable fbc due to Wa_16023588340 Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 223/245] drm/i915/display: Cache adpative sync caps to use it later Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 224/245] drm/i915/display: WA for Re-initialize dispcnlunitt1 xosc clock Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 225/245] drm/i915/hdcp: Add encoder check in intel_hdcp_get_capability Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 226/245] drm/i915/hdcp: Add encoder check in hdcp2_get_capability Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 227/245] drm/i915/dp: Clear VSC SDP during post ddi disable routine Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 228/245] drm/i915/display/dp: Compute AS SDP when vrr is also enabled Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 229/245] drm/i915/pps: Disable DPLS_GATING around pps sequence Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 230/245] drm/i915: move rawclk from runtime to display runtime info Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 231/245] drm/xe/display: drop unused rawclk_freq and RUNTIME_INFO() Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 232/245] drm/i915/psr: Prevent Panel Replay if CRC calculation is enabled Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 233/245] drm/i915/display: Dont enable decompression on Xe2 with Tile4 Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 234/245] drm/xe: Support nomodeset kernel command-line option Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 235/245] drm/xe/xe2hpg: Add Wa_15016589081 Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 236/245] drm/xe: Move enable host l2 VRAM post MCR init Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 237/245] drm/xe/xe2hpg: Introduce performance tuning changes for Xe2_HPG Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 238/245] drm/xe/xe2: Introduce performance changes Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 239/245] drm/xe/xe2: Add performance turning changes Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 240/245] drm/xe: Define STATELESS_COMPRESSION_CTRL as mcr register Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 241/245] drm/xe: Write all slices if its " Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 242/245] drm/amdgpu/swsmu: fix ordering for setting workload_mask Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 243/245] drm/amdgpu/swsmu: default to fullscreen 3D profile for dGPUs Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 244/245] fs/ntfs3: Sequential field availability check in mi_enum_attr() Greg Kroah-Hartman
2024-11-06 12:04 ` [PATCH 6.11 245/245] drm/amdgpu: handle default profile on on devices without fullscreen 3D Greg Kroah-Hartman
2024-11-06 13:47 ` [PATCH 6.11 000/245] 6.11.7-rc1 review Luna Jernberg
2024-11-06 15:12 ` Naresh Kamboju
2024-11-06 16:07 ` David Sterba
2024-11-07 6:33 ` Greg Kroah-Hartman
2024-11-06 16:55 ` SeongJae Park
2024-11-07 2:26 ` Shuah Khan
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=20241106120323.921672985@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=bhelgaas@google.com \
--cc=patches@lists.linux.dev \
--cc=sashal@kernel.org \
--cc=sean.anderson@linux.dev \
--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).