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 _DLM_NETLINK_H
20655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define _DLM_NETLINK_H
21655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#include <linux/types.h>
221308ad3ab33294c3abfd96da12b6df58b381ce52Christopher Ferris#include <linux/dlmconstants.h>
23655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengenum {
24d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  DLM_STATUS_WAITING = 1,
25d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  DLM_STATUS_GRANTED = 2,
26d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  DLM_STATUS_CONVERT = 3,
27655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng};
28655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define DLM_LOCK_DATA_VERSION 1
29655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengstruct dlm_lock_data {
30d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u16 version;
31d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u32 lockspace_id;
32d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  int nodeid;
33d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  int ownpid;
34d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u32 id;
35d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u32 remid;
36d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u64 xid;
37d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __s8 status;
38d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __s8 grmode;
39d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __s8 rqmode;
40d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  unsigned long timestamp;
41d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  int resource_namelen;
42d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  char resource_name[DLM_RESNAME_MAXLEN];
43655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng};
44655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengenum {
45d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  DLM_CMD_UNSPEC = 0,
46d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  DLM_CMD_HELLO,
47d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  DLM_CMD_TIMEOUT,
48d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __DLM_CMD_MAX,
49655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng};
50655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define DLM_CMD_MAX (__DLM_CMD_MAX - 1)
51655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengenum {
52d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  DLM_TYPE_UNSPEC = 0,
53d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  DLM_TYPE_LOCK,
54d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __DLM_TYPE_MAX,
55655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng};
56655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define DLM_TYPE_MAX (__DLM_TYPE_MAX - 1)
57655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define DLM_GENL_VERSION 0x1
58655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define DLM_GENL_NAME "DLM"
59a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich#endif
60