public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] set EXEC_PAGESIZE to PAGE_SIZE
@ 2004-05-11 14:59 Greg Edwards
  2004-05-11 16:10 ` David Mosberger
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Greg Edwards @ 2004-05-11 14:59 UTC (permalink / raw)
  To: linux-ia64

The number of pages allocated for the gid_t * blocks[] array in the
group_info struct is calculated from EXEC_PAGESIZE.  This is used when
the number of groups goes above 32.  On ia64, this is currently
hard-coded at 65536, which results in only a 1/4 of the required pages
being allocated on a 16k page size kernel.  A setgroups() call with a
gidsetsize of 65536 will end up tromping on memory.  Patch below sets
EXEC_PAGESIZE to PAGE_SIZE.


=== include/asm-ia64/param.h 1.6 vs edited ==--- 1.6/include/asm-ia64/param.h	Wed Feb 18 21:42:38 2004
+++ edited/include/asm-ia64/param.h	Tue May 11 09:04:13 2004
@@ -10,7 +10,7 @@
  *	David Mosberger-Tang <davidm@hpl.hp.com>, Hewlett-Packard Co
  */
 
-#define EXEC_PAGESIZE	65536
+#define EXEC_PAGESIZE	PAGE_SIZE
 
 #ifndef NOGROUP
 # define NOGROUP	(-1)

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

end of thread, other threads:[~2004-05-11 16:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-05-11 14:59 [PATCH] set EXEC_PAGESIZE to PAGE_SIZE Greg Edwards
2004-05-11 16:10 ` David Mosberger
2004-05-11 16:24 ` Andreas Schwab
2004-05-11 16:39 ` Greg Edwards

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