Whamcloud - gitweb
b3acada8e43e234b9fe0d388d2537ed850e1fe4c
[fs/lustre-release.git] / lustre / include / linux / lustre_idl.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2001 Cluster File Systems, Inc. <braam@clusterfs.com>
5  *
6  *   This file is part of Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  * (Un)packing of OST requests
22  *
23  * We assume all nodes are either little-endian or big-endian, and we
24  * always send messages in the sender's native format.  The receiver
25  * detects the message format by checking the 'magic' field of the message
26  * (see lustre_msg_swabbed() below).
27  *
28  * Each wire type has corresponding 'lustre_swab_xxxtypexxx()' routines,
29  * implemented either here, inline (trivial implementations) or in
30  * ptlrpc/pack_generic.c.  These 'swabbers' convert the type from "other"
31  * endian, in-place in the message buffer.
32  * 
33  * A swabber takes a single pointer argument.  The caller must already have
34  * verified that the length of the message buffer >= sizeof (type).  
35  *
36  * For variable length types, a second 'lustre_swab_v_xxxtypexxx()' routine
37  * may be defined that swabs just the variable part, after the caller has
38  * verified that the message buffer is large enough.
39  */
40
41 #ifndef _LUSTRE_IDL_H_
42 #define _LUSTRE_IDL_H_
43
44 #ifdef __KERNEL__
45 # include <linux/ioctl.h>
46 # include <asm/types.h>
47 # include <linux/types.h>
48 # include <linux/list.h>
49 # include <linux/string.h> /* for strncpy, below */
50 # include <asm/byteorder.h>
51 #else
52 #ifdef __CYGWIN__
53 # include <sys/types.h>
54 #else
55 # include <asm/types.h>
56 # include <stdint.h>
57 #endif
58 # include <portals/list.h>
59 #endif
60 /*
61  * this file contains all data structures used in Lustre interfaces:
62  * - obdo and obd_request records
63  * - mds_request records
64  * - ldlm data
65  * - ioctl's
66  */
67
68 /*
69  *  GENERAL STUFF
70  */
71 struct obd_uuid {
72         __u8 uuid[37];
73 };
74
75 static inline int obd_uuid_equals(struct obd_uuid *u1, struct obd_uuid *u2)
76 {
77         return strcmp(u1->uuid, u2->uuid) == 0;
78 }
79
80 static inline void obd_str2uuid(struct obd_uuid *uuid, char *tmp)
81 {
82         strncpy(uuid->uuid, tmp, sizeof(*uuid));
83         uuid->uuid[sizeof(*uuid) - 1] = '\0';
84 }
85
86 extern struct obd_uuid lctl_fake_uuid;
87
88 /* FOO_REQUEST_PORTAL is for incoming requests on the FOO
89  * FOO_REPLY_PORTAL   is for incoming replies on the FOO
90  * FOO_BULK_PORTAL    is for incoming bulk on the FOO
91  */
92
93 #define CONNMGR_REQUEST_PORTAL  1
94 #define CONNMGR_REPLY_PORTAL    2
95 //#define OSC_REQUEST_PORTAL      3
96 #define OSC_REPLY_PORTAL        4
97 //#define OSC_BULK_PORTAL         5
98 #define OST_REQUEST_PORTAL      6
99 //#define OST_REPLY_PORTAL        7
100 #define OST_BULK_PORTAL         8
101 //#define MDC_REQUEST_PORTAL      9
102 #define MDC_REPLY_PORTAL        10
103 //#define MDC_BULK_PORTAL         11
104 #define MDS_REQUEST_PORTAL      12
105 //#define MDS_REPLY_PORTAL        13
106 #define MDS_BULK_PORTAL         14
107 #define LDLM_CB_REQUEST_PORTAL     15
108 #define LDLM_CB_REPLY_PORTAL       16
109 #define LDLM_CANCEL_REQUEST_PORTAL     17
110 #define LDLM_CANCEL_REPLY_PORTAL       18
111 #define PTLBD_REQUEST_PORTAL           19
112 #define PTLBD_REPLY_PORTAL             20
113 #define PTLBD_BULK_PORTAL              21
114 #define MDS_SETATTR_PORTAL      22
115 #define MDS_READPAGE_PORTAL     23
116
117 #define SVC_KILLED               1
118 #define SVC_EVENT                2
119 #define SVC_SIGNAL               4
120 #define SVC_RUNNING              8
121 #define SVC_STOPPING            16
122 #define SVC_STOPPED             32
123
124 #define LUSTRE_CONN_NEW          1
125 #define LUSTRE_CONN_CON          2
126 #define LUSTRE_CONN_NOTCONN      3
127 #define LUSTRE_CONN_RECOVD       4
128 #define LUSTRE_CONN_FULL         5
129
130 /* packet types */
131 #define PTL_RPC_MSG_REQUEST 4711
132 #define PTL_RPC_MSG_ERR     4712
133 #define PTL_RPC_MSG_REPLY   4713
134
135 #define PTLRPC_MSG_MAGIC    0x0BD00BD0
136 #define PTLRPC_MSG_VERSION  0x00040002
137
138 struct lustre_handle {
139         __u64 cookie;
140 };
141 #define DEAD_HANDLE_MAGIC 0xdeadbeefcafebabe
142
143 /* we depend on this structure to be 8-byte aligned */
144 /* this type is only endian-adjusted in lustre_unpack_msg() */
145 struct lustre_msg {
146         struct lustre_handle handle;
147         __u32 magic;
148         __u32 type;
149         __u32 version;
150         __u32 opc;
151         __u64 last_xid;
152         __u64 last_committed;
153         __u64 transno;
154         __u32 status;
155         __u32 flags;
156         __u32 bufcount;
157         __u32 buflens[0];
158 };
159
160 static inline int lustre_msg_swabbed (struct lustre_msg *msg)
161 {
162         return (msg->magic == __swab32 (PTLRPC_MSG_MAGIC));
163 }
164
165 /* Flags that are operation-specific go in the top 16 bits. */
166 #define MSG_OP_FLAG_MASK   0xffff0000
167 #define MSG_OP_FLAG_SHIFT  16
168
169 /* Flags that apply to all requests are in the bottom 16 bits */
170 #define MSG_GEN_FLAG_MASK      0x0000ffff
171 #define MSG_LAST_REPLAY        1
172 #define MSG_RESENT             2
173
174 static inline int lustre_msg_get_flags(struct lustre_msg *msg)
175 {
176         return (msg->flags & MSG_GEN_FLAG_MASK);
177 }
178
179 static inline void lustre_msg_add_flags(struct lustre_msg *msg, int flags)
180 {
181         msg->flags |= MSG_GEN_FLAG_MASK & flags;
182 }
183
184 static inline void lustre_msg_set_flags(struct lustre_msg *msg, int flags)
185 {
186         msg->flags &= ~MSG_GEN_FLAG_MASK;
187         lustre_msg_add_flags(msg, flags);
188 }
189
190 static inline int lustre_msg_get_op_flags(struct lustre_msg *msg)
191 {
192         return (msg->flags >> MSG_OP_FLAG_SHIFT);
193 }
194
195 static inline void lustre_msg_add_op_flags(struct lustre_msg *msg, int flags)
196 {
197         msg->flags |= ((flags & MSG_GEN_FLAG_MASK) << MSG_OP_FLAG_SHIFT);
198 }
199
200 static inline void lustre_msg_set_op_flags(struct lustre_msg *msg, int flags)
201 {
202         msg->flags &= ~MSG_OP_FLAG_MASK;
203         lustre_msg_add_op_flags(msg, flags);
204 }
205
206 /*
207  * Flags for all connect opcodes (MDS_CONNECT, OST_CONNECT)
208  */
209
210 #define MSG_CONNECT_RECOVERING 0x1
211 #define MSG_CONNECT_RECONNECT  0x2
212 #define MSG_CONNECT_REPLAYABLE  0x4
213
214 /*
215  *   OST requests: OBDO & OBD request records
216  */
217
218 /* opcodes */
219 #define OST_REPLY       0        /* reply ? */
220 #define OST_GETATTR     1
221 #define OST_SETATTR     2
222 #define OST_READ        3
223 #define OST_WRITE       4
224 #define OST_CREATE      5
225 #define OST_DESTROY     6
226 #define OST_GET_INFO    7
227 #define OST_CONNECT     8
228 #define OST_DISCONNECT  9
229 #define OST_PUNCH      10
230 #define OST_OPEN       11
231 #define OST_CLOSE      12
232 #define OST_STATFS     13
233 #define OST_SAN_READ   14
234 #define OST_SAN_WRITE  15
235 #define OST_SYNCFS     16
236 /* When adding OST RPC opcodes, please update 
237  * LAST/FIRST macros used in ptlrpc/ptlrpc_internals.h */
238 #define OST_LAST_OPC   (OST_SYNCFS+1)
239 #define OST_FIRST_OPC  OST_REPLY
240
241
242 typedef uint64_t        obd_id;
243 typedef uint64_t        obd_gr;
244 typedef uint64_t        obd_time;
245 typedef uint64_t        obd_size;
246 typedef uint64_t        obd_off;
247 typedef uint64_t        obd_blocks;
248 typedef uint32_t        obd_blksize;
249 typedef uint32_t        obd_mode;
250 typedef uint32_t        obd_uid;
251 typedef uint32_t        obd_gid;
252 typedef uint64_t        obd_rdev;
253 typedef uint32_t        obd_flag;
254 typedef uint32_t        obd_count;
255
256 #define OBD_FL_INLINEDATA       (0x00000001)
257 #define OBD_FL_OBDMDEXISTS      (0x00000002)
258
259 #define OBD_INLINESZ    60
260 #define FD_OSTDATA_SIZE sizeof(struct obd_client_handle)
261
262 /* Note: 64-bit types are 64-bit aligned in structure */
263 struct obdo {
264         obd_id                  o_id;
265         obd_gr                  o_gr;
266         obd_time                o_atime;
267         obd_time                o_mtime;
268         obd_time                o_ctime;
269         obd_size                o_size;
270         obd_blocks              o_blocks;
271         obd_rdev                o_rdev;
272         obd_blksize             o_blksize;      /* optimal IO blocksize */
273         obd_mode                o_mode;
274         obd_uid                 o_uid;
275         obd_gid                 o_gid;
276         obd_flag                o_flags;
277         obd_count               o_nlink;
278         obd_count               o_generation;
279         obd_flag                o_valid;        /* hot fields in this obdo */
280         obd_flag                o_obdflags;
281         __u32                   o_easize;
282         char                    o_inline[OBD_INLINESZ];
283 };
284
285 extern void lustre_swab_obdo (struct obdo *o);
286
287 struct lov_object_id { /* per-child structure */
288         __u64 l_object_id;
289 };
290
291 #define LOV_MAGIC  0x0BD00BD0
292
293 struct lov_mds_md {
294         __u32 lmm_magic;
295         __u64 lmm_object_id;       /* lov object id */
296         __u32 lmm_stripe_size;     /* size of the stripe */
297         __u32 lmm_stripe_offset;   /* starting stripe offset in lmm_objects */
298         __u16 lmm_stripe_count;    /* number of stipes in use for this object */
299         __u16 lmm_ost_count;       /* how many OST idx are in this LOV md */
300         struct lov_object_id lmm_objects[0];
301 };
302
303 #define OBD_MD_FLALL    (0xffffffff)
304 #define OBD_MD_FLID     (0x00000001)    /* object ID */
305 #define OBD_MD_FLATIME  (0x00000002)    /* access time */
306 #define OBD_MD_FLMTIME  (0x00000004)    /* data modification time */
307 #define OBD_MD_FLCTIME  (0x00000008)    /* change time */
308 #define OBD_MD_FLSIZE   (0x00000010)    /* size */
309 #define OBD_MD_FLBLOCKS (0x00000020)    /* allocated blocks count */
310 #define OBD_MD_FLBLKSZ  (0x00000040)    /* block size */
311 #define OBD_MD_FLMODE   (0x00000080)    /* access bits (mode & ~S_IFMT) */
312 #define OBD_MD_FLTYPE   (0x00000100)    /* object type (mode & S_IFMT) */
313 #define OBD_MD_FLUID    (0x00000200)    /* user ID */
314 #define OBD_MD_FLGID    (0x00000400)    /* group ID */
315 #define OBD_MD_FLFLAGS  (0x00000800)    /* flags word */
316 #define OBD_MD_FLOBDFLG (0x00001000)
317 #define OBD_MD_FLNLINK  (0x00002000)    /* link count */
318 #define OBD_MD_FLGENER  (0x00004000)    /* generation number */
319 #define OBD_MD_FLINLINE (0x00008000)    /* inline data */
320 #define OBD_MD_FLRDEV   (0x00010000)    /* device number */
321 #define OBD_MD_FLEASIZE (0x00020000)    /* extended attribute data */
322 #define OBD_MD_LINKNAME (0x00040000)    /* symbolic link target */
323 #define OBD_MD_FLHANDLE (0x00080000)    /* file handle */
324 #define OBD_MD_FLCKSUM  (0x00100000)    /* bulk data checksum */
325 #define OBD_MD_FLNOTOBD (~(OBD_MD_FLOBDFLG | OBD_MD_FLBLOCKS | OBD_MD_LINKNAME|\
326                            OBD_MD_FLEASIZE | OBD_MD_FLHANDLE | OBD_MD_FLCKSUM))
327
328 struct obd_statfs {
329         __u64           os_type;
330         __u64           os_blocks;
331         __u64           os_bfree;
332         __u64           os_bavail;
333         __u64           os_files;
334         __u64           os_ffree;
335         __u8            os_fsid[40];
336         __u32           os_bsize;
337         __u32           os_namelen;
338         __u64           os_maxbytes;
339         __u32           os_spare[10];
340 };
341
342 extern void lustre_swab_obd_statfs (struct obd_statfs *os);
343
344 /* ost_body.data values for OST_BRW */
345
346 #define OBD_BRW_READ    0x01
347 #define OBD_BRW_WRITE   0x02
348 #define OBD_BRW_RWMASK  (OBD_BRW_READ | OBD_BRW_WRITE)
349 #define OBD_BRW_CREATE  0x04
350 #define OBD_BRW_SYNC    0x08
351 #define OBD_BRW_CHECK   0x10
352
353 #define OBD_OBJECT_EOF 0xffffffffffffffffULL
354
355 struct obd_ioobj {
356         obd_id               ioo_id;
357         obd_gr               ioo_gr;
358         __u32                ioo_type;
359         __u32                ioo_bufcnt;
360 } __attribute__((packed));
361
362 extern void lustre_swab_obd_ioobj (struct obd_ioobj *ioo);
363
364 /* multiple of 8 bytes => can array */
365 struct niobuf_remote {
366         __u64 offset;
367         __u32 len;
368         __u32 flags;
369 } __attribute__((packed));
370
371 extern void lustre_swab_niobuf_remote (struct niobuf_remote *nbr);
372
373 /* request structure for OST's */
374
375 #define OST_REQ_HAS_OA1  0x1
376
377 struct ost_body {
378         struct  obdo oa;
379 };
380
381 extern void lustre_swab_ost_body (struct ost_body *b);
382
383 /*
384  *   MDS REQ RECORDS
385  */
386
387 /* opcodes */
388 #define MDS_GETATTR      33
389 #define MDS_GETATTR_NAME 34
390 #define MDS_CLOSE        35
391 #define MDS_REINT        36
392 #define MDS_READPAGE     37
393 #define MDS_CONNECT      38
394 #define MDS_DISCONNECT   39
395 #define MDS_GETSTATUS    40
396 #define MDS_STATFS       41
397 #define MDS_GETLOVINFO   42
398 /* When adding MDS RPC opcodes, please update 
399  * LAST/FIRST macros used in ptlrpc/ptlrpc_internals.h */
400 #define MDS_LAST_OPC     (MDS_GETLOVINFO+1)
401 #define MDS_FIRST_OPC    MDS_GETATTR
402 /*
403  * Do not exceed 63 
404  */
405
406 #define REINT_SETATTR  1
407 #define REINT_CREATE   2
408 #define REINT_LINK     3
409 #define REINT_UNLINK   4
410 #define REINT_RENAME   5
411 #define REINT_OPEN     6
412 #define REINT_MAX      6
413
414 #define IT_INTENT_EXEC   1
415 #define IT_OPEN_LOOKUP  (1 << 1)
416 #define IT_OPEN_NEG     (1 << 2)
417 #define IT_OPEN_POS     (1 << 3)
418 #define IT_OPEN_CREATE  (1 << 4)
419 #define IT_OPEN_OPEN    (1 << 5)
420
421 struct ll_fid {
422         __u64 id;
423         __u32 generation;
424         __u32 f_type;
425 };
426
427 extern void lustre_swab_ll_fid (struct ll_fid *fid);
428
429 #define MDS_STATUS_CONN 1
430 #define MDS_STATUS_LOV 2
431
432 struct mds_status_req {
433         __u32  flags;
434         __u32  repbuf;
435 };
436
437 extern void lustre_swab_mds_status_req (struct mds_status_req *r);
438
439 struct mds_fileh_body {
440         struct ll_fid f_fid;
441         struct lustre_handle f_handle;
442 };
443
444 extern void lustre_swab_mds_fileh_body (struct mds_fileh_body *f);
445
446 struct mds_body {
447         struct ll_fid  fid1;
448         struct ll_fid  fid2;
449         struct lustre_handle handle;
450         __u64          size;   /* Offset, in the case of MDS_READPAGE */
451         __u64          blocks; /* XID, in the case of MDS_READPAGE */
452         __u32          ino;   /* make this a __u64 */
453         __u32          valid;
454         __u32          fsuid;
455         __u32          fsgid;
456         __u32          capability;
457         __u32          mode;
458         __u32          uid;
459         __u32          gid;
460         __u32          mtime;
461         __u32          ctime;
462         __u32          atime;
463         __u32          flags;
464         __u32          rdev;
465         __u32          nlink; /* #bytes to read in the case of MDS_READPAGE */
466         __u32          generation;
467         __u32          suppgid;
468         __u32          eadatasize;
469 };
470
471 extern void lustre_swab_mds_body (struct mds_body *b);
472
473 /* This is probably redundant with OBD_MD_FLEASIZE, but we need an audit */
474 #define MDS_OPEN_HAS_EA 1 /* this open has an EA, for a delayed create*/
475
476 /* MDS update records */
477
478 //struct mds_update_record_hdr {
479 //        __u32 ur_opcode;
480 //};
481
482 struct mds_rec_setattr {
483         __u32           sa_opcode;
484         __u32           sa_fsuid;
485         __u32           sa_fsgid;
486         __u32           sa_cap;
487         __u32           sa_reserved;
488         __u32           sa_valid;
489         struct ll_fid   sa_fid;
490         __u32           sa_mode;
491         __u32           sa_uid;
492         __u32           sa_gid;
493         __u32           sa_attr_flags;
494         __u64           sa_size;
495         __u64           sa_atime;
496         __u64           sa_mtime;
497         __u64           sa_ctime;
498         __u32           sa_suppgid;
499 };
500
501 extern void lustre_swab_mds_rec_setattr (struct mds_rec_setattr *sa);
502
503 struct mds_rec_create {
504         __u32           cr_opcode;
505         __u32           cr_fsuid;
506         __u32           cr_fsgid;
507         __u32           cr_cap;
508         __u32           cr_flags; /* for use with open */
509         __u32           cr_mode;
510         struct ll_fid   cr_fid;
511         struct ll_fid   cr_replayfid;
512         __u32           cr_uid;
513         __u32           cr_gid;
514         __u64           cr_time;
515         __u64           cr_rdev;
516         __u32           cr_suppgid;
517 };
518
519 extern void lustre_swab_mds_rec_create (struct mds_rec_create *cr);
520
521 struct mds_rec_link {
522         __u32           lk_opcode;
523         __u32           lk_fsuid;
524         __u32           lk_fsgid;
525         __u32           lk_cap;
526         __u32           lk_suppgid1;
527         __u32           lk_suppgid2;
528         struct ll_fid   lk_fid1;
529         struct ll_fid   lk_fid2;
530 };
531
532 extern void lustre_swab_mds_rec_link (struct mds_rec_link *lk);
533
534 struct mds_rec_unlink {
535         __u32           ul_opcode;
536         __u32           ul_fsuid;
537         __u32           ul_fsgid;
538         __u32           ul_cap;
539         __u32           ul_reserved;
540         __u32           ul_mode;
541         __u32           ul_suppgid;
542         struct ll_fid   ul_fid1;
543         struct ll_fid   ul_fid2;
544 };
545
546 extern void lustre_swab_mds_rec_unlink (struct mds_rec_unlink *ul);
547
548 struct mds_rec_rename {
549         __u32           rn_opcode;
550         __u32           rn_fsuid;
551         __u32           rn_fsgid;
552         __u32           rn_cap;
553         __u32           rn_suppgid1;
554         __u32           rn_suppgid2;
555         struct ll_fid   rn_fid1;
556         struct ll_fid   rn_fid2;
557 };
558
559 extern void lustre_swab_mds_rec_rename (struct mds_rec_rename *rn);
560
561 /*
562  *  LOV data structures
563  */
564
565 #define LOV_RAID0   0
566 #define LOV_RAIDRR  1
567
568 #define LOV_MAX_UUID_BUFFER_SIZE  8192
569 /* The size of the buffer the lov/mdc reserves for the 
570  * array of UUIDs returned by the MDS.  With the current
571  * protocol, this will limit the max number of OSTs per LOV */
572
573 struct lov_desc {
574         __u32 ld_tgt_count;                /* how many OBD's */
575         __u32 ld_active_tgt_count;         /* how many active */
576         __u32 ld_default_stripe_count;     /* how many objects are used */
577         __u64 ld_default_stripe_size;      /* in bytes */
578         __u64 ld_default_stripe_offset;    /* in bytes */
579         __u32 ld_pattern;                  /* RAID 0,1 etc */
580         struct obd_uuid ld_uuid;
581 };
582
583 extern void lustre_swab_lov_desc (struct lov_desc *ld);
584
585 /*
586  *   LDLM requests:
587  */
588 /* opcodes -- MUST be distinct from OST/MDS opcodes */
589 #define LDLM_ENQUEUE       101
590 #define LDLM_CONVERT       102
591 #define LDLM_CANCEL        103
592 #define LDLM_BL_CALLBACK   104
593 #define LDLM_CP_CALLBACK   105
594 /* When adding LDLM RPC opcodes, please update 
595  * LAST/FIRST macros used in ptlrpc/ptlrpc_internals.h */
596 #define LDLM_LAST_OPC      (LDLM_CP_CALLBACK+1)
597 #define LDLM_FIRST_OPC     LDLM_ENQUEUE
598
599 #define RES_NAME_SIZE 3
600 #define RES_VERSION_SIZE 4
601
602 struct ldlm_res_id {
603         __u64 name[RES_NAME_SIZE];
604 };
605
606 extern void lustre_swab_ldlm_res_id (struct ldlm_res_id *id);
607
608 /* lock types */
609 typedef enum {
610         LCK_EX = 1,
611         LCK_PW,
612         LCK_PR,
613         LCK_CW,
614         LCK_CR,
615         LCK_NL
616 } ldlm_mode_t;
617
618 struct ldlm_extent {
619         __u64 start;
620         __u64 end;
621 };
622
623 extern void lustre_swab_ldlm_extent (struct ldlm_extent *e);
624
625 struct ldlm_intent {
626         __u64 opc;
627 };
628
629 extern void lustre_swab_ldlm_intent (struct ldlm_intent *i);
630
631 /* Note this unaligned structure; as long as it's only used in ldlm_request
632  * below, we're probably fine. */
633 struct ldlm_resource_desc {
634         __u32 lr_type;
635         struct ldlm_res_id lr_name;
636         __u32 lr_version[RES_VERSION_SIZE];
637 };
638
639 extern void lustre_swab_ldlm_resource_desc (struct ldlm_resource_desc *r);
640
641 struct ldlm_lock_desc {
642         struct ldlm_resource_desc l_resource;
643         ldlm_mode_t l_req_mode;
644         ldlm_mode_t l_granted_mode;
645         struct ldlm_extent l_extent;
646         __u32 l_version[RES_VERSION_SIZE];
647 };
648
649 extern void lustre_swab_ldlm_lock_desc (struct ldlm_lock_desc *l);
650
651 struct ldlm_request {
652         __u32 lock_flags;
653         struct ldlm_lock_desc lock_desc;
654         struct lustre_handle lock_handle1;
655         struct lustre_handle lock_handle2;
656 };
657
658 extern void lustre_swab_ldlm_request (struct ldlm_request *rq);
659
660 struct ldlm_reply {
661         __u32 lock_flags;
662         __u32 lock_mode;
663         struct ldlm_res_id lock_resource_name;
664         struct lustre_handle lock_handle;
665         struct ldlm_extent lock_extent;   /* XXX make this policy 1 &2 */
666         __u64  lock_policy_res1;
667         __u64  lock_policy_res2;
668 };
669
670 extern void lustre_swab_ldlm_reply (struct ldlm_reply *r);
671
672 /*
673  * ptlbd, portal block device requests
674  */
675 typedef enum {
676         PTLBD_QUERY = 200,
677         PTLBD_READ = 201,
678         PTLBD_WRITE = 202,
679         PTLBD_FLUSH = 203,
680         PTLBD_CONNECT = 204,
681         PTLBD_DISCONNECT = 205,
682 } ptlbd_cmd_t;
683 /* When adding PTLBD RPC opcodes, please update 
684  * LAST/FIRST macros used in ptlrpc/ptlrpc_internals.h */
685 #define PTLBD_LAST_OPC  (PTLBD_FLUSH+1)
686 #define PTLBD_FIRST_OPC PTLBD_QUERY
687
688 struct ptlbd_op {
689         __u16 op_cmd;
690         __u16 op_lun;
691         __u16 op_niob_cnt;
692         __u16 op__padding;
693         __u32 op_block_cnt;
694 };
695
696 extern void lustre_swab_ptlbd_op (struct ptlbd_op *op);
697
698 struct ptlbd_niob {
699         __u64 n_xid;
700         __u64 n_block_nr;
701         __u32 n_offset;
702         __u32 n_length;
703 };
704
705 extern void lustre_swab_ptlbd_niob (struct ptlbd_niob *n);
706
707 struct ptlbd_rsp {
708         __u16 r_status;
709         __u16 r_error_cnt;
710 };
711
712 extern void lustre_swab_ptlbd_rsp (struct ptlbd_rsp *r);
713
714 /*
715  * Opcodes for multiple servers.
716  */
717
718 #define OBD_PING 400
719
720 #endif