kmap_size.h 263 B

123456789101112
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _ASM_GENERIC_KMAP_SIZE_H
  3. #define _ASM_GENERIC_KMAP_SIZE_H
  4. /* For debug this provides guard pages between the maps */
  5. #ifdef CONFIG_DEBUG_KMAP_LOCAL
  6. # define KM_MAX_IDX 33
  7. #else
  8. # define KM_MAX_IDX 16
  9. #endif
  10. #endif