DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH v1 1/1] devtools: update sources in build tags script
@ 2023-11-08  4:44 Srikanth Yalavarthi
  2023-11-08  8:48 ` Ferruh Yigit
  2023-11-08  9:28 ` [PATCH v2 " Srikanth Yalavarthi
  0 siblings, 2 replies; 10+ messages in thread
From: Srikanth Yalavarthi @ 2023-11-08  4:44 UTC (permalink / raw)
  Cc: dev, syalavarthi, sshankarnara, jerinj, thomas

As part of deprecating kmods meson option, 'kernel/linux'
directory is removed from the repository.

This patch removes non-existing 'kernel/linux' directory
from linux_sources of build tags script.

Signed-off-by: Srikanth Yalavarthi <syalavarthi@marvell.com>
---
 devtools/build-tags.sh | 1 -
 1 file changed, 1 deletion(-)

diff --git a/devtools/build-tags.sh b/devtools/build-tags.sh
index bf3b13ebac..e07349a47f 100755
--- a/devtools/build-tags.sh
+++ b/devtools/build-tags.sh
@@ -68,7 +68,6 @@ common_sources()
 linux_sources()
 {
 	find_sources "lib/eal/linux" '*.[chS]'
-	find_sources "kernel/linux" '*.[chS]'
 }
 
 bsd_sources()
-- 
2.42.0


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

* Re: [PATCH v1 1/1] devtools: update sources in build tags script
  2023-11-08  4:44 [PATCH v1 1/1] devtools: update sources in build tags script Srikanth Yalavarthi
@ 2023-11-08  8:48 ` Ferruh Yigit
  2023-11-08  9:29   ` [EXT] " Srikanth Yalavarthi
  2023-11-08  9:28 ` [PATCH v2 " Srikanth Yalavarthi
  1 sibling, 1 reply; 10+ messages in thread
From: Ferruh Yigit @ 2023-11-08  8:48 UTC (permalink / raw)
  To: Srikanth Yalavarthi; +Cc: dev, sshankarnara, jerinj, thomas

On 11/8/2023 4:44 AM, Srikanth Yalavarthi wrote:
> As part of deprecating kmods meson option, 'kernel/linux'
> directory is removed from the repository.
> 
> This patch removes non-existing 'kernel/linux' directory
> from linux_sources of build tags script.
> 
> Signed-off-by: Srikanth Yalavarthi <syalavarthi@marvell.com>
> ---
>  devtools/build-tags.sh | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/devtools/build-tags.sh b/devtools/build-tags.sh
> index bf3b13ebac..e07349a47f 100755
> --- a/devtools/build-tags.sh
> +++ b/devtools/build-tags.sh
> @@ -68,7 +68,6 @@ common_sources()
>  linux_sources()
>  {
>  	find_sources "lib/eal/linux" '*.[chS]'
> -	find_sources "kernel/linux" '*.[chS]'
>  }
>  
>  bsd_sources()

Acked-by: Ferruh Yigit <ferruh.yigit@amd.com>


Can you please add the fixes tag, it should be the commit that
deprecates kmods but missed to update this file?

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

* [PATCH v2 1/1] devtools: update sources in build tags script
  2023-11-08  4:44 [PATCH v1 1/1] devtools: update sources in build tags script Srikanth Yalavarthi
  2023-11-08  8:48 ` Ferruh Yigit
@ 2023-11-08  9:28 ` Srikanth Yalavarthi
  2023-11-08  9:31   ` Morten Brørup
                     ` (2 more replies)
  1 sibling, 3 replies; 10+ messages in thread
From: Srikanth Yalavarthi @ 2023-11-08  9:28 UTC (permalink / raw)
  To: Bruce Richardson, David Marchand, Morten Brørup,
	Stephen Hemminger, Thomas Monjalon
  Cc: dev, syalavarthi, sshankarnara, jerinj

As part of deprecating kmods meson option, 'kernel/linux'
directory is removed from the repository.

This patch removes non-existing 'kernel/linux' directory
from linux_sources of build tags script.

Fixes: a52d472c5c94 ("build: deprecate kmods meson option")

Signed-off-by: Srikanth Yalavarthi <syalavarthi@marvell.com>
---
 devtools/build-tags.sh | 1 -
 1 file changed, 1 deletion(-)

diff --git a/devtools/build-tags.sh b/devtools/build-tags.sh
index bf3b13ebac..e07349a47f 100755
--- a/devtools/build-tags.sh
+++ b/devtools/build-tags.sh
@@ -68,7 +68,6 @@ common_sources()
 linux_sources()
 {
 	find_sources "lib/eal/linux" '*.[chS]'
-	find_sources "kernel/linux" '*.[chS]'
 }
 
 bsd_sources()
-- 
2.42.0


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

* RE: [EXT] Re: [PATCH v1 1/1] devtools: update sources in build tags script
  2023-11-08  8:48 ` Ferruh Yigit
@ 2023-11-08  9:29   ` Srikanth Yalavarthi
  0 siblings, 0 replies; 10+ messages in thread
From: Srikanth Yalavarthi @ 2023-11-08  9:29 UTC (permalink / raw)
  To: Ferruh Yigit
  Cc: dev, Shivah Shankar Shankar Narayan Rao,
	Jerin Jacob Kollanukkaran, thomas, Srikanth Yalavarthi

> -----Original Message-----
> From: Ferruh Yigit <ferruh.yigit@amd.com>
> Sent: 08 November 2023 14:19
> To: Srikanth Yalavarthi <syalavarthi@marvell.com>
> Cc: dev@dpdk.org; Shivah Shankar Shankar Narayan Rao
> <sshankarnara@marvell.com>; Jerin Jacob Kollanukkaran
> <jerinj@marvell.com>; thomas@monjalon.net
> Subject: [EXT] Re: [PATCH v1 1/1] devtools: update sources in build tags script
> 
> External Email
> 
> ----------------------------------------------------------------------
> On 11/8/2023 4:44 AM, Srikanth Yalavarthi wrote:
> > As part of deprecating kmods meson option, 'kernel/linux'
> > directory is removed from the repository.
> >
> > This patch removes non-existing 'kernel/linux' directory from
> > linux_sources of build tags script.
> >
> > Signed-off-by: Srikanth Yalavarthi <syalavarthi@marvell.com>
> > ---
> >  devtools/build-tags.sh | 1 -
> >  1 file changed, 1 deletion(-)
> >
> > diff --git a/devtools/build-tags.sh b/devtools/build-tags.sh index
> > bf3b13ebac..e07349a47f 100755
> > --- a/devtools/build-tags.sh
> > +++ b/devtools/build-tags.sh
> > @@ -68,7 +68,6 @@ common_sources()
> >  linux_sources()
> >  {
> >  	find_sources "lib/eal/linux" '*.[chS]'
> > -	find_sources "kernel/linux" '*.[chS]'
> >  }
> >
> >  bsd_sources()
> 
> Acked-by: Ferruh Yigit <ferruh.yigit@amd.com>
> 
> 
> Can you please add the fixes tag, it should be the commit that deprecates
> kmods but missed to update this file?
Updated in v2.

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

* RE: [PATCH v2 1/1] devtools: update sources in build tags script
  2023-11-08  9:28 ` [PATCH v2 " Srikanth Yalavarthi
@ 2023-11-08  9:31   ` Morten Brørup
  2023-11-08 11:24   ` Thomas Monjalon
  2023-11-08 11:44   ` Ferruh Yigit
  2 siblings, 0 replies; 10+ messages in thread
From: Morten Brørup @ 2023-11-08  9:31 UTC (permalink / raw)
  To: Srikanth Yalavarthi, Bruce Richardson, David Marchand,
	Stephen Hemminger, Thomas Monjalon
  Cc: dev, sshankarnara, jerinj

> From: Srikanth Yalavarthi [mailto:syalavarthi@marvell.com]
> Sent: Wednesday, 8 November 2023 10.28
> 
> As part of deprecating kmods meson option, 'kernel/linux'
> directory is removed from the repository.
> 
> This patch removes non-existing 'kernel/linux' directory
> from linux_sources of build tags script.
> 
> Fixes: a52d472c5c94 ("build: deprecate kmods meson option")
> 
> Signed-off-by: Srikanth Yalavarthi <syalavarthi@marvell.com>
> ---

Acked-by: Morten Brørup <mb@smartsharesystems.com>


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

* Re: [PATCH v2 1/1] devtools: update sources in build tags script
  2023-11-08  9:28 ` [PATCH v2 " Srikanth Yalavarthi
  2023-11-08  9:31   ` Morten Brørup
@ 2023-11-08 11:24   ` Thomas Monjalon
  2023-11-08 14:42     ` [EXT] " Srikanth Yalavarthi
  2023-11-08 11:44   ` Ferruh Yigit
  2 siblings, 1 reply; 10+ messages in thread
From: Thomas Monjalon @ 2023-11-08 11:24 UTC (permalink / raw)
  To: Srikanth Yalavarthi
  Cc: Bruce Richardson, David Marchand, Morten Brørup,
	Stephen Hemminger, dev, syalavarthi, sshankarnara, jerinj

08/11/2023 10:28, Srikanth Yalavarthi:
> As part of deprecating kmods meson option, 'kernel/linux'
> directory is removed from the repository.
> 
> This patch removes non-existing 'kernel/linux' directory
> from linux_sources of build tags script.
> 
> Fixes: a52d472c5c94 ("build: deprecate kmods meson option")

If it is an old commit, you should probably add Cc: stable@dpdk.org
You can check with devtools/check-git-log.sh

> Signed-off-by: Srikanth Yalavarthi <syalavarthi@marvell.com>

You forgot the ack from Ferruh.

Srikanth, you are sending a lot of patches, which is good :)
but we will ask you to make an effort on getting all details.
You may read again the contributor's guide again.



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

* Re: [PATCH v2 1/1] devtools: update sources in build tags script
  2023-11-08  9:28 ` [PATCH v2 " Srikanth Yalavarthi
  2023-11-08  9:31   ` Morten Brørup
  2023-11-08 11:24   ` Thomas Monjalon
@ 2023-11-08 11:44   ` Ferruh Yigit
  2 siblings, 0 replies; 10+ messages in thread
From: Ferruh Yigit @ 2023-11-08 11:44 UTC (permalink / raw)
  To: Srikanth Yalavarthi, Bruce Richardson, David Marchand,
	Morten Brørup, Stephen Hemminger, Thomas Monjalon
  Cc: dev, sshankarnara, jerinj

On 11/8/2023 9:28 AM, Srikanth Yalavarthi wrote:
> As part of deprecating kmods meson option, 'kernel/linux'
> directory is removed from the repository.
> 
> This patch removes non-existing 'kernel/linux' directory
> from linux_sources of build tags script.
> 
> Fixes: a52d472c5c94 ("build: deprecate kmods meson option")
> 

Practically [1] made below removed lines obsolete, and although above
commit actually removes the empty folder, it doesn't tell the full story
(why that folder is empty and not needed for tag creation).

I would go with [1] if there will be a new version.

[1]
Fixes: f78c100bc871 ("remove KNI")


> Signed-off-by: Srikanth Yalavarthi <syalavarthi@marvell.com>
> ---
>  devtools/build-tags.sh | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/devtools/build-tags.sh b/devtools/build-tags.sh
> index bf3b13ebac..e07349a47f 100755
> --- a/devtools/build-tags.sh
> +++ b/devtools/build-tags.sh
> @@ -68,7 +68,6 @@ common_sources()
>  linux_sources()
>  {
>  	find_sources "lib/eal/linux" '*.[chS]'
> -	find_sources "kernel/linux" '*.[chS]'
>  }
>  
>  bsd_sources()


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

* RE: [EXT] Re: [PATCH v2 1/1] devtools: update sources in build tags script
  2023-11-08 11:24   ` Thomas Monjalon
@ 2023-11-08 14:42     ` Srikanth Yalavarthi
  2023-11-08 15:23       ` Thomas Monjalon
  0 siblings, 1 reply; 10+ messages in thread
From: Srikanth Yalavarthi @ 2023-11-08 14:42 UTC (permalink / raw)
  To: Thomas Monjalon
  Cc: Bruce Richardson, David Marchand, Morten Brørup,
	Stephen Hemminger, dev, Shivah Shankar Shankar Narayan Rao,
	Jerin Jacob Kollanukkaran, Srikanth Yalavarthi

> -----Original Message-----
> From: Thomas Monjalon <thomas@monjalon.net>
> Sent: 08 November 2023 16:54
> To: Srikanth Yalavarthi <syalavarthi@marvell.com>
> Cc: Bruce Richardson <bruce.richardson@intel.com>; David Marchand
> <david.marchand@redhat.com>; Morten Brørup
> <mb@smartsharesystems.com>; Stephen Hemminger
> <stephen@networkplumber.org>; dev@dpdk.org; Srikanth Yalavarthi
> <syalavarthi@marvell.com>; Shivah Shankar Shankar Narayan Rao
> <sshankarnara@marvell.com>; Jerin Jacob Kollanukkaran
> <jerinj@marvell.com>
> Subject: [EXT] Re: [PATCH v2 1/1] devtools: update sources in build tags script
> 
> External Email
> 
> ----------------------------------------------------------------------
> 08/11/2023 10:28, Srikanth Yalavarthi:
> > As part of deprecating kmods meson option, 'kernel/linux'
> > directory is removed from the repository.
> >
> > This patch removes non-existing 'kernel/linux' directory from
> > linux_sources of build tags script.
> >
> > Fixes: a52d472c5c94 ("build: deprecate kmods meson option")
> 
> If it is an old commit, you should probably add Cc: stable@dpdk.org You can
> check with devtools/check-git-log.sh

The fixes commit (a52d472c5c94) was merged after 23.11-rc0. check-git-log.sh script wasn't suggested to submit this to stable@dpdk.log

My understanding is that Cc:stable@dpdk.org is need only if we need to backport the patch to older releases?

> 
> > Signed-off-by: Srikanth Yalavarthi <syalavarthi@marvell.com>
> 
> You forgot the ack from Ferruh.
> 
> Srikanth, you are sending a lot of patches, which is good :) but we will ask you
> to make an effort on getting all details.
> You may read again the contributor's guide again.

Thanks. Apologies, Missed including Ack. Will take care of this.
> 


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

* Re: [EXT] Re: [PATCH v2 1/1] devtools: update sources in build tags script
  2023-11-08 14:42     ` [EXT] " Srikanth Yalavarthi
@ 2023-11-08 15:23       ` Thomas Monjalon
  2023-11-28 10:57         ` Thomas Monjalon
  0 siblings, 1 reply; 10+ messages in thread
From: Thomas Monjalon @ 2023-11-08 15:23 UTC (permalink / raw)
  To: Srikanth Yalavarthi
  Cc: dev, Bruce Richardson, David Marchand, Morten Brørup,
	Stephen Hemminger, dev, Shivah Shankar Shankar Narayan Rao,
	Jerin Jacob Kollanukkaran

08/11/2023 15:42, Srikanth Yalavarthi:
> From: Thomas Monjalon <thomas@monjalon.net>
> > 08/11/2023 10:28, Srikanth Yalavarthi:
> > > As part of deprecating kmods meson option, 'kernel/linux'
> > > directory is removed from the repository.
> > >
> > > This patch removes non-existing 'kernel/linux' directory from
> > > linux_sources of build tags script.
> > >
> > > Fixes: a52d472c5c94 ("build: deprecate kmods meson option")
> > 
> > If it is an old commit, you should probably add Cc: stable@dpdk.org You can
> > check with devtools/check-git-log.sh
> 
> The fixes commit (a52d472c5c94) was merged after 23.11-rc0. check-git-log.sh script wasn't suggested to submit this to stable@dpdk.log
> 
> My understanding is that Cc:stable@dpdk.org is need only if we need to backport the patch to older releases?

Your understanding is correct.
But here:
	git describe a52d472c5c94
	v23.07-183-ga52d472c5c

> > > Signed-off-by: Srikanth Yalavarthi <syalavarthi@marvell.com>
> > 
> > You forgot the ack from Ferruh.
> > 
> > Srikanth, you are sending a lot of patches, which is good :) but we will ask you
> > to make an effort on getting all details.
> > You may read again the contributor's guide again.
> 
> Thanks. Apologies, Missed including Ack. Will take care of this.

No problem, it's always a pleasure to see newcomers becoming regular contributors.



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

* Re: [EXT] Re: [PATCH v2 1/1] devtools: update sources in build tags script
  2023-11-08 15:23       ` Thomas Monjalon
@ 2023-11-28 10:57         ` Thomas Monjalon
  0 siblings, 0 replies; 10+ messages in thread
From: Thomas Monjalon @ 2023-11-28 10:57 UTC (permalink / raw)
  To: Srikanth Yalavarthi
  Cc: dev, Bruce Richardson, David Marchand, Morten Brørup,
	Stephen Hemminger, Shivah Shankar Shankar Narayan Rao,
	Jerin Jacob Kollanukkaran

08/11/2023 16:23, Thomas Monjalon:
> 08/11/2023 15:42, Srikanth Yalavarthi:
> > From: Thomas Monjalon <thomas@monjalon.net>
> > > 08/11/2023 10:28, Srikanth Yalavarthi:
> > > > As part of deprecating kmods meson option, 'kernel/linux'
> > > > directory is removed from the repository.
> > > >
> > > > This patch removes non-existing 'kernel/linux' directory from
> > > > linux_sources of build tags script.
> > > >
> > > > Fixes: a52d472c5c94 ("build: deprecate kmods meson option")
> > > 
> > > If it is an old commit, you should probably add Cc: stable@dpdk.org You can
> > > check with devtools/check-git-log.sh
> > 
> > The fixes commit (a52d472c5c94) was merged after 23.11-rc0. check-git-log.sh script wasn't suggested to submit this to stable@dpdk.log
> > 
> > My understanding is that Cc:stable@dpdk.org is need only if we need to backport the patch to older releases?
> 
> Your understanding is correct.
> But here:
> 	git describe a52d472c5c94
> 	v23.07-183-ga52d472c5c

No you are right, it is part of 23.11 cycle.

Applied with adding Ferruh's suggestion:

Fixes: f78c100bc871 ("remove KNI")
Acked-by: Ferruh Yigit <ferruh.yigit@amd.com>



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

end of thread, other threads:[~2023-11-28 10:57 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-08  4:44 [PATCH v1 1/1] devtools: update sources in build tags script Srikanth Yalavarthi
2023-11-08  8:48 ` Ferruh Yigit
2023-11-08  9:29   ` [EXT] " Srikanth Yalavarthi
2023-11-08  9:28 ` [PATCH v2 " Srikanth Yalavarthi
2023-11-08  9:31   ` Morten Brørup
2023-11-08 11:24   ` Thomas Monjalon
2023-11-08 14:42     ` [EXT] " Srikanth Yalavarthi
2023-11-08 15:23       ` Thomas Monjalon
2023-11-28 10:57         ` Thomas Monjalon
2023-11-08 11:44   ` Ferruh Yigit

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).