diff mbox series

[1/2] Documentation: dmaengine: Add a description of what dmatest does

Message ID 20210818151315.9505-2-daniel.thompson@linaro.org
State Accepted
Commit 37829227f04247125894a7857e3299e8764c2d6f
Headers show
Series Documentation: dmaengine: Tweak dmatest docs | expand

Commit Message

Daniel Thompson Aug. 18, 2021, 3:13 p.m. UTC
Currently it can difficult to determine what dmatest does without
reading the source code. Let's add a description.

The description is taken mostly from the patch header of
commit 4a776f0aa922 ("dmatest: Simple DMA memcpy test client")
although it has been edited and updated slightly.

Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Signed-off-by: Daniel Thompson <daniel.thompson@linaro.org>
---
 Documentation/driver-api/dmaengine/dmatest.rst | 10 ++++++++++
 1 file changed, 10 insertions(+)

-- 
2.30.2

Comments

Andy Shevchenko Aug. 18, 2021, 3:27 p.m. UTC | #1
On Wed, Aug 18, 2021 at 6:15 PM Daniel Thompson
<daniel.thompson@linaro.org> wrote:
>

> Currently it can difficult to determine what dmatest does without

> reading the source code. Let's add a description.

>

> The description is taken mostly from the patch header of

> commit 4a776f0aa922 ("dmatest: Simple DMA memcpy test client")

> although it has been edited and updated slightly.


> Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>


Not sure if you can use it like this (I mean the above SoB)
Otherwise it's a good idea, thanks!
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>


> Signed-off-by: Daniel Thompson <daniel.thompson@linaro.org>

> ---

>  Documentation/driver-api/dmaengine/dmatest.rst | 10 ++++++++++

>  1 file changed, 10 insertions(+)

>

> diff --git a/Documentation/driver-api/dmaengine/dmatest.rst b/Documentation/driver-api/dmaengine/dmatest.rst

> index ee268d445d38..529cc2cbbb1b 100644

> --- a/Documentation/driver-api/dmaengine/dmatest.rst

> +++ b/Documentation/driver-api/dmaengine/dmatest.rst

> @@ -6,6 +6,16 @@ Andy Shevchenko <andriy.shevchenko@linux.intel.com>

>

>  This small document introduces how to test DMA drivers using dmatest module.

>

> +The dmatest module tests DMA memcpy, memset, XOR and RAID6 P+Q operations using

> +various lengths and various offsets into the source and destination buffers. It

> +will initialize both buffers with a repeatable pattern and verify that the DMA

> +engine copies the requested region and nothing more. It will also verify that

> +the bytes aren't swapped around, and that the source buffer isn't modified.

> +

> +The dmatest module can be configured to test a specific channel. It can also

> +test multiple channels at the same time, and it can start multiple threads

> +competing for the same channel.

> +

>  .. note::

>    The test suite works only on the channels that have at least one

>    capability of the following: DMA_MEMCPY (memory-to-memory), DMA_MEMSET

> --

> 2.30.2

>



-- 
With Best Regards,
Andy Shevchenko
Daniel Thompson Aug. 19, 2021, 9:13 a.m. UTC | #2
On Wed, Aug 18, 2021 at 06:27:52PM +0300, Andy Shevchenko wrote:
> On Wed, Aug 18, 2021 at 6:15 PM Daniel Thompson

> <daniel.thompson@linaro.org> wrote:

> >

> > Currently it can difficult to determine what dmatest does without

> > reading the source code. Let's add a description.

> >

> > The description is taken mostly from the patch header of

> > commit 4a776f0aa922 ("dmatest: Simple DMA memcpy test client")

> > although it has been edited and updated slightly.

> 

> > Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>

> 

> Not sure if you can use it like this (I mean the above SoB)


I wondered about that.

In the end I concluded that if I had picked up code from an old patch
and edited to this degree then I would probably consider it a new
patch but be clear about credit and preserve the original SoB. I saw no
real reason to treat the contents of a patch header much different.

However, I'm very happy to make the credit more informal if needed.

> Otherwise it's a good idea, thanks!

> Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>


Thanks!


Daniel.


> 

> > Signed-off-by: Daniel Thompson <daniel.thompson@linaro.org>

> > ---

> >  Documentation/driver-api/dmaengine/dmatest.rst | 10 ++++++++++

> >  1 file changed, 10 insertions(+)

> >

> > diff --git a/Documentation/driver-api/dmaengine/dmatest.rst b/Documentation/driver-api/dmaengine/dmatest.rst

> > index ee268d445d38..529cc2cbbb1b 100644

> > --- a/Documentation/driver-api/dmaengine/dmatest.rst

> > +++ b/Documentation/driver-api/dmaengine/dmatest.rst

> > @@ -6,6 +6,16 @@ Andy Shevchenko <andriy.shevchenko@linux.intel.com>

> >

> >  This small document introduces how to test DMA drivers using dmatest module.

> >

> > +The dmatest module tests DMA memcpy, memset, XOR and RAID6 P+Q operations using

> > +various lengths and various offsets into the source and destination buffers. It

> > +will initialize both buffers with a repeatable pattern and verify that the DMA

> > +engine copies the requested region and nothing more. It will also verify that

> > +the bytes aren't swapped around, and that the source buffer isn't modified.

> > +

> > +The dmatest module can be configured to test a specific channel. It can also

> > +test multiple channels at the same time, and it can start multiple threads

> > +competing for the same channel.

> > +

> >  .. note::

> >    The test suite works only on the channels that have at least one

> >    capability of the following: DMA_MEMCPY (memory-to-memory), DMA_MEMSET

> > --

> > 2.30.2

> >

> 

> 

> -- 

> With Best Regards,

> Andy Shevchenko
Vinod Koul Aug. 26, 2021, 12:52 p.m. UTC | #3
On 19-08-21, 10:13, Daniel Thompson wrote:
> On Wed, Aug 18, 2021 at 06:27:52PM +0300, Andy Shevchenko wrote:

> > On Wed, Aug 18, 2021 at 6:15 PM Daniel Thompson

> > <daniel.thompson@linaro.org> wrote:

> > >

> > > Currently it can difficult to determine what dmatest does without

> > > reading the source code. Let's add a description.

> > >

> > > The description is taken mostly from the patch header of

> > > commit 4a776f0aa922 ("dmatest: Simple DMA memcpy test client")

> > > although it has been edited and updated slightly.

> > 

> > > Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>

> > 

> > Not sure if you can use it like this (I mean the above SoB)

> 

> I wondered about that.

> 

> In the end I concluded that if I had picked up code from an old patch

> and edited to this degree then I would probably consider it a new

> patch but be clear about credit and preserve the original SoB. I saw no

> real reason to treat the contents of a patch header much different.

> 

> However, I'm very happy to make the credit more informal if needed.


It would be better if we be formal when giving credit. I am okay with
sob by Haavard if he acks it...
Daniel, Yes the intention is very noble, but I would have Haavard ack
before applying a patch with his sob, if not lets drop it and give
credit in changelog :)

-- 
~Vinod
diff mbox series

Patch

diff --git a/Documentation/driver-api/dmaengine/dmatest.rst b/Documentation/driver-api/dmaengine/dmatest.rst
index ee268d445d38..529cc2cbbb1b 100644
--- a/Documentation/driver-api/dmaengine/dmatest.rst
+++ b/Documentation/driver-api/dmaengine/dmatest.rst
@@ -6,6 +6,16 @@  Andy Shevchenko <andriy.shevchenko@linux.intel.com>
 
 This small document introduces how to test DMA drivers using dmatest module.
 
+The dmatest module tests DMA memcpy, memset, XOR and RAID6 P+Q operations using
+various lengths and various offsets into the source and destination buffers. It
+will initialize both buffers with a repeatable pattern and verify that the DMA
+engine copies the requested region and nothing more. It will also verify that
+the bytes aren't swapped around, and that the source buffer isn't modified.
+
+The dmatest module can be configured to test a specific channel. It can also
+test multiple channels at the same time, and it can start multiple threads
+competing for the same channel.
+
 .. note::
   The test suite works only on the channels that have at least one
   capability of the following: DMA_MEMCPY (memory-to-memory), DMA_MEMSET