linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* pkeys: Remove easily triggered WARN
@ 2016-10-14 18:26 Dave Jones
  2016-10-14 19:16 ` Dave Hansen
  2016-10-17  7:16 ` Heiko Carstens
  0 siblings, 2 replies; 4+ messages in thread
From: Dave Jones @ 2016-10-14 18:26 UTC (permalink / raw)
  To: Dave Hansen
  Cc: linux-arch, Dave Hansen, mgorman, arnd, linux-api, linux-mm, luto,
	akpm, torvalds

This easy-to-trigger warning shows up instantly when running
Trinity on a kernel with CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS disabled.

At most this should have been a printk, but the -EINVAL alone should be more
than adequate indicator that something isn't available.

Signed-off-by: Dave Jones <davej@codemonkey.org.uk>

diff --git a/include/linux/pkeys.h b/include/linux/pkeys.h
index e4c08c1ff0c5..a1bacf1150b2 100644
--- a/include/linux/pkeys.h
+++ b/include/linux/pkeys.h
@@ -25,7 +25,6 @@ static inline int mm_pkey_alloc(struct mm_struct *mm)
 
 static inline int mm_pkey_free(struct mm_struct *mm, int pkey)
 {
-	WARN_ONCE(1, "free of protection key when disabled");
 	return -EINVAL;
 }
 

--
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/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

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

end of thread, other threads:[~2016-10-17  7:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-14 18:26 pkeys: Remove easily triggered WARN Dave Jones
2016-10-14 19:16 ` Dave Hansen
2016-10-17  7:16 ` Heiko Carstens
2016-10-17  7:54   ` Heiko Carstens

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