All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Li, Weigang" <weigang.li@intel.com>
To: Joonsoo Kim <js1304@gmail.com>, Herbert Xu <herbert@gondor.apana.org.au>
Cc: "David S. Miller" <davem@davemloft.net>,
	Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>,
	Minchan Kim <minchan@kernel.org>, <linux-crypto@vger.kernel.org>,
	<linux-kernel@vger.kernel.org>,
	Joonsoo Kim <iamjoonsoo.kim@lge.com>
Subject: Re: [PATCH RFC 0/7] Introduce new async/sync compression APIs
Date: Tue, 12 Jan 2016 16:00:50 +0800	[thread overview]
Message-ID: <5694B2B2.7050806@intel.com> (raw)
In-Reply-To: <1451882819-2810-1-git-send-email-iamjoonsoo.kim@lge.com>

On 1/4/2016 12:46 PM, Joonsoo Kim wrote:
> Happy New Year!
>
> This patchset is to introduce new compression APIs. It supports async/sync
> compression although there is no async compression driver yet. But, async
> APIs can be used as front-end to sync compression algorithm. Major change
> is that now APIs are stateless. Instead of previous implementation, tfm
> objects doesn't embedded any context so we can de/compress concurrently
> with one tfm object. Instead, this de/compression context is coupled with
> the request. This architecture change will make APIs more flexible.
>
> This is just a RFC so commit description isn't sufficient. If Herbert
> confirms that this is what he expect, I will respin the series with proper
> commit description and adding more algorithm support.
>
> Thanks.
>
> Joonsoo Kim (6):
>    crypto/compress: remove unused pcomp interface
>    crypto/compress: introduce sychronuous compression API
>    crypto/lzo: support SCOMPRESS alg type
>    crypto: testmgr: add scompress/acompress test
>    crypto/compress: add algorithm type specific flag, DECOMP_NOCTX
>    crypto/lzo: add CRYPTO_ALG_SCOMPRESS_DECOMP_NOCTX cra_flags
>
> Weigang Li (1):
>    crypto: add asynchronous compression support
>
>   crypto/Kconfig                     |  19 +-
>   crypto/Makefile                    |   4 +-
>   crypto/acompress.c                 | 164 ++++++++++++++++
>   crypto/lzo.c                       |  95 +++++++--
>   crypto/pcompress.c                 | 115 -----------
>   crypto/scompress.c                 | 283 +++++++++++++++++++++++++++
>   crypto/testmgr.c                   | 376 +++++++++++++++---------------------
>   crypto/testmgr.h                   | 142 --------------
>   crypto/zlib.c                      | 381 -------------------------------------
>   include/crypto/compress.h          | 354 +++++++++++++++++++++++++---------
>   include/crypto/internal/compress.h |  32 +---
>   include/linux/crypto.h             |  10 +-
>   12 files changed, 969 insertions(+), 1006 deletions(-)
>   create mode 100644 crypto/acompress.c
>   delete mode 100644 crypto/pcompress.c
>   create mode 100644 crypto/scompress.c
>   delete mode 100644 crypto/zlib.c
>
Hello Herbert,
Any comments on this patchset?

  parent reply	other threads:[~2016-01-12  8:01 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-04  4:46 [PATCH RFC 0/7] Introduce new async/sync compression APIs Joonsoo Kim
2016-01-04  4:46 ` [PATCH RFC 1/7] crypto/compress: remove unused pcomp interface Joonsoo Kim
2016-01-04  4:46 ` [PATCH RFC 2/7] crypto/compress: introduce sychronuous compression API Joonsoo Kim
2016-01-04  4:46 ` [PATCH RFC 3/7] crypto: add asynchronous compression support Joonsoo Kim
2016-01-04  4:46 ` [PATCH RFC 4/7] crypto/lzo: support SCOMPRESS alg type Joonsoo Kim
2016-01-04  4:46 ` [PATCH RFC 5/7] crypto: testmgr: add scompress/acompress test Joonsoo Kim
2016-01-04  4:46 ` [PATCH RFC 6/7] crypto/compress: add algorithm type specific flag, DECOMP_NOCTX Joonsoo Kim
2016-01-04  4:46 ` [PATCH RFC 7/7] crypto/lzo: add CRYPTO_ALG_SCOMPRESS_DECOMP_NOCTX cra_flags Joonsoo Kim
2016-01-12  8:00 ` Li, Weigang [this message]
2016-01-12 12:47   ` [PATCH RFC 0/7] Introduce new async/sync compression APIs Herbert Xu
2016-01-13  8:31     ` Joonsoo Kim
2016-01-13  8:29       ` Herbert Xu

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=5694B2B2.7050806@intel.com \
    --to=weigang.li@intel.com \
    --cc=davem@davemloft.net \
    --cc=herbert@gondor.apana.org.au \
    --cc=iamjoonsoo.kim@lge.com \
    --cc=js1304@gmail.com \
    --cc=linux-crypto@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=minchan@kernel.org \
    --cc=sergey.senozhatsky.work@gmail.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.