Used to determine whether memrelinquish services have been initialised. Bug: 240239989 Change-Id: I81dd23d8122ea54924d52b3fdc1fc4a8cdb28ea5 Signed-off-by: Keir Fraser <keirf@google.com>
16 lines
325 B
C
16 lines
325 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (C) 2022 Google LLC
|
|
* Author: Keir Fraser <keirf@google.com>
|
|
*/
|
|
|
|
#ifndef __ASM_MEM_RELINQUISH_H
|
|
#define __ASM_MEM_RELINQUISH_H
|
|
|
|
struct page;
|
|
|
|
bool kvm_has_memrelinquish_services(void);
|
|
void page_relinquish(struct page *page);
|
|
|
|
#endif /* __ASM_MEM_RELINQUISH_H */
|