DPDK patches and discussions
 help / color / mirror / Atom feed
From: Honnappa Nagarahalli <Honnappa.Nagarahalli@arm.com>
To: "Juraj Linkeš" <juraj.linkes@pantheon.tech>,
	"thomas@monjalon.net" <thomas@monjalon.net>
Cc: Jerin Jacob <jerinjacobk@gmail.com>,
	David Marchand <david.marchand@redhat.com>,
	"ohilyard@iol.unh.edu" <ohilyard@iol.unh.edu>,
	"Tu, Lijuan" <lijuan.tu@intel.com>, dpdk-dev <dev@dpdk.org>,
	nd <nd@arm.com>,  nd <nd@arm.com>
Subject: RE: [RFC PATCH v1 00/15] merge DTS core files to DPDK
Date: Mon, 11 Apr 2022 17:55:04 +0000	[thread overview]
Message-ID: <AM8PR08MB5810ECAC9EEA2F42FC89399498EA9@AM8PR08MB5810.eurprd08.prod.outlook.com> (raw)
In-Reply-To: <70e5d09edf9048d49235108d7548d686@pantheon.tech>

<snip>

> >
> > 07/04/2022 07:04, Jerin Jacob:
> > > On Wed, Apr 6, 2022 at 8:26 PM Juraj Linkeš
> > > <juraj.linkes@pantheon.tech>
> > wrote:
> > > >
> 
> First of all, thanks for the feedback. We've already done a bit of a pre-review
> and this is where we decided we want the feedback from the rest of the
> community. We understand it's going to take time which is why we wanted to
> get feedback sooner than later.
> 
> > > > These are the basic libraries that other libraries depend on.
> > > > There's also the basic framework functionality related to test execution.
> > > >
> > > > Juraj Linkeš (15):
> > > >   dts: merge DTS dep/tclclient.tgz to DPDK
> > > >   dts: merge DTS dep/tgen.tgz to DPDK
> > > >   dts: merge DTS dts to DPDK
> > > >   dts: merge DTS framework/__init__.py to DPDK
> > > >   dts: merge DTS framework/asan_test.py to DPDK
> > > >   dts: merge DTS framework/checkCase.py to DPDK
> > > >   dts: merge DTS framework/dts.py to DPDK
> > > >   dts: merge DTS framework/exception.py to DPDK
> > > >   dts: merge DTS framework/logger.py to DPDK
> > > >   dts: merge DTS framework/packet.py to DPDK
> > > >   dts: merge DTS framework/project_dpdk.py to DPDK
> > > >   dts: merge DTS framework/serializer.py to DPDK
> > > >   dts: merge DTS framework/utils.py to DPDK
> > > >   dts: merge DTS main.py to DPDK
> > > >   dts: merge DTS version.py to DPDK
> > >
> > > merge->import
> > >
> 
> Ack. I'll keep this in mind when composing commit messages in the future.
> 
> > > >
> > > >  dts/dep/tclclient.tgz         |  Bin 0 -> 199327 bytes
> > > >  dts/dep/tgen.tgz              |  Bin 0 -> 134392 bytes
> > >
> > > Some top level comments:
> > > - I think, we should not check in binary files.
> >
> > +1
> >
> 
> Thanks, we'll make sure to make this a requirement - it makes sense to us as
> well.
Should we move these to the external repo where the GPL file would be stored? I do not expect these files to change frequently. But the external repo also needs to be tagged (along with tagging the DPDK/DTS).

> 
> > > - git commit comment should much more than "dts: merge DTS xxxx to
> > > DPDK" where the commit log should have details on check in.
> >
> > +1
> 
> Right, this is part of the broader question of how exactly are we going to
> move the whole thing. More below.
> 
> >
> > > -Add the documentation from the first patch and update the
> > > documentation per patch based on the content.
> >
> > +1
> >
> > More comments:
> >
> > - Please don't send so many patches, it looks like spam.
> > - Please let's start small with the very minimal code to run a dummy test.
> > - Split by file does not make sense
> 
> This is very useful. We started with splitting up DTS into logical chunks, but it's
> not quite what you have in mind. We'll move things around and send just the
> first part (containing just a dummy test (is a smoke test ok?) with the
> necessary code). Now that we have a better understanding of the first step
> we'll produce a more complete patch set, with proper commit messages and
> files in each commit.
I think bringing in this big chunk of code is a challenge. We need to discuss more on how to get this into DPDK. From that perspective:

1) the current set of patches are just the framework and documentation, no test suites yet. I am not sure if there are further parts that can be stripped out.

2) agree, the split by files is too much. We have tried to group the files into some logical components. So, would it be fine if we remove the commit by file, but still keep the logical component split? i.e. we will squash the files in a series into a single commit and then combine the logical splits as commits in a single series.

3) In my private discussions with David Marchand, he expressed interest in getting the git log history. The current review process will not help in this regard. Is this a must? If yes, are there any known methods to do this?

> 
> >
> > The process is going to be very long.
> > The techboard said in the past that we must have a very careful review
> > of an import piece by piece. So please be patient.
Agree, we need to give time for review.
I would prefer to set some timeline so that we are working accordingly. Currently, we are working with the goal of merging this in 22.07 (assuming the reviews are coming through quick enough). But, we can align on a different timeline.

> > Thank you
> >
> >


  reply	other threads:[~2022-04-11 17:55 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-06 14:55 Juraj Linkeš
2022-04-06 14:55 ` [RFC PATCH v1 01/15] dts: merge DTS dep/tclclient.tgz " Juraj Linkeš
2022-04-06 14:55 ` [RFC PATCH v1 02/15] dts: merge DTS dep/tgen.tgz " Juraj Linkeš
2022-04-06 14:55 ` [RFC PATCH v1 03/15] dts: merge DTS dts " Juraj Linkeš
2022-04-06 14:55 ` [RFC PATCH v1 04/15] dts: merge DTS framework/__init__.py " Juraj Linkeš
2022-04-06 14:55 ` [RFC PATCH v1 05/15] dts: merge DTS framework/asan_test.py " Juraj Linkeš
2022-04-06 14:55 ` [RFC PATCH v1 06/15] dts: merge DTS framework/checkCase.py " Juraj Linkeš
2022-04-06 14:55 ` [RFC PATCH v1 07/15] dts: merge DTS framework/dts.py " Juraj Linkeš
2022-04-06 14:55 ` [RFC PATCH v1 08/15] dts: merge DTS framework/exception.py " Juraj Linkeš
2022-04-06 14:56 ` [RFC PATCH v1 09/15] dts: merge DTS framework/logger.py " Juraj Linkeš
2022-04-06 14:56 ` [RFC PATCH v1 10/15] dts: merge DTS framework/packet.py " Juraj Linkeš
2022-04-06 14:56 ` [RFC PATCH v1 11/15] dts: merge DTS framework/project_dpdk.py " Juraj Linkeš
2022-04-06 14:56 ` [RFC PATCH v1 12/15] dts: merge DTS framework/serializer.py " Juraj Linkeš
2022-04-06 14:56 ` [RFC PATCH v1 13/15] dts: merge DTS framework/utils.py " Juraj Linkeš
2022-04-06 14:56 ` [RFC PATCH v1 14/15] dts: merge DTS main.py " Juraj Linkeš
2022-04-06 14:56 ` [RFC PATCH v1 15/15] dts: merge DTS version.py " Juraj Linkeš
2022-04-07  5:04 ` [RFC PATCH v1 00/15] merge DTS core files " Jerin Jacob
2022-04-07  7:33   ` Thomas Monjalon
2022-04-11  7:41     ` Juraj Linkeš
2022-04-11 17:55       ` Honnappa Nagarahalli [this message]
2022-04-11 18:20         ` Owen Hilyard
2022-04-11 19:06   ` Honnappa Nagarahalli

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=AM8PR08MB5810ECAC9EEA2F42FC89399498EA9@AM8PR08MB5810.eurprd08.prod.outlook.com \
    --to=honnappa.nagarahalli@arm.com \
    --cc=david.marchand@redhat.com \
    --cc=dev@dpdk.org \
    --cc=jerinjacobk@gmail.com \
    --cc=juraj.linkes@pantheon.tech \
    --cc=lijuan.tu@intel.com \
    --cc=nd@arm.com \
    --cc=ohilyard@iol.unh.edu \
    --cc=thomas@monjalon.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).