lkml.org 
[lkml]   [2006]   [Feb]   [20]   [last100]   RSS Feed
Views: [more markup]  [less markup]  [headers]  [forward] 
 
Messages in this thread
/
DateSun, 19 Feb 2006 22:39:44 -0800
FromAndrew Morton <>
SubjectRe: [PATCH] Fix undefined symbols for nommu architecture --improved version
"Luke Yang" <luke.adi@gmail.com> wrote:
>
> Index: git/linux-2.6/mm/nommu.c
>  ===================================================================
>  --- git.orig/linux-2.6/mm/nommu.c       2006-02-17 17:40:34.000000000 +0800
>  +++ git/linux-2.6/mm/nommu.c    2006-02-20 12:09:32.000000000 +0800
>  @@ -57,7 +57,10 @@
>   EXPORT_SYMBOL(vfree);
>   EXPORT_SYMBOL(vmalloc_to_page);
>   EXPORT_SYMBOL(vmalloc_32);
>  +EXPORT_SYMBOL(vmap);
>  +EXPORT_SYMBOL(vunmap);
> 
>  +#define randomize_va_space 0
>   /*
>   * Handle all mappings that got truncated by a "truncate()"
>   * system call.

That can't be right - the #define should be in a header file - mm.h:

#ifdef CONFIG_NOMMU
#define randomize_va_space 0
#else
extern int randomize_va_space;
#endif

Are you sure you test-compiled this?
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2006-02-20 07:43    [from the cache]
©2003-2008