Re: [RFC] x86, mm: start mmap allocation for libs from low addresses
From: "H. Peter Anvin" <hpa@zytor.com>
Date: 2011-08-22 20:18:21
Also in:
lkml
From: "H. Peter Anvin" <hpa@zytor.com>
Date: 2011-08-22 20:18:21
Also in:
lkml
On 08/22/2011 01:14 PM, Vasiliy Kulikov wrote:
quoted
Code-wise: The code is horrific; it is full of open-coded magic numbers;Agreed, the magic needs macro definition and comments.quoted
it also puts a function called arch_get_unmapped_exec_area() in a generic file, which could best be described as "WTF" -- the arch_ prefix we use specifically to denote a per-architecture hook function.Agreed. But I'd want to leave it in mm/mmap.c as it's likely be used by other archs - the changes are bitness specific, not arch specific. Is it OK if I do this? #ifndef HAVE_ARCH_UNMAPPED_EXEC_AREA void *arch_get_unmapped_exec_area(...) { ... } #endif
Only if this is really an architecture-specific function overridden in specific architectures. I'm not so sure that applies here. Furthermore, I'm not even all that sure what this function *does*. -hpa -- 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>