Re: [PATCHv4 1/4] zram: introduce compressing backend abstraction

2014-02-13 Thread Sergey Senozhatsky
Hello Minchan, thank you for review. On (02/13/14 13:53), Minchan Kim wrote: > > Hello Sergey, > [..] > > + struct zcomp_strm, list); > > + list_del(&zstrm->list); > > + spin_unlock(&comp->buffer_lock); > > + return zstrm; > > +} > > + > > +/* add zcomp_strm back to idle

Re: [PATCHv4 1/4] zram: introduce compressing backend abstraction

2014-02-12 Thread Minchan Kim
Hello Sergey, On Wed, Feb 12, 2014 at 10:39:33PM +0300, Sergey Senozhatsky wrote: > ZRAM performs direct LZO compression algorithm calls, making it the one and > only option. Introduce compressing backend abstraction zcomp in order to > support multiple compression algorithms with the following se

[PATCHv4 1/4] zram: introduce compressing backend abstraction

2014-02-12 Thread Sergey Senozhatsky
ZRAM performs direct LZO compression algorithm calls, making it the one and only option. Introduce compressing backend abstraction zcomp in order to support multiple compression algorithms with the following set of operations: .create .destroy .compress .decompress