Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 123113
b: refs/heads/master
c: 2ca8cf7
h: refs/heads/master
i:
  123111: f6acbe1
v: v3
  • Loading branch information
Benjamin Herrenschmidt authored and Paul Mackerras committed Dec 21, 2008
1 parent f9edb52 commit 11b10d6
Show file tree
Hide file tree
Showing 7 changed files with 235 additions and 55 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5e696617c425eb97bd943d781f3941fb1e8f0e5b
refs/heads/master: 2ca8cf738907180e7fbda90f25f32b86feda609f
5 changes: 3 additions & 2 deletions trunk/arch/powerpc/include/asm/mmu-40x.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,9 @@
#ifndef __ASSEMBLY__

typedef struct {
unsigned long id;
unsigned long vdso_base;
unsigned int id;
unsigned int active;
unsigned long vdso_base;
} mm_context_t;

#endif /* !__ASSEMBLY__ */
Expand Down
5 changes: 3 additions & 2 deletions trunk/arch/powerpc/include/asm/mmu-44x.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,9 @@
extern unsigned int tlb_44x_hwater;

typedef struct {
unsigned long id;
unsigned long vdso_base;
unsigned int id;
unsigned int active;
unsigned long vdso_base;
} mm_context_t;

#endif /* !__ASSEMBLY__ */
Expand Down
3 changes: 2 additions & 1 deletion trunk/arch/powerpc/include/asm/mmu-8xx.h
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,8 @@

#ifndef __ASSEMBLY__
typedef struct {
unsigned long id;
unsigned int id;
unsigned int active;
unsigned long vdso_base;
} mm_context_t;
#endif /* !__ASSEMBLY__ */
Expand Down
5 changes: 3 additions & 2 deletions trunk/arch/powerpc/include/asm/mmu-fsl-booke.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,9 @@
#ifndef __ASSEMBLY__

typedef struct {
unsigned long id;
unsigned long vdso_base;
unsigned int id;
unsigned int active;
unsigned long vdso_base;
} mm_context_t;
#endif /* !__ASSEMBLY__ */

Expand Down
2 changes: 2 additions & 0 deletions trunk/arch/powerpc/include/asm/tlbflush.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@

#include <linux/mm.h>

#define MMU_NO_CONTEXT ((unsigned int)-1)

extern void _tlbie(unsigned long address, unsigned int pid);
extern void _tlbil_all(void);
extern void _tlbil_pid(unsigned int pid);
Expand Down
Loading

0 comments on commit 11b10d6

Please sign in to comment.