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.
17 lines
322 B
17 lines
322 B
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (c) 2018 FUJITSU LIMITED. All rights reserved.
|
|
* Author: Xiao Yang <yangx.jy@cn.fujitsu.com>
|
|
*/
|
|
|
|
#ifndef LAPI_MLOCK2_H__
|
|
# define LAPI_MLOCK2_H__
|
|
|
|
#include <linux/mman.h>
|
|
|
|
#ifndef MLOCK_ONFAULT
|
|
# define MLOCK_ONFAULT 0x01
|
|
#endif
|
|
|
|
#endif /* LAPI_MLOCK2_H__ */
|