]> git.baikalelectronics.ru Git - kernel.git/commit
zram: fix operator precedence to get offset
authorMinchan Kim <minchan@kernel.org>
Thu, 13 Apr 2017 21:56:35 +0000 (14:56 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 14 Apr 2017 01:24:21 +0000 (18:24 -0700)
commit7fc627db427a41e7ca61f2149c46fb12ea2b46b6
treed1bdc863cfecc1caa2153006fdcc71f1f3637171
parent19bafe5746bc38416d1c9b019c31af6eed0ac535
zram: fix operator precedence to get offset

In zram_rw_page, the logic to get offset is wrong by operator precedence
(i.e., "<<" is higher than "&").  With wrong offset, zram can corrupt
the user's data.  This patch fixes it.

Fixes: 243f28be4 ("zram: implement rw_page operation of zram")
Link: http://lkml.kernel.org/r/1492042622-12074-1-git-send-email-minchan@kernel.org
Signed-off-by: Minchan Kim <minchan@kernel.org>
Cc: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/block/zram/zram_drv.c