mem_relinquish.h 366 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (C) 2022 Google LLC
  4. * Author: Keir Fraser <[email protected]>
  5. */
  6. #ifndef __ASM_MEM_RELINQUISH_H
  7. #define __ASM_MEM_RELINQUISH_H
  8. struct page;
  9. bool kvm_has_memrelinquish_services(void);
  10. void page_relinquish(struct page *page);
  11. void post_page_relinquish_tlb_inv(void);
  12. #endif /* __ASM_MEM_RELINQUISH_H */