Skip to content

Commit a79d1d7

Browse files
author
Fox Snowpatch
committed
1 parent ddf9a4c commit a79d1d7

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

arch/powerpc/include/asm/nohash/32/pgtable.h

+6-1
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,13 @@
5151

5252
#define USER_PTRS_PER_PGD (TASK_SIZE / PGDIR_SIZE)
5353

54+
#if defined(CONFIG_PPC_E500) && defined(CONFIG_PTE_64BIT)
55+
#define pgd_ERROR(e) \
56+
pr_err("%s:%d: bad pgd %08llx.\n", __FILE__, __LINE__, pgd_val(e))
57+
#else
5458
#define pgd_ERROR(e) \
5559
pr_err("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e))
60+
#endif
5661

5762
/*
5863
* This is the bottom of the PKMAP area with HIGHMEM or an arbitrary
@@ -170,7 +175,7 @@ static inline void pmd_clear(pmd_t *pmdp)
170175
#define pmd_pfn(pmd) (pmd_val(pmd) >> PAGE_SHIFT)
171176
#else
172177
#define pmd_page_vaddr(pmd) \
173-
((const void *)(pmd_val(pmd) & ~(PTE_TABLE_SIZE - 1)))
178+
((const void *)((unsigned long)pmd_val(pmd) & ~(PTE_TABLE_SIZE - 1)))
174179
#define pmd_pfn(pmd) (__pa(pmd_val(pmd)) >> PAGE_SHIFT)
175180
#endif
176181

arch/powerpc/include/asm/pgtable-types.h

+8-2
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,20 @@ static inline unsigned long pud_val(pud_t x)
5151
/* PGD level */
5252
#if defined(CONFIG_PPC_E500) && defined(CONFIG_PTE_64BIT)
5353
typedef struct { unsigned long long pgd; } pgd_t;
54+
55+
static inline unsigned long long pgd_val(pgd_t x)
56+
{
57+
return x.pgd;
58+
}
5459
#else
5560
typedef struct { unsigned long pgd; } pgd_t;
56-
#endif
57-
#define __pgd(x) ((pgd_t) { (x) })
61+
5862
static inline unsigned long pgd_val(pgd_t x)
5963
{
6064
return x.pgd;
6165
}
66+
#endif
67+
#define __pgd(x) ((pgd_t) { (x) })
6268

6369
/* Page protection bits */
6470
typedef struct { unsigned long pgprot; } pgprot_t;

0 commit comments

Comments
 (0)