# HG changeset patch # User yamahata@xxxxxxxxxxxxx # Node ID 03e1295121243a3ff53253b276e9b33030f0276f # Parent 81bc9e9fb40ddd5c4366da8f7b667363005b1f92 change the type of grant_entry_t::frame from uint32_t to unsigned long. active_grant_entry_t::frame is type of unsigned long. grant_entry_t::frame should be same type. IA64 supports 50 bits physical address in theory, 36 bits is needed with 16KBytes page size. PATCHNAME: grant_entry_t_frame_from_u32_to_unsigned_long Signed-off-by: Isaku Yamahata diff -r 81bc9e9fb40d -r 03e129512124 xen/include/public/grant_table.h --- a/xen/include/public/grant_table.h Sun Apr 9 18:23:16 2006 +0100 +++ b/xen/include/public/grant_table.h Mon Apr 10 16:39:11 2006 +0900 @@ -80,7 +80,7 @@ typedef struct grant_entry { * GTF_permit_access: Frame that @domid is allowed to map and access. [GST] * GTF_accept_transfer: Frame whose ownership transferred by @domid. [XEN] */ - uint32_t frame; + unsigned long frame; } grant_entry_t; /*