Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 72356
b: refs/heads/master
c: 7035302
h: refs/heads/master
v: v3
  • Loading branch information
Chris Snook authored and Thomas Gleixner committed Oct 23, 2007
1 parent ee7b675 commit b2dac07
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 44 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: 4d022adab4511892226f1eae00a44502bf685ae5
refs/heads/master: 703530238b580d69d4a112d3ab3d58c0eb1e7246
26 changes: 22 additions & 4 deletions trunk/include/asm-x86/mmu.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
#ifdef CONFIG_X86_32
# include "mmu_32.h"
#else
# include "mmu_64.h"
#ifndef _ASM_X86_MMU_H
#define _ASM_X86_MMU_H

#include <linux/spinlock.h>
#include <linux/mutex.h>

/*
* The x86 doesn't have a mmu context, but
* we put the segment information here.
*
* cpu_vm_mask is used to optimize ldt flushing.
*/
typedef struct {
void *ldt;
#ifdef CONFIG_X86_64
rwlock_t ldtlock;
#endif
int size;
struct mutex lock;
void *vdso;
} mm_context_t;

#endif /* _ASM_X86_MMU_H */
18 changes: 0 additions & 18 deletions trunk/include/asm-x86/mmu_32.h

This file was deleted.

21 changes: 0 additions & 21 deletions trunk/include/asm-x86/mmu_64.h

This file was deleted.

0 comments on commit b2dac07

Please sign in to comment.