diff mbox series

linux-user: fix handling of cpu mask in riscv_hwprobe syscall

Message ID mvmo6yglouz.fsf@suse.de (mailing list archive)
State New, archived
Headers show
Series linux-user: fix handling of cpu mask in riscv_hwprobe syscall | expand

Commit Message

Andreas Schwab March 4, 2025, 4:52 p.m. UTC
The third argument of the riscv_hwprobe syscall contains the size of the
cpu mask in bytes, not bits.

Signed-off-by: Andreas Schwab <schwab@suse.de>
---
 linux-user/syscall.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

Comments

Alistair Francis March 10, 2025, 11:10 p.m. UTC | #1
On Wed, Mar 5, 2025 at 2:54 AM Andreas Schwab <schwab@suse.de> wrote:
>
> The third argument of the riscv_hwprobe syscall contains the size of the
> cpu mask in bytes, not bits.
>
> Signed-off-by: Andreas Schwab <schwab@suse.de>

Richard sent a v2 that I have applied:

https://patchew.org/QEMU/20250308225902.1208237-3-richard.henderson@linaro.org/

Alistair

> ---
>  linux-user/syscall.c | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/linux-user/syscall.c b/linux-user/syscall.c
> index a22a5df8cc..4cc1a31d0d 100644
> --- a/linux-user/syscall.c
> +++ b/linux-user/syscall.c
> @@ -9120,16 +9120,16 @@ static void risc_hwprobe_fill_pairs(CPURISCVState *env,
>
>  static int cpu_set_valid(abi_long arg3, abi_long arg4)
>  {
> -    int ret, i, tmp;
> +    int ret, i;
>      size_t host_mask_size, target_mask_size;
>      unsigned long *host_mask;
>
>      /*
>       * cpu_set_t represent CPU masks as bit masks of type unsigned long *.
> -     * arg3 contains the cpu count.
> +     * arg3 contains the size of the cpu mask.
>       */
> -    tmp = (8 * sizeof(abi_ulong));
> -    target_mask_size = ((arg3 + tmp - 1) / tmp) * sizeof(abi_ulong);
> +    target_mask_size = (arg3 + (sizeof(abi_ulong) - 1)) &
> +                       ~(sizeof(abi_ulong) - 1);
>      host_mask_size = (target_mask_size + (sizeof(*host_mask) - 1)) &
>                       ~(sizeof(*host_mask) - 1);
>
> --
> 2.48.1
>
>
> --
> Andreas Schwab, SUSE Labs, schwab@suse.de
> GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE  1748 E4D4 88E3 0EEA B9D7
> "And now for something completely different."
>
Robbin Ehn March 11, 2025, 7:28 a.m. UTC | #2
On Tue, Mar 11, 2025 at 12:10 AM Alistair Francis <alistair23@gmail.com> wrote:
>
> On Wed, Mar 5, 2025 at 2:54 AM Andreas Schwab <schwab@suse.de> wrote:
> >
> > The third argument of the riscv_hwprobe syscall contains the size of the
> > cpu mask in bytes, not bits.
> >
> > Signed-off-by: Andreas Schwab <schwab@suse.de>
>
> Richard sent a v2 that I have applied:
>
> https://patchew.org/QEMU/20250308225902.1208237-3-richard.henderson@linaro.org/

Hey, thanks for fixing!

Acked-by: Robbin Ehn <rehn@rivosinc.com>

>
> Alistair
>
> > ---
> >  linux-user/syscall.c | 8 ++++----
> >  1 file changed, 4 insertions(+), 4 deletions(-)
> >
> > diff --git a/linux-user/syscall.c b/linux-user/syscall.c
> > index a22a5df8cc..4cc1a31d0d 100644
> > --- a/linux-user/syscall.c
> > +++ b/linux-user/syscall.c
> > @@ -9120,16 +9120,16 @@ static void risc_hwprobe_fill_pairs(CPURISCVState *env,
> >
> >  static int cpu_set_valid(abi_long arg3, abi_long arg4)
> >  {
> > -    int ret, i, tmp;
> > +    int ret, i;
> >      size_t host_mask_size, target_mask_size;
> >      unsigned long *host_mask;
> >
> >      /*
> >       * cpu_set_t represent CPU masks as bit masks of type unsigned long *.
> > -     * arg3 contains the cpu count.
> > +     * arg3 contains the size of the cpu mask.
> >       */
> > -    tmp = (8 * sizeof(abi_ulong));
> > -    target_mask_size = ((arg3 + tmp - 1) / tmp) * sizeof(abi_ulong);
> > +    target_mask_size = (arg3 + (sizeof(abi_ulong) - 1)) &
> > +                       ~(sizeof(abi_ulong) - 1);
> >      host_mask_size = (target_mask_size + (sizeof(*host_mask) - 1)) &
> >                       ~(sizeof(*host_mask) - 1);
> >
> > --
> > 2.48.1
> >
> >
> > --
> > Andreas Schwab, SUSE Labs, schwab@suse.de
> > GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE  1748 E4D4 88E3 0EEA B9D7
> > "And now for something completely different."
> >
diff mbox series

Patch

diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index a22a5df8cc..4cc1a31d0d 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -9120,16 +9120,16 @@  static void risc_hwprobe_fill_pairs(CPURISCVState *env,
 
 static int cpu_set_valid(abi_long arg3, abi_long arg4)
 {
-    int ret, i, tmp;
+    int ret, i;
     size_t host_mask_size, target_mask_size;
     unsigned long *host_mask;
 
     /*
      * cpu_set_t represent CPU masks as bit masks of type unsigned long *.
-     * arg3 contains the cpu count.
+     * arg3 contains the size of the cpu mask.
      */
-    tmp = (8 * sizeof(abi_ulong));
-    target_mask_size = ((arg3 + tmp - 1) / tmp) * sizeof(abi_ulong);
+    target_mask_size = (arg3 + (sizeof(abi_ulong) - 1)) &
+                       ~(sizeof(abi_ulong) - 1);
     host_mask_size = (target_mask_size + (sizeof(*host_mask) - 1)) &
                      ~(sizeof(*host_mask) - 1);