Re: [PATCH] btrfs: fix decompress buffer size

2013-02-14 Thread David Sterba
On Thu, Feb 14, 2013 at 06:12:19PM +0900, Kyungsik Lee wrote: > lzo1x_1_compress() is unnecessarily used for allocating decompress buffer. > > --- a/fs/btrfs/lzo.c > +++ b/fs/btrfs/lzo.c > @@ -55,7 +55,7 @@ static struct list_head *lzo_alloc_workspace(void) > return ERR_PTR(-ENOMEM);

[PATCH] btrfs: fix decompress buffer size

2013-02-14 Thread Kyungsik Lee
lzo1x_1_compress() is unnecessarily used for allocating decompress buffer. Signed-off-by: Kyungsik Lee --- fs/btrfs/lzo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/btrfs/lzo.c b/fs/btrfs/lzo.c index 743b86f..223893a 100644 --- a/fs/btrfs/lzo.c +++ b/fs/btrfs/lzo.