archparam.h 612 B

1234567891011121314151617181920212223242526
  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
  13. /*
  14. * Overrides for Emacs so that we follow Linus's tabbing style.
  15. * Emacs will notice this stuff at the end of the file and automatically
  16. * adjust the settings for this buffer only. This must remain at the end
  17. * of the file.
  18. * ---------------------------------------------------------------------------
  19. * Local variables:
  20. * c-file-style: "linux"
  21. * End:
  22. */