linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [RFC]swap: don't do discard if no discard option added
@ 2012-03-20 12:34 Shaohua Li
  2012-03-20 18:21 ` Holger Kiehl
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Shaohua Li @ 2012-03-20 12:34 UTC (permalink / raw)
  To: linux-mm; +Cc: akpm, Holger Kiehl


Even don't add discard option, swapon will do discard, this sounds buggy,
especially when discard is slow or buggy.

Reported-by: Holger Kiehl <Holger.Kiehl@dwd.de>
Signed-off-by: Shaohua Li <shli@fusionio.com>
---
  mm/swapfile.c |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

Index: linux/mm/swapfile.c
===================================================================
--- linux.orig/mm/swapfile.c	2012-03-20 20:11:59.222767526 +0800
+++ linux/mm/swapfile.c	2012-03-20 20:13:25.362767387 +0800
@@ -2105,7 +2105,7 @@ SYSCALL_DEFINE2(swapon, const char __use
  			p->flags |= SWP_SOLIDSTATE;
  			p->cluster_next = 1 + (random32() % p->highest_bit);
  		}
-		if (discard_swap(p) == 0 && (swap_flags & SWAP_FLAG_DISCARD))
+		if ((swap_flags & SWAP_FLAG_DISCARD) && discard_swap(p) == 0)
  			p->flags |= SWP_DISCARDABLE;
  	}

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

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

end of thread, other threads:[~2012-03-23 11:39 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-20 12:34 [RFC]swap: don't do discard if no discard option added Shaohua Li
2012-03-20 18:21 ` Holger Kiehl
2012-03-20 19:42 ` Andrew Morton
2012-03-21  3:57 ` Hugh Dickins
2012-03-21  4:31   ` Shaohua Li
2012-03-21  4:56     ` Andrew Morton
2012-03-23 11:23       ` Hugh Dickins
2012-03-23 11:00     ` Hugh Dickins
2012-03-21 17:55   ` Holger Kiehl
2012-03-23 11:38     ` Hugh Dickins

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).