maccess.h 490 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __ASM_S390_MACCESS_H
  3. #define __ASM_S390_MACCESS_H
  4. #include <linux/types.h>
  5. struct iov_iter;
  6. extern unsigned long __memcpy_real_area;
  7. void memcpy_real_init(void);
  8. size_t memcpy_real_iter(struct iov_iter *iter, unsigned long src, size_t count);
  9. int memcpy_real(void *dest, unsigned long src, size_t count);
  10. #ifdef CONFIG_CRASH_DUMP
  11. int copy_oldmem_kernel(void *dst, unsigned long src, size_t count);
  12. #endif
  13. #endif /* __ASM_S390_MACCESS_H */