Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at nocache-cleanup 15 lines 456 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * Helper functions for KVM guest address space mapping code 4 * 5 * Copyright IBM Corp. 2025 6 */ 7 8#ifndef _ASM_S390_GMAP_HELPERS_H 9#define _ASM_S390_GMAP_HELPERS_H 10 11void gmap_helper_zap_one_page(struct mm_struct *mm, unsigned long vmaddr); 12void gmap_helper_discard(struct mm_struct *mm, unsigned long vmaddr, unsigned long end); 13int gmap_helper_disable_cow_sharing(void); 14 15#endif /* _ASM_S390_GMAP_HELPERS_H */