From: Ian Campbell Date: Thu, 8 Aug 2013 12:15:10 +0000 (+0100) Subject: xen: arm: Rename page table "hint" field to slightly more descriptive "contig" X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~6500 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=0377ab4da3613b59b648a98a6faeb4cfa10894bb;p=xen.git xen: arm: Rename page table "hint" field to slightly more descriptive "contig" Signed-off-by: Ian Campbell Acked-by: Stefano Stabellini --- diff --git a/xen/arch/arm/mm.c b/xen/arch/arm/mm.c index f301e656c0..a4d65d83f3 100644 --- a/xen/arch/arm/mm.c +++ b/xen/arch/arm/mm.c @@ -526,7 +526,7 @@ static void __init create_mappings(unsigned long virt, count = nr_mfns / LPAE_ENTRIES; p = xen_second + second_linear_offset(virt); pte = mfn_to_xen_entry(base_mfn); - pte.pt.hint = 1; /* These maps are in 16-entry contiguous chunks. */ + pte.pt.contig = 1; /* These maps are in 16-entry contiguous chunks. */ for ( i = 0; i < count; i++ ) { write_pte(p + i, pte); diff --git a/xen/include/asm-arm/page.h b/xen/include/asm-arm/page.h index 93bb8c0132..3d0f8a97f0 100644 --- a/xen/include/asm-arm/page.h +++ b/xen/include/asm-arm/page.h @@ -115,7 +115,7 @@ typedef struct { /* These seven bits are only used in Block entries and are ignored * in Table entries. */ - unsigned long hint:1; /* In a block of 16 contiguous entries */ + unsigned long contig:1; /* In a block of 16 contiguous entries */ unsigned long pxn:1; /* Privileged-XN */ unsigned long xn:1; /* eXecute-Never */ unsigned long avail:4; /* Ignored by hardware */ @@ -150,7 +150,7 @@ typedef struct { /* These seven bits are only used in Block entries and are ignored * in Table entries. */ - unsigned long hint:1; /* In a block of 16 contiguous entries */ + unsigned long contig:1; /* In a block of 16 contiguous entries */ unsigned long sbz2:1; unsigned long xn:1; /* eXecute-Never */ unsigned long avail:4; /* Ignored by hardware */