[RFC PATCH 3/5] RISC-V: hwprobe: Introduce which-cpus flag

Evan Green evan at rivosinc.com
Thu Oct 5 10:12:14 PDT 2023


On Thu, Oct 5, 2023 at 6:23 AM Andrew Jones <ajones at ventanamicro.com> wrote:
>
> On Mon, Sep 25, 2023 at 09:16:01AM -0700, Evan Green wrote:
> > On Thu, Sep 21, 2023 at 5:55 AM Andrew Jones <ajones at ventanamicro.com> wrote:
> > >
> > > Introduce the first flag for the hwprobe syscall. The flag basically
> > > reverses its behavior, i.e. instead of populating the values of keys
> > > for a given set of cpus, the set of cpus after the call is the result
> > > of finding a set which supports the values of the keys. In order to
> > > do this, we implement pair merge and pair compare functions which
> > > take the type of value (a single value vs. a bitmap of booleans) into
> > > consideration. The flow for the which-cpus syscall variant is as
> > > follows:
> > >
> > >   1. Merge pairs into a set of pairs with unique keys
> > >   2. If any unknown keys are seen, return an empty set of cpus
> > >   3. If the platform is homogeneous, then check all the pairs
> > >      against the "all cpu" values and return early
> > >   4. Otherwise, check all the pairs against each cpu individually
> > >
> > > Signed-off-by: Andrew Jones <ajones at ventanamicro.com>
> >
> > Overall the concept seems reasonable to me. I could see an application
> > like Chrome using this to schedule intensive or latency-sensitive
> > activities (video playback comes to mind) on only cores that meet a
> > certain performance bar, if any do.
>
> Thanks for the review, Evan and sorry for my slow return to this.
>
> >
> > > ---
> > >  Documentation/riscv/hwprobe.rst       |  16 ++-
> > >  arch/riscv/include/uapi/asm/hwprobe.h |   3 +
> > >  arch/riscv/kernel/sys_riscv.c         | 148 +++++++++++++++++++++++++-
> > >  3 files changed, 163 insertions(+), 4 deletions(-)
> > >
> > > diff --git a/Documentation/riscv/hwprobe.rst b/Documentation/riscv/hwprobe.rst
> > > index 132e9acaa8f4..97b1e97e7dd2 100644
> > > --- a/Documentation/riscv/hwprobe.rst
> > > +++ b/Documentation/riscv/hwprobe.rst
> > > @@ -25,8 +25,20 @@ arch, impl), the returned value will only be valid if all CPUs in the given set
> > >  have the same value. Otherwise -1 will be returned. For boolean-like keys, the
> > >  value returned will be a logical AND of the values for the specified CPUs.
> > >  Usermode can supply NULL for ``cpus`` and 0 for ``cpusetsize`` as a shortcut for
> > > -all online CPUs. There are currently no flags, this value must be zero for
> > > -future compatibility.
> > > +all online CPUs. The currently supported flags are:
> > > +
> > > +* :c:macro:`RISCV_HWPROBE_WHICH_CPUS`: This flag basically reverses the behavior
> > > +  of sys_riscv_hwprobe().  Instead of populating the values of keys for a given
> > > +  set of CPUs, the set of CPUs is initially all unset and the values of each key
> > > +  are given.  Upon return, the CPUs which all match each of the given key-value
> > > +  pairs are set in ``cpus``.  How matching is done depends on the key type.  For
> > > +  value-like keys, matching means to be the exact same as the value.  For
> > > +  boolean-like keys, matching means the result of a logical AND of the pair's
> > > +  value with the CPU's value is exactly the same as the pair's value.  ``cpus``
> > > +  may also initially have set bits, in which case the bits of any CPUs which do
> > > +  not match the pairs will be cleared, but no other bits will be set.
> > > +
> > > +All other flags are reserved for future compatibility and must be zero.
> > >
> > >  On success 0 is returned, on failure a negative error code is returned.
> > >
> > > diff --git a/arch/riscv/include/uapi/asm/hwprobe.h b/arch/riscv/include/uapi/asm/hwprobe.h
> > > index 86d08a0e617b..36683307c3e4 100644
> > > --- a/arch/riscv/include/uapi/asm/hwprobe.h
> > > +++ b/arch/riscv/include/uapi/asm/hwprobe.h
> > > @@ -40,4 +40,7 @@ struct riscv_hwprobe {
> > >  #define RISCV_HWPROBE_KEY_ZICBOZ_BLOCK_SIZE    6
> > >  /* Increase RISCV_HWPROBE_MAX_KEY when adding items. */
> > >
> > > +/* Flags */
> > > +#define RISCV_HWPROBE_WHICH_CPUS       (1 << 0)
> > > +
> > >  #endif
> > > diff --git a/arch/riscv/kernel/sys_riscv.c b/arch/riscv/kernel/sys_riscv.c
> > > index 14b6dfaa5d9f..c70a72fe6aee 100644
> > > --- a/arch/riscv/kernel/sys_riscv.c
> > > +++ b/arch/riscv/kernel/sys_riscv.c
> > > @@ -245,14 +245,145 @@ static void hwprobe_one_pair(struct riscv_hwprobe *pair,
> > >         }
> > >  }
> > >
> > > +static bool hwprobe_key_is_map(__s64 key)
> >
> > The word "map" confuses me some, as the closest my brain can get is a
> > synonym for dictionary, which makes me think "unique value". Based on
> > the keys returning true, you really mean bitfield.
>
> I was thinking bitmap, which I prefer using over bitfield, since C
> bitfield's come to mind first when I see that word. I'll spell out
> bitmap for v1.

SGTM.

>
> >
> > > +{
> > > +       switch (key) {
> > > +       case RISCV_HWPROBE_KEY_BASE_BEHAVIOR:
> > > +       case RISCV_HWPROBE_KEY_IMA_EXT_0:
> > > +       case RISCV_HWPROBE_KEY_CPUPERF_0:
> > > +               return true;
> > > +       }
> > > +
> > > +       return false;
> > > +}
> > > +
> > > +static int hwprobe_pair_merge(struct riscv_hwprobe *to,
> > > +                             struct riscv_hwprobe *from)
> >
> > Why is the merge step necessary? Maybe I'll see further below. Oh yes,
> > I do, but see my comment below on how we might get rid of this.
> >
> > > +{
> > > +       if (to->key != from->key)
> > > +               return -EINVAL;
> > > +
> > > +       if (hwprobe_key_is_map(to->key)) {
> > > +               to->value |= from->value;
> > > +               return 0;
> > > +       }
> > > +
> > > +       return to->value == from->value ? 0 : -EINVAL;
> > > +}
> > > +
> > > +static bool hwprobe_pair_cmp(struct riscv_hwprobe *pair,
> > > +                            struct riscv_hwprobe *other_pair)
> > > +{
> > > +       if (pair->key != other_pair->key)
> > > +               return false;
> > > +
> > > +       if (hwprobe_key_is_map(pair->key))
> > > +               return (pair->value & other_pair->value) == other_pair->value;
> > > +
> > > +       return pair->value == other_pair->value;
> > > +}
> > > +
> > > +static int hwprobe_which_cpus(struct riscv_hwprobe __user *pairs_user,
> > > +                             size_t pair_count, size_t cpusetsize,
> > > +                             cpumask_t *cpus)
> > > +{
> > > +       struct riscv_hwprobe pairs[RISCV_HWPROBE_MAX_KEY + 1] = {
> > > +               [0 ... RISCV_HWPROBE_MAX_KEY] = (struct riscv_hwprobe){ .key = -1 }
> >
> > Minor note: I'd prefer we avoid baking in things that blow up if the
> > key space becomes non-contiguous or large. I suspect vendor-specific
> > hwprobe keys are coming, and if we assign them a separate high range
> > of keyspace, we'll have to unwind anything in the implementation that
> > assumes a contiguous small key space.
>
> Good point. I'll try to find a better way to manage key space for v1.
>
> >
> > > +       };
> > > +       struct riscv_hwprobe pair;
> > > +       struct vdso_data *vd = __arch_get_k_vdso_data();
> > > +       struct arch_vdso_data *avd = &vd->arch_data;
> > > +       bool clear_all = false;
> > > +       cpumask_t one_cpu;
> > > +       int cpu, ret;
> > > +       size_t i;
> > > +
> > > +       for (i = 0; i < pair_count; i++) {
> > > +               ret = copy_from_user(&pair, &pairs_user[i], sizeof(pair));
> > > +               if (ret)
> > > +                       return -EFAULT;
> > > +
> > > +               if (pair.key >= 0 && pair.key <= RISCV_HWPROBE_MAX_KEY) {
> > > +                       if (pairs[pair.key].key == -1) {
> > > +                               pairs[pair.key] = pair;
> > > +                       } else {
> > > +                               ret = hwprobe_pair_merge(&pairs[pair.key], &pair);
> > > +                               if (ret)
> > > +                                       return ret;
> > > +                       }
> > > +               } else {
> > > +                       pair.key = -1;
> > > +                       pair.value = 0;
> > > +                       ret = copy_to_user(&pairs_user[i], &pair, sizeof(pair));
> > > +                       if (ret)
> > > +                               return -EFAULT;
> > > +                       clear_all = true;
> > > +               }
> > > +       }
> >
> > So if I write out this algorithm, I get something like:
> >  * Create an array of every possible key, and dedupe the caller's list
> > of pairs into this array.
> >  * For each remaining cpu, go through this array and either confirm
> > the big array's element matches this cpu's value, or clear the cpu
> > from the result set.
> >
> > But why do we go to all the effort of de-duping the caller's array of
> > pairs? Can't they do that themselves (or pay a small performance
> > penalty for "yes" results)? Instead, couldn't it be something like:
> > For each pair in the user's set, for each remaining cpu in the set,
> > compare the values, or clear the cpu in the remaining set.
> >
> > Doing that would also take the runtime from O(keyspace * ncpus) to
> > O(query_lengh * ncpus).
>
> I want to de-dupe for two reasons:
>  * query_length is unbounded, but keyspace is bounded (and is currently
>    small)

Ok, but remember that if we ship this behavior today, we're committed
to it forever. The keyspace is likely to grow, it would be unfortunate
if this step started to cause a noticeable performance delay.

>  * The merge function also provides an opportunity for sanity checks of
>    value-type duplicates. If the values don't match then the syscall
>    returns -EINVAL.

But the behavior if we don't do the deduping is that we get an empty
set of CPUs (eg the caller has asked "which CPUs have featureX==1 &&
featureX==2", answer: none). Other than perhaps a diagnostic print,
can the application take any practical different course of action from
these two results? In other words, the only logical choices I can see
an app or library taking to either of these two responses is 1) shrug
and move on or 2) panic and abort.

In my opinion the deduping has real costs associated with it, but
other than more directly pointing out that usermode made a silly
request, I don't understand the benefit.

-Evan



More information about the linux-riscv mailing list