# HG changeset patch # User tristan.gingold@xxxxxxxx # Node ID 781d014be5767b7210706a7eeb17692ccec680b4 # Parent 1507c5499a92a7701db9cc3b0bf9ac5fb3fa8ee2 Unused fields commented out. Signed-off-by: Tristan Gingold diff -r 1507c5499a92 -r 781d014be576 xen/arch/ia64/xen/mm_init.c --- a/xen/arch/ia64/xen/mm_init.c Fri Jan 6 18:39:28 2006 +++ b/xen/arch/ia64/xen/mm_init.c Tue Jan 10 07:03:20 2006 @@ -502,6 +502,7 @@ } #endif /* CONFIG_VIRTUAL_MEM_MAP */ +#ifndef XEN static int count_reserved_pages (u64 start, u64 end, void *arg) { @@ -514,6 +515,7 @@ *count += num_reserved; return 0; } +#endif /* * Boot command-line option "nolwsys" can be used to disable the use of any light-weight diff -r 1507c5499a92 -r 781d014be576 xen/include/asm-ia64/mm.h --- a/xen/include/asm-ia64/mm.h Fri Jan 6 18:39:28 2006 +++ b/xen/include/asm-ia64/mm.h Tue Jan 10 07:03:20 2006 @@ -67,10 +67,12 @@ } free; } u; +#if 0 // following added for Linux compiling page_flags_t flags; atomic_t _count; struct list_head lru; // is this the same as above "list"? +#endif }; #define set_page_count(p,v) atomic_set(&(p)->_count, v - 1)