ChangeSet 1.1766, 2005/06/28 09:12:39+01:00, kaf24@xxxxxxxxxxxxxxxxxxxx
Fix build on gcc <= 3.2.
Signed-off-by: Keir Fraser <keir@xxxxxxxxxxxxx>
grant_table.c | 12 +++++++-----
1 files changed, 7 insertions(+), 5 deletions(-)
diff -Nru a/xen/common/grant_table.c b/xen/common/grant_table.c
--- a/xen/common/grant_table.c 2005-06-28 05:03:08 -04:00
+++ b/xen/common/grant_table.c 2005-06-28 05:03:08 -04:00
@@ -32,6 +32,12 @@
#include <xen/mm.h>
#include <acm/acm_hooks.h>
+#if defined(CONFIG_X86_64)
+#define GRANT_PTE_FLAGS (_PAGE_PRESENT|_PAGE_ACCESSED|_PAGE_DIRTY|_PAGE_USER)
+#else
+#define GRANT_PTE_FLAGS (_PAGE_PRESENT|_PAGE_ACCESSED|_PAGE_DIRTY)
+#endif
+
#define PIN_FAIL(_lbl, _rc, _f, _a...) \
do { \
DPRINTK( _f, ## _a ); \
@@ -258,11 +264,7 @@
{
/* Write update into the pagetable. */
l1_pgentry_t pte;
- pte = l1e_from_pfn(frame, _PAGE_PRESENT | _PAGE_ACCESSED | _PAGE_DIRTY
-#if defined(__x86_64__)
- | _PAGE_USER
-#endif
- );
+ pte = l1e_from_pfn(frame, GRANT_PTE_FLAGS);
if ( !(dev_hst_ro_flags & GNTMAP_readonly) )
l1e_add_flags(pte,_PAGE_RW);
rc = update_grant_va_mapping( host_virt_addr, pte,
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|