aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDavid Teigland <teigland@redhat.com>2006-02-23 04:56:38 -0500
committerSteven Whitehouse <swhiteho@redhat.com>2006-02-23 04:56:38 -0500
commit3bcd3687f895f178fa8480a7bcc47a363817354a (patch)
tree13e64d5b9576b47401620aaada846f3c9c874cda /include
parentd35462b4bb847b68321c55e95c926aa485aecce2 (diff)
[DLM] Remove range locks from the DLM
This patch removes support for range locking from the DLM Signed-off-by: David Teigland <teigland@redhat.com> Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/linux/dlm.h12
-rw-r--r--include/linux/dlm_device.h3
2 files changed, 2 insertions, 13 deletions
diff --git a/include/linux/dlm.h b/include/linux/dlm.h
index dd324ba44d80..1b1dcb9a40bb 100644
--- a/include/linux/dlm.h
+++ b/include/linux/dlm.h
@@ -160,15 +160,6 @@
160typedef void dlm_lockspace_t; 160typedef void dlm_lockspace_t;
161 161
162/* 162/*
163 * Lock range structure
164 */
165
166struct dlm_range {
167 uint64_t ra_start;
168 uint64_t ra_end;
169};
170
171/*
172 * Lock status block 163 * Lock status block
173 * 164 *
174 * Use this structure to specify the contents of the lock value block. For a 165 * Use this structure to specify the contents of the lock value block. For a
@@ -277,8 +268,7 @@ int dlm_lock(dlm_lockspace_t *lockspace,
277 uint32_t parent_lkid, 268 uint32_t parent_lkid,
278 void (*lockast) (void *astarg), 269 void (*lockast) (void *astarg),
279 void *astarg, 270 void *astarg,
280 void (*bast) (void *astarg, int mode), 271 void (*bast) (void *astarg, int mode));
281 struct dlm_range *range);
282 272
283/* 273/*
284 * dlm_unlock 274 * dlm_unlock
diff --git a/include/linux/dlm_device.h b/include/linux/dlm_device.h
index 5e17d295544b..f8ba1981aa96 100644
--- a/include/linux/dlm_device.h
+++ b/include/linux/dlm_device.h
@@ -18,7 +18,7 @@
18#define DLM_USER_LVB_LEN 32 18#define DLM_USER_LVB_LEN 32
19 19
20/* Version of the device interface */ 20/* Version of the device interface */
21#define DLM_DEVICE_VERSION_MAJOR 3 21#define DLM_DEVICE_VERSION_MAJOR 4
22#define DLM_DEVICE_VERSION_MINOR 0 22#define DLM_DEVICE_VERSION_MINOR 0
23#define DLM_DEVICE_VERSION_PATCH 0 23#define DLM_DEVICE_VERSION_PATCH 0
24 24
@@ -28,7 +28,6 @@ struct dlm_lock_params {
28 __u16 flags; 28 __u16 flags;
29 __u32 lkid; 29 __u32 lkid;
30 __u32 parent; 30 __u32 parent;
31 struct dlm_range range;
32 __u8 namelen; 31 __u8 namelen;
33 void __user *castparam; 32 void __user *castparam;
34 void __user *castaddr; 33 void __user *castaddr;