patches for DPDK stable branches
 help / color / mirror / Atom feed
* [PATCH] dma/skeleton: fix pthread set affinity
@ 2023-08-12  1:57 Vipin Varghese
  2023-08-14 16:24 ` Tyler Retzlaff
  0 siblings, 1 reply; 4+ messages in thread
From: Vipin Varghese @ 2023-08-12  1:57 UTC (permalink / raw)
  To: kevin.laatz, bruce.richardson, thomas, dev; +Cc: roretzla, Ferruh.Yigit, stable

In skeleton dma driver, the user can pin the dma thread to desired
cpu core. The previous commit changed the api from set-affinity to
get-affinity leading to thread to be pinned to first available lcore.

Bugzilla ID: 1270
Fixes: 7fdf30d8b259 ("eal/windows: remove most pthread lifetime shim functions")
Cc: roretzla@linux.microsoft.com

Cc: stable@dpdk.org

Signed-off-by: Vipin Varghese <vipin.varghese@amd.com>
---
---
 drivers/dma/skeleton/skeleton_dmadev.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/dma/skeleton/skeleton_dmadev.c b/drivers/dma/skeleton/skeleton_dmadev.c
index c2d776dbbd..c508e4f1c4 100644
--- a/drivers/dma/skeleton/skeleton_dmadev.c
+++ b/drivers/dma/skeleton/skeleton_dmadev.c
@@ -137,7 +137,7 @@ skeldma_start(struct rte_dma_dev *dev)
 
 	if (hw->lcore_id != -1) {
 		cpuset = rte_lcore_cpuset(hw->lcore_id);
-		ret = rte_thread_get_affinity_by_id(hw->thread, &cpuset);
+		ret = rte_thread_set_affinity_by_id(hw->thread, &cpuset);
 		if (ret)
 			SKELDMA_LOG(WARNING,
 				"Set thread affinity lcore = %d fail!",
-- 
2.34.1


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

* Re: [PATCH] dma/skeleton: fix pthread set affinity
  2023-08-12  1:57 [PATCH] dma/skeleton: fix pthread set affinity Vipin Varghese
@ 2023-08-14 16:24 ` Tyler Retzlaff
  2023-08-15 12:21   ` David Marchand
  0 siblings, 1 reply; 4+ messages in thread
From: Tyler Retzlaff @ 2023-08-14 16:24 UTC (permalink / raw)
  To: Vipin Varghese
  Cc: kevin.laatz, bruce.richardson, thomas, dev, Ferruh.Yigit, stable

On Sat, Aug 12, 2023 at 07:27:38AM +0530, Vipin Varghese wrote:
> In skeleton dma driver, the user can pin the dma thread to desired
> cpu core. The previous commit changed the api from set-affinity to
> get-affinity leading to thread to be pinned to first available lcore.
> 
> Bugzilla ID: 1270
> Fixes: 7fdf30d8b259 ("eal/windows: remove most pthread lifetime shim functions")
> Cc: roretzla@linux.microsoft.com
> 
> Cc: stable@dpdk.org
> 
> Signed-off-by: Vipin Varghese <vipin.varghese@amd.com>
> ---

yikes, sorry about this and thank you for fixing it.

Acked-by: Tyler Retzlaff <roretzla@linux.microsoft.com>


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

* Re: [PATCH] dma/skeleton: fix pthread set affinity
  2023-08-14 16:24 ` Tyler Retzlaff
@ 2023-08-15 12:21   ` David Marchand
  2023-10-17  8:59     ` Thomas Monjalon
  0 siblings, 1 reply; 4+ messages in thread
From: David Marchand @ 2023-08-15 12:21 UTC (permalink / raw)
  To: Tyler Retzlaff, Vipin Varghese
  Cc: kevin.laatz, bruce.richardson, thomas, dev, Ferruh.Yigit, stable

On Mon, Aug 14, 2023 at 6:24 PM Tyler Retzlaff
<roretzla@linux.microsoft.com> wrote:
>
> On Sat, Aug 12, 2023 at 07:27:38AM +0530, Vipin Varghese wrote:
> > In skeleton dma driver, the user can pin the dma thread to desired
> > cpu core. The previous commit changed the api from set-affinity to
> > get-affinity leading to thread to be pinned to first available lcore.
> >
> > Bugzilla ID: 1270
> > Fixes: 7fdf30d8b259 ("eal/windows: remove most pthread lifetime shim functions")

This Fixes: looks wrong.

I would blame (and blame the bad reviewers):
Fixes: f241553b43ee ("dma/skeleton: drop some pthread API calls")

Can you double check?


-- 
David Marchand


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

* Re: [PATCH] dma/skeleton: fix pthread set affinity
  2023-08-15 12:21   ` David Marchand
@ 2023-10-17  8:59     ` Thomas Monjalon
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Monjalon @ 2023-10-17  8:59 UTC (permalink / raw)
  To: Tyler Retzlaff, Vipin Varghese, David Marchand
  Cc: stable, kevin.laatz, bruce.richardson, dev, Ferruh.Yigit, stable

15/08/2023 14:21, David Marchand:
> On Mon, Aug 14, 2023 at 6:24 PM Tyler Retzlaff
> <roretzla@linux.microsoft.com> wrote:
> >
> > On Sat, Aug 12, 2023 at 07:27:38AM +0530, Vipin Varghese wrote:
> > > In skeleton dma driver, the user can pin the dma thread to desired
> > > cpu core. The previous commit changed the api from set-affinity to
> > > get-affinity leading to thread to be pinned to first available lcore.
> > >
> > > Bugzilla ID: 1270
> > > Fixes: 7fdf30d8b259 ("eal/windows: remove most pthread lifetime shim functions")
> 
> This Fixes: looks wrong.
> 
> I would blame (and blame the bad reviewers):
> Fixes: f241553b43ee ("dma/skeleton: drop some pthread API calls")
> 
> Can you double check?

I agree with the root cause pointed by David.

Applied, thanks.




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

end of thread, other threads:[~2023-10-17  8:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-12  1:57 [PATCH] dma/skeleton: fix pthread set affinity Vipin Varghese
2023-08-14 16:24 ` Tyler Retzlaff
2023-08-15 12:21   ` David Marchand
2023-10-17  8:59     ` Thomas Monjalon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).