mm-commits.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* + zram-try-to-avoid-worst-case-scenario-on-same-element-pages-update.patch added to -mm tree
@ 2020-01-10 20:54 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2020-01-10 20:54 UTC (permalink / raw)
  To: axboe, minchan, mm-commits, sergey.senozhatsky.work, taejoon.song


The patch titled
     Subject: zram: try to avoid worst-case scenario on same element pages
has been added to the -mm tree.  Its filename is
     zram-try-to-avoid-worst-case-scenario-on-same-element-pages-update.patch

This patch should soon appear at
    http://ozlabs.org/~akpm/mmots/broken-out/zram-try-to-avoid-worst-case-scenario-on-same-element-pages-update.patch
and later at
    http://ozlabs.org/~akpm/mmotm/broken-out/zram-try-to-avoid-worst-case-scenario-on-same-element-pages-update.patch

Before you just go and hit "reply", please:
   a) Consider who else should be cc'ed
   b) Prefer to cc a suitable mailing list as well
   c) Ideally: find the original patch on the mailing list and do a
      reply-to-all to that, adding suitable additional cc's

*** Remember to use Documentation/process/submit-checklist.rst when testing your code ***

The -mm tree is included into linux-next and is updated
there every 3-4 working days

------------------------------------------------------
From: Taejoon Song <taejoon.song@lge.com>
Subject: zram: try to avoid worst-case scenario on same element pages

fix off-by-one

Link: http://lkml.kernel.org/r/1578642001-11765-1-git-send-email-taejoon.song@lge.com
Signed-off-by: Taejoon Song <taejoon.song@lge.com>
Acked-by: Minchan Kim <minchan@kernel.org>
Cc: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
Cc: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 drivers/block/zram/zram_drv.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/drivers/block/zram/zram_drv.c~zram-try-to-avoid-worst-case-scenario-on-same-element-pages-update
+++ a/drivers/block/zram/zram_drv.c
@@ -217,7 +217,7 @@ static bool page_same_filled(void *ptr,
 	if (val != page[last_pos])
 		return false;
 
-	for (pos = 1; pos < last_pos - 1; pos++) {
+	for (pos = 1; pos < last_pos; pos++) {
 		if (val != page[pos])
 			return false;
 	}
_

Patches currently in -mm which might be from taejoon.song@lge.com are

zram-try-to-avoid-worst-case-scenario-on-same-element-pages.patch
zram-try-to-avoid-worst-case-scenario-on-same-element-pages-update.patch

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2020-01-10 20:54 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-10 20:54 + zram-try-to-avoid-worst-case-scenario-on-same-element-pages-update.patch added to -mm tree akpm

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).