linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v7 0/8] Raid: enable talitos xor offload for improving performance
@ 2012-08-09  8:19 qiang.liu
  2012-08-09 17:03 ` Ira W. Snyder
  0 siblings, 1 reply; 8+ messages in thread
From: qiang.liu @ 2012-08-09  8:19 UTC (permalink / raw)
  To: linux-crypto, vinod.koul, dan.j.williams, herbert, arnd, gregkh,
	linuxppc-dev, linux-kernel, dan.j.williams

Hi all,

The following 8 patches enabling fsl-dma and talitos offload raid
operations for improving raid performance and balancing CPU load.

These patches include talitos, fsl-dma and carma module (caram uses
some features of fsl-dma).

Write performance will be improved by 25-30% tested by iozone.
Write performance is improved about 2% after using spin_lock_bh replace
spin_lock_irqsave.
CPU load will be reduced by 8%.

"fwiw, I gave v5 a test-drive, setting up a RAID5 array on ramdisks
[1], and this patchseries, along with FSL_DMA && NET_DMA set seems
to be holding water, so this series gets my:"

Tested-by: Kim Phillips <kim.phillips@freescale.com>

[1] mdadm --create --verbose --force /dev/md0 --level=raid5 --raid-devices=4 \
	/dev/ram[0123]

Changes in v7:
	- add test result which is provided by Kim Phillips;
	- correct one coding style issue in patch 5/8;
	- add comments by Arnd Bergmann in patch 6/8;

Changes in v6:
	- swap the order of original patch 3/6 and 4/6;
	- merge Ira's patch to reduce the size of original patch;
	- merge Ira's patch of carma in 8/8;
	- update documents and descriptions according to Ira's advice;

Changes in v5:
	- add detail description in patch 3/6 about the process of completed
	descriptor, the process is in align with fsl-dma Reference Manual,
	illustrate the potential risk and how to reproduce it;
	- drop the patch 7/7 in v4 according to Timur's comments;

Changes in v4:
	- fix an error in talitos when dest addr is same with src addr, dest
	should be freed only one time if src is same with dest addr;
	- correct coding style in fsl-dma according to Ira's comments;
	- fix a race condition in fsl-dma fsl_tx_status(), remove the interface
	which is used to free descriptors in queue ld_completed, this interface
	has been included in fsldma_cleanup_descriptor(), in v3, there is one
	place missed spin_lock protect;
	- split the original patch 3/4 up to 2 patches 3/7 and 4/7 according to
	Li Yang's comments;
	- fix a warning of unitialized cookie;
	- add memory copy self test in fsl-dma;
	- add more detail description about use spin_lock_bh() to instead of
	spin_lock_irqsave() according to Timur's comments.

Changes in v3:
	- change release process of fsl-dma descriptor for resolve the
	potential race condition;
	- add test result when use spin_lock_bh replace spin_lock_irqsave;
	- modify the benchmark results according to the latest patch.

Changes in v2:
	- rebase onto cryptodev tree;
	- split the patch 3/4 up to 3 independent patches;
	- remove the patch 4/4, the fix is not for cryptodev tree;

Qiang Liu (8):
      Talitos: Support for async_tx XOR offload
      fsl-dma: remove attribute DMA_INTERRUPT of dmaengine
      fsl-dma: add fsl_dma_free_descriptor() to reduce code duplication
      fsl-dma: move functions to avoid forward declarations
      fsl-dma: change release process of dma descriptor for supporting async_tx
      fsl-dma: use spin_lock_bh to instead of spin_lock_irqsave
      fsl-dma: fix a warning of unitialized cookie
      carma: remove unnecessary DMA_INTERRUPT capability

 drivers/crypto/Kconfig                  |    9 +
 drivers/crypto/talitos.c                |  413 ++++++++++++++++++++++++++
 drivers/crypto/talitos.h                |   53 ++++
 drivers/dma/fsldma.c                    |  488 +++++++++++++++++--------------
 drivers/dma/fsldma.h                    |   17 +-
 drivers/misc/carma/carma-fpga-program.c |    1 -
 drivers/misc/carma/carma-fpga.c         |    2 +-
 7 files changed, 761 insertions(+), 222 deletions(-)

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

* Re: [PATCH v7 0/8] Raid: enable talitos xor offload for improving performance
  2012-08-09  8:19 [PATCH v7 0/8] Raid: enable talitos xor offload for improving performance qiang.liu
@ 2012-08-09 17:03 ` Ira W. Snyder
  2012-08-14  9:04   ` Liu Qiang-B32616
  0 siblings, 1 reply; 8+ messages in thread
From: Ira W. Snyder @ 2012-08-09 17:03 UTC (permalink / raw)
  To: qiang.liu
  Cc: arnd, vinod.koul, gregkh, linux-kernel, dan.j.williams, herbert,
	linux-crypto, dan.j.williams, linuxppc-dev

On Thu, Aug 09, 2012 at 04:19:35PM +0800, qiang.liu@freescale.com wrote:
> Hi all,
> 
> The following 8 patches enabling fsl-dma and talitos offload raid
> operations for improving raid performance and balancing CPU load.
> 
> These patches include talitos, fsl-dma and carma module (caram uses
> some features of fsl-dma).
> 
> Write performance will be improved by 25-30% tested by iozone.
> Write performance is improved about 2% after using spin_lock_bh replace
> spin_lock_irqsave.
> CPU load will be reduced by 8%.
> 
> "fwiw, I gave v5 a test-drive, setting up a RAID5 array on ramdisks
> [1], and this patchseries, along with FSL_DMA && NET_DMA set seems
> to be holding water, so this series gets my:"
> 
> Tested-by: Kim Phillips <kim.phillips@freescale.com>
> 

The fsldma parts of the series all look great to me.

Thanks,
Ira

> [1] mdadm --create --verbose --force /dev/md0 --level=raid5 --raid-devices=4 \
> 	/dev/ram[0123]
> 
> Changes in v7:
> 	- add test result which is provided by Kim Phillips;
> 	- correct one coding style issue in patch 5/8;
> 	- add comments by Arnd Bergmann in patch 6/8;
> 
> Changes in v6:
> 	- swap the order of original patch 3/6 and 4/6;
> 	- merge Ira's patch to reduce the size of original patch;
> 	- merge Ira's patch of carma in 8/8;
> 	- update documents and descriptions according to Ira's advice;
> 
> Changes in v5:
> 	- add detail description in patch 3/6 about the process of completed
> 	descriptor, the process is in align with fsl-dma Reference Manual,
> 	illustrate the potential risk and how to reproduce it;
> 	- drop the patch 7/7 in v4 according to Timur's comments;
> 
> Changes in v4:
> 	- fix an error in talitos when dest addr is same with src addr, dest
> 	should be freed only one time if src is same with dest addr;
> 	- correct coding style in fsl-dma according to Ira's comments;
> 	- fix a race condition in fsl-dma fsl_tx_status(), remove the interface
> 	which is used to free descriptors in queue ld_completed, this interface
> 	has been included in fsldma_cleanup_descriptor(), in v3, there is one
> 	place missed spin_lock protect;
> 	- split the original patch 3/4 up to 2 patches 3/7 and 4/7 according to
> 	Li Yang's comments;
> 	- fix a warning of unitialized cookie;
> 	- add memory copy self test in fsl-dma;
> 	- add more detail description about use spin_lock_bh() to instead of
> 	spin_lock_irqsave() according to Timur's comments.
> 
> Changes in v3:
> 	- change release process of fsl-dma descriptor for resolve the
> 	potential race condition;
> 	- add test result when use spin_lock_bh replace spin_lock_irqsave;
> 	- modify the benchmark results according to the latest patch.
> 
> Changes in v2:
> 	- rebase onto cryptodev tree;
> 	- split the patch 3/4 up to 3 independent patches;
> 	- remove the patch 4/4, the fix is not for cryptodev tree;
> 
> Qiang Liu (8):
>       Talitos: Support for async_tx XOR offload
>       fsl-dma: remove attribute DMA_INTERRUPT of dmaengine
>       fsl-dma: add fsl_dma_free_descriptor() to reduce code duplication
>       fsl-dma: move functions to avoid forward declarations
>       fsl-dma: change release process of dma descriptor for supporting async_tx
>       fsl-dma: use spin_lock_bh to instead of spin_lock_irqsave
>       fsl-dma: fix a warning of unitialized cookie
>       carma: remove unnecessary DMA_INTERRUPT capability
> 
>  drivers/crypto/Kconfig                  |    9 +
>  drivers/crypto/talitos.c                |  413 ++++++++++++++++++++++++++
>  drivers/crypto/talitos.h                |   53 ++++
>  drivers/dma/fsldma.c                    |  488 +++++++++++++++++--------------
>  drivers/dma/fsldma.h                    |   17 +-
>  drivers/misc/carma/carma-fpga-program.c |    1 -
>  drivers/misc/carma/carma-fpga.c         |    2 +-
>  7 files changed, 761 insertions(+), 222 deletions(-)
> 
> _______________________________________________
> Linuxppc-dev mailing list
> Linuxppc-dev@lists.ozlabs.org
> https://lists.ozlabs.org/listinfo/linuxppc-dev

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

* RE: [PATCH v7 0/8] Raid: enable talitos xor offload for improving performance
  2012-08-09 17:03 ` Ira W. Snyder
@ 2012-08-14  9:04   ` Liu Qiang-B32616
  2012-08-14 20:01     ` Dan Williams
  0 siblings, 1 reply; 8+ messages in thread
From: Liu Qiang-B32616 @ 2012-08-14  9:04 UTC (permalink / raw)
  To: dan.j.williams@intel.com, vinod.koul@intel.com,
	dan.j.williams@gmail.com, arnd@arndb.de,
	herbert@gondor.apana.org.au, gregkh@linuxfoundation.org
  Cc: Ira W. Snyder, linuxppc-dev@lists.ozlabs.org,
	linux-kernel@vger.kernel.org, linux-crypto@vger.kernel.org

Hi Vinod,

Would you like to apply this series from patch 2/8 to 7/8) in your tree?
The link as below,
http://patchwork.ozlabs.org/patch/176023/
http://patchwork.ozlabs.org/patch/176024/
http://patchwork.ozlabs.org/patch/176025/
http://patchwork.ozlabs.org/patch/176026/
http://patchwork.ozlabs.org/patch/176027/
http://patchwork.ozlabs.org/patch/176028/

After that, Herbert will merge patch 1/8, http://patchwork.ozlabs.org/patch=
/176022/
and Greg apply patch 8/8, http://patchwork.ozlabs.org/patch/176029/

Thanks.
=20

> -----Original Message-----
> From: Ira W. Snyder [mailto:iws@ovro.caltech.edu]
> Sent: Friday, August 10, 2012 1:03 AM
> To: Liu Qiang-B32616
> Cc: linux-crypto@vger.kernel.org; vinod.koul@intel.com;
> dan.j.williams@intel.com; herbert@gondor.hengli.com.au; arnd@arndb.de;
> gregkh@linuxfoundation.org; linuxppc-dev@lists.ozlabs.org; linux-
> kernel@vger.kernel.org; dan.j.williams@gmail.com
> Subject: Re: [PATCH v7 0/8] Raid: enable talitos xor offload for
> improving performance
>=20
> On Thu, Aug 09, 2012 at 04:19:35PM +0800, qiang.liu@freescale.com wrote:
> > Hi all,
> >
> > The following 8 patches enabling fsl-dma and talitos offload raid
> > operations for improving raid performance and balancing CPU load.
> >
> > These patches include talitos, fsl-dma and carma module (caram uses
> > some features of fsl-dma).
> >
> > Write performance will be improved by 25-30% tested by iozone.
> > Write performance is improved about 2% after using spin_lock_bh
> > replace spin_lock_irqsave.
> > CPU load will be reduced by 8%.
> >
> > "fwiw, I gave v5 a test-drive, setting up a RAID5 array on ramdisks
> > [1], and this patchseries, along with FSL_DMA && NET_DMA set seems to
> > be holding water, so this series gets my:"
> >
> > Tested-by: Kim Phillips <kim.phillips@freescale.com>
> >
>=20
> The fsldma parts of the series all look great to me.
>=20
> Thanks,
> Ira
>=20
> > [1] mdadm --create --verbose --force /dev/md0 --level=3Draid5 --raid-
> devices=3D4 \
> > 	/dev/ram[0123]
> >
> > Changes in v7:
> > 	- add test result which is provided by Kim Phillips;
> > 	- correct one coding style issue in patch 5/8;
> > 	- add comments by Arnd Bergmann in patch 6/8;
> >
> > Changes in v6:
> > 	- swap the order of original patch 3/6 and 4/6;
> > 	- merge Ira's patch to reduce the size of original patch;
> > 	- merge Ira's patch of carma in 8/8;
> > 	- update documents and descriptions according to Ira's advice;
> >
> > Changes in v5:
> > 	- add detail description in patch 3/6 about the process of
> completed
> > 	descriptor, the process is in align with fsl-dma Reference Manual,
> > 	illustrate the potential risk and how to reproduce it;
> > 	- drop the patch 7/7 in v4 according to Timur's comments;
> >
> > Changes in v4:
> > 	- fix an error in talitos when dest addr is same with src addr,
> dest
> > 	should be freed only one time if src is same with dest addr;
> > 	- correct coding style in fsl-dma according to Ira's comments;
> > 	- fix a race condition in fsl-dma fsl_tx_status(), remove the
> interface
> > 	which is used to free descriptors in queue ld_completed, this
> interface
> > 	has been included in fsldma_cleanup_descriptor(), in v3, there is
> one
> > 	place missed spin_lock protect;
> > 	- split the original patch 3/4 up to 2 patches 3/7 and 4/7
> according to
> > 	Li Yang's comments;
> > 	- fix a warning of unitialized cookie;
> > 	- add memory copy self test in fsl-dma;
> > 	- add more detail description about use spin_lock_bh() to instead
> of
> > 	spin_lock_irqsave() according to Timur's comments.
> >
> > Changes in v3:
> > 	- change release process of fsl-dma descriptor for resolve the
> > 	potential race condition;
> > 	- add test result when use spin_lock_bh replace spin_lock_irqsave;
> > 	- modify the benchmark results according to the latest patch.
> >
> > Changes in v2:
> > 	- rebase onto cryptodev tree;
> > 	- split the patch 3/4 up to 3 independent patches;
> > 	- remove the patch 4/4, the fix is not for cryptodev tree;
> >
> > Qiang Liu (8):
> >       Talitos: Support for async_tx XOR offload
> >       fsl-dma: remove attribute DMA_INTERRUPT of dmaengine
> >       fsl-dma: add fsl_dma_free_descriptor() to reduce code duplication
> >       fsl-dma: move functions to avoid forward declarations
> >       fsl-dma: change release process of dma descriptor for supporting
> async_tx
> >       fsl-dma: use spin_lock_bh to instead of spin_lock_irqsave
> >       fsl-dma: fix a warning of unitialized cookie
> >       carma: remove unnecessary DMA_INTERRUPT capability
> >
> >  drivers/crypto/Kconfig                  |    9 +
> >  drivers/crypto/talitos.c                |  413
> ++++++++++++++++++++++++++
> >  drivers/crypto/talitos.h                |   53 ++++
> >  drivers/dma/fsldma.c                    |  488 +++++++++++++++++------
> --------
> >  drivers/dma/fsldma.h                    |   17 +-
> >  drivers/misc/carma/carma-fpga-program.c |    1 -
> >  drivers/misc/carma/carma-fpga.c         |    2 +-
> >  7 files changed, 761 insertions(+), 222 deletions(-)
> >
> > _______________________________________________
> > Linuxppc-dev mailing list
> > Linuxppc-dev@lists.ozlabs.org
> > https://lists.ozlabs.org/listinfo/linuxppc-dev

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

* Re: [PATCH v7 0/8] Raid: enable talitos xor offload for improving performance
  2012-08-14  9:04   ` Liu Qiang-B32616
@ 2012-08-14 20:01     ` Dan Williams
  2012-08-15  7:59       ` Liu Qiang-B32616
  2012-08-29 11:15       ` Liu Qiang-B32616
  0 siblings, 2 replies; 8+ messages in thread
From: Dan Williams @ 2012-08-14 20:01 UTC (permalink / raw)
  To: Liu Qiang-B32616
  Cc: herbert@gondor.apana.org.au, arnd@arndb.de, Ira W. Snyder,
	vinod.koul@intel.com, gregkh@linuxfoundation.org,
	linux-kernel@vger.kernel.org, linux-crypto@vger.kernel.org,
	dan.j.williams@intel.com, linuxppc-dev@lists.ozlabs.org

On Tue, Aug 14, 2012 at 2:04 AM, Liu Qiang-B32616 <B32616@freescale.com> wrote:
> Hi Vinod,
>
> Would you like to apply this series from patch 2/8 to 7/8) in your tree?
> The link as below,
> http://patchwork.ozlabs.org/patch/176023/
> http://patchwork.ozlabs.org/patch/176024/
> http://patchwork.ozlabs.org/patch/176025/
> http://patchwork.ozlabs.org/patch/176026/
> http://patchwork.ozlabs.org/patch/176027/
> http://patchwork.ozlabs.org/patch/176028/
>

Hi, sorry for the recent silence I've been transitioning and am now
just catching up.  I'll take a look and then it's fine for these to go
through Vinod's tree.

--
Dan

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

* RE: [PATCH v7 0/8] Raid: enable talitos xor offload for improving performance
  2012-08-14 20:01     ` Dan Williams
@ 2012-08-15  7:59       ` Liu Qiang-B32616
  2012-08-29 11:15       ` Liu Qiang-B32616
  1 sibling, 0 replies; 8+ messages in thread
From: Liu Qiang-B32616 @ 2012-08-15  7:59 UTC (permalink / raw)
  To: Dan Williams, dan.j.williams@gmail.com
  Cc: herbert@gondor.apana.org.au, arnd@arndb.de, Ira W. Snyder,
	vinod.koul@intel.com, gregkh@linuxfoundation.org,
	linux-kernel@vger.kernel.org, linux-crypto@vger.kernel.org,
	linuxppc-dev@lists.ozlabs.org

> -----Original Message-----
> From: dan.j.williams@gmail.com [mailto:dan.j.williams@gmail.com] On
> Behalf Of Dan Williams
> Sent: Wednesday, August 15, 2012 4:02 AM
> To: Liu Qiang-B32616
> Cc: dan.j.williams@intel.com; vinod.koul@intel.com; arnd@arndb.de;
> herbert@gondor.apana.org.au; gregkh@linuxfoundation.org; linuxppc-
> dev@lists.ozlabs.org; linux-kernel@vger.kernel.org; linux-
> crypto@vger.kernel.org; Ira W. Snyder
> Subject: Re: [PATCH v7 0/8] Raid: enable talitos xor offload for
> improving performance
>=20
> On Tue, Aug 14, 2012 at 2:04 AM, Liu Qiang-B32616 <B32616@freescale.com>
> wrote:
> > Hi Vinod,
> >
> > Would you like to apply this series from patch 2/8 to 7/8) in your tree=
?
> > The link as below,
> > http://patchwork.ozlabs.org/patch/176023/
> > http://patchwork.ozlabs.org/patch/176024/
> > http://patchwork.ozlabs.org/patch/176025/
> > http://patchwork.ozlabs.org/patch/176026/
> > http://patchwork.ozlabs.org/patch/176027/
> > http://patchwork.ozlabs.org/patch/176028/
> >
>=20
> Hi, sorry for the recent silence I've been transitioning and am now
> just catching up.  I'll take a look and then it's fine for these to go
> through Vinod's tree.
Hello Dan,

Please review, this issue has been continued since many years. I hope we ca=
n fix
it this time. Thanks.

>=20
> --
> Dan

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

* RE: [PATCH v7 0/8] Raid: enable talitos xor offload for improving performance
  2012-08-14 20:01     ` Dan Williams
  2012-08-15  7:59       ` Liu Qiang-B32616
@ 2012-08-29 11:15       ` Liu Qiang-B32616
  2012-08-29 14:52         ` Dan Williams
  1 sibling, 1 reply; 8+ messages in thread
From: Liu Qiang-B32616 @ 2012-08-29 11:15 UTC (permalink / raw)
  To: Dan Williams
  Cc: herbert@gondor.apana.org.au, arnd@arndb.de, Ira W. Snyder,
	vinod.koul@intel.com, gregkh@linuxfoundation.org,
	linux-kernel@vger.kernel.org, linux-crypto@vger.kernel.org,
	linuxppc-dev@lists.ozlabs.org

Hi Dan,

Ping?
Can you apply these patches? Thanks.


- Qiang

> -----Original Message-----
> From: dan.j.williams@gmail.com [mailto:dan.j.williams@gmail.com] On
> Behalf Of Dan Williams
> Sent: Wednesday, August 15, 2012 4:02 AM
> To: Liu Qiang-B32616
> Cc: dan.j.williams@intel.com; vinod.koul@intel.com; arnd@arndb.de;
> herbert@gondor.apana.org.au; gregkh@linuxfoundation.org; linuxppc-
> dev@lists.ozlabs.org; linux-kernel@vger.kernel.org; linux-
> crypto@vger.kernel.org; Ira W. Snyder
> Subject: Re: [PATCH v7 0/8] Raid: enable talitos xor offload for
> improving performance
>=20
> On Tue, Aug 14, 2012 at 2:04 AM, Liu Qiang-B32616 <B32616@freescale.com>
> wrote:
> > Hi Vinod,
> >
> > Would you like to apply this series from patch 2/8 to 7/8) in your tree=
?
> > The link as below,
> > http://patchwork.ozlabs.org/patch/176023/
> > http://patchwork.ozlabs.org/patch/176024/
> > http://patchwork.ozlabs.org/patch/176025/
> > http://patchwork.ozlabs.org/patch/176026/
> > http://patchwork.ozlabs.org/patch/176027/
> > http://patchwork.ozlabs.org/patch/176028/
> >
>=20
> Hi, sorry for the recent silence I've been transitioning and am now
> just catching up.  I'll take a look and then it's fine for these to go
> through Vinod's tree.
>=20
> --
> Dan

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

* Re: [PATCH v7 0/8] Raid: enable talitos xor offload for improving performance
  2012-08-29 11:15       ` Liu Qiang-B32616
@ 2012-08-29 14:52         ` Dan Williams
  2012-08-30  6:20           ` Liu Qiang-B32616
  0 siblings, 1 reply; 8+ messages in thread
From: Dan Williams @ 2012-08-29 14:52 UTC (permalink / raw)
  To: Liu Qiang-B32616
  Cc: herbert@gondor.apana.org.au, arnd@arndb.de, Ira W. Snyder,
	vinod.koul@intel.com, gregkh@linuxfoundation.org,
	linux-kernel@vger.kernel.org, linux-crypto@vger.kernel.org,
	linuxppc-dev@lists.ozlabs.org

On Wed, 2012-08-29 at 11:15 +0000, Liu Qiang-B32616 wrote:
> Hi Dan,
> 
> Ping?
> Can you apply these patches? Thanks.
> 

I'm working my way through them.

The first thing I notice is that xor_chan->desc_lock is taken
inconsistently.  I.e. spin_lock_irqsave() in talitos_process_pending()
and spin_lock_bh() everywhere else.  Have you run these patches with
lockdep?

--
Dan

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

* RE: [PATCH v7 0/8] Raid: enable talitos xor offload for improving performance
  2012-08-29 14:52         ` Dan Williams
@ 2012-08-30  6:20           ` Liu Qiang-B32616
  0 siblings, 0 replies; 8+ messages in thread
From: Liu Qiang-B32616 @ 2012-08-30  6:20 UTC (permalink / raw)
  To: Dan Williams
  Cc: herbert@gondor.apana.org.au, arnd@arndb.de, Ira W. Snyder,
	vinod.koul@intel.com, gregkh@linuxfoundation.org,
	linux-kernel@vger.kernel.org, linux-crypto@vger.kernel.org,
	linuxppc-dev@lists.ozlabs.org

PiAtLS0tLU9yaWdpbmFsIE1lc3NhZ2UtLS0tLQ0KPiBGcm9tOiBEYW4gV2lsbGlhbXMgW21haWx0
bzpkamJ3QGZiLmNvbV0NCj4gU2VudDogV2VkbmVzZGF5LCBBdWd1c3QgMjksIDIwMTIgMTA6NTMg
UE0NCj4gVG86IExpdSBRaWFuZy1CMzI2MTYNCj4gQ2M6IHZpbm9kLmtvdWxAaW50ZWwuY29tOyBh
cm5kQGFybmRiLmRlOyBoZXJiZXJ0QGdvbmRvci5hcGFuYS5vcmcuYXU7DQo+IGdyZWdraEBsaW51
eGZvdW5kYXRpb24ub3JnOyBsaW51eHBwYy1kZXZAbGlzdHMub3psYWJzLm9yZzsgbGludXgtDQo+
IGtlcm5lbEB2Z2VyLmtlcm5lbC5vcmc7IGxpbnV4LWNyeXB0b0B2Z2VyLmtlcm5lbC5vcmc7IEly
YSBXLiBTbnlkZXINCj4gU3ViamVjdDogUmU6IFtQQVRDSCB2NyAwLzhdIFJhaWQ6IGVuYWJsZSB0
YWxpdG9zIHhvciBvZmZsb2FkIGZvcg0KPiBpbXByb3ZpbmcgcGVyZm9ybWFuY2UNCj4gDQo+IE9u
IFdlZCwgMjAxMi0wOC0yOSBhdCAxMToxNSArMDAwMCwgTGl1IFFpYW5nLUIzMjYxNiB3cm90ZToN
Cj4gPiBIaSBEYW4sDQo+ID4NCj4gPiBQaW5nPw0KPiA+IENhbiB5b3UgYXBwbHkgdGhlc2UgcGF0
Y2hlcz8gVGhhbmtzLg0KPiA+DQo+IA0KPiBJJ20gd29ya2luZyBteSB3YXkgdGhyb3VnaCB0aGVt
Lg0KPiANCj4gVGhlIGZpcnN0IHRoaW5nIEkgbm90aWNlIGlzIHRoYXQgeG9yX2NoYW4tPmRlc2Nf
bG9jayBpcyB0YWtlbg0KPiBpbmNvbnNpc3RlbnRseS4gIEkuZS4gc3Bpbl9sb2NrX2lycXNhdmUo
KSBpbiB0YWxpdG9zX3Byb2Nlc3NfcGVuZGluZygpDQo+IGFuZCBzcGluX2xvY2tfYmgoKSBldmVy
eXdoZXJlIGVsc2UuICBIYXZlIHlvdSBydW4gdGhlc2UgcGF0Y2hlcyB3aXRoDQo+IGxvY2tkZXA/
DQpUaGFua3MgZm9yIHlvdXIgcmVwbHkuDQpMT0NLREVQIGlzIGVuYWJsZWQgYXMgeW91IHN1Z2dl
c3RlZCwgdGhlcmUgaXMgbm90IGFueSBpbmZvIGFib3V0ICJpbmNvbnNpc3RlbnQgbG9jayBzdGF0
ZSIgZGlzcGxheWVkLg0KSSBkb24ndCBrbm93IHdoZXRoZXIgaXQncyBlbm91Z2guDQoNCkknbSBj
b25mdXNlZCBhYm91dCB0aGUgYXR0cmlidXRlIG9mIERNQV9JTlRFUlJVUFQsIG15IHVuZGVyc3Rh
bmRpbmcgaXMgdGhpcyBpbnRlcmZhY2UgaXMgb25seSB1c2VkIHRvIHRyaWdnZXIgYW4gaW50ZXJy
dXB0IChtYWtlIHN1cmUgYWxsIGZvcm1lciBvcGVyYXRpb25zIGFyZSBmaW5pc2hlZCBiZWZvcmUg
c3dpdGNoaW5nIHRvIG90aGVyIGNoYW5uZWxzKSwgYnV0IGZzbC1kbWEgd2lsbCB0cmlnZ2VyIGFu
IGludGVycnVwdCBieSAiUHJvZ3JhbW1lZCBFcnJvciIuIEknbSB3b25kZXJpbmcgd2hldGhlciBv
dGhlciBoYXJkd2FyZSBhcmUgc2FtZSB3aXRoIGZzbC1kbWEgKHRoZSBpbnRlcnJ1cHQgaXMgYSBu
b3JtYWwgaW50ZXJydXB0LCBidXQgbm90IGFuIGVycm9yKSBpLmUuIHhzY2FsZS1pb3A/DQpJZiBv
dGhlciBoYXJkd2FyZSBhbHNvIHRyaWdnZXIgYW4gaW50ZXJydXB0IGJ5IGFuIGFibm9ybWFsIGVy
cm9yLCBtYXliZSBteSBwYXRjaCAyLzggc2hvdWxkIGJlIHJldmVydGVkIGJlY2F1c2UgaXQgdmlv
bGF0ZXMgdGhlIHJ1bGVzIG9mIHRoaXMgYXR0cmlidXRlLg0KDQpCVFcsIGNvdWxkIHlvdSBwbGVh
c2UgcmVwbHkgaW4gdGhlIHBhdGNoIGlmIHlvdSBoYXZlIGFueSBjb21tZW50cy4gVGhhbmtzLg0K
DQo+IA0KPiAtLQ0KPiBEYW4NCj4gDQo+IA0KDQo=

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

end of thread, other threads:[~2012-08-30  6:20 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-09  8:19 [PATCH v7 0/8] Raid: enable talitos xor offload for improving performance qiang.liu
2012-08-09 17:03 ` Ira W. Snyder
2012-08-14  9:04   ` Liu Qiang-B32616
2012-08-14 20:01     ` Dan Williams
2012-08-15  7:59       ` Liu Qiang-B32616
2012-08-29 11:15       ` Liu Qiang-B32616
2012-08-29 14:52         ` Dan Williams
2012-08-30  6:20           ` Liu Qiang-B32616

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