linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* mm: ptl is not bloated if it fits in pointer
@ 2013-12-16  9:04 Hugh Dickins
  2013-12-16 10:04 ` Peter Zijlstra
  2013-12-16 10:12 ` Peter Zijlstra
  0 siblings, 2 replies; 5+ messages in thread
From: Hugh Dickins @ 2013-12-16  9:04 UTC (permalink / raw)
  To: Kirill A. Shutemov
  Cc: Peter Zijlstra, Linus Torvalds, Andrew Morton, linux-kernel,
	linux-mm

It's silly to force the 64-bit CONFIG_GENERIC_LOCKBREAK architectures
to kmalloc eight bytes for an indirect page table lock: the lock needs
to fit in the space that a pointer to it would occupy, not into an int.

Signed-off-by: Hugh Dickins <hughd@google.com>
---

 kernel/bounds.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- 3.13-rc4/kernel/bounds.c	2013-11-22 15:40:37.452192638 -0800
+++ linux/kernel/bounds.c	2013-12-15 14:34:36.304485959 -0800
@@ -22,6 +22,6 @@ void foo(void)
 #ifdef CONFIG_SMP
 	DEFINE(NR_CPUS_BITS, ilog2(CONFIG_NR_CPUS));
 #endif
-	DEFINE(BLOATED_SPINLOCKS, sizeof(spinlock_t) > sizeof(int));
+	DEFINE(BLOATED_SPINLOCKS, sizeof(spinlock_t) > sizeof(spinlock_t *));
 	/* End of constants */
 }

--
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	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-12-17  0:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-16  9:04 mm: ptl is not bloated if it fits in pointer Hugh Dickins
2013-12-16 10:04 ` Peter Zijlstra
2013-12-16 13:50   ` Kirill A. Shutemov
2013-12-17  0:29     ` Hugh Dickins
2013-12-16 10:12 ` Peter Zijlstra

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