diff mbox series

[RFC,net-next,3/6] gve: Use napi_affinity_no_change

Message ID 20240812145633.52911-4-jdamato@fastly.com (mailing list archive)
State RFC
Delegated to: Netdev Maintainers
Headers show
Series Cleanup IRQ affinity checks in several drivers | expand

Checks

Context Check Description
netdev/series_format success Posting correctly formatted
netdev/tree_selection success Clearly marked for net-next, async
netdev/ynl success Generated files up to date; no warnings/errors; no diff in generated;
netdev/fixes_present success Fixes tag not required for -next series
netdev/header_inline success No static functions without inline keyword in header files
netdev/build_32bit success Errors and warnings before: 29 this patch: 29
netdev/build_tools success No tools touched, skip
netdev/cc_maintainers success CCed 9 of 9 maintainers
netdev/build_clang success Errors and warnings before: 29 this patch: 29
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/deprecated_api success None detected
netdev/check_selftest success No net selftest shell script
netdev/verify_fixes success No Fixes tag
netdev/build_allmodconfig_warn success Errors and warnings before: 29 this patch: 29
netdev/checkpatch success total: 0 errors, 0 warnings, 0 checks, 26 lines checked
netdev/build_clang_rust success No Rust files in patch. Skipping build
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/source_inline success Was 0 now: 0

Commit Message

Joe Damato Aug. 12, 2024, 2:56 p.m. UTC
Use napi_affinity_no_change instead of gve's internal implementation,
simplifying and centralizing the logic.

Signed-off-by: Joe Damato <jdamato@fastly.com>
---
 drivers/net/ethernet/google/gve/gve_main.c | 14 +-------------
 1 file changed, 1 insertion(+), 13 deletions(-)

Comments

Shailend Chand Aug. 13, 2024, 6:55 p.m. UTC | #1
On Mon, Aug 12, 2024 at 7:57 AM Joe Damato <jdamato@fastly.com> wrote:
>
> Use napi_affinity_no_change instead of gve's internal implementation,
> simplifying and centralizing the logic.
>
> Signed-off-by: Joe Damato <jdamato@fastly.com>
> ---
>  drivers/net/ethernet/google/gve/gve_main.c | 14 +-------------
>  1 file changed, 1 insertion(+), 13 deletions(-)
>
> diff --git a/drivers/net/ethernet/google/gve/gve_main.c b/drivers/net/ethernet/google/gve/gve_main.c
> index 661566db68c8..ad5e85b8c6a5 100644
> --- a/drivers/net/ethernet/google/gve/gve_main.c
> +++ b/drivers/net/ethernet/google/gve/gve_main.c
> @@ -298,18 +298,6 @@ static irqreturn_t gve_intr_dqo(int irq, void *arg)
>         return IRQ_HANDLED;
>  }
>
> -static int gve_is_napi_on_home_cpu(struct gve_priv *priv, u32 irq)
> -{
> -       int cpu_curr = smp_processor_id();
> -       const struct cpumask *aff_mask;
> -
> -       aff_mask = irq_get_effective_affinity_mask(irq);
> -       if (unlikely(!aff_mask))
> -               return 1;
> -
> -       return cpumask_test_cpu(cpu_curr, aff_mask);
> -}
> -
>  int gve_napi_poll(struct napi_struct *napi, int budget)
>  {
>         struct gve_notify_block *block;
> @@ -383,7 +371,7 @@ int gve_napi_poll_dqo(struct napi_struct *napi, int budget)
>                 /* Reschedule by returning budget only if already on the correct
>                  * cpu.
>                  */
> -               if (likely(gve_is_napi_on_home_cpu(priv, block->irq)))
> +               if (likely(napi_affinity_no_change(block->irq)))

Nice to centralize this code! Evolving this to cache the affinity mask
like the other drivers would probably also require a means to update
the cache when the affinity changes.

>                         return budget;
>
>                 /* If not on the cpu with which this queue's irq has affinity
> --
> 2.25.1
>
Joe Damato Aug. 13, 2024, 9:44 p.m. UTC | #2
On Tue, Aug 13, 2024 at 11:55:31AM -0700, Shailend Chand wrote:
> On Mon, Aug 12, 2024 at 7:57 AM Joe Damato <jdamato@fastly.com> wrote:
> >
> > Use napi_affinity_no_change instead of gve's internal implementation,
> > simplifying and centralizing the logic.
> >
> > Signed-off-by: Joe Damato <jdamato@fastly.com>
> > ---
> >  drivers/net/ethernet/google/gve/gve_main.c | 14 +-------------
> >  1 file changed, 1 insertion(+), 13 deletions(-)
> >
> > diff --git a/drivers/net/ethernet/google/gve/gve_main.c b/drivers/net/ethernet/google/gve/gve_main.c
> > index 661566db68c8..ad5e85b8c6a5 100644
> > --- a/drivers/net/ethernet/google/gve/gve_main.c
> > +++ b/drivers/net/ethernet/google/gve/gve_main.c
> > @@ -298,18 +298,6 @@ static irqreturn_t gve_intr_dqo(int irq, void *arg)
> >         return IRQ_HANDLED;
> >  }
> >
> > -static int gve_is_napi_on_home_cpu(struct gve_priv *priv, u32 irq)
> > -{
> > -       int cpu_curr = smp_processor_id();
> > -       const struct cpumask *aff_mask;
> > -
> > -       aff_mask = irq_get_effective_affinity_mask(irq);
> > -       if (unlikely(!aff_mask))
> > -               return 1;
> > -
> > -       return cpumask_test_cpu(cpu_curr, aff_mask);
> > -}
> > -
> >  int gve_napi_poll(struct napi_struct *napi, int budget)
> >  {
> >         struct gve_notify_block *block;
> > @@ -383,7 +371,7 @@ int gve_napi_poll_dqo(struct napi_struct *napi, int budget)
> >                 /* Reschedule by returning budget only if already on the correct
> >                  * cpu.
> >                  */
> > -               if (likely(gve_is_napi_on_home_cpu(priv, block->irq)))
> > +               if (likely(napi_affinity_no_change(block->irq)))
> 
> Nice to centralize this code! Evolving this to cache the affinity mask
> like the other drivers would probably also require a means to update
> the cache when the affinity changes.

Thanks for taking a look.

The gve driver already calls irq_get_effective_affinity_mask in the
hot path, so I'm planning on submitting a rfcv2 which will do this:

-               if (likely(gve_is_napi_on_home_cpu(priv, block->irq)))
+               const struct cpumask *aff_mask =
+                       irq_get_effective_affinity_mask(block->irq);
+
+               if (likely(napi_affinity_no_change(aff_mask)))
                        return budget;

with a change like that there'd be no behavioral change to gve since
it didn't cache before and still won't be caching after this change.

I think a change can be made to gve in a separate patch set to
support caching the affinity mask and does not need to be included
with this change.

What do you think?
Shailend Chand Aug. 13, 2024, 9:50 p.m. UTC | #3
On Tue, Aug 13, 2024 at 2:44 PM Joe Damato <jdamato@fastly.com> wrote:
>
> On Tue, Aug 13, 2024 at 11:55:31AM -0700, Shailend Chand wrote:
> > On Mon, Aug 12, 2024 at 7:57 AM Joe Damato <jdamato@fastly.com> wrote:
> > >
> > > Use napi_affinity_no_change instead of gve's internal implementation,
> > > simplifying and centralizing the logic.
> > >
> > > Signed-off-by: Joe Damato <jdamato@fastly.com>
> > > ---
> > >  drivers/net/ethernet/google/gve/gve_main.c | 14 +-------------
> > >  1 file changed, 1 insertion(+), 13 deletions(-)
> > >
> > > diff --git a/drivers/net/ethernet/google/gve/gve_main.c b/drivers/net/ethernet/google/gve/gve_main.c
> > > index 661566db68c8..ad5e85b8c6a5 100644
> > > --- a/drivers/net/ethernet/google/gve/gve_main.c
> > > +++ b/drivers/net/ethernet/google/gve/gve_main.c
> > > @@ -298,18 +298,6 @@ static irqreturn_t gve_intr_dqo(int irq, void *arg)
> > >         return IRQ_HANDLED;
> > >  }
> > >
> > > -static int gve_is_napi_on_home_cpu(struct gve_priv *priv, u32 irq)
> > > -{
> > > -       int cpu_curr = smp_processor_id();
> > > -       const struct cpumask *aff_mask;
> > > -
> > > -       aff_mask = irq_get_effective_affinity_mask(irq);
> > > -       if (unlikely(!aff_mask))
> > > -               return 1;
> > > -
> > > -       return cpumask_test_cpu(cpu_curr, aff_mask);
> > > -}
> > > -
> > >  int gve_napi_poll(struct napi_struct *napi, int budget)
> > >  {
> > >         struct gve_notify_block *block;
> > > @@ -383,7 +371,7 @@ int gve_napi_poll_dqo(struct napi_struct *napi, int budget)
> > >                 /* Reschedule by returning budget only if already on the correct
> > >                  * cpu.
> > >                  */
> > > -               if (likely(gve_is_napi_on_home_cpu(priv, block->irq)))
> > > +               if (likely(napi_affinity_no_change(block->irq)))
> >
> > Nice to centralize this code! Evolving this to cache the affinity mask
> > like the other drivers would probably also require a means to update
> > the cache when the affinity changes.
>
> Thanks for taking a look.
>
> The gve driver already calls irq_get_effective_affinity_mask in the
> hot path, so I'm planning on submitting a rfcv2 which will do this:
>
> -               if (likely(gve_is_napi_on_home_cpu(priv, block->irq)))
> +               const struct cpumask *aff_mask =
> +                       irq_get_effective_affinity_mask(block->irq);
> +
> +               if (likely(napi_affinity_no_change(aff_mask)))
>                         return budget;
>
> with a change like that there'd be no behavioral change to gve since
> it didn't cache before and still won't be caching after this change.
>
> I think a change can be made to gve in a separate patch set to
> support caching the affinity mask and does not need to be included
> with this change.
>
> What do you think?

Sounds good!
diff mbox series

Patch

diff --git a/drivers/net/ethernet/google/gve/gve_main.c b/drivers/net/ethernet/google/gve/gve_main.c
index 661566db68c8..ad5e85b8c6a5 100644
--- a/drivers/net/ethernet/google/gve/gve_main.c
+++ b/drivers/net/ethernet/google/gve/gve_main.c
@@ -298,18 +298,6 @@  static irqreturn_t gve_intr_dqo(int irq, void *arg)
 	return IRQ_HANDLED;
 }
 
-static int gve_is_napi_on_home_cpu(struct gve_priv *priv, u32 irq)
-{
-	int cpu_curr = smp_processor_id();
-	const struct cpumask *aff_mask;
-
-	aff_mask = irq_get_effective_affinity_mask(irq);
-	if (unlikely(!aff_mask))
-		return 1;
-
-	return cpumask_test_cpu(cpu_curr, aff_mask);
-}
-
 int gve_napi_poll(struct napi_struct *napi, int budget)
 {
 	struct gve_notify_block *block;
@@ -383,7 +371,7 @@  int gve_napi_poll_dqo(struct napi_struct *napi, int budget)
 		/* Reschedule by returning budget only if already on the correct
 		 * cpu.
 		 */
-		if (likely(gve_is_napi_on_home_cpu(priv, block->irq)))
+		if (likely(napi_affinity_no_change(block->irq)))
 			return budget;
 
 		/* If not on the cpu with which this queue's irq has affinity