mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 04:31:50 +00:00
8e9205d2a5
Move Real Memory Copy Area allocation to the decompressor. As result, memcpy_real() and memcpy_real_iter() movers become usable since the very moment the kernel starts. Reviewed-by: Heiko Carstens <hca@linux.ibm.com> Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com> Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
18 lines
493 B
C
18 lines
493 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __ASM_S390_MACCESS_H
|
|
#define __ASM_S390_MACCESS_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct iov_iter;
|
|
|
|
extern unsigned long __memcpy_real_area;
|
|
extern pte_t *memcpy_real_ptep;
|
|
size_t memcpy_real_iter(struct iov_iter *iter, unsigned long src, size_t count);
|
|
int memcpy_real(void *dest, unsigned long src, size_t count);
|
|
#ifdef CONFIG_CRASH_DUMP
|
|
int copy_oldmem_kernel(void *dst, unsigned long src, size_t count);
|
|
#endif
|
|
|
|
#endif /* __ASM_S390_MACCESS_H */
|