From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev,
syzbot+8fcbb77276d43cc8b693@syzkaller.appspotmail.com,
Mark Zhang <markzhang@nvidia.com>,
Leon Romanovsky <leon@kernel.org>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.1 038/134] RDMA/cma: Allow UD qp_type to join multicast only
Date: Tue, 18 Apr 2023 14:21:34 +0200 [thread overview]
Message-ID: <20230418120314.278827901@linuxfoundation.org> (raw)
In-Reply-To: <20230418120313.001025904@linuxfoundation.org>
From: Mark Zhang <markzhang@nvidia.com>
[ Upstream commit 58e84f6b3e84e46524b7e5a916b53c1ad798bc8f ]
As for multicast:
- The SIDR is the only mode that makes sense;
- Besides PS_UDP, other port spaces like PS_IB is also allowed, as it is
UD compatible. In this case qkey also needs to be set [1].
This patch allows only UD qp_type to join multicast, and set qkey to
default if it's not set, to fix an uninit-value error: the ib->rec.qkey
field is accessed without being initialized.
=====================================================
BUG: KMSAN: uninit-value in cma_set_qkey drivers/infiniband/core/cma.c:510 [inline]
BUG: KMSAN: uninit-value in cma_make_mc_event+0xb73/0xe00 drivers/infiniband/core/cma.c:4570
cma_set_qkey drivers/infiniband/core/cma.c:510 [inline]
cma_make_mc_event+0xb73/0xe00 drivers/infiniband/core/cma.c:4570
cma_iboe_join_multicast drivers/infiniband/core/cma.c:4782 [inline]
rdma_join_multicast+0x2b83/0x30a0 drivers/infiniband/core/cma.c:4814
ucma_process_join+0xa76/0xf60 drivers/infiniband/core/ucma.c:1479
ucma_join_multicast+0x1e3/0x250 drivers/infiniband/core/ucma.c:1546
ucma_write+0x639/0x6d0 drivers/infiniband/core/ucma.c:1732
vfs_write+0x8ce/0x2030 fs/read_write.c:588
ksys_write+0x28c/0x520 fs/read_write.c:643
__do_sys_write fs/read_write.c:655 [inline]
__se_sys_write fs/read_write.c:652 [inline]
__ia32_sys_write+0xdb/0x120 fs/read_write.c:652
do_syscall_32_irqs_on arch/x86/entry/common.c:114 [inline]
__do_fast_syscall_32+0x96/0xf0 arch/x86/entry/common.c:180
do_fast_syscall_32+0x34/0x70 arch/x86/entry/common.c:205
do_SYSENTER_32+0x1b/0x20 arch/x86/entry/common.c:248
entry_SYSENTER_compat_after_hwframe+0x4d/0x5c
Local variable ib.i created at:
cma_iboe_join_multicast drivers/infiniband/core/cma.c:4737 [inline]
rdma_join_multicast+0x586/0x30a0 drivers/infiniband/core/cma.c:4814
ucma_process_join+0xa76/0xf60 drivers/infiniband/core/ucma.c:1479
CPU: 0 PID: 29874 Comm: syz-executor.3 Not tainted 5.16.0-rc3-syzkaller #0
Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 01/01/2011
=====================================================
[1] https://lore.kernel.org/linux-rdma/20220117183832.GD84788@nvidia.com/
Fixes: b5de0c60cc30 ("RDMA/cma: Fix use after free race in roce multicast join")
Reported-by: syzbot+8fcbb77276d43cc8b693@syzkaller.appspotmail.com
Signed-off-by: Mark Zhang <markzhang@nvidia.com>
Link: https://lore.kernel.org/r/58a4a98323b5e6b1282e83f6b76960d06e43b9fa.1679309909.git.leon@kernel.org
Signed-off-by: Leon Romanovsky <leon@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
drivers/infiniband/core/cma.c | 60 ++++++++++++++++++++---------------
1 file changed, 34 insertions(+), 26 deletions(-)
diff --git a/drivers/infiniband/core/cma.c b/drivers/infiniband/core/cma.c
index 8730674ceb2e1..c6a671edba5c8 100644
--- a/drivers/infiniband/core/cma.c
+++ b/drivers/infiniband/core/cma.c
@@ -624,22 +624,11 @@ static inline unsigned short cma_family(struct rdma_id_private *id_priv)
return id_priv->id.route.addr.src_addr.ss_family;
}
-static int cma_set_qkey(struct rdma_id_private *id_priv, u32 qkey)
+static int cma_set_default_qkey(struct rdma_id_private *id_priv)
{
struct ib_sa_mcmember_rec rec;
int ret = 0;
- if (id_priv->qkey) {
- if (qkey && id_priv->qkey != qkey)
- return -EINVAL;
- return 0;
- }
-
- if (qkey) {
- id_priv->qkey = qkey;
- return 0;
- }
-
switch (id_priv->id.ps) {
case RDMA_PS_UDP:
case RDMA_PS_IB:
@@ -659,6 +648,16 @@ static int cma_set_qkey(struct rdma_id_private *id_priv, u32 qkey)
return ret;
}
+static int cma_set_qkey(struct rdma_id_private *id_priv, u32 qkey)
+{
+ if (!qkey ||
+ (id_priv->qkey && (id_priv->qkey != qkey)))
+ return -EINVAL;
+
+ id_priv->qkey = qkey;
+ return 0;
+}
+
static void cma_translate_ib(struct sockaddr_ib *sib, struct rdma_dev_addr *dev_addr)
{
dev_addr->dev_type = ARPHRD_INFINIBAND;
@@ -1229,7 +1228,7 @@ static int cma_ib_init_qp_attr(struct rdma_id_private *id_priv,
*qp_attr_mask = IB_QP_STATE | IB_QP_PKEY_INDEX | IB_QP_PORT;
if (id_priv->id.qp_type == IB_QPT_UD) {
- ret = cma_set_qkey(id_priv, 0);
+ ret = cma_set_default_qkey(id_priv);
if (ret)
return ret;
@@ -4558,7 +4557,10 @@ static int cma_send_sidr_rep(struct rdma_id_private *id_priv,
memset(&rep, 0, sizeof rep);
rep.status = status;
if (status == IB_SIDR_SUCCESS) {
- ret = cma_set_qkey(id_priv, qkey);
+ if (qkey)
+ ret = cma_set_qkey(id_priv, qkey);
+ else
+ ret = cma_set_default_qkey(id_priv);
if (ret)
return ret;
rep.qp_num = id_priv->qp_num;
@@ -4763,9 +4765,7 @@ static void cma_make_mc_event(int status, struct rdma_id_private *id_priv,
enum ib_gid_type gid_type;
struct net_device *ndev;
- if (!status)
- status = cma_set_qkey(id_priv, be32_to_cpu(multicast->rec.qkey));
- else
+ if (status)
pr_debug_ratelimited("RDMA CM: MULTICAST_ERROR: failed to join multicast. status %d\n",
status);
@@ -4793,7 +4793,7 @@ static void cma_make_mc_event(int status, struct rdma_id_private *id_priv,
}
event->param.ud.qp_num = 0xFFFFFF;
- event->param.ud.qkey = be32_to_cpu(multicast->rec.qkey);
+ event->param.ud.qkey = id_priv->qkey;
out:
if (ndev)
@@ -4812,8 +4812,11 @@ static int cma_ib_mc_handler(int status, struct ib_sa_multicast *multicast)
READ_ONCE(id_priv->state) == RDMA_CM_DESTROYING)
goto out;
- cma_make_mc_event(status, id_priv, multicast, &event, mc);
- ret = cma_cm_event_handler(id_priv, &event);
+ ret = cma_set_qkey(id_priv, be32_to_cpu(multicast->rec.qkey));
+ if (!ret) {
+ cma_make_mc_event(status, id_priv, multicast, &event, mc);
+ ret = cma_cm_event_handler(id_priv, &event);
+ }
rdma_destroy_ah_attr(&event.param.ud.ah_attr);
WARN_ON(ret);
@@ -4866,9 +4869,11 @@ static int cma_join_ib_multicast(struct rdma_id_private *id_priv,
if (ret)
return ret;
- ret = cma_set_qkey(id_priv, 0);
- if (ret)
- return ret;
+ if (!id_priv->qkey) {
+ ret = cma_set_default_qkey(id_priv);
+ if (ret)
+ return ret;
+ }
cma_set_mgid(id_priv, (struct sockaddr *) &mc->addr, &rec.mgid);
rec.qkey = cpu_to_be32(id_priv->qkey);
@@ -4945,9 +4950,6 @@ static int cma_iboe_join_multicast(struct rdma_id_private *id_priv,
cma_iboe_set_mgid(addr, &ib.rec.mgid, gid_type);
ib.rec.pkey = cpu_to_be16(0xffff);
- if (id_priv->id.ps == RDMA_PS_UDP)
- ib.rec.qkey = cpu_to_be32(RDMA_UDP_QKEY);
-
if (dev_addr->bound_dev_if)
ndev = dev_get_by_index(dev_addr->net, dev_addr->bound_dev_if);
if (!ndev)
@@ -4973,6 +4975,9 @@ static int cma_iboe_join_multicast(struct rdma_id_private *id_priv,
if (err || !ib.rec.mtu)
return err ?: -EINVAL;
+ if (!id_priv->qkey)
+ cma_set_default_qkey(id_priv);
+
rdma_ip2gid((struct sockaddr *)&id_priv->id.route.addr.src_addr,
&ib.rec.port_gid);
INIT_WORK(&mc->iboe_join.work, cma_iboe_join_work_handler);
@@ -4998,6 +5003,9 @@ int rdma_join_multicast(struct rdma_cm_id *id, struct sockaddr *addr,
READ_ONCE(id_priv->state) != RDMA_CM_ADDR_RESOLVED))
return -EINVAL;
+ if (id_priv->id.qp_type != IB_QPT_UD)
+ return -EINVAL;
+
mc = kzalloc(sizeof(*mc), GFP_KERNEL);
if (!mc)
return -ENOMEM;
--
2.39.2
next prev parent reply other threads:[~2023-04-18 12:43 UTC|newest]
Thread overview: 152+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-18 12:20 [PATCH 6.1 000/134] 6.1.25-rc1 review Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 6.1 001/134] Revert "pinctrl: amd: Disable and mask interrupts on resume" Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 6.1 002/134] drm/amd/display: Pass the right info to drm_dp_remove_payload Greg Kroah-Hartman
2023-04-18 12:20 ` [PATCH 6.1 003/134] ALSA: emu10k1: fix capture interrupt handler unlinking Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 004/134] ALSA: hda/sigmatel: add pin overrides for Intel DP45SG motherboard Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 005/134] ALSA: i2c/cs8427: fix iec958 mixer control deactivation Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 006/134] ALSA: hda: patch_realtek: add quirk for Asus N7601ZM Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 007/134] ALSA: hda/realtek: Add quirks for Lenovo Z13/Z16 Gen2 Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 008/134] ALSA: firewire-tascam: add missing unwind goto in snd_tscm_stream_start_duplex() Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 009/134] ALSA: emu10k1: dont create old pass-through playback device on Audigy Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 010/134] ALSA: hda/sigmatel: fix S/PDIF out on Intel D*45* motherboards Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 011/134] ALSA: hda/hdmi: disable KAE for Intel DG2 Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 012/134] Bluetooth: L2CAP: Fix use-after-free in l2cap_disconnect_{req,rsp} Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 013/134] Bluetooth: Fix race condition in hidp_session_thread Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 014/134] bluetooth: btbcm: Fix logic error in forming the board name Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 015/134] Bluetooth: Free potentially unfreed SCO connection Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 016/134] Bluetooth: hci_conn: Fix possible UAF Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 017/134] btrfs: restore the thread_pool= behavior in remount for the end I/O workqueues Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 018/134] btrfs: fix fast csum implementation detection Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 019/134] fbmem: Reject FB_ACTIVATE_KD_TEXT from userspace Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 020/134] mtdblock: tolerate corrected bit-flips Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 021/134] mtd: rawnand: meson: fix bitmask for length in command word Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 022/134] mtd: rawnand: stm32_fmc2: remove unsupported EDO mode Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 023/134] mtd: rawnand: stm32_fmc2: use timings.mode instead of checking tRC_min Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 024/134] KVM: arm64: PMU: Restore the guests EL0 event counting after migration Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 025/134] fbcon: Fix error paths in set_con2fb_map Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 026/134] fbcon: set_con2fb_map needs to set con2fb_map! Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 027/134] drm/i915/dsi: fix DSS CTL register offsets for TGL+ Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 028/134] clk: sprd: set max_register according to mapping range Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 029/134] RDMA/irdma: Do not generate SW completions for NOPs Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 030/134] RDMA/irdma: Fix memory leak of PBLE objects Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 031/134] RDMA/irdma: Increase iWARP CM default rexmit count Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 032/134] RDMA/irdma: Add ipv4 check to irdma_find_listener() Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 033/134] IB/mlx5: Add support for 400G_8X lane speed Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 034/134] RDMA/erdma: Update default EQ depth to 4096 and max_send_wr to 8192 Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 035/134] RDMA/erdma: Inline mtt entries into WQE if supported Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 036/134] RDMA/erdma: Defer probing if netdevice can not be found Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 037/134] clk: rs9: Fix suspend/resume Greg Kroah-Hartman
2023-04-18 12:21 ` Greg Kroah-Hartman [this message]
2023-04-18 12:21 ` [PATCH 6.1 039/134] bpf: tcp: Use sock_gen_put instead of sock_put in bpf_iter_tcp Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 040/134] LoongArch, bpf: Fix jit to skip speculation barrier opcode Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 041/134] dmaengine: apple-admac: Handle global interrupt flags Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 042/134] dmaengine: apple-admac: Set src_addr_widths capability Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 043/134] dmaengine: apple-admac: Fix current_tx not getting freed Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 044/134] 9p/xen : Fix use after free bug in xen_9pfs_front_remove due to race condition Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 045/134] bpf, arm64: Fixed a BTI error on returning to patched function Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 046/134] KVM: arm64: Initialise hypervisor copies of host symbols unconditionally Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 047/134] KVM: arm64: Advertise ID_AA64PFR0_EL1.CSV2/3 to protected VMs Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 048/134] niu: Fix missing unwind goto in niu_alloc_channels() Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 049/134] tcp: restrict net.ipv4.tcp_app_win Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 050/134] bonding: fix ns validation on backup slaves Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 051/134] iavf: refactor VLAN filter states Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 052/134] iavf: remove active_cvlans and active_svlans bitmaps Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 053/134] net: openvswitch: fix race on port output Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 054/134] Bluetooth: hci_conn: Fix not cleaning up on LE Connection failure Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 055/134] Bluetooth: Fix printing errors if LE Connection times out Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 056/134] Bluetooth: SCO: Fix possible circular locking dependency sco_sock_getsockopt Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 057/134] Bluetooth: Set ISO Data Path on broadcast sink Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 058/134] drm/armada: Fix a potential double free in an error handling path Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 059/134] qlcnic: check pci_reset_function result Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 060/134] net: wwan: iosm: Fix error handling path in ipc_pcie_probe() Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 061/134] cgroup,freezer: hold cpu_hotplug_lock before freezer_mutex Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 062/134] net: qrtr: Fix an uninit variable access bug in qrtr_tx_resume() Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.1 063/134] sctp: fix a potential overflow in sctp_ifwdtsn_skip Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 064/134] RDMA/core: Fix GID entry ref leak when create_ah fails Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 065/134] selftests: openvswitch: adjust datapath NL message declaration Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 066/134] udp6: fix potential access to stale information Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 067/134] net: macb: fix a memory corruption in extended buffer descriptor mode Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 068/134] skbuff: Fix a race between coalescing and releasing SKBs Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 069/134] libbpf: Fix single-line struct definition output in btf_dump Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 070/134] ARM: 9290/1: uaccess: Fix KASAN false-positives Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 071/134] ARM: dts: qcom: apq8026-lg-lenok: add missing reserved memory Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 072/134] power: supply: rk817: Fix unsigned comparison with less than zero Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 073/134] power: supply: cros_usbpd: reclassify "default case!" as debug Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 074/134] power: supply: axp288_fuel_gauge: Added check for negative values Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 075/134] selftests/bpf: Fix progs/find_vma_fail1.c build error Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 076/134] wifi: mwifiex: mark OF related data as maybe unused Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 077/134] i2c: imx-lpi2c: clean rx/tx buffers upon new message Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 078/134] i2c: hisi: Avoid redundant interrupts Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 079/134] efi: sysfb_efi: Add quirk for Lenovo Yoga Book X91F/L Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 080/134] block: ublk_drv: mark device as LIVE before adding disk Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 081/134] ACPI: video: Add backlight=native DMI quirk for Acer Aspire 3830TG Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 082/134] drm: panel-orientation-quirks: Add quirk for Lenovo Yoga Book X90F Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 083/134] hwmon: (peci/cputemp) Fix miscalculated DTS for SKX Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 084/134] hwmon: (xgene) Fix ioremap and memremap leak Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 085/134] verify_pefile: relax wrapper length check Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 086/134] asymmetric_keys: log on fatal failures in PE/pkcs7 Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 087/134] nvme: send Identify with CNS 06h only to I/O controllers Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 088/134] wifi: iwlwifi: mvm: fix mvmtxq->stopped handling Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 089/134] wifi: iwlwifi: mvm: protect TXQ list manipulation Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 090/134] drm/amdgpu: add mes resume when do gfx post soft reset Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 091/134] drm/amdgpu: Force signal hw_fences that are embedded in non-sched jobs Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 092/134] drm/amdgpu/gfx: set cg flags to enter/exit safe mode Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 093/134] ACPI: resource: Add Medion S17413 to IRQ override quirk Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 094/134] x86/hyperv: Move VMCB enlightenment definitions to hyperv-tlfs.h Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 095/134] KVM: selftests: Move "struct hv_enlightenments" to x86_64/svm.h Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 096/134] KVM: SVM: Add a proper field for Hyper-V VMCB enlightenments Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 097/134] x86/hyperv: KVM: Rename "hv_enlightenments" to "hv_vmcb_enlightenments" Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 098/134] KVM: SVM: Flush Hyper-V TLB when required Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 099/134] tracing: Add trace_array_puts() to write into instance Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 100/134] tracing: Have tracing_snapshot_instance_cond() write errors to the appropriate instance Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 101/134] maple_tree: fix write memory barrier of nodes once dead for RCU mode Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 102/134] ksmbd: avoid out of bounds access in decode_preauth_ctxt() Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 103/134] riscv: Do not set initial_boot_params to the linear address of the dtb Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 104/134] riscv: add icache flush for nommu sigreturn trampoline Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 105/134] HID: intel-ish-hid: Fix kernel panic during warm reset Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 106/134] net: sfp: initialize sfp->i2c_block_size at sfp allocation Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 107/134] net: phy: nxp-c45-tja11xx: add remove callback Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 108/134] net: phy: nxp-c45-tja11xx: fix unsigned long multiplication overflow Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 109/134] scsi: ses: Handle enclosure with just a primary component gracefully Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 110/134] x86/PCI: Add quirk for AMD XHCI controller that loses MSI-X state in D3hot Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 111/134] cgroup: fix display of forceidle time at root Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 112/134] cgroup/cpuset: Fix partition roots cpuset.cpus update bug Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 113/134] cgroup/cpuset: Wake up cpuset_attach_wq tasks in cpuset_cancel_attach() Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 114/134] drm/amd/pm: correct SMU13.0.7 pstate profiling clock settings Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 115/134] drm/amd/pm: correct SMU13.0.7 max shader clock reporting Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 116/134] mptcp: use mptcp_schedule_work instead of open-coding it Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 117/134] mptcp: stricter state check in mptcp_worker Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 118/134] ubi: Fix failure attaching when vid_hdr offset equals to (sub)page size Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 119/134] ubi: Fix deadlock caused by recursively holding work_sem Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 120/134] i2c: mchp-pci1xxxx: Update Timing registers Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 121/134] powerpc/papr_scm: Update the NUMA distance table for the target node Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 122/134] sched/fair: Fix imbalance overflow Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.1 123/134] x86/rtc: Remove __init for runtime functions Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.1 124/134] i2c: ocores: generate stop condition after timeout in polling mode Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.1 125/134] cifs: fix negotiate context parsing Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.1 126/134] RISC-V: add infrastructure to allow different str* implementations Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.1 127/134] purgatory: fix disabling debug info Greg Kroah-Hartman
2023-04-18 13:38 ` Conor Dooley
2023-04-18 15:52 ` Alyssa Ross
2023-04-18 12:23 ` [PATCH 6.1 128/134] Documentation: riscv: Document the sv57 VM layout Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.1 129/134] riscv: Move early dtb mapping into the fixmap region Greg Kroah-Hartman
2023-04-18 13:10 ` Conor Dooley
2023-04-19 7:27 ` Greg Kroah-Hartman
2023-04-19 7:55 ` Conor Dooley
2023-04-19 9:36 ` Greg Kroah-Hartman
2023-04-19 9:51 ` Conor Dooley
2023-04-19 9:57 ` Alexandre Ghiti
2023-04-19 10:42 ` Conor.Dooley
2023-04-18 12:23 ` [PATCH 6.1 130/134] nvme-pci: mark Lexar NM760 as IGNORE_DEV_SUBNQN Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.1 131/134] nvme-pci: add NVME_QUIRK_BOGUS_NID for T-FORCE Z330 SSD Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.1 132/134] cgroup/cpuset: Skip spread flags update on v2 Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.1 133/134] cgroup/cpuset: Make cpuset_fork() handle CLONE_INTO_CGROUP properly Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.1 134/134] cgroup/cpuset: Add cpuset_can_fork() and cpuset_cancel_fork() methods Greg Kroah-Hartman
2023-04-18 17:15 ` [PATCH 6.1 000/134] 6.1.25-rc1 review Markus Reichelt
2023-04-18 20:38 ` Chris Paterson
2023-04-18 21:22 ` Shuah Khan
2023-04-18 22:32 ` Florian Fainelli
2023-04-19 1:25 ` ogasawara takeshi
2023-04-19 3:35 ` Guenter Roeck
2023-04-19 4:12 ` Bagas Sanjaya
2023-04-19 6:40 ` Naresh Kamboju
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=20230418120314.278827901@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=leon@kernel.org \
--cc=markzhang@nvidia.com \
--cc=patches@lists.linux.dev \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
--cc=syzbot+8fcbb77276d43cc8b693@syzkaller.appspotmail.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).