1a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich/**************************************************************************** 2a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich **************************************************************************** 3a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** 4a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** This header was automatically generated from a Linux kernel header 5a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** of the same name, to make information necessary for userspace to 6a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** call into the kernel available to libc. It contains only constants, 7a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** structures, and macros generated from the original header, and thus, 8a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** contains no copyrightable information. 9a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** 10a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** To edit the content of this header, modify the corresponding 11a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** source file (e.g. under external/kernel-headers/original/) then 12a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** run bionic/libc/kernel/tools/update_all.py 13a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** 14a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** Any manual change here will be lost the next time this script will 15a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** be run. You've been warned! 16a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** 17a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich **************************************************************************** 18a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************/ 19655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#ifndef _UAPI__DLM_PLOCK_DOT_H__ 20655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define _UAPI__DLM_PLOCK_DOT_H__ 21655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#include <linux/types.h> 22655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define DLM_PLOCK_MISC_NAME "dlm_plock" 23655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define DLM_PLOCK_VERSION_MAJOR 1 24655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define DLM_PLOCK_VERSION_MINOR 2 25655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define DLM_PLOCK_VERSION_PATCH 0 26655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengenum { 27d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao DLM_PLOCK_OP_LOCK = 1, 28d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao DLM_PLOCK_OP_UNLOCK, 29d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao DLM_PLOCK_OP_GET, 30655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng}; 31655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define DLM_PLOCK_FL_CLOSE 1 32655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengstruct dlm_plock_info { 33d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao __u32 version[3]; 34d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao __u8 optype; 35d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao __u8 ex; 36d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao __u8 wait; 37d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao __u8 flags; 38d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao __u32 pid; 39d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao __s32 nodeid; 40d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao __s32 rv; 41d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao __u32 fsid; 42d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao __u64 number; 43d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao __u64 start; 44d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao __u64 end; 45d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao __u64 owner; 46655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng}; 47a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich#endif 48