Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 765a0cac authored by Heiko Carstens's avatar Heiko Carstens Committed by Martin Schwidefsky
Browse files

s390/mm: provide emtpy check_pgt_cache() function



All architectures need to provide a check_pgt_cache() function. The s390 one
got lost somewhere.
So reintroduce it to prevent future compile errors e.g. if Thomas Gleixner's
idle loop rework patches get merged.

Signed-off-by: default avatarHeiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent ea81531d
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1532,7 +1532,8 @@ extern int s390_enable_sie(void);
/*
 * No page table caches to initialise
 */
#define pgtable_cache_init()	do { } while (0)
static inline void pgtable_cache_init(void) { }
static inline void check_pgt_cache(void) { }

#include <asm-generic/pgtable.h>