mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] zram: correct offset usage in zram_bio_discard
@ 2014-04-22  3:14 Weijie Yang
  2014-04-22  9:06 ` Sergey Senozhatsky
  2014-04-22 19:55 ` Andrew Morton
  0 siblings, 2 replies; 7+ messages in thread
From: Weijie Yang @ 2014-04-22  3:14 UTC (permalink / raw)
  To: 'Minchan Kim'
  Cc: 'Andrew Morton', 'Nitin Gupta',
	iamjoonsoo.kim, 'Sergey Senozhatsky', 'Bob Liu',
	'linux-kernel'

we want to skip the logical block which is partially covered by
the discard bio, so check the remaining size and subtract it if
there is a need to goto the next logical block.

This patch corrects the offset usage in zram_bio_discard.

Signed-off-by: Weijie Yang <weijie.yang@samsung.com>
---
 drivers/block/zram/zram_drv.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/block/zram/zram_drv.c b/drivers/block/zram/zram_drv.c
index 9849b52..48eccb3 100644
--- a/drivers/block/zram/zram_drv.c
+++ b/drivers/block/zram/zram_drv.c
@@ -572,10 +572,10 @@ static void zram_bio_discard(struct zram *zram, u32 index,
 	 * skipping this logical block is appropriate here.
 	 */
 	if (offset) {
-		if (n < offset)
+		if (n <= (PAGE_SIZE - offset))
 			return;
 
-		n -= offset;
+		n -= (PAGE_SIZE - offset);
 		index++;
 	}
 
-- 
1.7.10.4



^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2014-04-23  4:59 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-22  3:14 [PATCH] zram: correct offset usage in zram_bio_discard Weijie Yang
2014-04-22  9:06 ` Sergey Senozhatsky
2014-04-22 19:55 ` Andrew Morton
2014-04-23  2:32   ` Weijie Yang
2014-04-23  3:08     ` Joonsoo Kim
2014-04-23  3:52       ` Weijie Yang
2014-04-23  5:00         ` Joonsoo Kim

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®