From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755561AbbITXh4 (ORCPT ); Sun, 20 Sep 2015 19:37:56 -0400 Received: from mail-pa0-f54.google.com ([209.85.220.54]:33606 "EHLO mail-pa0-f54.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755445AbbITXhy (ORCPT ); Sun, 20 Sep 2015 19:37:54 -0400 Date: Mon, 21 Sep 2015 08:39:17 +0900 From: Minchan Kim To: Joonsoo Kim Cc: Andrew Morton , Nitin Gupta , Sergey Senozhatsky , linux-kernel@vger.kernel.org, linux-crypto@vger.kernel.org, Herbert Xu , "David S. Miller" , Stephan Mueller , Sergey Senozhatsky , Joonsoo Kim Subject: Re: [PATCH v3 6/9] zram: make stream find and release functions static Message-ID: <20150920233854.GA27729@bbox> References: <1442553564-3476-1-git-send-email-iamjoonsoo.kim@lge.com> <1442553564-3476-7-git-send-email-iamjoonsoo.kim@lge.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1442553564-3476-7-git-send-email-iamjoonsoo.kim@lge.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Sep 18, 2015 at 02:19:21PM +0900, Joonsoo Kim wrote: > From: Sergey Senozhatsky > > Hide (make static) zstrm find and release function and introduce > zcomp_compress_begin()/zcomp_compress_end(). We will have begin > and end functions around compression (this patch) and decompression > (next patch). So the work flow is evolving to: > > zstrm = foo_begin(); > foo(zstrm); > foo_end(zstrm); > > where foo is compress or decompress zcomp functions. > > This patch is a preparation to make crypto API-powered zcomp > possible. The reasoning is that some crypto compression backends > require zstrm for decompression. > > Signed-off-by: Sergey Senozhatsky > Signed-off-by: Joonsoo Kim Acked-by: Minchan Kim