archparam.h 299 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (C) 2000 - 2003 Jeff Dike (jdike@addtoit.com)
  3. * Copyright 2003 PathScale, Inc.
  4. * Licensed under the GPL
  5. */
  6. #ifndef __UM_ARCHPARAM_H
  7. #define __UM_ARCHPARAM_H
  8. #ifdef CONFIG_X86_32
  9. #ifdef CONFIG_X86_PAE
  10. #define LAST_PKMAP 512
  11. #else
  12. #define LAST_PKMAP 1024
  13. #endif
  14. #endif
  15. #endif