Revision 2585cf9dfaaddf00b069673f27bb3f8530e2039c authored by Linus Torvalds on 12 December 2021, 22:53:01 UTC, committed by Linus Torvalds on 12 December 2021, 22:53:01 UTC
1 parent 90d9fbc
Raw File
kmap_size.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _ASM_GENERIC_KMAP_SIZE_H
#define _ASM_GENERIC_KMAP_SIZE_H

/* For debug this provides guard pages between the maps */
#ifdef CONFIG_DEBUG_KMAP_LOCAL
# define KM_MAX_IDX	33
#else
# define KM_MAX_IDX	16
#endif

#endif
back to top