Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 24009
b: refs/heads/master
c: 0157903
h: refs/heads/master
i:
  24007: cfbd5f7
v: v3
  • Loading branch information
Hyok S. Choi authored and Russell King committed Mar 21, 2006
1 parent f02036d commit 311eb0c
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f24284adcdeae963aacf0c9b17979c875069cd80
refs/heads/master: 0157903e840f970c90880426505cbb8be5ddde68
9 changes: 9 additions & 0 deletions trunk/include/asm-arm/tlb.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@

#include <asm/cacheflush.h>
#include <asm/tlbflush.h>

#ifndef CONFIG_MMU

#include <linux/pagemap.h>
#include <asm-generic/tlb.h>

#else /* !CONFIG_MMU */

#include <asm/pgalloc.h>

/*
Expand Down Expand Up @@ -82,4 +90,5 @@ tlb_end_vma(struct mmu_gather *tlb, struct vm_area_struct *vma)

#define tlb_migrate_finish(mm) do { } while (0)

#endif /* CONFIG_MMU */
#endif
9 changes: 9 additions & 0 deletions trunk/include/asm-arm/tlbflush.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@
#define _ASMARM_TLBFLUSH_H

#include <linux/config.h>

#ifndef CONFIG_MMU

#define tlb_flush(tlb) ((void) tlb)

#else /* CONFIG_MMY */

#include <asm/glue.h>

#define TLB_V3_PAGE (1 << 0)
Expand Down Expand Up @@ -423,4 +430,6 @@ extern void update_mmu_cache(struct vm_area_struct *vma, unsigned long addr, pte

#endif

#endif /* CONFIG_MMU */

#endif

0 comments on commit 311eb0c

Please sign in to comment.