Re: [PATCH v6 12/42] x86/resctrl: Move rdt_find_domain() to be visible to arch and fs code

From: Reinette Chatre
Date: Wed Feb 19 2025 - 18:25:04 EST


Hi James,

On 2/7/25 10:17 AM, James Morse wrote:
> rdt_find_domain() finds a domain given a resource and a cache-id.
> This is used by both the architecture code and the filesystem code.
>
> After the filesystem code moves to live in /fs/, this helper will no
> longer be visible.
>
> Move it to the global header file. As its now globally visible, and
> has only a handful of callers, swap the 'rdt' for 'resctrl'.
>
> Signed-off-by: James Morse <james.morse@xxxxxxx>
>
> ---
> Changes since v5:
> * This patch replaced one that split off the 'new entry to insert'
> behaviour.
> ---

...

> @@ -395,36 +395,6 @@ void rdt_ctrl_update(void *arg)
> hw_res->msr_update(m);
> }
>
> -/*
> - * rdt_find_domain - Search for a domain id in a resource domain list.
> - *
> - * Search the domain list to find the domain id. If the domain id is
> - * found, return the domain. NULL otherwise. If the domain id is not
> - * found (and NULL returned) then the first domain with id bigger than
> - * the input id can be returned to the caller via @pos.
> - */
> -struct rdt_domain_hdr *rdt_find_domain(struct list_head *h, int id,
> - struct list_head **pos)
> -{
> - struct rdt_domain_hdr *d;
> - struct list_head *l;
> -
> - list_for_each(l, h) {
> - d = list_entry(l, struct rdt_domain_hdr, list);
> - /* When id is found, return its domain. */
> - if (id == d->id)
> - return d;
> - /* Stop searching when finding id's position in sorted list. */
> - if (id < d->id)
> - break;
> - }
> -
> - if (pos)
> - *pos = l;
> -
> - return NULL;
> -}
> -
> static void setup_default_ctrlval(struct rdt_resource *r, u32 *dc)
> {
> struct rdt_hw_resource *hw_res = resctrl_to_arch_res(r);

...

> --- a/include/linux/resctrl.h
> +++ b/include/linux/resctrl.h
> @@ -372,6 +372,40 @@ static inline void resctrl_arch_rmid_read_context_check(void)
> might_sleep();
> }
>
> +/**
> + * resctrl_find_domain() - Search for a domain id in a resource domain list.
> + * @h: The domain list to search.
> + * @id: The domain id to search for.
> + * @pos: A pointer to position in the list id should be inserted.
> + *
> + * Search the domain list to find the domain id. If the domain id is
> + * found, return the domain. NULL otherwise. If the domain id is not
> + * found (and NULL returned) then the first domain with id bigger than
> + * the input id can be returned to the caller via @pos.
> + */
> +static inline struct rdt_domain_hdr *resctrl_find_domain(struct list_head *h,
> + int id,
> + struct list_head **pos)

Could you please provide a motivation for why this needs to be inline now?

> +{
> + struct rdt_domain_hdr *d;
> + struct list_head *l;
> +
> + list_for_each(l, h) {
> + d = list_entry(l, struct rdt_domain_hdr, list);
> + /* When id is found, return its domain. */
> + if (id == d->id)
> + return d;
> + /* Stop searching when finding id's position in sorted list. */
> + if (id < d->id)
> + break;
> + }
> +
> + if (pos)
> + *pos = l;
> +
> + return NULL;
> +}
> +
> /**
> * resctrl_arch_reset_rmid() - Reset any private state associated with rmid
> * and eventid.


Reinette