mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] cxl/mbox: Bound the output payload allocation to mailbox payload size
@ 2026-06-11  9:45 Richard Cheng
  2026-06-11 15:30 ` Dave Jiang
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Richard Cheng @ 2026-06-11  9:45 UTC (permalink / raw)
  To: dave, jic23, dave.jiang, alison.schofield, vishal.l.verma,
	ira.weiny, djbw
  Cc: shiju.jose, ming.li, alucerop, linux-cxl, linux-kernel, newtonl,
	kristinc, kaihengf, kobak, Richard Cheng

CXL_MEM_SEND_COMMAND bounds the user's in.size to the mailbox payload
size but leaves out.size unbounded, then cxl_mbox_cmd_ctor() calls
kvzalloc(out.size). A large out.size drives a huge allocation, even
above INT_MAX it WARNS and taints, on kernel with panic_on_warn=1, it
will panic.
The transport __cxl_pci_mbox_send_cmd() already clamps the response copy
to min(out.size, payload_size, device len), so the bound buffer is never
written beyond payload_size. Clamp the allocation to payload_size too,
matching the RAW path.

With the following reproducer[1] , we'll get error logs [2].
[1]:
"""
        #include <fcntl.h>
        #include <stdint.h>
        #include <stdio.h>
        #include <sys/ioctl.h>

        #define CXL_MEM_SEND_COMMAND        _IOWR(0xCE, 2, struct cxl_send_comma
        #define CXL_MEM_COMMAND_ID_IDENTIFY 1

        struct cxl_send_command {
                uint32_t id, flags;
                union { struct { uint16_t opcode, rsvd; } raw; uint32_t rsvd; };
                uint32_t retval;
                struct { uint32_t size, rsvd; uint64_t payload; } in;
                struct { uint32_t size, rsvd; uint64_t payload; } out;
        };

        int main(void)
        {
                static unsigned char buf[512];
                struct cxl_send_command c = {
                        .id          = CXL_MEM_COMMAND_ID_IDENTIFY, /* any enabl
                        .out.size    = 0x80000000,                  /* > INT_MAX
                        .out.payload = (uint64_t)(uintptr_t)buf,
                };
                int fd = open("/dev/cxl/mem0", O_RDWR);

                return ioctl(fd, CXL_MEM_SEND_COMMAND, &c);
        }
"""
[2]:
  [ 3675.127839] ------------[ cut here ]------------
  [ 3675.127841] WARNING: mm/slub.c:6841 at __kvmalloc_node_noprof+0x534/0x818,
  CPU#131: cxl_repro_outsi/4668
  [ 3675.127853] Modules linked in: nft_masq nft_ct nft_reject_ipv4
  nf_reject_ipv4 nft_reject act_csum cls_u32 sch_htb nft_chain_nat nf_nat
  nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 nf_tables bridge stp llc qrtr
  cfg80211 binfmt_misc nls_iso8859_1 acpi_power_meter nvidia_cspmu acpi_ipmi
  ipmi_ssif coresight_trbe ipmi_devintf sbsa_gwdt dax_hmem arm_smmuv3_pmu
  coresight arm_cspmu_module arm_spe_pmu ast nvidia_t410_cmem_latency_pmu
  nvidia_t410_c2c_pmu ipmi_msghandler cppc_cpufreq mlx5_ib macsec ib_uverbs
  mlx5_fwctl mlx5_dpll sch_fq_codel dm_multipath nvme_fabrics efi_pstore
  nfnetlink dmi_sysfs ip_tables x_tables autofs4 ib_core btrfs libblake2b raid10
  raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor
  raid6_pq raid1 raid0 linear ghash_ce gf128mul sm4_ce_gcm mlx5_core nvme
  sm4_ce_ccm nvme_core mlxfw sm4_ce tls nvme_keyring igb sm4_ce_cipher sm4
  arm_smccc_trng i2c_algo_bit nvme_auth psample i2c_tegra aes_neon_bs aes_ce_blk
  [ 3675.127894] CPU: 131 UID: 0 PID: 4668 Comm: cxl_repro_outsi Tainted: G
    W           7.1.0-rc7-cxltest #1 PREEMPT(full)
  [ 3675.127897] Tainted: [W]=WARN
  [ 3675.127898] Hardware name:  , BIOS buildbrain-gcid-sbios-45820373-12 Fri
  Jun  5 07:54:44 AM UTC 2026
  [ 3675.127899] pstate: 23400009 (nzCv daif +PAN -UAO +TCO +DIT -SSBS BTYPE=--)
  [ 3675.127900] pc : __kvmalloc_node_noprof+0x534/0x818
  [ 3675.127902] lr : __kvmalloc_node_noprof+0x520/0x818
  [ 3675.127903] sp : ffff800102c2fb90
  [ 3675.127903] x29: ffff800102c2fbc0 x28: ffff0001911d5000 x27:
  d8eaa73777d13b74
  [ 3675.127905] x26: 0000000000000001 x25: ffffa73777d13b74 x24:
  0000000000000000
  [ 3675.127907] x23: 00000000ffffffff x22: 0000000000000dc0 x21:
  00000000000029c0
  [ 3675.127908] x20: 0000000000000000 x19: 0000000080000000 x18:
  ffff800125340040
  [ 3675.127910] x17: 0000000000000000 x16: 0000000000000000 x15:
  0000ffffd627bed8
  [ 3675.127911] x14: 0000000000000000 x13: 0000000000000000 x12:
  0000000000000000
  [ 3675.127913] x11: 0000000000000000 x10: 0000000000000000 x9 :
  0000000000000000
  [ 3675.127914] x8 : 0000000000000000 x7 : 0000000000000000 x6 :
  0000000000000000
  [ 3675.127916] x5 : 0000000000000000 x4 : 0000000000000000 x3 :
  0000000000000000
  [ 3675.127917] x2 : 0000000000000000 x1 : 0000000000000000 x0 :
  000000007fffffff
  [ 3675.127919] Call trace:
  [ 3675.127919]  __kvmalloc_node_noprof+0x534/0x818 (P)
  [ 3675.127921]  cxl_send_cmd+0x514/0x7e0
  [ 3675.127926]  cxl_memdev_ioctl+0x7c/0xe0
  [ 3675.127928]  __arm64_sys_ioctl+0x4a4/0xbc8
  [ 3675.127931]  invoke_syscall.constprop.0+0xac/0x100
  [ 3675.127934]  do_el0_svc+0x4c/0x100
  [ 3675.127935]  el0_svc+0x50/0x2b0
  [ 3675.127938]  el0t_64_sync_handler+0xc0/0x108
  [ 3675.127940]  el0t_64_sync+0x1b8/0x1c0
  [ 3675.127942] ---[ end trace 0000000000000000 ]---

Fixes: 4faf31b43468 ("cxl/mbox: Move mailbox and other non-PCI specific infrastructure to the core")
Reviewed-by: Kai-Heng Feng <kaihengf@nvidia.com>
Reviewed-by: Koba Ko <kobak@nvidia.com>
Signed-off-by: Richard Cheng <icheng@nvidia.com>
---

Maybe we should consider to put the reproducer into selftests of cxl.

Best regards,
Richard Cheng.
---
 drivers/cxl/core/mbox.c | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/drivers/cxl/core/mbox.c b/drivers/cxl/core/mbox.c
index 7c6c5b7450a5..d9cb02c9f72c 100644
--- a/drivers/cxl/core/mbox.c
+++ b/drivers/cxl/core/mbox.c
@@ -380,11 +380,7 @@ static int cxl_mbox_cmd_ctor(struct cxl_mbox_cmd *mbox_cmd,
 		}
 	}
 
-	/* Prepare to handle a full payload for variable sized output */
-	if (out_size == CXL_VARIABLE_PAYLOAD)
-		mbox_cmd->size_out = cxl_mbox->payload_size;
-	else
-		mbox_cmd->size_out = out_size;
+	mbox_cmd->size_out = min_t(size_t, out_size, cxl_mbox->payload_size);
 
 	if (mbox_cmd->size_out) {
 		mbox_cmd->payload_out = kvzalloc(mbox_cmd->size_out, GFP_KERNEL);

base-commit: 4549871118cf616eecdd2d939f78e3b9e1dddc48
-- 
2.43.0


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] cxl/mbox: Bound the output payload allocation to mailbox payload size
  2026-06-11  9:45 [PATCH] cxl/mbox: Bound the output payload allocation to mailbox payload size Richard Cheng
@ 2026-06-11 15:30 ` Dave Jiang
  2026-06-23  1:56   ` Richard Cheng
  2026-06-16 20:41 ` Dan Williams (nvidia)
  2026-06-17 21:07 ` Davidlohr Bueso
  2 siblings, 1 reply; 7+ messages in thread
From: Dave Jiang @ 2026-06-11 15:30 UTC (permalink / raw)
  To: Richard Cheng, dave, jic23, alison.schofield, vishal.l.verma,
	ira.weiny, djbw
  Cc: shiju.jose, ming.li, alucerop, linux-cxl, linux-kernel, newtonl,
	kristinc, kaihengf, kobak



On 6/11/26 2:45 AM, Richard Cheng wrote:
> CXL_MEM_SEND_COMMAND bounds the user's in.size to the mailbox payload
> size but leaves out.size unbounded, then cxl_mbox_cmd_ctor() calls
> kvzalloc(out.size). A large out.size drives a huge allocation, even
> above INT_MAX it WARNS and taints, on kernel with panic_on_warn=1, it
> will panic.
> The transport __cxl_pci_mbox_send_cmd() already clamps the response copy
> to min(out.size, payload_size, device len), so the bound buffer is never
> written beyond payload_size. Clamp the allocation to payload_size too,
> matching the RAW path.
> 
> With the following reproducer[1] , we'll get error logs [2].
> [1]:
> """
>         #include <fcntl.h>
>         #include <stdint.h>
>         #include <stdio.h>
>         #include <sys/ioctl.h>
> 
>         #define CXL_MEM_SEND_COMMAND        _IOWR(0xCE, 2, struct cxl_send_comma
>         #define CXL_MEM_COMMAND_ID_IDENTIFY 1
> 
>         struct cxl_send_command {
>                 uint32_t id, flags;
>                 union { struct { uint16_t opcode, rsvd; } raw; uint32_t rsvd; };
>                 uint32_t retval;
>                 struct { uint32_t size, rsvd; uint64_t payload; } in;
>                 struct { uint32_t size, rsvd; uint64_t payload; } out;
>         };
> 
>         int main(void)
>         {
>                 static unsigned char buf[512];
>                 struct cxl_send_command c = {
>                         .id          = CXL_MEM_COMMAND_ID_IDENTIFY, /* any enabl
>                         .out.size    = 0x80000000,                  /* > INT_MAX
>                         .out.payload = (uint64_t)(uintptr_t)buf,
>                 };
>                 int fd = open("/dev/cxl/mem0", O_RDWR);
> 
>                 return ioctl(fd, CXL_MEM_SEND_COMMAND, &c);
>         }
> """
> [2]:
>   [ 3675.127839] ------------[ cut here ]------------
>   [ 3675.127841] WARNING: mm/slub.c:6841 at __kvmalloc_node_noprof+0x534/0x818,
>   CPU#131: cxl_repro_outsi/4668
>   [ 3675.127853] Modules linked in: nft_masq nft_ct nft_reject_ipv4
>   nf_reject_ipv4 nft_reject act_csum cls_u32 sch_htb nft_chain_nat nf_nat
>   nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 nf_tables bridge stp llc qrtr
>   cfg80211 binfmt_misc nls_iso8859_1 acpi_power_meter nvidia_cspmu acpi_ipmi
>   ipmi_ssif coresight_trbe ipmi_devintf sbsa_gwdt dax_hmem arm_smmuv3_pmu
>   coresight arm_cspmu_module arm_spe_pmu ast nvidia_t410_cmem_latency_pmu
>   nvidia_t410_c2c_pmu ipmi_msghandler cppc_cpufreq mlx5_ib macsec ib_uverbs
>   mlx5_fwctl mlx5_dpll sch_fq_codel dm_multipath nvme_fabrics efi_pstore
>   nfnetlink dmi_sysfs ip_tables x_tables autofs4 ib_core btrfs libblake2b raid10
>   raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor
>   raid6_pq raid1 raid0 linear ghash_ce gf128mul sm4_ce_gcm mlx5_core nvme
>   sm4_ce_ccm nvme_core mlxfw sm4_ce tls nvme_keyring igb sm4_ce_cipher sm4
>   arm_smccc_trng i2c_algo_bit nvme_auth psample i2c_tegra aes_neon_bs aes_ce_blk
>   [ 3675.127894] CPU: 131 UID: 0 PID: 4668 Comm: cxl_repro_outsi Tainted: G
>     W           7.1.0-rc7-cxltest #1 PREEMPT(full)
>   [ 3675.127897] Tainted: [W]=WARN
>   [ 3675.127898] Hardware name:  , BIOS buildbrain-gcid-sbios-45820373-12 Fri
>   Jun  5 07:54:44 AM UTC 2026
>   [ 3675.127899] pstate: 23400009 (nzCv daif +PAN -UAO +TCO +DIT -SSBS BTYPE=--)
>   [ 3675.127900] pc : __kvmalloc_node_noprof+0x534/0x818
>   [ 3675.127902] lr : __kvmalloc_node_noprof+0x520/0x818
>   [ 3675.127903] sp : ffff800102c2fb90
>   [ 3675.127903] x29: ffff800102c2fbc0 x28: ffff0001911d5000 x27:
>   d8eaa73777d13b74
>   [ 3675.127905] x26: 0000000000000001 x25: ffffa73777d13b74 x24:
>   0000000000000000
>   [ 3675.127907] x23: 00000000ffffffff x22: 0000000000000dc0 x21:
>   00000000000029c0
>   [ 3675.127908] x20: 0000000000000000 x19: 0000000080000000 x18:
>   ffff800125340040
>   [ 3675.127910] x17: 0000000000000000 x16: 0000000000000000 x15:
>   0000ffffd627bed8
>   [ 3675.127911] x14: 0000000000000000 x13: 0000000000000000 x12:
>   0000000000000000
>   [ 3675.127913] x11: 0000000000000000 x10: 0000000000000000 x9 :
>   0000000000000000
>   [ 3675.127914] x8 : 0000000000000000 x7 : 0000000000000000 x6 :
>   0000000000000000
>   [ 3675.127916] x5 : 0000000000000000 x4 : 0000000000000000 x3 :
>   0000000000000000
>   [ 3675.127917] x2 : 0000000000000000 x1 : 0000000000000000 x0 :
>   000000007fffffff
>   [ 3675.127919] Call trace:
>   [ 3675.127919]  __kvmalloc_node_noprof+0x534/0x818 (P)
>   [ 3675.127921]  cxl_send_cmd+0x514/0x7e0
>   [ 3675.127926]  cxl_memdev_ioctl+0x7c/0xe0
>   [ 3675.127928]  __arm64_sys_ioctl+0x4a4/0xbc8
>   [ 3675.127931]  invoke_syscall.constprop.0+0xac/0x100
>   [ 3675.127934]  do_el0_svc+0x4c/0x100
>   [ 3675.127935]  el0_svc+0x50/0x2b0
>   [ 3675.127938]  el0t_64_sync_handler+0xc0/0x108
>   [ 3675.127940]  el0t_64_sync+0x1b8/0x1c0
>   [ 3675.127942] ---[ end trace 0000000000000000 ]---
> 
> Fixes: 4faf31b43468 ("cxl/mbox: Move mailbox and other non-PCI specific infrastructure to the core")
> Reviewed-by: Kai-Heng Feng <kaihengf@nvidia.com>
> Reviewed-by: Koba Ko <kobak@nvidia.com>
> Signed-off-by: Richard Cheng <icheng@nvidia.com>

Reviewed-by: Dave Jiang <dave.jiang@intel.com>

> ---
> 
> Maybe we should consider to put the reproducer into selftests of cxl.

Good idea :) 

> 
> Best regards,
> Richard Cheng.
> ---
>  drivers/cxl/core/mbox.c | 6 +-----
>  1 file changed, 1 insertion(+), 5 deletions(-)
> 
> diff --git a/drivers/cxl/core/mbox.c b/drivers/cxl/core/mbox.c
> index 7c6c5b7450a5..d9cb02c9f72c 100644
> --- a/drivers/cxl/core/mbox.c
> +++ b/drivers/cxl/core/mbox.c
> @@ -380,11 +380,7 @@ static int cxl_mbox_cmd_ctor(struct cxl_mbox_cmd *mbox_cmd,
>  		}
>  	}
>  
> -	/* Prepare to handle a full payload for variable sized output */
> -	if (out_size == CXL_VARIABLE_PAYLOAD)
> -		mbox_cmd->size_out = cxl_mbox->payload_size;
> -	else
> -		mbox_cmd->size_out = out_size;
> +	mbox_cmd->size_out = min_t(size_t, out_size, cxl_mbox->payload_size);
>  
>  	if (mbox_cmd->size_out) {
>  		mbox_cmd->payload_out = kvzalloc(mbox_cmd->size_out, GFP_KERNEL);
> 
> base-commit: 4549871118cf616eecdd2d939f78e3b9e1dddc48


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] cxl/mbox: Bound the output payload allocation to mailbox payload size
  2026-06-11  9:45 [PATCH] cxl/mbox: Bound the output payload allocation to mailbox payload size Richard Cheng
  2026-06-11 15:30 ` Dave Jiang
@ 2026-06-16 20:41 ` Dan Williams (nvidia)
  2026-06-22 10:14   ` Richard Cheng
  2026-06-17 21:07 ` Davidlohr Bueso
  2 siblings, 1 reply; 7+ messages in thread
From: Dan Williams (nvidia) @ 2026-06-16 20:41 UTC (permalink / raw)
  To: Richard Cheng, dave, jic23, dave.jiang, alison.schofield,
	vishal.l.verma, ira.weiny, djbw
  Cc: shiju.jose, ming.li, alucerop, linux-cxl, linux-kernel, newtonl,
	kristinc, kaihengf, kobak, Richard Cheng

Richard Cheng wrote:
> CXL_MEM_SEND_COMMAND bounds the user's in.size to the mailbox payload
> size but leaves out.size unbounded, then cxl_mbox_cmd_ctor() calls
> kvzalloc(out.size). A large out.size drives a huge allocation, even
> above INT_MAX it WARNS and taints, on kernel with panic_on_warn=1, it
> will panic.
> The transport __cxl_pci_mbox_send_cmd() already clamps the response copy
> to min(out.size, payload_size, device len), so the bound buffer is never
> written beyond payload_size. Clamp the allocation to payload_size too,
> matching the RAW path.

Patch looks good, just comments on Fixes and formatting:

> With the following reproducer[1] , we'll get error logs [2].
> [1]:
> """
[ .. snip reproducer, yes a new test would be welcome .. ]
> """
> [2]:

Trim reports to the relevant information, I usually drop timestamps and
all but the Call Trace:

>   WARNING: mm/slub.c:6841 at __kvmalloc_node_noprof+0x534/0x818,
>   CPU#131: cxl_repro_outsi/4668
>    Tainted: [W]=WARN
>    Call trace:
>     __kvmalloc_node_noprof+0x534/0x818 (P)
>     cxl_send_cmd+0x514/0x7e0
>     cxl_memdev_ioctl+0x7c/0xe0
>     __arm64_sys_ioctl+0x4a4/0xbc8
>     invoke_syscall.constprop.0+0xac/0x100
>     do_el0_svc+0x4c/0x100
>     el0_svc+0x50/0x2b0
>     el0t_64_sync_handler+0xc0/0x108
>     el0t_64_sync+0x1b8/0x1c0
>    ---[ end trace 0000000000000000 ]---
> 
> Fixes: 4faf31b43468 ("cxl/mbox: Move mailbox and other non-PCI specific infrastructure to the core")

Looks like the correct Fixes would be:

Fixes: 583fa5e71cae ("cxl/mem: Add basic IOCTL interface")

...as unbounded input was mistakenly allowed from the outset.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] cxl/mbox: Bound the output payload allocation to mailbox payload size
  2026-06-11  9:45 [PATCH] cxl/mbox: Bound the output payload allocation to mailbox payload size Richard Cheng
  2026-06-11 15:30 ` Dave Jiang
  2026-06-16 20:41 ` Dan Williams (nvidia)
@ 2026-06-17 21:07 ` Davidlohr Bueso
  2026-06-22 10:13   ` Richard Cheng
  2 siblings, 1 reply; 7+ messages in thread
From: Davidlohr Bueso @ 2026-06-17 21:07 UTC (permalink / raw)
  To: Richard Cheng
  Cc: jic23, dave.jiang, alison.schofield, vishal.l.verma, ira.weiny,
	djbw, shiju.jose, ming.li, alucerop, linux-cxl, linux-kernel,
	newtonl, kristinc, kaihengf, kobak

On Thu, 11 Jun 2026, Richard Cheng wrote:

>CXL_MEM_SEND_COMMAND bounds the user's in.size to the mailbox payload
>size but leaves out.size unbounded, then cxl_mbox_cmd_ctor() calls
>kvzalloc(out.size). A large out.size drives a huge allocation, even
>above INT_MAX it WARNS and taints, on kernel with panic_on_warn=1, it
>will panic.
>The transport __cxl_pci_mbox_send_cmd() already clamps the response copy
>to min(out.size, payload_size, device len), so the bound buffer is never
>written beyond payload_size. Clamp the allocation to payload_size too,
>matching the RAW path.
>
>With the following reproducer[1] , we'll get error logs [2].
>[1]:
>"""
>        #include <fcntl.h>
>        #include <stdint.h>
>        #include <stdio.h>
>        #include <sys/ioctl.h>
>
>        #define CXL_MEM_SEND_COMMAND        _IOWR(0xCE, 2, struct cxl_send_comma
>        #define CXL_MEM_COMMAND_ID_IDENTIFY 1
>
>        struct cxl_send_command {
>                uint32_t id, flags;
>                union { struct { uint16_t opcode, rsvd; } raw; uint32_t rsvd; };
>                uint32_t retval;
>                struct { uint32_t size, rsvd; uint64_t payload; } in;
>                struct { uint32_t size, rsvd; uint64_t payload; } out;
>        };
>
>        int main(void)
>        {
>                static unsigned char buf[512];
>                struct cxl_send_command c = {
>                        .id          = CXL_MEM_COMMAND_ID_IDENTIFY, /* any enabl
>                        .out.size    = 0x80000000,                  /* > INT_MAX
>                        .out.payload = (uint64_t)(uintptr_t)buf,
>                };
>                int fd = open("/dev/cxl/mem0", O_RDWR);
>
>                return ioctl(fd, CXL_MEM_SEND_COMMAND, &c);
>        }

Nit: Maybe not needed in the changelog.

>"""
>[2]:
>  [ 3675.127839] ------------[ cut here ]------------
>  [ 3675.127841] WARNING: mm/slub.c:6841 at __kvmalloc_node_noprof+0x534/0x818,
>  CPU#131: cxl_repro_outsi/4668
>  [ 3675.127853] Modules linked in: nft_masq nft_ct nft_reject_ipv4
>  nf_reject_ipv4 nft_reject act_csum cls_u32 sch_htb nft_chain_nat nf_nat
>  nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 nf_tables bridge stp llc qrtr
>  cfg80211 binfmt_misc nls_iso8859_1 acpi_power_meter nvidia_cspmu acpi_ipmi
>  ipmi_ssif coresight_trbe ipmi_devintf sbsa_gwdt dax_hmem arm_smmuv3_pmu
>  coresight arm_cspmu_module arm_spe_pmu ast nvidia_t410_cmem_latency_pmu
>  nvidia_t410_c2c_pmu ipmi_msghandler cppc_cpufreq mlx5_ib macsec ib_uverbs
>  mlx5_fwctl mlx5_dpll sch_fq_codel dm_multipath nvme_fabrics efi_pstore
>  nfnetlink dmi_sysfs ip_tables x_tables autofs4 ib_core btrfs libblake2b raid10
>  raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor
>  raid6_pq raid1 raid0 linear ghash_ce gf128mul sm4_ce_gcm mlx5_core nvme
>  sm4_ce_ccm nvme_core mlxfw sm4_ce tls nvme_keyring igb sm4_ce_cipher sm4
>  arm_smccc_trng i2c_algo_bit nvme_auth psample i2c_tegra aes_neon_bs aes_ce_blk
>  [ 3675.127894] CPU: 131 UID: 0 PID: 4668 Comm: cxl_repro_outsi Tainted: G
>    W           7.1.0-rc7-cxltest #1 PREEMPT(full)
>  [ 3675.127897] Tainted: [W]=WARN
>  [ 3675.127898] Hardware name:  , BIOS buildbrain-gcid-sbios-45820373-12 Fri
>  Jun  5 07:54:44 AM UTC 2026
>  [ 3675.127899] pstate: 23400009 (nzCv daif +PAN -UAO +TCO +DIT -SSBS BTYPE=--)
>  [ 3675.127900] pc : __kvmalloc_node_noprof+0x534/0x818
>  [ 3675.127902] lr : __kvmalloc_node_noprof+0x520/0x818
>  [ 3675.127903] sp : ffff800102c2fb90
>  [ 3675.127903] x29: ffff800102c2fbc0 x28: ffff0001911d5000 x27:
>  d8eaa73777d13b74
>  [ 3675.127905] x26: 0000000000000001 x25: ffffa73777d13b74 x24:
>  0000000000000000
>  [ 3675.127907] x23: 00000000ffffffff x22: 0000000000000dc0 x21:
>  00000000000029c0
>  [ 3675.127908] x20: 0000000000000000 x19: 0000000080000000 x18:
>  ffff800125340040
>  [ 3675.127910] x17: 0000000000000000 x16: 0000000000000000 x15:
>  0000ffffd627bed8
>  [ 3675.127911] x14: 0000000000000000 x13: 0000000000000000 x12:
>  0000000000000000
>  [ 3675.127913] x11: 0000000000000000 x10: 0000000000000000 x9 :
>  0000000000000000
>  [ 3675.127914] x8 : 0000000000000000 x7 : 0000000000000000 x6 :
>  0000000000000000
>  [ 3675.127916] x5 : 0000000000000000 x4 : 0000000000000000 x3 :
>  0000000000000000
>  [ 3675.127917] x2 : 0000000000000000 x1 : 0000000000000000 x0 :
>  000000007fffffff
>  [ 3675.127919] Call trace:
>  [ 3675.127919]  __kvmalloc_node_noprof+0x534/0x818 (P)
>  [ 3675.127921]  cxl_send_cmd+0x514/0x7e0
>  [ 3675.127926]  cxl_memdev_ioctl+0x7c/0xe0
>  [ 3675.127928]  __arm64_sys_ioctl+0x4a4/0xbc8
>  [ 3675.127931]  invoke_syscall.constprop.0+0xac/0x100
>  [ 3675.127934]  do_el0_svc+0x4c/0x100
>  [ 3675.127935]  el0_svc+0x50/0x2b0
>  [ 3675.127938]  el0t_64_sync_handler+0xc0/0x108
>  [ 3675.127940]  el0t_64_sync+0x1b8/0x1c0
>  [ 3675.127942] ---[ end trace 0000000000000000 ]---

My cxl syzkaller also ran into this issue and I had a similar patch
I never sent out.

Reviewed-by: Davidlohr Bueso <dave@stgolabs.net>

>
>Fixes: 4faf31b43468 ("cxl/mbox: Move mailbox and other non-PCI specific infrastructure to the core")
>Reviewed-by: Kai-Heng Feng <kaihengf@nvidia.com>
>Reviewed-by: Koba Ko <kobak@nvidia.com>
>Signed-off-by: Richard Cheng <icheng@nvidia.com>
>---

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] cxl/mbox: Bound the output payload allocation to mailbox payload size
  2026-06-17 21:07 ` Davidlohr Bueso
@ 2026-06-22 10:13   ` Richard Cheng
  0 siblings, 0 replies; 7+ messages in thread
From: Richard Cheng @ 2026-06-22 10:13 UTC (permalink / raw)
  To: Davidlohr Bueso
  Cc: jic23, dave.jiang, alison.schofield, vishal.l.verma, ira.weiny,
	djbw, shiju.jose, ming.li, alucerop, linux-cxl, linux-kernel,
	newtonl, kristinc, kaihengf, kobak

On Wed, Jun 17, 2026 at 02:07:45PM +0800, Davidlohr Bueso wrote:
> On Thu, 11 Jun 2026, Richard Cheng wrote:
> 
> > CXL_MEM_SEND_COMMAND bounds the user's in.size to the mailbox payload
> > size but leaves out.size unbounded, then cxl_mbox_cmd_ctor() calls
> > kvzalloc(out.size). A large out.size drives a huge allocation, even
> > above INT_MAX it WARNS and taints, on kernel with panic_on_warn=1, it
> > will panic.
> > The transport __cxl_pci_mbox_send_cmd() already clamps the response copy
> > to min(out.size, payload_size, device len), so the bound buffer is never
> > written beyond payload_size. Clamp the allocation to payload_size too,
> > matching the RAW path.
> > 
> > With the following reproducer[1] , we'll get error logs [2].
> > [1]:
> > """
> >        #include <fcntl.h>
> >        #include <stdint.h>
> >        #include <stdio.h>
> >        #include <sys/ioctl.h>
> > 
> >        #define CXL_MEM_SEND_COMMAND        _IOWR(0xCE, 2, struct cxl_send_comma
> >        #define CXL_MEM_COMMAND_ID_IDENTIFY 1
> > 
> >        struct cxl_send_command {
> >                uint32_t id, flags;
> >                union { struct { uint16_t opcode, rsvd; } raw; uint32_t rsvd; };
> >                uint32_t retval;
> >                struct { uint32_t size, rsvd; uint64_t payload; } in;
> >                struct { uint32_t size, rsvd; uint64_t payload; } out;
> >        };
> > 
> >        int main(void)
> >        {
> >                static unsigned char buf[512];
> >                struct cxl_send_command c = {
> >                        .id          = CXL_MEM_COMMAND_ID_IDENTIFY, /* any enabl
> >                        .out.size    = 0x80000000,                  /* > INT_MAX
> >                        .out.payload = (uint64_t)(uintptr_t)buf,
> >                };
> >                int fd = open("/dev/cxl/mem0", O_RDWR);
> > 
> >                return ioctl(fd, CXL_MEM_SEND_COMMAND, &c);
> >        }
> 
> Nit: Maybe not needed in the changelog.
>

Thanks, will remove them in v2.
 
> > """
> > [2]:
> >  [ 3675.127839] ------------[ cut here ]------------
> >  [ 3675.127841] WARNING: mm/slub.c:6841 at __kvmalloc_node_noprof+0x534/0x818,
> >  CPU#131: cxl_repro_outsi/4668
> >  [ 3675.127853] Modules linked in: nft_masq nft_ct nft_reject_ipv4
> >  nf_reject_ipv4 nft_reject act_csum cls_u32 sch_htb nft_chain_nat nf_nat
> >  nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 nf_tables bridge stp llc qrtr
> >  cfg80211 binfmt_misc nls_iso8859_1 acpi_power_meter nvidia_cspmu acpi_ipmi
> >  ipmi_ssif coresight_trbe ipmi_devintf sbsa_gwdt dax_hmem arm_smmuv3_pmu
> >  coresight arm_cspmu_module arm_spe_pmu ast nvidia_t410_cmem_latency_pmu
> >  nvidia_t410_c2c_pmu ipmi_msghandler cppc_cpufreq mlx5_ib macsec ib_uverbs
> >  mlx5_fwctl mlx5_dpll sch_fq_codel dm_multipath nvme_fabrics efi_pstore
> >  nfnetlink dmi_sysfs ip_tables x_tables autofs4 ib_core btrfs libblake2b raid10
> >  raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor
> >  raid6_pq raid1 raid0 linear ghash_ce gf128mul sm4_ce_gcm mlx5_core nvme
> >  sm4_ce_ccm nvme_core mlxfw sm4_ce tls nvme_keyring igb sm4_ce_cipher sm4
> >  arm_smccc_trng i2c_algo_bit nvme_auth psample i2c_tegra aes_neon_bs aes_ce_blk
> >  [ 3675.127894] CPU: 131 UID: 0 PID: 4668 Comm: cxl_repro_outsi Tainted: G
> >    W           7.1.0-rc7-cxltest #1 PREEMPT(full)
> >  [ 3675.127897] Tainted: [W]=WARN
> >  [ 3675.127898] Hardware name:  , BIOS buildbrain-gcid-sbios-45820373-12 Fri
> >  Jun  5 07:54:44 AM UTC 2026
> >  [ 3675.127899] pstate: 23400009 (nzCv daif +PAN -UAO +TCO +DIT -SSBS BTYPE=--)
> >  [ 3675.127900] pc : __kvmalloc_node_noprof+0x534/0x818
> >  [ 3675.127902] lr : __kvmalloc_node_noprof+0x520/0x818
> >  [ 3675.127903] sp : ffff800102c2fb90
> >  [ 3675.127903] x29: ffff800102c2fbc0 x28: ffff0001911d5000 x27:
> >  d8eaa73777d13b74
> >  [ 3675.127905] x26: 0000000000000001 x25: ffffa73777d13b74 x24:
> >  0000000000000000
> >  [ 3675.127907] x23: 00000000ffffffff x22: 0000000000000dc0 x21:
> >  00000000000029c0
> >  [ 3675.127908] x20: 0000000000000000 x19: 0000000080000000 x18:
> >  ffff800125340040
> >  [ 3675.127910] x17: 0000000000000000 x16: 0000000000000000 x15:
> >  0000ffffd627bed8
> >  [ 3675.127911] x14: 0000000000000000 x13: 0000000000000000 x12:
> >  0000000000000000
> >  [ 3675.127913] x11: 0000000000000000 x10: 0000000000000000 x9 :
> >  0000000000000000
> >  [ 3675.127914] x8 : 0000000000000000 x7 : 0000000000000000 x6 :
> >  0000000000000000
> >  [ 3675.127916] x5 : 0000000000000000 x4 : 0000000000000000 x3 :
> >  0000000000000000
> >  [ 3675.127917] x2 : 0000000000000000 x1 : 0000000000000000 x0 :
> >  000000007fffffff
> >  [ 3675.127919] Call trace:
> >  [ 3675.127919]  __kvmalloc_node_noprof+0x534/0x818 (P)
> >  [ 3675.127921]  cxl_send_cmd+0x514/0x7e0
> >  [ 3675.127926]  cxl_memdev_ioctl+0x7c/0xe0
> >  [ 3675.127928]  __arm64_sys_ioctl+0x4a4/0xbc8
> >  [ 3675.127931]  invoke_syscall.constprop.0+0xac/0x100
> >  [ 3675.127934]  do_el0_svc+0x4c/0x100
> >  [ 3675.127935]  el0_svc+0x50/0x2b0
> >  [ 3675.127938]  el0t_64_sync_handler+0xc0/0x108
> >  [ 3675.127940]  el0t_64_sync+0x1b8/0x1c0
> >  [ 3675.127942] ---[ end trace 0000000000000000 ]---
> 
> My cxl syzkaller also ran into this issue and I had a similar patch
> I never sent out.
> 
> Reviewed-by: Davidlohr Bueso <dave@stgolabs.net>
> 

Thanks for the review.

--Richard

> > 
> > Fixes: 4faf31b43468 ("cxl/mbox: Move mailbox and other non-PCI specific infrastructure to the core")
> > Reviewed-by: Kai-Heng Feng <kaihengf@nvidia.com>
> > Reviewed-by: Koba Ko <kobak@nvidia.com>
> > Signed-off-by: Richard Cheng <icheng@nvidia.com>
> > ---

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] cxl/mbox: Bound the output payload allocation to mailbox payload size
  2026-06-16 20:41 ` Dan Williams (nvidia)
@ 2026-06-22 10:14   ` Richard Cheng
  0 siblings, 0 replies; 7+ messages in thread
From: Richard Cheng @ 2026-06-22 10:14 UTC (permalink / raw)
  To: Dan Williams (nvidia)
  Cc: dave, jic23, dave.jiang, alison.schofield, vishal.l.verma,
	ira.weiny, shiju.jose, ming.li, alucerop, linux-cxl,
	linux-kernel, newtonl, kristinc, kaihengf, kobak

On Tue, Jun 16, 2026 at 01:41:49PM +0800, Dan Williams (nvidia) wrote:
> Richard Cheng wrote:
> > CXL_MEM_SEND_COMMAND bounds the user's in.size to the mailbox payload
> > size but leaves out.size unbounded, then cxl_mbox_cmd_ctor() calls
> > kvzalloc(out.size). A large out.size drives a huge allocation, even
> > above INT_MAX it WARNS and taints, on kernel with panic_on_warn=1, it
> > will panic.
> > The transport __cxl_pci_mbox_send_cmd() already clamps the response copy
> > to min(out.size, payload_size, device len), so the bound buffer is never
> > written beyond payload_size. Clamp the allocation to payload_size too,
> > matching the RAW path.
> 
> Patch looks good, just comments on Fixes and formatting:
> 
> > With the following reproducer[1] , we'll get error logs [2].
> > [1]:
> > """
> [ .. snip reproducer, yes a new test would be welcome .. ]
> > """
> > [2]:
> 
> Trim reports to the relevant information, I usually drop timestamps and
> all but the Call Trace:
>

No problem, I'll drop them in v2.
 
> >   WARNING: mm/slub.c:6841 at __kvmalloc_node_noprof+0x534/0x818,
> >   CPU#131: cxl_repro_outsi/4668
> >    Tainted: [W]=WARN
> >    Call trace:
> >     __kvmalloc_node_noprof+0x534/0x818 (P)
> >     cxl_send_cmd+0x514/0x7e0
> >     cxl_memdev_ioctl+0x7c/0xe0
> >     __arm64_sys_ioctl+0x4a4/0xbc8
> >     invoke_syscall.constprop.0+0xac/0x100
> >     do_el0_svc+0x4c/0x100
> >     el0_svc+0x50/0x2b0
> >     el0t_64_sync_handler+0xc0/0x108
> >     el0t_64_sync+0x1b8/0x1c0
> >    ---[ end trace 0000000000000000 ]---
> > 
> > Fixes: 4faf31b43468 ("cxl/mbox: Move mailbox and other non-PCI specific infrastructure to the core")
> 
> Looks like the correct Fixes would be:
> 
> Fixes: 583fa5e71cae ("cxl/mem: Add basic IOCTL interface")
> 
> ...as unbounded input was mistakenly allowed from the outset.

Oh thanks for this, I'll correct it.

--Richard

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] cxl/mbox: Bound the output payload allocation to mailbox payload size
  2026-06-11 15:30 ` Dave Jiang
@ 2026-06-23  1:56   ` Richard Cheng
  0 siblings, 0 replies; 7+ messages in thread
From: Richard Cheng @ 2026-06-23  1:56 UTC (permalink / raw)
  To: Dave Jiang
  Cc: dave, jic23, alison.schofield, vishal.l.verma, ira.weiny, djbw,
	shiju.jose, ming.li, alucerop, linux-cxl, linux-kernel, newtonl,
	kristinc, kaihengf, kobak

On Thu, Jun 11, 2026 at 08:30:06AM +0800, Dave Jiang wrote:
> 
> 
> On 6/11/26 2:45 AM, Richard Cheng wrote:
> > CXL_MEM_SEND_COMMAND bounds the user's in.size to the mailbox payload
> > size but leaves out.size unbounded, then cxl_mbox_cmd_ctor() calls
> > kvzalloc(out.size). A large out.size drives a huge allocation, even
> > above INT_MAX it WARNS and taints, on kernel with panic_on_warn=1, it
> > will panic.
> > The transport __cxl_pci_mbox_send_cmd() already clamps the response copy
> > to min(out.size, payload_size, device len), so the bound buffer is never
> > written beyond payload_size. Clamp the allocation to payload_size too,
> > matching the RAW path.
> > 
> > With the following reproducer[1] , we'll get error logs [2].
> > [1]:
> > """
> >         #include <fcntl.h>
> >         #include <stdint.h>
> >         #include <stdio.h>
> >         #include <sys/ioctl.h>
> > 
> >         #define CXL_MEM_SEND_COMMAND        _IOWR(0xCE, 2, struct cxl_send_comma
> >         #define CXL_MEM_COMMAND_ID_IDENTIFY 1
> > 
> >         struct cxl_send_command {
> >                 uint32_t id, flags;
> >                 union { struct { uint16_t opcode, rsvd; } raw; uint32_t rsvd; };
> >                 uint32_t retval;
> >                 struct { uint32_t size, rsvd; uint64_t payload; } in;
> >                 struct { uint32_t size, rsvd; uint64_t payload; } out;
> >         };
> > 
> >         int main(void)
> >         {
> >                 static unsigned char buf[512];
> >                 struct cxl_send_command c = {
> >                         .id          = CXL_MEM_COMMAND_ID_IDENTIFY, /* any enabl
> >                         .out.size    = 0x80000000,                  /* > INT_MAX
> >                         .out.payload = (uint64_t)(uintptr_t)buf,
> >                 };
> >                 int fd = open("/dev/cxl/mem0", O_RDWR);
> > 
> >                 return ioctl(fd, CXL_MEM_SEND_COMMAND, &c);
> >         }
> > """
> > [2]:
> >   [ 3675.127839] ------------[ cut here ]------------
> >   [ 3675.127841] WARNING: mm/slub.c:6841 at __kvmalloc_node_noprof+0x534/0x818,
> >   CPU#131: cxl_repro_outsi/4668
> >   [ 3675.127853] Modules linked in: nft_masq nft_ct nft_reject_ipv4
> >   nf_reject_ipv4 nft_reject act_csum cls_u32 sch_htb nft_chain_nat nf_nat
> >   nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 nf_tables bridge stp llc qrtr
> >   cfg80211 binfmt_misc nls_iso8859_1 acpi_power_meter nvidia_cspmu acpi_ipmi
> >   ipmi_ssif coresight_trbe ipmi_devintf sbsa_gwdt dax_hmem arm_smmuv3_pmu
> >   coresight arm_cspmu_module arm_spe_pmu ast nvidia_t410_cmem_latency_pmu
> >   nvidia_t410_c2c_pmu ipmi_msghandler cppc_cpufreq mlx5_ib macsec ib_uverbs
> >   mlx5_fwctl mlx5_dpll sch_fq_codel dm_multipath nvme_fabrics efi_pstore
> >   nfnetlink dmi_sysfs ip_tables x_tables autofs4 ib_core btrfs libblake2b raid10
> >   raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor
> >   raid6_pq raid1 raid0 linear ghash_ce gf128mul sm4_ce_gcm mlx5_core nvme
> >   sm4_ce_ccm nvme_core mlxfw sm4_ce tls nvme_keyring igb sm4_ce_cipher sm4
> >   arm_smccc_trng i2c_algo_bit nvme_auth psample i2c_tegra aes_neon_bs aes_ce_blk
> >   [ 3675.127894] CPU: 131 UID: 0 PID: 4668 Comm: cxl_repro_outsi Tainted: G
> >     W           7.1.0-rc7-cxltest #1 PREEMPT(full)
> >   [ 3675.127897] Tainted: [W]=WARN
> >   [ 3675.127898] Hardware name:  , BIOS buildbrain-gcid-sbios-45820373-12 Fri
> >   Jun  5 07:54:44 AM UTC 2026
> >   [ 3675.127899] pstate: 23400009 (nzCv daif +PAN -UAO +TCO +DIT -SSBS BTYPE=--)
> >   [ 3675.127900] pc : __kvmalloc_node_noprof+0x534/0x818
> >   [ 3675.127902] lr : __kvmalloc_node_noprof+0x520/0x818
> >   [ 3675.127903] sp : ffff800102c2fb90
> >   [ 3675.127903] x29: ffff800102c2fbc0 x28: ffff0001911d5000 x27:
> >   d8eaa73777d13b74
> >   [ 3675.127905] x26: 0000000000000001 x25: ffffa73777d13b74 x24:
> >   0000000000000000
> >   [ 3675.127907] x23: 00000000ffffffff x22: 0000000000000dc0 x21:
> >   00000000000029c0
> >   [ 3675.127908] x20: 0000000000000000 x19: 0000000080000000 x18:
> >   ffff800125340040
> >   [ 3675.127910] x17: 0000000000000000 x16: 0000000000000000 x15:
> >   0000ffffd627bed8
> >   [ 3675.127911] x14: 0000000000000000 x13: 0000000000000000 x12:
> >   0000000000000000
> >   [ 3675.127913] x11: 0000000000000000 x10: 0000000000000000 x9 :
> >   0000000000000000
> >   [ 3675.127914] x8 : 0000000000000000 x7 : 0000000000000000 x6 :
> >   0000000000000000
> >   [ 3675.127916] x5 : 0000000000000000 x4 : 0000000000000000 x3 :
> >   0000000000000000
> >   [ 3675.127917] x2 : 0000000000000000 x1 : 0000000000000000 x0 :
> >   000000007fffffff
> >   [ 3675.127919] Call trace:
> >   [ 3675.127919]  __kvmalloc_node_noprof+0x534/0x818 (P)
> >   [ 3675.127921]  cxl_send_cmd+0x514/0x7e0
> >   [ 3675.127926]  cxl_memdev_ioctl+0x7c/0xe0
> >   [ 3675.127928]  __arm64_sys_ioctl+0x4a4/0xbc8
> >   [ 3675.127931]  invoke_syscall.constprop.0+0xac/0x100
> >   [ 3675.127934]  do_el0_svc+0x4c/0x100
> >   [ 3675.127935]  el0_svc+0x50/0x2b0
> >   [ 3675.127938]  el0t_64_sync_handler+0xc0/0x108
> >   [ 3675.127940]  el0t_64_sync+0x1b8/0x1c0
> >   [ 3675.127942] ---[ end trace 0000000000000000 ]---
> > 
> > Fixes: 4faf31b43468 ("cxl/mbox: Move mailbox and other non-PCI specific infrastructure to the core")
> > Reviewed-by: Kai-Heng Feng <kaihengf@nvidia.com>
> > Reviewed-by: Koba Ko <kobak@nvidia.com>
> > Signed-off-by: Richard Cheng <icheng@nvidia.com>
> 
> Reviewed-by: Dave Jiang <dave.jiang@intel.com>
> 
> > ---
> > 
> > Maybe we should consider to put the reproducer into selftests of cxl.
> 
> Good idea :) 
>

Same question as I mentioned in cxl/features patch,
personally I would prefer ndctl patch.

What do you think?

Best regards,
Richard Cheng.

 
> > 
> > Best regards,
> > Richard Cheng.
> > ---
> >  drivers/cxl/core/mbox.c | 6 +-----
> >  1 file changed, 1 insertion(+), 5 deletions(-)
> > 
> > diff --git a/drivers/cxl/core/mbox.c b/drivers/cxl/core/mbox.c
> > index 7c6c5b7450a5..d9cb02c9f72c 100644
> > --- a/drivers/cxl/core/mbox.c
> > +++ b/drivers/cxl/core/mbox.c
> > @@ -380,11 +380,7 @@ static int cxl_mbox_cmd_ctor(struct cxl_mbox_cmd *mbox_cmd,
> >  		}
> >  	}
> >  
> > -	/* Prepare to handle a full payload for variable sized output */
> > -	if (out_size == CXL_VARIABLE_PAYLOAD)
> > -		mbox_cmd->size_out = cxl_mbox->payload_size;
> > -	else
> > -		mbox_cmd->size_out = out_size;
> > +	mbox_cmd->size_out = min_t(size_t, out_size, cxl_mbox->payload_size);
> >  
> >  	if (mbox_cmd->size_out) {
> >  		mbox_cmd->payload_out = kvzalloc(mbox_cmd->size_out, GFP_KERNEL);
> > 
> > base-commit: 4549871118cf616eecdd2d939f78e3b9e1dddc48
> 

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2026-06-23  1:56 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-11  9:45 [PATCH] cxl/mbox: Bound the output payload allocation to mailbox payload size Richard Cheng
2026-06-11 15:30 ` Dave Jiang
2026-06-23  1:56   ` Richard Cheng
2026-06-16 20:41 ` Dan Williams (nvidia)
2026-06-22 10:14   ` Richard Cheng
2026-06-17 21:07 ` Davidlohr Bueso
2026-06-22 10:13   ` Richard Cheng

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox