[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20151121093735.GA561@swordfish>
Date: Sat, 21 Nov 2015 18:37:35 +0900
From: Sergey Senozhatsky <sergey.senozhatsky@...il.com>
To: Kyeongdon Kim <kyeongdon.kim@....com>
Cc: minchan@...nel.org, akpm@...ux-foundation.org, ngupta@...are.org,
linux-kernel@...r.kernel.org, sergey.senozhatsky@...il.com,
sergey.senozhatsky.work@...il.com
Subject: Re: [PATCH v2] zram: Prevent page allocation failure during
zcomp_strm_alloc
On (11/21/15 11:15), Sergey Senozhatsky wrote:
[..]
>
> with the only nit that the subject should be "try kmalloc() before vmalloc()"
> or similar, not "prevent page allocation failure", I think.
>
Oh, and one more thing
> static void zcomp_lz4_destroy(void *private)
> {
> - kfree(private);
> + if (is_vmalloc_addr(private))
> + vfree(private);
> + else
> + kfree(private);
> }
static void zcomp_FOO_destroy(void *private)
{
kvfree(private);
}
-ss
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists