1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux 1 2 /********************************************* 3 ********************************************** 4 ** 5 ** Copyright (C) Sistina Software, Inc. 1997 6 ** Copyright (C) 2004-2007 Red Hat, Inc. All 7 ** 8 ** This copyrighted material is made availabl 9 ** modify, copy, or redistribute it subject t 10 ** of the GNU General Public License v.2. 11 ** 12 ********************************************** 13 ********************************************** 14 15 #ifndef __DLMCONSTANTS_DOT_H__ 16 #define __DLMCONSTANTS_DOT_H__ 17 18 /* 19 * Constants used by DLM interface. 20 */ 21 22 #define DLM_LOCKSPACE_LEN 64 23 #define DLM_RESNAME_MAXLEN 64 24 25 26 /* 27 * Lock Modes 28 */ 29 30 #define DLM_LOCK_IV (-1) /* inv 31 #define DLM_LOCK_NL 0 /* nul 32 #define DLM_LOCK_CR 1 /* con 33 #define DLM_LOCK_CW 2 /* con 34 #define DLM_LOCK_PR 3 /* pro 35 #define DLM_LOCK_PW 4 /* pro 36 #define DLM_LOCK_EX 5 /* exc 37 38 39 /* 40 * Flags to dlm_lock 41 * 42 * DLM_LKF_NOQUEUE 43 * 44 * Do not queue the lock request on the wait q 45 * immediately. If the lock cannot be granted 46 * either return -EAGAIN from the dlm_lock cal 47 * dlm_lock and -EAGAIN in the lock status blo 48 * 49 * DLM_LKF_CANCEL 50 * 51 * Used to cancel a pending lock request or co 52 * returned to its previously granted mode. 53 * 54 * DLM_LKF_CONVERT 55 * 56 * Indicates a lock conversion request. For c 57 * are ignored and the lock ID in the LKSB is 58 * 59 * DLM_LKF_VALBLK 60 * 61 * Requests DLM to return the current contents 62 * lock status block. When this flag is set i 63 * modes, DLM assigns the value specified in t 64 * value block of the lock resource. The LVB 65 * containing application-specific information 66 * 67 * DLM_LKF_QUECVT 68 * 69 * Force a conversion request to be queued, ev 70 * the granted modes of other locks on the sam 71 * 72 * DLM_LKF_IVVALBLK 73 * 74 * Invalidate the lock value block. 75 * 76 * DLM_LKF_CONVDEADLK 77 * 78 * Allows the dlm to resolve conversion deadlo 79 * granted mode of a converting lock to NL. T 80 * returned for a conversion that's been effec 81 * 82 * DLM_LKF_PERSISTENT 83 * 84 * Only relevant to locks originating in users 85 * be removed if the process holding the lock 86 * 87 * DLM_LKF_NODLCKWT 88 * 89 * Do not cancel the lock if it gets into conv 90 * 91 * DLM_LKF_NODLCKBLK 92 * 93 * net yet implemented 94 * 95 * DLM_LKF_EXPEDITE 96 * 97 * Used only with new requests for NL mode loc 98 * to grant the lock, ignoring other locks in 99 * 100 * DLM_LKF_NOQUEUEBAST 101 * 102 * Send blocking AST's before returning -EAGAI 103 * used along with the NOQUEUE flag. Blocking 104 * NOQUEUE requests otherwise. 105 * 106 * DLM_LKF_HEADQUE 107 * 108 * Add a lock to the head of the convert or wa 109 * 110 * DLM_LKF_NOORDER 111 * 112 * Disregard the standard grant order rules an 113 * is compatible with other granted locks. 114 * 115 * DLM_LKF_ORPHAN 116 * 117 * Acquire an orphan lock. 118 * 119 * DLM_LKF_ALTPR 120 * 121 * If the requested mode cannot be granted imm 122 * in PR mode instead. If this alternate mode 123 * requested mode, DLM_SBF_ALTMODE is returned 124 * 125 * DLM_LKF_ALTCW 126 * 127 * The same as ALTPR, but the alternate mode i 128 * 129 * DLM_LKF_FORCEUNLOCK 130 * 131 * Unlock the lock even if it is converting or 132 * Only really for use by the userland device. 133 * 134 * DLM_LKF_TIMEOUT 135 * 136 * This value is deprecated and reserved. DO N 137 * 138 */ 139 140 #define DLM_LKF_NOQUEUE 0x00000001 141 #define DLM_LKF_CANCEL 0x00000002 142 #define DLM_LKF_CONVERT 0x00000004 143 #define DLM_LKF_VALBLK 0x00000008 144 #define DLM_LKF_QUECVT 0x00000010 145 #define DLM_LKF_IVVALBLK 0x00000020 146 #define DLM_LKF_CONVDEADLK 0x00000040 147 #define DLM_LKF_PERSISTENT 0x00000080 148 #define DLM_LKF_NODLCKWT 0x00000100 149 #define DLM_LKF_NODLCKBLK 0x00000200 150 #define DLM_LKF_EXPEDITE 0x00000400 151 #define DLM_LKF_NOQUEUEBAST 0x00000800 152 #define DLM_LKF_HEADQUE 0x00001000 153 #define DLM_LKF_NOORDER 0x00002000 154 #define DLM_LKF_ORPHAN 0x00004000 155 #define DLM_LKF_ALTPR 0x00008000 156 #define DLM_LKF_ALTCW 0x00010000 157 #define DLM_LKF_FORCEUNLOCK 0x00020000 158 #define DLM_LKF_TIMEOUT 0x00040000 159 160 /* 161 * Some return codes that are not in errno.h 162 */ 163 164 #define DLM_ECANCEL 0x10001 165 #define DLM_EUNLOCK 0x10002 166 167 #endif /* __DLMCONSTANTS_DOT_H__ */ 168
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.