From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev,
Yang Yingliang <yangyingliang@huawei.com>,
Alexander Duyck <alexanderduyck@fb.com>,
Jakub Kicinski <kuba@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.10 459/783] mISDN: hfcsusb: dont call dev_kfree_skb/kfree_skb() under spin_lock_irqsave()
Date: Thu, 12 Jan 2023 14:52:55 +0100 [thread overview]
Message-ID: <20230112135545.532650145@linuxfoundation.org> (raw)
In-Reply-To: <20230112135524.143670746@linuxfoundation.org>
From: Yang Yingliang <yangyingliang@huawei.com>
[ Upstream commit ddc9648db162eee556edd5222d2808fe33730203 ]
It is not allowed to call kfree_skb() or consume_skb() from hardware
interrupt context or with hardware interrupts being disabled.
It should use dev_kfree_skb_irq() or dev_consume_skb_irq() instead.
The difference between them is free reason, dev_kfree_skb_irq() means
the SKB is dropped in error and dev_consume_skb_irq() means the SKB
is consumed in normal.
skb_queue_purge() is called under spin_lock_irqsave() in hfcusb_l2l1D(),
kfree_skb() is called in it, to fix this, use skb_queue_splice_init()
to move the dch->squeue to a free queue, also enqueue the tx_skb and
rx_skb, at last calling __skb_queue_purge() to free the SKBs afer unlock.
In tx_iso_complete(), dev_kfree_skb() is called to consume the transmitted
SKB, so replace it with dev_consume_skb_irq().
Fixes: 69f52adb2d53 ("mISDN: Add HFC USB driver")
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Reviewed-by: Alexander Duyck <alexanderduyck@fb.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
drivers/isdn/hardware/mISDN/hfcsusb.c | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/drivers/isdn/hardware/mISDN/hfcsusb.c b/drivers/isdn/hardware/mISDN/hfcsusb.c
index cd5642cef01f..e8b37bd5e34a 100644
--- a/drivers/isdn/hardware/mISDN/hfcsusb.c
+++ b/drivers/isdn/hardware/mISDN/hfcsusb.c
@@ -326,20 +326,24 @@ hfcusb_l2l1D(struct mISDNchannel *ch, struct sk_buff *skb)
test_and_clear_bit(FLG_L2_ACTIVATED, &dch->Flags);
if (hw->protocol == ISDN_P_NT_S0) {
+ struct sk_buff_head free_queue;
+
+ __skb_queue_head_init(&free_queue);
hfcsusb_ph_command(hw, HFC_L1_DEACTIVATE_NT);
spin_lock_irqsave(&hw->lock, flags);
- skb_queue_purge(&dch->squeue);
+ skb_queue_splice_init(&dch->squeue, &free_queue);
if (dch->tx_skb) {
- dev_kfree_skb(dch->tx_skb);
+ __skb_queue_tail(&free_queue, dch->tx_skb);
dch->tx_skb = NULL;
}
dch->tx_idx = 0;
if (dch->rx_skb) {
- dev_kfree_skb(dch->rx_skb);
+ __skb_queue_tail(&free_queue, dch->rx_skb);
dch->rx_skb = NULL;
}
test_and_clear_bit(FLG_TX_BUSY, &dch->Flags);
spin_unlock_irqrestore(&hw->lock, flags);
+ __skb_queue_purge(&free_queue);
#ifdef FIXME
if (test_and_clear_bit(FLG_L1_BUSY, &dch->Flags))
dchannel_sched_event(&hc->dch, D_CLEARBUSY);
@@ -1330,7 +1334,7 @@ tx_iso_complete(struct urb *urb)
printk("\n");
}
- dev_kfree_skb(tx_skb);
+ dev_consume_skb_irq(tx_skb);
tx_skb = NULL;
if (fifo->dch && get_next_dframe(fifo->dch))
tx_skb = fifo->dch->tx_skb;
--
2.35.1
next prev parent reply other threads:[~2023-01-12 14:32 UTC|newest]
Thread overview: 794+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-12 13:45 [PATCH 5.10 000/783] 5.10.163-rc1 review Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 001/783] usb: musb: remove extra check in musb_gadget_vbus_draw Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 002/783] arm64: dts: qcom: ipq6018-cp01-c1: use BLSPI1 pins Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 003/783] arm64: dts: qcom: msm8996: fix GPU OPP table Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 004/783] ARM: dts: qcom: apq8064: fix coresight compatible Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 005/783] arm64: dts: qcom: sdm630: fix UART1 pin bias Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 006/783] arm64: dts: qcom: sdm845-cheza: fix AP suspend " Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 007/783] arm64: dts: qcom: msm8916: Drop MSS fallback compatible Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 008/783] objtool, kcsan: Add volatile read/write instrumentation to whitelist Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 009/783] ARM: dts: stm32: Drop stm32mp15xc.dtsi from Avenger96 Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 010/783] ARM: dts: stm32: Fix AV96 WLAN regulator gpio property Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 011/783] drivers: soc: ti: knav_qmss_queue: Mark knav_acc_firmwares as static Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 012/783] soc: qcom: llcc: make irq truly optional Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 013/783] soc: qcom: apr: make code more reuseable Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 014/783] soc: qcom: apr: Add check for idr_alloc and of_property_read_string_index Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 015/783] arm: dts: spear600: Fix clcd interrupt Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 016/783] soc: ti: knav_qmss_queue: Use pm_runtime_resume_and_get instead of pm_runtime_get_sync Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 017/783] soc: ti: knav_qmss_queue: Fix PM disable depth imbalance in knav_queue_probe Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 018/783] soc: ti: smartreflex: Fix PM disable depth imbalance in omap_sr_probe Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 019/783] perf: arm_dsu: Fix hotplug callback leak in dsu_pmu_init() Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 020/783] perf/smmuv3: Fix hotplug callback leak in arm_smmu_pmu_init() Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 021/783] arm64: dts: ti: k3-am65-main: Drop dma-coherent in crypto node Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 022/783] arm64: dts: ti: k3-j721e-main: " Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 023/783] arm64: dts: mt2712e: Fix unit_address_vs_reg warning for oscillators Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 024/783] arm64: dts: mt2712e: Fix unit address for pinctrl node Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 025/783] arm64: dts: mt2712-evb: Fix vproc fixed regulators unit names Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 026/783] arm64: dts: mt2712-evb: Fix usb vbus " Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 027/783] arm64: dts: mediatek: pumpkin-common: Fix devicetree warnings Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 028/783] arm64: dts: mediatek: mt6797: Fix 26M oscillator unit name Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 029/783] ARM: dts: dove: Fix assigned-addresses for every PCIe Root Port Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 030/783] ARM: dts: armada-370: " Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 031/783] ARM: dts: armada-xp: " Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 032/783] ARM: dts: armada-375: " Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 033/783] ARM: dts: armada-38x: " Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 034/783] ARM: dts: armada-39x: " Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 035/783] ARM: dts: turris-omnia: Add ethernet aliases Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 036/783] ARM: dts: turris-omnia: Add switch port 6 node Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 037/783] arm64: dts: armada-3720-turris-mox: Add missing interrupt for RTC Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 038/783] pstore/ram: Fix error return code in ramoops_probe() Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 039/783] ARM: mmp: fix timer_read delay Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 040/783] pstore: Avoid kcore oops by vmap()ing with VM_IOREMAP Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 041/783] tpm/tpm_ftpm_tee: Fix error handling in ftpm_mod_init() Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 042/783] tpm/tpm_crb: Fix error message in __crb_relinquish_locality() Greg Kroah-Hartman
2023-01-12 13:45 ` [PATCH 5.10 043/783] sched/fair: Cleanup task_util and capacity type Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 044/783] sched/uclamp: Fix relationship between uclamp and migration margin Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 045/783] cpuidle: dt: Return the correct numbers of parsed idle states Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 046/783] alpha: fix syscall entry in !AUDUT_SYSCALL case Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 047/783] PM: hibernate: Fix mistake in kerneldoc comment Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 048/783] fs: dont audit the capability check in simple_xattr_list() Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 049/783] cpufreq: qcom-hw: Fix memory leak in qcom_cpufreq_hw_read_lut() Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 050/783] selftests/ftrace: event_triggers: wait longer for test_event_enable Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 051/783] perf: Fix possible memleak in pmu_dev_alloc() Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 052/783] lib/debugobjects: fix stat count and optimize debug_objects_mem_init Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 053/783] platform/x86: huawei-wmi: fix return value calculation Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 054/783] timerqueue: Use rb_entry_safe() in timerqueue_getnext() Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 055/783] proc: fixup uptime selftest Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 056/783] lib/fonts: fix undefined behavior in bit shift for get_default_font Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 057/783] ocfs2: fix memory leak in ocfs2_stack_glue_init() Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 058/783] MIPS: vpe-mt: fix possible memory leak while module exiting Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 059/783] MIPS: vpe-cmp: " Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 060/783] selftests/efivarfs: Add checking of the test return value Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 061/783] PNP: fix name memory leak in pnp_alloc_dev() Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 062/783] perf/x86/intel/uncore: Fix reference count leak in hswep_has_limit_sbox() Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 063/783] perf/x86/intel/uncore: Fix reference count leak in snr_uncore_mmio_map() Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 064/783] perf/x86/intel/uncore: Fix reference count leak in __uncore_imc_init_box() Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 065/783] platform/chrome: cros_usbpd_notify: Fix error handling in cros_usbpd_notify_init() Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 066/783] irqchip: gic-pm: Use pm_runtime_resume_and_get() in gic_probe() Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 067/783] EDAC/i10nm: fix refcount leak in pci_get_dev_wrapper() Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 068/783] nfsd: dont call nfsd_file_put from client states seqfile display Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 069/783] genirq/irqdesc: Dont try to remove non-existing sysfs files Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 070/783] cpufreq: amd_freq_sensitivity: Add missing pci_dev_put() Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 071/783] libfs: add DEFINE_SIMPLE_ATTRIBUTE_SIGNED for signed value Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 072/783] lib/notifier-error-inject: fix error when writing -errno to debugfs file Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 073/783] docs: fault-injection: fix non-working usage of negative values Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 074/783] debugfs: fix error when writing negative value to atomic_t debugfs file Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 075/783] ocfs2: ocfs2_mount_volume does cleanup job before return error Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 076/783] ocfs2: rewrite error handling of ocfs2_fill_super Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 077/783] ocfs2: fix memory leak in ocfs2_mount_volume() Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 078/783] rapidio: fix possible name leaks when rio_add_device() fails Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 079/783] rapidio: rio: fix possible name leak in rio_register_mport() Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 080/783] clocksource/drivers/sh_cmt: Make sure channel clock supply is enabled Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 081/783] clocksource/drivers/sh_cmt: Access registers according to spec Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 082/783] futex: Move to kernel/futex/ Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 083/783] futex: Resend potentially swallowed owner death notification Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 084/783] cpu/hotplug: Make target_store() a nop when target == state Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 085/783] clocksource/drivers/timer-ti-dm: Fix missing clk_disable_unprepare in dmtimer_systimer_init_clock() Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 086/783] ACPICA: Fix use-after-free in acpi_ut_copy_ipackage_to_ipackage() Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 087/783] uprobes/x86: Allow to probe a NOP instruction with 0x66 prefix Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 088/783] x86/xen: Fix memory leak in xen_smp_intr_init{_pv}() Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 089/783] x86/xen: Fix memory leak in xen_init_lock_cpu() Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 090/783] xen/privcmd: Fix a possible warning in privcmd_ioctl_mmap_resource() Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 091/783] PM: runtime: Improve path in rpm_idle() when no callback Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 092/783] PM: runtime: Do not call __rpm_callback() from rpm_idle() Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 093/783] platform/x86: mxm-wmi: fix memleak in mxm_wmi_call_mx[ds|mx]() Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 094/783] platform/x86: intel_scu_ipc: fix possible name leak in __intel_scu_ipc_register() Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 095/783] MIPS: BCM63xx: Add check for NULL for clk in clk_enable Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 096/783] MIPS: OCTEON: warn only once if deprecated link status is being used Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 097/783] fs: sysv: Fix sysv_nblocks() returns wrong value Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 098/783] rapidio: fix possible UAF when kfifo_alloc() fails Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 099/783] eventfd: change int to __u64 in eventfd_signal() ifndef CONFIG_EVENTFD Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 100/783] relay: fix type mismatch when allocating memory in relay_create_buf() Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 101/783] hfs: Fix OOB Write in hfs_asc2mac Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 102/783] rapidio: devices: fix missing put_device in mport_cdev_open Greg Kroah-Hartman
2023-01-12 13:46 ` [PATCH 5.10 103/783] wifi: ath9k: hif_usb: fix memory leak of urbs in ath9k_hif_usb_dealloc_tx_urbs() Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 104/783] wifi: ath9k: hif_usb: Fix use-after-free in ath9k_hif_usb_reg_in_cb() Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 105/783] wifi: rtl8xxxu: Fix reading the vendor of combo chips Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 106/783] drm/bridge: adv7533: remove dynamic lane switching from adv7533 bridge Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 107/783] libbpf: Fix use-after-free in btf_dump_name_dups Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 108/783] libbpf: Fix null-pointer dereference in find_prog_by_sec_insn() Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 109/783] pata_ipx4xx_cf: Fix unsigned comparison with less than zero Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 110/783] media: coda: jpeg: Add check for kmalloc Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 111/783] media: i2c: ad5820: Fix error path Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 112/783] venus: pm_helpers: Fix error check in vcodec_domains_get() Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 113/783] media: exynos4-is: Use v4l2_async_notifier_add_fwnode_remote_subdev Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 114/783] media: exynos4-is: dont rely on the v4l2_async_subdev internals Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 115/783] can: kvaser_usb: do not increase tx statistics when sending error message frames Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 116/783] can: kvaser_usb: kvaser_usb_leaf: Get capabilities from device Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 117/783] can: kvaser_usb: kvaser_usb_leaf: Rename {leaf,usbcan}_cmd_error_event to {leaf,usbcan}_cmd_can_error_event Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 118/783] can: kvaser_usb: kvaser_usb_leaf: Handle CMD_ERROR_EVENT Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 119/783] can: kvaser_usb_leaf: Set Warning state even without bus errors Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 120/783] can: kvaser_usb_leaf: Fix improved state not being reported Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 121/783] can: kvaser_usb_leaf: Fix wrong CAN state after stopping Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 122/783] can: kvaser_usb_leaf: Fix bogus restart events Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 123/783] can: kvaser_usb: Add struct kvaser_usb_busparams Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 124/783] can: kvaser_usb: Compare requested bittiming parameters with actual parameters in do_set_{,data}_bittiming Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 125/783] drm/rockchip: lvds: fix PM usage counter unbalance in poweron Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 126/783] clk: renesas: r9a06g032: Repair grave increment error Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 127/783] spi: Update reference to struct spi_controller Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 128/783] drm/panel/panel-sitronix-st7701: Remove panel on DSI attach failure Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 129/783] ima: Fix fall-through warnings for Clang Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 130/783] ima: Handle -ESTALE returned by ima_filter_rule_match() Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 131/783] drm/msm/hdmi: switch to drm_bridge_connector Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 132/783] drm/msm/hdmi: drop unused GPIO support Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 133/783] bpf: Fix slot type check in check_stack_write_var_off Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 134/783] media: vivid: fix compose size exceed boundary Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 135/783] media: platform: exynos4-is: fix return value check in fimc_md_probe() Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 136/783] bpf: propagate precision in ALU/ALU64 operations Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 137/783] bpf: Check the other end of slot_type for STACK_SPILL Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 138/783] bpf: propagate precision across all frames, not just the last one Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 139/783] clk: qcom: gcc-sm8250: Use retention mode for USB GDSCs Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 140/783] mtd: Fix device name leak when register device failed in add_mtd_device() Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 141/783] Input: joystick - fix Kconfig warning for JOYSTICK_ADC Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 142/783] wifi: rsi: Fix handling of 802.3 EAPOL frames sent via control port Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 143/783] media: camss: Clean up received buffers on failed start of streaming Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 144/783] net, proc: Provide PROC_FS=n fallback for proc_create_net_single_write() Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 145/783] rxrpc: Fix ack.bufferSize to be 0 when generating an ack Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 146/783] drm/radeon: Add the missed acpi_put_table() to fix memory leak Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 147/783] drm/mediatek: Modify dpi power on/off sequence Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 148/783] ASoC: pxa: fix null-pointer dereference in filter() Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 149/783] regulator: core: fix unbalanced of node refcount in regulator_dev_lookup() Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 150/783] amdgpu/pm: prevent array underflow in vega20_odn_edit_dpm_table() Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 151/783] drm/fourcc: Add packed 10bit YUV 4:2:0 format Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 152/783] drm/fourcc: Fix vsub/hsub for Q410 and Q401 Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 153/783] integrity: Fix memory leakage in keyring allocation error path Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 154/783] ima: Fix misuse of dereference of pointer in template_desc_init_fields() Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 155/783] wifi: ath10k: Fix return value in ath10k_pci_init() Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 156/783] mtd: lpddr2_nvm: Fix possible null-ptr-deref Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 157/783] Input: elants_i2c - properly handle the reset GPIO when power is off Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 158/783] media: vidtv: Fix use-after-free in vidtv_bridge_dvb_init() Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 159/783] media: solo6x10: fix possible memory leak in solo_sysfs_init() Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 160/783] media: platform: exynos4-is: Fix error handling in fimc_md_init() Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 161/783] media: videobuf-dma-contig: use dma_mmap_coherent Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 162/783] inet: add READ_ONCE(sk->sk_bound_dev_if) in inet_csk_bind_conflict() Greg Kroah-Hartman
2023-01-12 13:47 ` [PATCH 5.10 163/783] bpf: Move skb->len == 0 checks into __bpf_redirect Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 164/783] HID: hid-sensor-custom: set fixed size for custom attributes Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 165/783] ALSA: pcm: fix undefined behavior in bit shift for SNDRV_PCM_RATE_KNOT Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 166/783] ALSA: seq: fix undefined behavior in bit shift for SNDRV_SEQ_FILTER_USE_EVENT Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 167/783] regulator: core: use kfree_const() to free space conditionally Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 168/783] clk: rockchip: Fix memory leak in rockchip_clk_register_pll() Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 169/783] drm/amdgpu: fix pci device refcount leak Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 170/783] bonding: fix link recovery in mode 2 when updelay is nonzero Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 171/783] mtd: maps: pxa2xx-flash: fix memory leak in probe Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 172/783] drbd: fix an invalid memory access caused by incorrect use of list iterator Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 173/783] ASoC: qcom: Add checks for devm_kcalloc Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 174/783] media: vimc: Fix wrong function called when vimc_init() fails Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 175/783] media: imon: fix a race condition in send_packet() Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 176/783] clk: imx: replace osc_hdmi with dummy Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 177/783] pinctrl: pinconf-generic: add missing of_node_put() Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 178/783] media: dvb-core: Fix ignored return value in dvb_register_frontend() Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 179/783] media: dvb-usb: az6027: fix null-ptr-deref in az6027_i2c_xfer() Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 180/783] media: s5p-mfc: Add variant data for MFC v7 hardware for Exynos 3250 SoC Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 181/783] drm/tegra: Add missing clk_disable_unprepare() in tegra_dc_probe() Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 182/783] ASoC: dt-bindings: wcd9335: fix reset line polarity in example Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 183/783] ASoC: mediatek: mtk-btcvsd: Add checks for write and read of mtk_btcvsd_snd Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 184/783] NFSv4.2: Clear FATTR4_WORD2_SECURITY_LABEL when done decoding Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 185/783] NFSv4.2: Fix a memory stomp in decode_attr_security_label Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 186/783] NFSv4.2: Fix initialisation of struct nfs4_label Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 187/783] NFSv4: Fix a deadlock between nfs4_open_recover_helper() and delegreturn Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 188/783] NFS: Fix an Oops in nfs_d_automount() Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 189/783] ALSA: asihpi: fix missing pci_disable_device() Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 190/783] wifi: iwlwifi: mvm: fix double free on tx path Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 191/783] ASoC: mediatek: mt8173: Fix debugfs registration for components Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 192/783] ASoC: mediatek: mt8173: Enable IRQ when pdata is ready Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 193/783] drm/amd/pm/smu11: BACO is supported when its in BACO state Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 194/783] drm/radeon: Fix PCI device refcount leak in radeon_atrm_get_bios() Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 195/783] drm/amdgpu: Fix PCI device refcount leak in amdgpu_atrm_get_bios() Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 196/783] ASoC: pcm512x: Fix PM disable depth imbalance in pcm512x_probe Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 197/783] netfilter: conntrack: set icmpv6 redirects as RELATED Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 198/783] bpf, sockmap: Fix repeated calls to sock_put() when msg has more_data Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 199/783] bpf, sockmap: Fix data loss caused by using apply_bytes on ingress redirect Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 200/783] bonding: uninitialized variable in bond_miimon_inspect() Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 201/783] spi: spidev: mask SPI_CS_HIGH in SPI_IOC_RD_MODE Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 202/783] wifi: mac80211: fix memory leak in ieee80211_if_add() Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 203/783] wifi: cfg80211: Fix not unregister reg_pdev when load_builtin_regdb_keys() fails Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 204/783] wifi: mt76: fix coverity overrun-call in mt76_get_txpower() Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 205/783] regulator: core: fix module refcount leak in set_supply() Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 206/783] clk: qcom: clk-krait: fix wrong div2 functions Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 207/783] hsr: Add a rcu-read lock to hsr_forward_skb() Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 208/783] net: hsr: generate supervision frame without HSR/PRP tag Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 209/783] hsr: Disable netpoll Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 210/783] hsr: Synchronize sending frames to have always incremented outgoing seq nr Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 211/783] hsr: Synchronize sequence number updates Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 212/783] configfs: fix possible memory leak in configfs_create_dir() Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 213/783] regulator: core: fix resource leak in regulator_register() Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 214/783] hwmon: (jc42) Convert register access and caching to regmap/regcache Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 215/783] hwmon: (jc42) Restore the min/max/critical temperatures on resume Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 216/783] bpf, sockmap: fix race in sock_map_free() Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 217/783] ALSA: pcm: Set missing stop_operating flag at undoing trigger start Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 218/783] media: saa7164: fix missing pci_disable_device() Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 219/783] ALSA: mts64: fix possible null-ptr-defer in snd_mts64_interrupt Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 220/783] xprtrdma: Fix regbuf data not freed in rpcrdma_req_create() Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 221/783] SUNRPC: Fix missing release socket in rpc_sockname() Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 222/783] NFSv4.x: Fail client initialisation if state manager thread cant run Greg Kroah-Hartman
2023-01-12 13:48 ` [PATCH 5.10 223/783] mmc: alcor: fix return value check of mmc_add_host() Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 224/783] mmc: moxart: " Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 225/783] mmc: mxcmmc: " Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 226/783] mmc: pxamci: " Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 227/783] mmc: rtsx_usb_sdmmc: " Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 228/783] mmc: toshsd: " Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 229/783] mmc: vub300: " Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 230/783] mmc: wmt-sdmmc: " Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 231/783] mmc: atmel-mci: " Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 232/783] mmc: omap_hsmmc: " Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 233/783] mmc: meson-gx: " Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 234/783] mmc: via-sdmmc: " Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 235/783] mmc: wbsd: " Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 236/783] mmc: mmci: " Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 237/783] media: c8sectpfe: Add of_node_put() when breaking out of loop Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 238/783] media: coda: Add check for dcoda_iram_alloc Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 239/783] media: coda: Add check for kmalloc Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 240/783] clk: samsung: Fix memory leak in _samsung_clk_register_pll() Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 241/783] spi: spi-gpio: Dont set MOSI as an input if not 3WIRE mode Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 242/783] wifi: rtl8xxxu: Add __packed to struct rtl8723bu_c2h Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 243/783] wifi: rtl8xxxu: Fix the channel width reporting Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 244/783] wifi: brcmfmac: Fix error return code in brcmf_sdio_download_firmware() Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 245/783] blktrace: Fix output non-blktrace event when blk_classic option enabled Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 246/783] clk: socfpga: clk-pll: Remove unused variable rc Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 247/783] clk: socfpga: use clk_hw_register for a5/c5 Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 248/783] clk: socfpga: Fix memory leak in socfpga_gate_init() Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 249/783] net: vmw_vsock: vmci: Check memcpy_from_msg() Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 250/783] net: defxx: Fix missing err handling in dfx_init() Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 251/783] net: stmmac: selftests: fix potential memleak in stmmac_test_arpoffload() Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 252/783] drivers: net: qlcnic: Fix potential memory leak in qlcnic_sriov_init() Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 253/783] of: overlay: fix null pointer dereferencing in find_dup_cset_node_entry() and find_dup_cset_prop() Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 254/783] ethernet: s2io: dont call dev_kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 255/783] net: farsync: Fix kmemleak when rmmods farsync Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 256/783] net/tunnel: wait until all sk_user_data reader finish before releasing the sock Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 257/783] net: apple: mace: dont call dev_kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 258/783] net: apple: bmac: " Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 259/783] net: emaclite: " Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 260/783] net: ethernet: dnet: " Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 261/783] hamradio: " Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 262/783] net: amd: lance: " Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 263/783] net: amd-xgbe: Fix logic around active and passive cables Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 264/783] net: amd-xgbe: Check only the minimum speed for active/passive cables Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 265/783] can: tcan4x5x: Remove invalid write in clear_interrupts Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 266/783] net: lan9303: Fix read error execution path Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 267/783] ntb_netdev: Use dev_kfree_skb_any() in interrupt context Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 268/783] sctp: sysctl: make extra pointers netns aware Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 269/783] Bluetooth: btusb: dont call kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 270/783] Bluetooth: hci_qca: " Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 271/783] Bluetooth: hci_ll: " Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 272/783] Bluetooth: hci_h5: " Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 273/783] Bluetooth: hci_bcsp: " Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 274/783] Bluetooth: hci_core: " Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 275/783] Bluetooth: RFCOMM: " Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 276/783] stmmac: fix potential division by 0 Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 277/783] apparmor: fix a memleak in multi_transaction_new() Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 278/783] apparmor: fix lockdep warning when removing a namespace Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 279/783] apparmor: Fix abi check to include v8 abi Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 280/783] crypto: sun8i-ss - use dma_addr instead u32 Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 281/783] crypto: nitrox - avoid double free on error path in nitrox_sriov_init() Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 282/783] scsi: core: Fix a race between scsi_done() and scsi_timeout() Greg Kroah-Hartman
2023-01-12 13:49 ` [PATCH 5.10 283/783] apparmor: Use pointer to struct aa_label for lbs_cred Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 284/783] PCI: dwc: Fix n_fts[] array overrun Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 285/783] RDMA/core: Fix order of nldev_exit call Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 286/783] PCI: pci-epf-test: Register notifier if only core_init_notifier is enabled Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 287/783] f2fs: Fix the race condition of resize flag between resizefs Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 288/783] crypto: rockchip - do not do custom power management Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 289/783] crypto: rockchip - do not store mode globally Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 290/783] crypto: rockchip - add fallback for cipher Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 291/783] crypto: rockchip - add fallback for ahash Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 292/783] crypto: rockchip - better handle cipher key Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 293/783] crypto: rockchip - remove non-aligned handling Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 294/783] crypto: rockchip - delete unneeded variable initialization Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 295/783] crypto: rockchip - rework by using crypto_engine Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 296/783] apparmor: Fix memleak in alloc_ns() Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 297/783] f2fs: fix normal discard process Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 298/783] RDMA/siw: Fix immediate work request flush to completion queue Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 299/783] RDMA/nldev: Return "-EAGAIN" if the cm_id isnt from expected port Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 300/783] RDMA/siw: Set defined status for work completion with undefined status Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 301/783] scsi: scsi_debug: Fix a warning in resp_write_scat() Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 302/783] crypto: ccree - Remove debugfs when platform_driver_register failed Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 303/783] crypto: cryptd - Use request context instead of stack for sub-request Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 304/783] crypto: hisilicon/qm - add missing pci_dev_put() in q_num_set() Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 305/783] RDMA/hns: Repacing dseg_len by macros in fill_ext_sge_inl_data() Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 306/783] RDMA/hns: Fix ext_sge num error when post send Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 307/783] PCI: Check for alloc failure in pci_request_irq() Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 308/783] RDMA/hfi: Decrease PCI device reference count in error path Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 309/783] crypto: ccree - Make cc_debugfs_global_fini() available for module init function Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 310/783] RDMA/hns: fix memory leak in hns_roce_alloc_mr() Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 311/783] RDMA/rxe: Fix NULL-ptr-deref in rxe_qp_do_cleanup() when socket create failed Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 312/783] scsi: hpsa: Fix possible memory leak in hpsa_init_one() Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 313/783] crypto: tcrypt - Fix multibuffer skcipher speed test mem leak Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 314/783] padata: Always leave BHs disabled when running ->parallel() Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 315/783] padata: Fix list iterator in padata_do_serial() Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 316/783] scsi: mpt3sas: Fix possible resource leaks in mpt3sas_transport_port_add() Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 317/783] scsi: hpsa: Fix error handling in hpsa_add_sas_host() Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 318/783] scsi: hpsa: Fix possible memory leak in hpsa_add_sas_device() Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 319/783] scsi: scsi_debug: Fix a warning in resp_verify() Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 320/783] scsi: scsi_debug: Fix a warning in resp_report_zones() Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 321/783] scsi: fcoe: Fix possible name leak when device_register() fails Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 322/783] scsi: scsi_debug: Fix possible name leak in sdebug_add_host_helper() Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 323/783] scsi: ipr: Fix WARNING in ipr_init() Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 324/783] scsi: fcoe: Fix transport not deattached when fcoe_if_init() fails Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 325/783] scsi: snic: Fix possible UAF in snic_tgt_create() Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 326/783] RDMA/nldev: Add checks for nla_nest_start() in fill_stat_counter_qps() Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 327/783] f2fs: avoid victim selection from previous victim section Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 328/783] RDMA/nldev: Fix failure to send large messages Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 329/783] crypto: amlogic - Remove kcalloc without check Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 330/783] crypto: omap-sham - Use pm_runtime_resume_and_get() in omap_sham_probe() Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 331/783] riscv/mm: add arch hook arch_clear_hugepage_flags Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 332/783] RDMA/hfi1: Fix error return code in parse_platform_config() Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 333/783] RDMA/srp: Fix error return code in srp_parse_options() Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 334/783] orangefs: Fix sysfs not cleanup when dev init failed Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 335/783] RDMA/hns: Fix PBL page MTR find Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 336/783] RDMA/hns: Fix page size cap from firmware Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 337/783] crypto: img-hash - Fix variable dereferenced before check hdev->req Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 338/783] hwrng: amd - Fix PCI device refcount leak Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 339/783] hwrng: geode " Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 340/783] IB/IPoIB: Fix queue count inconsistency for PKEY child interfaces Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 341/783] drivers: dio: fix possible memory leak in dio_init() Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 342/783] serial: tegra: Read DMA status before terminating Greg Kroah-Hartman
2023-01-12 13:50 ` [PATCH 5.10 343/783] class: fix possible memory leak in __class_register() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 344/783] vfio: platform: Do not pass return buffer to ACPI _RST method Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 345/783] uio: uio_dmem_genirq: Fix missing unlock in irq configuration Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 346/783] uio: uio_dmem_genirq: Fix deadlock between irq config and handling Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 347/783] usb: fotg210-udc: Fix ages old endianness issues Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 348/783] staging: vme_user: Fix possible UAF in tsi148_dma_list_add Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 349/783] usb: typec: Check for ops->exit instead of ops->enter in altmode_exit Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 350/783] usb: typec: tcpci: fix of node refcount leak in tcpci_register_port() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 351/783] usb: typec: tipd: Fix spurious fwnode_handle_put in error path Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 352/783] serial: amba-pl011: avoid SBSA UART accessing DMACR register Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 353/783] serial: pl011: Do not clear RX FIFO & RX interrupt in unthrottle Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 354/783] serial: pch: Fix PCI device refcount leak in pch_request_dma() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 355/783] tty: serial: clean up stop-tx part in altera_uart_tx_chars() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 356/783] tty: serial: altera_uart_{r,t}x_chars() need only uart_port Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 357/783] serial: altera_uart: fix locking in polling mode Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 358/783] serial: sunsab: Fix error handling in sunsab_init() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 359/783] test_firmware: fix memory leak in test_firmware_init() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 360/783] misc: ocxl: fix possible name leak in ocxl_file_register_afu() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 361/783] ocxl: fix pci device refcount leak when calling get_function_0() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 362/783] misc: tifm: fix possible memory leak in tifm_7xx1_switch_media() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 363/783] misc: sgi-gru: fix use-after-free error in gru_set_context_option, gru_fault and gru_handle_user_call_os Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 364/783] firmware: raspberrypi: fix possible memory leak in rpi_firmware_probe() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 365/783] cxl: fix possible null-ptr-deref in cxl_guest_init_afu|adapter() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 366/783] cxl: fix possible null-ptr-deref in cxl_pci_init_afu|adapter() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 367/783] iio: temperature: ltc2983: make bulk write buffer DMA-safe Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 368/783] genirq: Add IRQF_NO_AUTOEN for request_irq/nmi() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 369/783] iio:imu:adis: Use IRQF_NO_AUTOEN instead of irq request then disable Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 370/783] iio: adis: handle devices that cannot unmask the drdy pin Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 371/783] iio: adis: stylistic changes Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 372/783] iio:imu:adis: Move exports into IIO_ADISLIB namespace Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 373/783] iio: adis: add __adis_enable_irq() implementation Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 374/783] counter: stm32-lptimer-cnt: fix the check on arr and cmp registers update Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 375/783] usb: roles: fix of node refcount leak in usb_role_switch_is_parent() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 376/783] usb: gadget: f_hid: optional SETUP/SET_REPORT mode Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 377/783] usb: gadget: f_hid: fix f_hidg lifetime vs cdev Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 378/783] usb: gadget: f_hid: fix refcount leak on error path Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 379/783] drivers: mcb: fix resource leak in mcb_probe() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 380/783] mcb: mcb-parse: fix error handing in chameleon_parse_gdd() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 381/783] chardev: fix error handling in cdev_device_add() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 382/783] i2c: pxa-pci: fix missing pci_disable_device() on error in ce4100_i2c_probe Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 383/783] staging: rtl8192u: Fix use after free in ieee80211_rx() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 384/783] staging: rtl8192e: Fix potential use-after-free in rtllib_rx_Monitor() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 385/783] vme: Fix error not catched in fake_init() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 386/783] gpiolib: Get rid of redundant else Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 387/783] gpiolib: cdev: fix NULL-pointer dereferences Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 388/783] i2c: mux: reg: check return value after calling platform_get_resource() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 389/783] i2c: ismt: Fix an out-of-bounds bug in ismt_access() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 390/783] usb: storage: Add check for kcalloc Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 391/783] tracing/hist: Fix issue of losting command info in error_log Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 392/783] samples: vfio-mdev: Fix missing pci_disable_device() in mdpy_fb_probe() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 393/783] thermal/drivers/imx8mm_thermal: Validate temperature range Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 394/783] fbdev: ssd1307fb: Drop optional dependency Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 395/783] fbdev: pm2fb: fix missing pci_disable_device() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 396/783] fbdev: via: Fix error in via_core_init() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 397/783] fbdev: vermilion: decrease reference count in error path Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 398/783] fbdev: uvesafb: Fixes an error handling path in uvesafb_probe() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 399/783] HSI: omap_ssi_core: fix unbalanced pm_runtime_disable() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 400/783] HSI: omap_ssi_core: fix possible memory leak in ssi_probe() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 401/783] power: supply: fix residue sysfs file in error handle route of __power_supply_register() Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 402/783] perf trace: Return error if a system call doesnt exist Greg Kroah-Hartman
2023-01-12 13:51 ` [PATCH 5.10 403/783] perf trace: Use macro RAW_SYSCALL_ARGS_NUM to replace number Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 404/783] perf trace: Handle failure when trace point folder is missed Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 405/783] perf symbol: correction while adjusting symbol Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 406/783] HSI: omap_ssi_core: Fix error handling in ssi_init() Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 407/783] power: supply: fix null pointer dereferencing in power_supply_get_battery_info Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 408/783] RDMA/siw: Fix pointer cast warning Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 409/783] iommu/sun50i: Fix reset release Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 410/783] iommu/sun50i: Consider all fault sources for reset Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 411/783] iommu/sun50i: Fix R/W permission check Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 412/783] iommu/sun50i: Fix flush size Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 413/783] phy: usb: s2 WoL wakeup_count not incremented for USB->Eth devices Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 414/783] include/uapi/linux/swab: Fix potentially missing __always_inline Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 415/783] pwm: tegra: Improve required rate calculation Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 416/783] dmaengine: idxd: Fix crc_val field for completion record Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 417/783] rtc: rtc-cmos: Do not check ACPI_FADT_LOW_POWER_S0 Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 418/783] rtc: cmos: Fix event handler registration ordering issue Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 419/783] rtc: cmos: Fix wake alarm breakage Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 420/783] rtc: cmos: fix build on non-ACPI platforms Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 421/783] rtc: cmos: Call cmos_wake_setup() from cmos_do_probe() Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 422/783] rtc: cmos: Call rtc_wake_setup() " Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 423/783] rtc: cmos: Eliminate forward declarations of some functions Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 424/783] rtc: cmos: Rename ACPI-related functions Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 425/783] rtc: cmos: Disable ACPI RTC event on removal Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 426/783] rtc: snvs: Allow a time difference on clock register read Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 427/783] rtc: pcf85063: Fix reading alarm Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 428/783] iommu/amd: Fix pci device refcount leak in ppr_notifier() Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 429/783] iommu/fsl_pamu: Fix resource leak in fsl_pamu_probe() Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 430/783] macintosh: fix possible memory leak in macio_add_one_device() Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 431/783] macintosh/macio-adb: check the return value of ioremap() Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 432/783] powerpc/52xx: Fix a resource leak in an error handling path Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 433/783] cxl: Fix refcount leak in cxl_calc_capp_routing Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 434/783] powerpc/xmon: Enable breakpoints on 8xx Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 435/783] powerpc/xmon: Fix -Wswitch-unreachable warning in bpt_cmds Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 436/783] powerpc/xive: add missing iounmap() in error path in xive_spapr_populate_irq_data() Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 437/783] kbuild: remove unneeded mkdir for external modules_install Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 438/783] kbuild: unify modules(_install) for in-tree and external modules Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 439/783] kbuild: refactor single builds of *.ko Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 440/783] powerpc/perf: callchain validate kernel stack pointer bounds Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 441/783] powerpc/83xx/mpc832x_rdb: call platform_device_put() in error case in of_fsl_spi_probe() Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 442/783] powerpc/hv-gpci: Fix hv_gpci event list Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 443/783] selftests/powerpc: Fix resource leaks Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 444/783] iommu/sun50i: Remove IOMMU_DOMAIN_IDENTITY Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 445/783] pwm: sifive: Call pwm_sifive_update_clock() while mutex is held Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 446/783] remoteproc: sysmon: fix memory leak in qcom_add_sysmon_subdev() Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 447/783] remoteproc: qcom_q6v5_pas: disable wakeup on probe fail or remove Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 448/783] remoteproc: qcom_q6v5_pas: detach power domains on remove Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 449/783] remoteproc: qcom_q6v5_pas: Fix missing of_node_put() in adsp_alloc_memory_region() Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 450/783] powerpc/eeh: Drop redundant spinlock initialization Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 451/783] powerpc/pseries/eeh: use correct API for error log size Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 452/783] netfilter: flowtable: really fix NAT IPv6 offload Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 453/783] rtc: st-lpc: Add missing clk_disable_unprepare in st_rtc_probe() Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 454/783] rtc: pic32: Move devm_rtc_allocate_device earlier in pic32_rtc_probe() Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 455/783] rtc: pcf85063: fix pcf85063_clkout_control Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 456/783] NFSD: Remove spurious cb_setup_err tracepoint Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 457/783] nfsd: under NFSv4.1, fix double svc_xprt_put on rpc_create failure Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 458/783] net: macsec: fix net device access prior to holding a lock Greg Kroah-Hartman
2023-01-12 13:52 ` Greg Kroah-Hartman [this message]
2023-01-12 13:52 ` [PATCH 5.10 460/783] mISDN: hfcpci: dont call dev_kfree_skb/kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 461/783] mISDN: hfcmulti: " Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 462/783] nfc: pn533: Clear nfc_target before being used Greg Kroah-Hartman
2023-01-12 13:52 ` [PATCH 5.10 463/783] r6040: Fix kmemleak in probe and remove Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 464/783] net: switch to storing KCOV handle directly in sk_buff Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 465/783] net: add inline function skb_csum_is_sctp Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 466/783] net: igc: use skb_csum_is_sctp instead of protocol check Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 467/783] net: add a helper to avoid issues with HW TX timestamping and SO_TXTIME Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 468/783] igc: Enhance Qbv scheduling by using first flag bit Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 469/783] igc: Use strict cycles for Qbv scheduling Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 470/783] igc: Add checking for basetime less than zero Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 471/783] igc: recalculate Qbv end_time by considering cycle time Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 472/783] igc: Lift TAPRIO schedule restriction Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 473/783] igc: Set Qbv start_time and end_time to end_time if not being configured in GCL Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 474/783] rtc: mxc_v2: Add missing clk_disable_unprepare() Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 475/783] selftests: devlink: fix the fd redirect in dummy_reporter_test Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 476/783] openvswitch: Fix flow lookup to use unmasked key Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 477/783] skbuff: Account for tail adjustment during pull operations Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 478/783] mailbox: zynq-ipi: fix error handling while device_register() fails Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 479/783] net_sched: reject TCF_EM_SIMPLE case for complex ematch module Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 480/783] rxrpc: Fix missing unlock in rxrpc_do_sendmsg() Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 481/783] myri10ge: Fix an error handling path in myri10ge_probe() Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 482/783] net: stream: purge sk_error_queue in sk_stream_kill_queues() Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 483/783] rcu: Fix __this_cpu_read() lockdep warning in rcu_force_quiescent_state() Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 484/783] arm64: make is_ttbrX_addr() noinstr-safe Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 485/783] video: hyperv_fb: Avoid taking busy spinlock on panic path Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 486/783] x86/hyperv: Remove unregister syscore call from Hyper-V cleanup Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 487/783] binfmt_misc: fix shift-out-of-bounds in check_special_flags Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 488/783] fs: jfs: fix shift-out-of-bounds in dbAllocAG Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 489/783] udf: Avoid double brelse() in udf_rename() Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 490/783] fs: jfs: fix shift-out-of-bounds in dbDiscardAG Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 491/783] ACPICA: Fix error code path in acpi_ds_call_control_method() Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 492/783] nilfs2: fix shift-out-of-bounds/overflow in nilfs_sb2_bad_offset() Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 493/783] nilfs2: fix shift-out-of-bounds due to too large exponent of block size Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 494/783] acct: fix potential integer overflow in encode_comp_t() Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 495/783] hfs: fix OOB Read in __hfs_brec_find Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 496/783] drm/etnaviv: add missing quirks for GC300 Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 497/783] brcmfmac: return error when getting invalid max_flowrings from dongle Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 498/783] wifi: ath9k: verify the expected usb_endpoints are present Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 499/783] wifi: ar5523: Fix use-after-free on ar5523_cmd() timed out Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 500/783] ASoC: codecs: rt298: Add quirk for KBL-R RVP platform Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 501/783] ipmi: fix memleak when unload ipmi driver Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 502/783] drm/amd/display: prevent memory leak Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 503/783] qed (gcc13): use u16 for fid to be big enough Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 504/783] bpf: make sure skb->len != 0 when redirecting to a tunneling device Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 505/783] net: ethernet: ti: Fix return type of netcp_ndo_start_xmit() Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 506/783] hamradio: baycom_epp: Fix return type of baycom_send_packet() Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 507/783] wifi: brcmfmac: Fix potential shift-out-of-bounds in brcmf_fw_alloc_request() Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 508/783] igb: Do not free q_vector unless new one was allocated Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 509/783] drm/amdgpu: Fix type of second parameter in trans_msg() callback Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 510/783] drm/amdgpu: Fix type of second parameter in odn_edit_dpm_table() callback Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 511/783] s390/ctcm: Fix return type of ctc{mp,}m_tx() Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 512/783] s390/netiucv: Fix return type of netiucv_tx() Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 513/783] s390/lcs: Fix return type of lcs_start_xmit() Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 514/783] drm/msm: Use drm_mode_copy() Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 515/783] drm/rockchip: " Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 516/783] drm/sti: " Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 517/783] drivers/md/md-bitmap: check the return value of md_bitmap_get_counter() Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 518/783] md/raid1: stop mdx_raid1 thread when raid1 array run failed Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 519/783] drm/amd/display: fix array index out of bound error in bios parser Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 520/783] net: add atomic_long_t to net_device_stats fields Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 521/783] mrp: introduce active flags to prevent UAF when applicant uninit Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 522/783] ppp: associate skb with a device at tx Greg Kroah-Hartman
2023-01-12 13:53 ` [PATCH 5.10 523/783] bpf: Prevent decl_tag from being referenced in func_proto arg Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 524/783] ethtool: avoiding integer overflow in ethtool_phys_id() Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 525/783] media: dvb-frontends: fix leak of memory fw Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 526/783] media: dvbdev: adopts refcnt to avoid UAF Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 527/783] media: dvb-usb: fix memory leak in dvb_usb_adapter_init() Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 528/783] blk-mq: fix possible memleak when register hctx failed Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 529/783] libbpf: Avoid enum forward-declarations in public API in C++ mode Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 530/783] regulator: core: fix use_count leakage when handling boot-on Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 531/783] mmc: f-sdh30: Add quirks for broken timeout clock capability Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 532/783] mmc: renesas_sdhi: better reset from HS400 mode Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 533/783] media: si470x: Fix use-after-free in si470x_int_in_callback() Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 534/783] clk: st: Fix memory leak in st_of_quadfs_setup() Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 535/783] hugetlbfs: fix null-ptr-deref in hugetlbfs_parse_param() Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 536/783] drm/fsl-dcu: Fix return type of fsl_dcu_drm_connector_mode_valid() Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 537/783] drm/sti: Fix return type of sti_{dvo,hda,hdmi}_connector_mode_valid() Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 538/783] orangefs: Fix kmemleak in orangefs_prepare_debugfs_help_string() Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 539/783] orangefs: Fix kmemleak in orangefs_{kernel,client}_debug_init() Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 540/783] hwmon: (jc42) Fix missing unlock on error in jc42_write() Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 541/783] ALSA/ASoC: hda: move/rename snd_hdac_ext_stop_streams to hdac_stream.c Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 542/783] ALSA: hda: add snd_hdac_stop_streams() helper Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 543/783] ASoC: Intel: Skylake: Fix driver hang during shutdown Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 544/783] ASoC: mediatek: mt8173-rt5650-rt5514: fix refcount leak in mt8173_rt5650_rt5514_dev_probe() Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 545/783] ASoC: audio-graph-card: fix refcount leak of cpu_ep in __graph_for_each_link() Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 546/783] ASoC: rockchip: pdm: Add missing clk_disable_unprepare() in rockchip_pdm_runtime_resume() Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 547/783] ASoC: wm8994: Fix potential deadlock Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 548/783] ASoC: rockchip: spdif: Add missing clk_disable_unprepare() in rk_spdif_runtime_resume() Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 549/783] ASoC: rt5670: Remove unbalanced pm_runtime_put() Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 550/783] LoadPin: Ignore the "contents" argument of the LSM hooks Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 551/783] pstore: Switch pmsg_lock to an rt_mutex to avoid priority inversion Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 552/783] perf debug: Set debug_peo_args and redirect_to_stderr variable to correct values in perf_quiet_option() Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 553/783] afs: Fix lost servers_outstanding count Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 554/783] pstore: Make sure CONFIG_PSTORE_PMSG selects CONFIG_RT_MUTEXES Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 555/783] ima: Simplify ima_lsm_copy_rule Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 556/783] ALSA: usb-audio: add the quirk for KT0206 device Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 557/783] ALSA: hda/realtek: Add quirk for Lenovo TianYi510Pro-14IOB Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 558/783] ALSA: hda/hdmi: Add HP Device 0x8711 to force connect list Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 559/783] usb: dwc3: Fix race between dwc3_set_mode and __dwc3_set_mode Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 560/783] usb: dwc3: core: defer probe on ulpi_read_id timeout Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 561/783] HID: wacom: Ensure bootloader PID is usable in hidraw mode Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 562/783] HID: mcp2221: dont connect hidraw Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 563/783] reiserfs: Add missing calls to reiserfs_security_free() Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 564/783] iio: adc: ad_sigma_delta: do not use internal iio_dev lock Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 565/783] iio: adc128s052: add proper .data members in adc128_of_match table Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 566/783] regulator: core: fix deadlock on regulator enable Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 567/783] gcov: add support for checksum field Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 568/783] ovl: fix use inode directly in rcu-walk mode Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 569/783] media: dvbdev: fix build warning due to comments Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 570/783] media: dvbdev: fix refcnt bug Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 571/783] pwm: tegra: Fix 32 bit build Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 572/783] usb: dwc3: qcom: Fix memory leak in dwc3_qcom_interconnect_init Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 573/783] cifs: fix oops during encryption Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 574/783] nvme-pci: fix doorbell buffer value endianness Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 575/783] nvme-pci: fix mempool alloc size Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 576/783] nvme-pci: fix page size checks Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 577/783] ata: ahci: Fix PCS quirk application for suspend Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 578/783] nvme: fix the NVME_CMD_EFFECTS_CSE_MASK definition Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 579/783] nvmet: dont defer passthrough commands with trivial effects to the workqueue Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 580/783] objtool: Fix SEGFAULT Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 581/783] powerpc/rtas: avoid device tree lookups in rtas_os_term() Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 582/783] powerpc/rtas: avoid scheduling " Greg Kroah-Hartman
2023-01-12 13:54 ` [PATCH 5.10 583/783] HID: multitouch: fix Asus ExpertBook P2 P2451FA trackpoint Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 584/783] HID: plantronics: Additional PIDs for double volume key presses quirk Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 585/783] pstore/zone: Use GFP_ATOMIC to allocate zone buffer Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 586/783] hfsplus: fix bug causing custom uid and gid being unable to be assigned with mount Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 587/783] binfmt: Fix error return code in load_elf_fdpic_binary() Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 588/783] ovl: Use ovl mounters fsuid and fsgid in ovl_link() Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 589/783] ALSA: line6: correct midi status byte when receiving data from podxt Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 590/783] ALSA: line6: fix stack overflow in line6_midi_transmit Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 591/783] pnode: terminate at peers of source Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 592/783] md: fix a crash in mempool_free Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 593/783] mm, compaction: fix fast_isolate_around() to stay within boundaries Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 594/783] f2fs: should put a page when checking the summary info Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 595/783] mmc: vub300: fix warning - do not call blocking ops when !TASK_RUNNING Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 596/783] tpm: acpi: Call acpi_put_table() to fix memory leak Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 597/783] tpm: tpm_crb: Add the missed " Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 598/783] tpm: tpm_tis: " Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 599/783] SUNRPC: Dont leak netobj memory when gss_read_proxy_verf() fails Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 600/783] kcsan: Instrument memcpy/memset/memmove with newer Clang Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 601/783] ASoC: Intel/SOF: use set_stream() instead of set_tdm_slots() for HDAudio Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 602/783] ASoC/SoundWire: dai: expand stream concept beyond SoundWire Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 603/783] net/mlx5e: Fix nullptr in mlx5e_tc_add_fdb_flow() Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 604/783] wifi: rtlwifi: remove always-true condition pointed out by GCC 12 Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 605/783] wifi: rtlwifi: 8192de: correct checking of IQK reload Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 606/783] torture: Exclude "NOHZ tick-stop error" from fatal errors Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 607/783] rcu: Prevent lockdep-RCU splats on lock acquisition/release Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 608/783] net/af_packet: add VLAN support for AF_PACKET SOCK_RAW GSO Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 609/783] net/af_packet: make sure to pull mac header Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 610/783] media: stv0288: use explicitly signed char Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 611/783] soc: qcom: Select REMAP_MMIO for LLCC driver Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 612/783] kest.pl: Fix grub2 menu handling for rebooting Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 613/783] ktest.pl minconfig: Unset configs instead of just removing them Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 614/783] jbd2: use the correct print format Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 615/783] arm64: dts: qcom: sdm845-db845c: correct SPI2 pins drive strength Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 616/783] mmc: sdhci-sprd: Disable CLK_AUTO when the clock is less than 400K Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 617/783] btrfs: fix resolving backrefs for inline extent followed by prealloc Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 618/783] ARM: ux500: do not directly dereference __iomem Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 619/783] arm64: dts: qcom: sdm850-lenovo-yoga-c630: correct I2C12 pins drive strength Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 620/783] selftests: Use optional USERCFLAGS and USERLDFLAGS Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 621/783] PM/devfreq: governor: Add a private governor_data for governor Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 622/783] cpufreq: Init completion before kobject_init_and_add() Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 623/783] ALSA: patch_realtek: Fix Dell Inspiron Plus 16 Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 624/783] ALSA: hda/realtek: Apply dual codec fixup for Dell Latitude laptops Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 625/783] dm cache: Fix ABBA deadlock between shrink_slab and dm_cache_metadata_abort Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 626/783] dm thin: Fix ABBA deadlock between shrink_slab and dm_pool_abort_metadata Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 627/783] dm thin: Use last transactions pmd->root when commit failed Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 628/783] dm thin: resume even if in FAIL mode Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 629/783] dm thin: Fix UAF in run_timer_softirq() Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 630/783] dm integrity: Fix UAF in dm_integrity_dtr() Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 631/783] dm clone: Fix UAF in clone_dtr() Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 632/783] dm cache: Fix UAF in destroy() Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 633/783] dm cache: set needs_check flag after aborting metadata Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 634/783] tracing/hist: Fix out-of-bound write on action_data.var_ref_idx Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 635/783] perf/core: Call LSM hook after copying perf_event_attr Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 636/783] KVM: nVMX: Inject #GP, not #UD, if "generic" VMXON CR0/CR4 check fails Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 637/783] x86/microcode/intel: Do not retry microcode reloading on the APs Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 638/783] ftrace/x86: Add back ftrace_expected for ftrace bug reports Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 639/783] x86/kprobes: Fix kprobes instruction boudary check with CONFIG_RETHUNK Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 640/783] tracing/hist: Fix wrong return value in parse_action_params() Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 641/783] tracing: Fix infinite loop in tracing_read_pipe on overflowed print_trace_line Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 642/783] staging: media: tegra-video: fix chan->mipi value on error Greg Kroah-Hartman
2023-01-12 13:55 ` [PATCH 5.10 643/783] ARM: 9256/1: NWFPE: avoid compiler-generated __aeabi_uldivmod Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 644/783] media: dvb-core: Fix double free in dvb_register_device() Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 645/783] media: dvb-core: Fix UAF due to refcount races at releasing Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 646/783] cifs: fix confusing debug message Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 647/783] cifs: fix missing display of three mount options Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 648/783] rtc: ds1347: fix value written to century register Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 649/783] md/bitmap: Fix bitmap chunk size overflow issues Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 650/783] efi: Add iMac Pro 2017 to uefi skip cert quirk Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 651/783] wifi: wilc1000: sdio: fix module autoloading Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 652/783] ASoC: jz4740-i2s: Handle independent FIFO flush bits Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 653/783] ipmi: fix long wait in unload when IPMI disconnect Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 654/783] mtd: spi-nor: Check for zero erase size in spi_nor_find_best_erase_type() Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 655/783] ima: Fix a potential NULL pointer access in ima_restore_measurement_list Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 656/783] ipmi: fix use after free in _ipmi_destroy_user() Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 657/783] PCI: Fix pci_device_is_present() for VFs by checking PF Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 658/783] PCI/sysfs: Fix double free in error path Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 659/783] crypto: n2 - add missing hash statesize Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 660/783] driver core: Fix bus_type.match() error handling in __driver_attach() Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 661/783] iommu/amd: Fix ivrs_acpihid cmdline parsing code Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 662/783] remoteproc: core: Do pm_relax when in RPROC_OFFLINE state Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 663/783] parisc: led: Fix potential null-ptr-deref in start_task() Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 664/783] device_cgroup: Roll back to original exceptions after copy failure Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 665/783] drm/connector: send hotplug uevent on connector cleanup Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 666/783] drm/vmwgfx: Validate the box size for the snooped cursor Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 667/783] drm/i915/dsi: fix VBT send packet port selection for dual link DSI Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 668/783] drm/ingenic: Fix missing platform_driver_unregister() call in ingenic_drm_init() Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 669/783] ext4: silence the warning when evicting inode with dioread_nolock Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 670/783] ext4: add inode table check in __ext4_get_inode_loc to aovid possible infinite loop Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 671/783] ext4: fix use-after-free in ext4_orphan_cleanup Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 672/783] ext4: fix undefined behavior in bit shift for ext4_check_flag_values Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 673/783] ext4: add EXT4_IGET_BAD flag to prevent unexpected bad inode Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 674/783] ext4: add helper to check quota inums Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 675/783] ext4: fix bug_on in __es_tree_search caused by bad quota inode Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 676/783] ext4: fix reserved cluster accounting in __es_remove_extent() Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 677/783] ext4: check and assert if marking an no_delete evicting inode dirty Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 678/783] ext4: fix bug_on in __es_tree_search caused by bad boot loader inode Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 679/783] ext4: init quota for old.inode in ext4_rename Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 680/783] ext4: fix delayed allocation bug in ext4_clu_mapped for bigalloc + inline Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 681/783] ext4: fix corruption when online resizing a 1K bigalloc fs Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 682/783] ext4: fix error code return to user-space in ext4_get_branch() Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 683/783] ext4: avoid BUG_ON when creating xattrs Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 684/783] ext4: fix inode leak in ext4_xattr_inode_create() on an error path Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 685/783] ext4: initialize quota before expanding inode in setproject ioctl Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 686/783] ext4: avoid unaccounted block allocation when expanding inode Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 687/783] ext4: allocate extended attribute value in vmalloc area Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 688/783] drm/amdgpu: handle polaris10/11 overlap asics (v2) Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 689/783] drm/amdgpu: make display pinning more flexible (v2) Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 690/783] ARM: renumber bits related to _TIF_WORK_MASK Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 691/783] perf/x86/intel/uncore: Generalize I/O stacks to PMON mapping procedure Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 692/783] perf/x86/intel/uncore: Clear attr_update properly Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 693/783] btrfs: replace strncpy() with strscpy() Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 694/783] x86/mce: Get rid of msr_ops Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 695/783] x86/MCE/AMD: Clear DFR errors found in THR handler Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 696/783] media: s5p-mfc: Fix to handle reference queue during finishing Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 697/783] media: s5p-mfc: Clear workbit to handle error condition Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 698/783] media: s5p-mfc: Fix in register read and write for H264 Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 699/783] perf probe: Use dwarf_attr_integrate as generic DWARF attr accessor Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 700/783] perf probe: Fix to get the DW_AT_decl_file and DW_AT_call_file as unsinged data Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 701/783] x86/kprobes: Convert to insn_decode() Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 702/783] x86/kprobes: Fix optprobe optimization check with CONFIG_RETHUNK Greg Kroah-Hartman
2023-01-12 13:56 ` [PATCH 5.10 703/783] staging: media: tegra-video: fix device_node use after free Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 704/783] ravb: Fix "failed to switch device to config mode" message during unbind Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 705/783] riscv/stacktrace: Fix stack output without ra on the stack top Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 706/783] riscv: stacktrace: Fixup ftrace_graph_ret_addr retp argument Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 707/783] ext4: goto right label failed_mount3a Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 708/783] ext4: correct inconsistent error msg in nojournal mode Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 709/783] mm/highmem: Lift memcpy_[to|from]_page to core Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 710/783] ext4: use memcpy_to_page() in pagecache_write() Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 711/783] fs: ext4: initialize fsdata " Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 712/783] ext4: move functions in super.c Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 713/783] ext4: simplify ext4 error translation Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 714/783] ext4: fix various seppling typos Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 715/783] ext4: fix leaking uninitialized memory in fast-commit journal Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 716/783] ext4: use kmemdup() to replace kmalloc + memcpy Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 717/783] mbcache: dont reclaim used entries Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 718/783] mbcache: add functions to delete entry if unused Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 719/783] ext4: remove EA inode entry from mbcache on inode eviction Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 720/783] ext4: unindent codeblock in ext4_xattr_block_set() Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 721/783] ext4: fix race when reusing xattr blocks Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 722/783] mbcache: automatically delete entries from cache on freeing Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 723/783] ext4: fix deadlock due to mbcache entry corruption Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 724/783] SUNRPC: ensure the matching upcall is in-flight upon downcall Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 725/783] bpf: pull before calling skb_postpull_rcsum() Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 726/783] drm/panfrost: Fix GEM handle creation ref-counting Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 727/783] vmxnet3: correctly report csum_level for encapsulated packet Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 728/783] veth: Fix race with AF_XDP exposing old or uninitialized descriptors Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 729/783] nfsd: shut down the NFSv4 state objects before the filecache Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 730/783] net: hns3: add interrupts re-initialization while doing VF FLR Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 731/783] net: sched: fix memory leak in tcindex_set_parms Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 732/783] qlcnic: prevent ->dcb use-after-free on qlcnic_dcb_enable() failure Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 733/783] nfc: Fix potential resource leaks Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 734/783] vhost/vsock: Fix error handling in vhost_vsock_init() Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 735/783] vringh: fix range used in iotlb_translate() Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 736/783] vhost: fix range used in translate_desc() Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 737/783] net/mlx5: Add forgotten cleanup calls into mlx5_init_once() error path Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 738/783] net/mlx5: Avoid recovery in probe flows Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 739/783] net/mlx5e: IPoIB, Dont allow CQE compression to be turned on by default Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 740/783] net/mlx5e: Fix hw mtu initializing at XDP SQ allocation Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 741/783] net: amd-xgbe: add missed tasklet_kill Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 742/783] net: phy: xgmiitorgmii: Fix refcount leak in xgmiitorgmii_probe Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 743/783] RDMA/mlx5: Fix validation of max_rd_atomic caps for DC Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 744/783] drm/meson: Reduce the FIFO lines held when AFBC is not used Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 745/783] filelock: new helper: vfs_inode_has_locks Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 746/783] ceph: switch to vfs_inode_has_locks() to fix file lock bug Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 747/783] gpio: sifive: Fix refcount leak in sifive_gpio_probe Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 748/783] net: sched: atm: dont intepret cls results when asked to drop Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 749/783] net: sched: cbq: " Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 750/783] netfilter: ipset: fix hash:net,port,net hang with /0 subnet Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 751/783] netfilter: ipset: Rework long task execution when adding/deleting entries Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 752/783] perf tools: Fix resources leak in perf_data__open_dir() Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 753/783] drivers/net/bonding/bond_3ad: return when theres no aggregator Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 754/783] usb: rndis_host: Secure rndis_query check against int overflow Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 755/783] drm/i915: unpin on error in intel_vgpu_shadow_mm_pin() Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 756/783] caif: fix memory leak in cfctrl_linkup_request() Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 757/783] udf: Fix extension of the last extent in the file Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 758/783] ASoC: Intel: bytcr_rt5640: Add quirk for the Advantech MICA-071 tablet Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 759/783] nvme: fix multipath crash caused by flush request when blktrace is enabled Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 760/783] x86/bugs: Flush IBP in ib_prctl_set() Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 761/783] nfsd: fix handling of readdir in v4root vs. mount upcall timeout Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 762/783] fbdev: matroxfb: G200eW: Increase max memory from 1 MB to 16 MB Greg Kroah-Hartman
2023-01-12 13:57 ` [PATCH 5.10 763/783] riscv: uaccess: fix type of 0 variable on error in get_user() Greg Kroah-Hartman
2023-01-12 13:58 ` [PATCH 5.10 764/783] drm/i915/gvt: fix gvt debugfs destroy Greg Kroah-Hartman
2023-01-12 13:58 ` [PATCH 5.10 765/783] drm/i915/gvt: fix vgpu debugfs clean in remove Greg Kroah-Hartman
2023-01-12 13:58 ` [PATCH 5.10 766/783] ext4: dont allow journal inode to have encrypt flag Greg Kroah-Hartman
2023-01-12 13:58 ` [PATCH 5.10 767/783] selftests: set the BUILD variable to absolute path Greg Kroah-Hartman
2023-01-12 13:58 ` [PATCH 5.10 768/783] hfs/hfsplus: use WARN_ON for sanity check Greg Kroah-Hartman
2023-01-12 13:58 ` [PATCH 5.10 769/783] hfs/hfsplus: avoid WARN_ON() for sanity check, use proper error handling Greg Kroah-Hartman
2023-01-12 13:58 ` [PATCH 5.10 770/783] mbcache: Avoid nesting of cache->c_list_lock under bit locks Greg Kroah-Hartman
2023-01-12 13:58 ` [PATCH 5.10 771/783] efi: random: combine bootloader provided RNG seed with RNG protocol output Greg Kroah-Hartman
2023-01-12 13:58 ` [PATCH 5.10 772/783] io_uring: Fix unsigned res comparison with zero in io_fixup_rw_res() Greg Kroah-Hartman
2023-01-12 13:58 ` [PATCH 5.10 773/783] parisc: Align parisc MADV_XXX constants with all other architectures Greg Kroah-Hartman
2023-01-12 13:58 ` [PATCH 5.10 774/783] ext4: disable fast-commit of encrypted dir operations Greg Kroah-Hartman
2023-01-12 13:58 ` [PATCH 5.10 775/783] ext4: dont set up encryption key during jbd2 transaction Greg Kroah-Hartman
2023-01-12 13:58 ` [PATCH 5.10 776/783] fsl_lpuart: Dont enable interrupts too early Greg Kroah-Hartman
2023-01-12 13:58 ` [PATCH 5.10 777/783] serial: fixup backport of "serial: Deassert Transmit Enable on probe in driver-specific way" Greg Kroah-Hartman
2023-01-12 13:58 ` [PATCH 5.10 778/783] mptcp: mark ops structures as ro_after_init Greg Kroah-Hartman
2023-01-12 13:58 ` [PATCH 5.10 779/783] mptcp: remove MPTCP ifdef in TCP SYN cookies Greg Kroah-Hartman
2023-01-12 13:58 ` [PATCH 5.10 780/783] mptcp: dedicated request sock for subflow in v6 Greg Kroah-Hartman
2023-01-12 13:58 ` [PATCH 5.10 781/783] mptcp: use proper req destructor for IPv6 Greg Kroah-Hartman
2023-01-12 13:58 ` [PATCH 5.10 782/783] net: sched: disallow noqueue for qdisc classes Greg Kroah-Hartman
2023-01-12 13:58 ` [PATCH 5.10 783/783] net/ulp: prevent ULP without clone op from entering the LISTEN status Greg Kroah-Hartman
2023-01-12 20:29 ` [PATCH 5.10 000/783] 5.10.163-rc1 review Florian Fainelli
2023-01-12 20:51 ` Pavel Machek
2023-01-13 1:12 ` Shuah Khan
2023-01-13 5:50 ` Guenter Roeck
2023-01-13 10:31 ` zhouzhixiu
2023-01-13 12:33 ` Sudip Mukherjee
2023-01-13 17:45 ` Naresh Kamboju
2023-01-13 18:05 ` Allen Pais
2023-01-13 23:26 ` Ron Economos
2023-01-13 23:34 ` Ron Economos
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=20230112135545.532650145@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=alexanderduyck@fb.com \
--cc=kuba@kernel.org \
--cc=patches@lists.linux.dev \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
--cc=yangyingliang@huawei.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).