You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
305 B
15 lines
305 B
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (c) 2018 FUJITSU LIMITED. All rights reserved.
|
|
* Author(s): Xiao Yang <yangx.jy@cn.fujitsu.com>
|
|
*/
|
|
|
|
#ifndef KSM_HELPER_H
|
|
#define KSM_HELPER_H
|
|
|
|
#define PATH_KSM "/sys/kernel/mm/ksm/"
|
|
|
|
void wait_ksmd_full_scan(void);
|
|
|
|
#endif /* KSM_HELPER_H */
|