mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
786cca8892
The implementation of the cache flushing interfaces on the s390 is identical with the default implementation in asm-generic. Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
11 lines
274 B
C
11 lines
274 B
C
#ifndef _S390_CACHEFLUSH_H
|
|
#define _S390_CACHEFLUSH_H
|
|
|
|
/* Caches aren't brain-dead on the s390. */
|
|
#include <asm-generic/cacheflush.h>
|
|
|
|
#ifdef CONFIG_DEBUG_PAGEALLOC
|
|
void kernel_map_pages(struct page *page, int numpages, int enable);
|
|
#endif
|
|
|
|
#endif /* _S390_CACHEFLUSH_H */
|