diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2011-08-18 20:02:59 +0100 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2011-11-02 14:14:50 +0100 |
commit | 27f85f12639fe821375a69900d96e0fbcc1450bf (patch) | |
tree | 9ca3ae7471b85059cd2c458569d3fc117c2ca670 /arch/um/sys-x86/asm/archparam.h | |
parent | 3655c4d3c4bc105a36080c665b7294f471b0a1de (diff) |
um: merge arch/um/sys-{i386,x86_64}/asm
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'arch/um/sys-x86/asm/archparam.h')
-rw-r--r-- | arch/um/sys-x86/asm/archparam.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/arch/um/sys-x86/asm/archparam.h b/arch/um/sys-x86/asm/archparam.h new file mode 100644 index 00000000000..c17cf68dda0 --- /dev/null +++ b/arch/um/sys-x86/asm/archparam.h @@ -0,0 +1,20 @@ +/* + * Copyright (C) 2000 - 2003 Jeff Dike (jdike@addtoit.com) + * Copyright 2003 PathScale, Inc. + * Licensed under the GPL + */ + +#ifndef __UM_ARCHPARAM_H +#define __UM_ARCHPARAM_H + +#ifdef CONFIG_X86_32 + +#ifdef CONFIG_X86_PAE +#define LAST_PKMAP 512 +#else +#define LAST_PKMAP 1024 +#endif + +#endif + +#endif |