Whamcloud - gitweb
LU-10365 tests: set proper paths headers for sanity test 400a
[fs/lustre-release.git] / lustre / include / uapi / linux / lustre / lustre_barrier_user.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License version 2 for more details.  A copy is
14  * included in the COPYING file that accompanied this code.
15
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2017, Intel Corporation.
24  *
25  * lustre/include/lustre/lustre_barrier_user.h
26  *
27  * Lustre write barrier (on MDT) userspace interfaces.
28  *
29  * Author: Fan, Yong <fan.yong@intel.com>
30  */
31 #ifndef _LUSTRE_BARRIER_USER_H
32 # define _LUSTRE_BARRIER_USER_H
33
34 #include <linux/types.h>
35 /*
36  * This is due to us being out of kernel and the way the OpenSFS branch
37  * handles CFLAGS.
38  */
39 #ifdef __KERNEL__
40 # include <uapi/linux/lustre/lustre_user.h>
41 #else
42 # include <linux/lustre/lustre_user.h>
43 #endif
44
45 #define BARRIER_VERSION_V1      1
46 #define BARRIER_TIMEOUT_DEFAULT 30
47
48 enum barrier_commands {
49         BC_FREEZE       = 1,
50         BC_THAW         = 2,
51         BC_STAT         = 3,
52         BC_RESCAN       = 4,
53 };
54
55 enum barrier_status {
56         BS_INIT         = 0,
57         BS_FREEZING_P1  = 1,
58         BS_FREEZING_P2  = 2,
59         BS_FROZEN       = 3,
60         BS_THAWING      = 4,
61         BS_THAWED       = 5,
62         BS_FAILED       = 6,
63         BS_EXPIRED      = 7,
64         BS_RESCAN       = 8,
65 };
66
67 struct barrier_ctl {
68         __u32   bc_version;
69         __u32   bc_cmd;
70         union {
71                 __s32   bc_timeout;
72                 __u32   bc_total;
73         };
74         union {
75                 __u32   bc_status;
76                 __u32   bc_absence;
77         };
78         char    bc_name[12];
79         __u32   bc_padding;
80 };
81
82 #endif /* _LUSTRE_BARRIER_USER_H */