archparam.h 246 B

12345678910111213141516
  1. /*
  2. * Copyright (C) 2000 - 2003 Jeff Dike (jdike@addtoit.com)
  3. * Licensed under the GPL
  4. */
  5. #ifndef __UM_ARCHPARAM_I386_H
  6. #define __UM_ARCHPARAM_I386_H
  7. #ifdef CONFIG_X86_PAE
  8. #define LAST_PKMAP 512
  9. #else
  10. #define LAST_PKMAP 1024
  11. #endif
  12. #endif