Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit db5d711e authored by Minchan Kim's avatar Minchan Kim Committed by Linus Torvalds
Browse files

zram: avoid null access when fail to alloc meta



zram_meta_alloc could fail so caller should check it.  Otherwise, your
system will hang.

Signed-off-by: default avatarMinchan Kim <minchan@kernel.org>
Acked-by: default avatarJerome Marchand <jmarchan@redhat.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent a5f6ea29
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -612,6 +612,8 @@ static ssize_t disksize_store(struct device *dev,

	disksize = PAGE_ALIGN(disksize);
	meta = zram_meta_alloc(disksize);
	if (!meta)
		return -ENOMEM;
	down_write(&zram->init_lock);
	if (zram->init_done) {
		up_write(&zram->init_lock);