[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] Fix ia64 build. Two typos in header files.
# HG changeset patch # User kaf24@xxxxxxxxxxxxxxxxxxxx # Node ID bd8418790797868e9e2089be04bce154282d4a91 # Parent 1ea5d2e3a8f9686ee2a9572bc49bb2adfb05098b Fix ia64 build. Two typos in header files. Signed-off-by: Keir Fraser <keir@xxxxxxxxxxxxx> diff -r 1ea5d2e3a8f9 -r bd8418790797 xen/include/asm-ia64/grant_table.h --- a/xen/include/asm-ia64/grant_table.h Thu Nov 24 05:04:13 2005 +++ b/xen/include/asm-ia64/grant_table.h Thu Nov 24 10:03:07 2005 @@ -16,7 +16,7 @@ #define gnttab_shared_mfn(d, t, i) \ ( ((d) == dom0) ? \ - ((virt_to_phys((t)shared) >> PAGE_SHIFT) + (i)) : \ + ((virt_to_phys((t)->shared) >> PAGE_SHIFT) + (i)) : \ (map_domain_page((d), 1UL<<40, virt_to_phys((t)->shared)), \ 1UL << (40 - PAGE_SHIFT)) \ ) diff -r 1ea5d2e3a8f9 -r bd8418790797 xen/include/asm-ia64/mm.h --- a/xen/include/asm-ia64/mm.h Thu Nov 24 05:04:13 2005 +++ b/xen/include/asm-ia64/mm.h Thu Nov 24 10:03:07 2005 @@ -82,7 +82,7 @@ #define PGT_l2_page_table (2<<29) /* using this page as an L2 page table? */ #define PGT_l3_page_table (3<<29) /* using this page as an L3 page table? */ #define PGT_l4_page_table (4<<29) /* using this page as an L4 page table? */ -#define PGT_writeable_page (5<<29) /* has writable mappings of this page? */ +#define PGT_writable_page (5<<29) /* has writable mappings of this page? */ #define PGT_type_mask (5<<29) /* Bits 29-31. */ /* Has this page been validated for use as its current type? */ _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |