Skip to content

Commit

Permalink
[PATCH] uml: compilation fix when MODE_SKAS disabled
Browse files Browse the repository at this point in the history
  CC      arch/um/sys-i386/ldt.o
arch/um/sys-i386/ldt.c:19:21: proc_mm.h: No such file or directory
make[1]: *** [arch/um/sys-i386/ldt.o] Error 1

Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Pekka Enberg authored and Linus Torvalds committed Feb 1, 2006
1 parent 1d0098b commit e8730ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/um/sys-i386/ldt.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
#include "choose-mode.h"
#include "kern.h"
#include "mode_kern.h"
#include "proc_mm.h"
#include "os.h"

extern int modify_ldt(int func, void *ptr, unsigned long bytecount);
Expand Down Expand Up @@ -90,6 +89,7 @@ static long do_modify_ldt_tt(int func, void __user *ptr,
#include "skas.h"
#include "skas_ptrace.h"
#include "asm/mmu_context.h"
#include "proc_mm.h"

long write_ldt_entry(struct mm_id * mm_idp, int func, struct user_desc * desc,
void **addr, int done)
Expand Down

0 comments on commit e8730ea

Please sign in to comment.