Whamcloud - gitweb
Replace all of the "char[37]" uses with obd_uuid_t.
[fs/lustre-release.git] / lustre / include / linux / obd_class.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2001, 2002 Cluster File Systems, Inc.
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  */
22
23 #ifndef __LINUX_CLASS_OBD_H
24 #define __LINUX_CLASS_OBD_H
25
26 #ifndef __KERNEL__
27 # include <stdint.h>
28 # define __KERNEL__
29 # include <linux/list.h>
30 # undef __KERNEL__
31 #else
32 #include <asm/segment.h>
33 #include <asm/uaccess.h>
34 #include <linux/types.h>
35 #include <linux/fs.h>
36 #include <linux/time.h>
37
38 #include <linux/obd_support.h>
39 #include <linux/obd.h>
40 #include <linux/lustre_lib.h>
41 #include <linux/lustre_idl.h>
42 #include <linux/lustre_mds.h>
43 #include <linux/lustre_dlm.h>
44 #endif
45
46
47 /*
48  *  ======== OBD Device Declarations ===========
49  */
50 #define MAX_OBD_DEVICES 128
51 extern struct obd_device obd_dev[MAX_OBD_DEVICES];
52
53 #define OBD_ATTACHED 0x1
54 #define OBD_SET_UP   0x2
55
56 extern struct proc_dir_entry *
57 proc_lustre_register_obd_device(struct obd_device *obd);
58 extern void proc_lustre_release_obd_device(struct obd_device *obd);
59 extern void proc_lustre_remove_obd_entry(const char* name,
60                                          struct obd_device *obd);
61
62 /*
63  *  ======== OBD Operations Declarations ===========
64  */
65
66 #ifdef __KERNEL__
67 static inline int obd_check_conn(struct lustre_handle *conn)
68 {
69         struct obd_device *obd;
70         if (!conn) {
71                 CERROR("NULL conn\n");
72                 RETURN(-ENOTCONN);
73         }
74         obd = class_conn2obd(conn);
75         if (!obd) {
76                 CERROR("NULL obd\n");
77                 RETURN(-ENODEV);
78         }
79
80         if (!obd->obd_flags & OBD_ATTACHED ) {
81                 CERROR("obd %d not attached\n", obd->obd_minor);
82                 RETURN(-ENODEV);
83         }
84
85         if (!obd->obd_flags & OBD_SET_UP) {
86                 CERROR("obd %d not setup\n", obd->obd_minor);
87                 RETURN(-ENODEV);
88         }
89
90         if (!obd->obd_type) {
91                 CERROR("obd %d not typed\n", obd->obd_minor);
92                 RETURN(-ENODEV);
93         }
94
95         if (!obd->obd_type->typ_ops) {
96                 CERROR("obd_check_conn: obd %d no operations\n",
97                        obd->obd_minor);
98                 RETURN(-EOPNOTSUPP);
99         }
100         return 0;
101 }
102
103
104 #define OBT(dev)        (dev)->obd_type
105 #define OBP(dev, op)    (dev)->obd_type->typ_ops->o_ ## op
106
107 #define OBD_CHECK_SETUP(conn, export)                           \
108 do {                                                            \
109         if (!(conn)) {                                          \
110                 CERROR("NULL connection\n");                    \
111                 RETURN(-EINVAL);                                \
112         }                                                       \
113                                                                 \
114         export = class_conn2export(conn);                       \
115         if (!(export)) {                                        \
116                 CERROR("No export\n");                          \
117                 RETURN(-EINVAL);                                \
118         }                                                       \
119                                                                 \
120         if (!((export)->exp_obd->obd_flags & OBD_SET_UP)) {     \
121                 CERROR("Device %d not setup\n",                 \
122                        (export)->exp_obd->obd_minor);           \
123                 RETURN(-EINVAL);                                \
124         }                                                       \
125 } while (0)
126
127 #define OBD_CHECK_DEVSETUP(obd)                                 \
128 do {                                                            \
129         if (!(obd)) {                                           \
130                 CERROR("NULL device\n");                        \
131                 RETURN(-EINVAL);                                \
132         }                                                       \
133                                                                 \
134         if ( !((obd)->obd_flags & OBD_SET_UP) ) {               \
135                 CERROR("Device %d not setup\n",                 \
136                        (obd)->obd_minor);                       \
137                 RETURN(-EINVAL);                                \
138         }                                                       \
139 } while (0)
140
141 #define OBD_CHECK_OP(obd, op)                                   \
142 do {                                                            \
143         if (!OBP((obd),op)) {                                   \
144                 CERROR("obd_" #op ": dev %d no operation\n",    \
145                        obd->obd_minor);                         \
146                 RETURN(-EOPNOTSUPP);                            \
147         }                                                       \
148 } while (0)
149
150 static inline int obd_get_info(struct lustre_handle *conn, obd_count keylen,
151                                void *key, obd_count *vallen, void **val)
152 {
153         int rc;
154         struct obd_export *export;
155         OBD_CHECK_SETUP(conn, export);
156         OBD_CHECK_OP(export->exp_obd, get_info);
157
158         rc = OBP(export->exp_obd, get_info)(conn, keylen, key, vallen, val);
159         RETURN(rc);
160 }
161
162 static inline int obd_set_info(struct lustre_handle *conn, obd_count keylen,
163                                void *key, obd_count vallen, void *val)
164 {
165         int rc;
166         struct obd_export *export;
167         OBD_CHECK_SETUP(conn, export);
168         OBD_CHECK_OP(export->exp_obd, set_info);
169
170         rc = OBP(export->exp_obd, set_info)(conn, keylen, key, vallen, val);
171         RETURN(rc);
172 }
173
174 static inline int obd_setup(struct obd_device *obd, int datalen, void *data)
175 {
176         int rc;
177
178         OBD_CHECK_OP(obd, setup);
179
180         rc = OBP(obd, setup)(obd, datalen, data);
181         RETURN(rc);
182 }
183
184 static inline int obd_cleanup(struct obd_device *obd)
185 {
186         int rc;
187
188         OBD_CHECK_DEVSETUP(obd);
189         OBD_CHECK_OP(obd, cleanup);
190
191         rc = OBP(obd, cleanup)(obd);
192         RETURN(rc);
193 }
194
195 static inline int obd_create(struct lustre_handle *conn, struct obdo *obdo,
196                              struct lov_stripe_md **ea)
197 {
198         int rc;
199         struct obd_export *export;
200         OBD_CHECK_SETUP(conn, export);
201         OBD_CHECK_OP(export->exp_obd, create);
202
203 #define OBD_MD_FLNEEDED (OBD_MD_FLID | OBD_MD_FLMODE)
204         //if (obdo->o_valid & OBD_MD_FLNEEDED != OBD_MD_FLNEEDED)
205         //        RETURN(-EINVAL);
206 #undef OBD_MD_FLNEEDED
207         rc = OBP(export->exp_obd, create)(conn, obdo, ea);
208         RETURN(rc);
209 }
210
211 static inline int obd_destroy(struct lustre_handle *conn, struct obdo *obdo,
212                               struct lov_stripe_md *ea)
213 {
214         int rc;
215         struct obd_export *export;
216         OBD_CHECK_SETUP(conn, export);
217         OBD_CHECK_OP(export->exp_obd, destroy);
218
219         rc = OBP(export->exp_obd, destroy)(conn, obdo, ea);
220         RETURN(rc);
221 }
222
223 static inline int obd_getattr(struct lustre_handle *conn, struct obdo *obdo,
224                               struct lov_stripe_md *ea)
225 {
226         int rc;
227         struct obd_export *export;
228         OBD_CHECK_SETUP(conn, export);
229         OBD_CHECK_OP(export->exp_obd, getattr);
230
231         rc = OBP(export->exp_obd, getattr)(conn, obdo, ea);
232         RETURN(rc);
233 }
234
235 static inline int obd_close(struct lustre_handle *conn, struct obdo *obdo,
236                             struct lov_stripe_md *ea)
237 {
238         int rc;
239         struct obd_export *export;
240         OBD_CHECK_SETUP(conn, export);
241         OBD_CHECK_OP(export->exp_obd, close);
242
243         rc = OBP(export->exp_obd, close)(conn, obdo, ea);
244         RETURN(rc);
245 }
246
247 static inline int obd_open(struct lustre_handle *conn, struct obdo *obdo,
248                            struct lov_stripe_md *ea)
249 {
250         int rc;
251         struct obd_export *export;
252         OBD_CHECK_SETUP(conn, export);
253         OBD_CHECK_OP(export->exp_obd, open);
254
255         rc = OBP(export->exp_obd, open)(conn, obdo, ea);
256         RETURN(rc);
257 }
258
259 static inline int obd_setattr(struct lustre_handle *conn, struct obdo *obdo,
260                               struct lov_stripe_md *ea)
261 {
262         int rc;
263         struct obd_export *export;
264         OBD_CHECK_SETUP(conn, export);
265         OBD_CHECK_OP(export->exp_obd,setattr);
266
267         rc = OBP(export->exp_obd, setattr)(conn, obdo, ea);
268         RETURN(rc);
269 }
270
271 static inline int obd_connect(struct lustre_handle *conn,
272                               struct obd_device *obd, obd_uuid_t cluuid)
273 {
274         int rc;
275         OBD_CHECK_DEVSETUP(obd);
276         OBD_CHECK_OP(obd, connect);
277
278         rc = OBP(obd, connect)(conn, obd, cluuid);
279         RETURN(rc);
280 }
281
282 static inline int obd_disconnect(struct lustre_handle *conn)
283 {
284         int rc;
285         struct obd_export *export;
286         OBD_CHECK_SETUP(conn, export);
287         OBD_CHECK_OP(export->exp_obd, disconnect);
288
289         rc = OBP(export->exp_obd, disconnect)(conn);
290         RETURN(rc);
291 }
292
293 static inline int obd_statfs(struct lustre_handle *conn,struct obd_statfs *osfs)
294 {
295         int rc;
296         struct obd_export *export;
297         OBD_CHECK_SETUP(conn, export);
298         OBD_CHECK_OP(export->exp_obd, statfs);
299
300         rc = OBP(export->exp_obd, statfs)(conn, osfs);
301         RETURN(rc);
302 }
303
304 static inline int obd_punch(struct lustre_handle *conn, struct obdo *tgt,
305                             struct lov_stripe_md *ea,
306                             obd_size count, obd_off offset)
307 {
308         int rc;
309         struct obd_export *export;
310         OBD_CHECK_SETUP(conn, export);
311         OBD_CHECK_OP(export->exp_obd,punch);
312
313         rc = OBP(export->exp_obd, punch)(conn, tgt, ea, count, offset);
314         RETURN(rc);
315 }
316
317 static inline int obd_brw(int cmd, struct lustre_handle *conn,
318                           struct lov_stripe_md *ea, obd_count oa_bufs,
319                           struct brw_page *pg,
320                           brw_callback_t callback, void *data)
321 {
322         int rc;
323         struct obd_export *export;
324         OBD_CHECK_SETUP(conn, export);
325         OBD_CHECK_OP(export->exp_obd,brw);
326
327         if (!(cmd & OBD_BRW_RWMASK)) {
328                 CERROR("obd_brw: cmd must be OBD_BRW_READ or OBD_BRW_WRITE\n");
329                 LBUG();
330         }
331
332         rc = OBP(export->exp_obd, brw)(cmd, conn, ea, oa_bufs, pg, callback,
333                                        data);
334         RETURN(rc);
335 }
336
337 static inline int obd_preprw(int cmd, struct lustre_handle *conn,
338                              int objcount, struct obd_ioobj *obj,
339                              int niocount, struct niobuf_remote *remote,
340                              struct niobuf_local *local, void **desc_private)
341 {
342         int rc;
343         struct obd_export *export;
344         OBD_CHECK_SETUP(conn, export);
345         OBD_CHECK_OP(export->exp_obd, preprw);
346
347         rc = OBP(export->exp_obd, preprw)(cmd, conn, objcount, obj, niocount,
348                                           remote, local, desc_private);
349         RETURN(rc);
350 }
351
352 static inline int obd_commitrw(int cmd, struct lustre_handle *conn,
353                                int objcount, struct obd_ioobj *obj,
354                                int niocount, struct niobuf_local *local,
355                                void *desc_private)
356 {
357         int rc;
358         struct obd_export *export;
359         OBD_CHECK_SETUP(conn, export);
360         OBD_CHECK_OP(export->exp_obd, commitrw);
361
362         rc = OBP(export->exp_obd, commitrw)(cmd, conn, objcount, obj, niocount,
363                                             local, desc_private);
364         RETURN(rc);
365 }
366
367 static inline int obd_iocontrol(int cmd, struct lustre_handle *conn,
368                                 int len, void *karg, void *uarg)
369 {
370         int rc;
371         struct obd_export *export;
372         OBD_CHECK_SETUP(conn, export);
373         OBD_CHECK_OP(export->exp_obd, iocontrol);
374
375         rc = OBP(export->exp_obd, iocontrol)(cmd, conn, len, karg, uarg);
376         RETURN(rc);
377 }
378
379 static inline int obd_enqueue(struct lustre_handle *conn,
380                               struct lov_stripe_md *ea,
381                               struct lustre_handle *parent_lock,
382                               __u32 type, void *cookie, int cookielen,
383                               __u32 mode, int *flags, void *cb, void *data,
384                               int datalen, struct lustre_handle *lockh)
385 {
386         int rc;
387         struct obd_export *export;
388         OBD_CHECK_SETUP(conn, export);
389         OBD_CHECK_OP(export->exp_obd,enqueue);
390
391         rc = OBP(export->exp_obd, enqueue)(conn, ea, parent_lock, type,
392                                            cookie, cookielen, mode, flags, cb,
393                                            data, datalen, lockh);
394         RETURN(rc);
395 }
396
397 static inline int obd_cancel(struct lustre_handle *conn,
398                              struct lov_stripe_md *ea, __u32 mode,
399                              struct lustre_handle *lockh)
400 {
401         int rc;
402         struct obd_export *export;
403         OBD_CHECK_SETUP(conn, export);
404         OBD_CHECK_OP(export->exp_obd,cancel);
405
406         rc = OBP(export->exp_obd, cancel)(conn, ea, mode, lockh);
407         RETURN(rc);
408 }
409
410 static inline int obd_cancel_unused(struct lustre_handle *conn,
411                                     struct lov_stripe_md *lsm)
412 {
413         int rc;
414         struct obd_export *export;
415         OBD_CHECK_SETUP(conn, export);
416         OBD_CHECK_OP(export->exp_obd, cancel_unused);
417
418         rc = OBP(export->exp_obd, cancel_unused)(conn, lsm);
419         RETURN(rc);
420 }
421
422 #endif
423
424 /*
425  *  ======== OBD Metadata Support  ===========
426  */
427
428 extern int obd_init_caches(void);
429 extern void obd_cleanup_caches(void);
430
431 static inline int obdo_has_inline(struct obdo *obdo)
432 {
433         return (obdo->o_valid & OBD_MD_FLINLINE &&
434                 obdo->o_obdflags & OBD_FL_INLINEDATA);
435 };
436
437 #ifdef __KERNEL__
438 /* support routines */
439 extern kmem_cache_t *obdo_cachep;
440 static inline struct obdo *obdo_alloc(void)
441 {
442         struct obdo *oa = NULL;
443
444         oa = kmem_cache_alloc(obdo_cachep, SLAB_KERNEL);
445         if (oa == NULL)
446                 LBUG();
447         memset(oa, 0, sizeof (*oa));
448
449         return oa;
450 }
451 static inline void obdo_free(struct obdo *oa)
452 {
453         if (!oa)
454                 return;
455         kmem_cache_free(obdo_cachep, oa);
456 }
457
458
459 static inline void obdo_from_iattr(struct obdo *oa, struct iattr *attr)
460 {
461         unsigned int ia_valid = attr->ia_valid;
462
463         if (ia_valid & ATTR_ATIME) {
464                 oa->o_atime = attr->ia_atime;
465                 oa->o_valid |= OBD_MD_FLATIME;
466         }
467         if (ia_valid & ATTR_MTIME) {
468                 oa->o_mtime = attr->ia_mtime;
469                 oa->o_valid |= OBD_MD_FLMTIME;
470         }
471         if (ia_valid & ATTR_CTIME) {
472                 oa->o_ctime = attr->ia_ctime;
473                 oa->o_valid |= OBD_MD_FLCTIME;
474         }
475         if (ia_valid & ATTR_SIZE) {
476                 oa->o_size = attr->ia_size;
477                 oa->o_valid |= OBD_MD_FLSIZE;
478         }
479         if (ia_valid & ATTR_MODE) {
480                 oa->o_mode = attr->ia_mode;
481                 oa->o_valid |= OBD_MD_FLMODE;
482                 if (!in_group_p(oa->o_gid) && !capable(CAP_FSETID))
483                         oa->o_mode &= ~S_ISGID;
484         }
485         if (ia_valid & ATTR_UID)
486         {
487                 oa->o_uid = attr->ia_uid;
488                 oa->o_valid |= OBD_MD_FLUID;
489         }
490         if (ia_valid & ATTR_GID) {
491                 oa->o_gid = attr->ia_gid;
492                 oa->o_valid |= OBD_MD_FLGID;
493         }
494 }
495
496
497 static inline void iattr_from_obdo(struct iattr *attr, struct obdo *oa,
498                                    obd_flag valid)
499 {
500         memset(attr, 0, sizeof(*attr));
501         if (valid & OBD_MD_FLATIME) {
502                 attr->ia_atime = oa->o_atime;
503                 attr->ia_valid |= ATTR_ATIME;
504         }
505         if (valid & OBD_MD_FLMTIME) {
506                 attr->ia_mtime = oa->o_mtime;
507                 attr->ia_valid |= ATTR_MTIME;
508         }
509         if (valid & OBD_MD_FLCTIME) {
510                 attr->ia_ctime = oa->o_ctime;
511                 attr->ia_valid |= ATTR_CTIME;
512         }
513         if (valid & OBD_MD_FLSIZE) {
514                 attr->ia_size = oa->o_size;
515                 attr->ia_valid |= ATTR_SIZE;
516         }
517         if (valid & OBD_MD_FLMODE) {
518                 attr->ia_mode = oa->o_mode;
519                 attr->ia_valid |= ATTR_MODE;
520                 if (!in_group_p(oa->o_gid) && !capable(CAP_FSETID))
521                         attr->ia_mode &= ~S_ISGID;
522         }
523         if (valid & OBD_MD_FLUID)
524         {
525                 attr->ia_uid = oa->o_uid;
526                 attr->ia_valid |= ATTR_UID;
527         }
528         if (valid & OBD_MD_FLGID) {
529                 attr->ia_gid = oa->o_gid;
530                 attr->ia_valid |= ATTR_GID;
531         }
532 }
533
534
535 /* WARNING: the file systems must take care not to tinker with
536    attributes they don't manage (such as blocks). */
537
538 static inline void obdo_from_inode(struct obdo *dst, struct inode *src,
539                                    obd_flag valid)
540 {
541 //        if (valid & OBD_MD_FLID)
542 //                dst->o_id = src->i_ino;
543         if (valid & OBD_MD_FLATIME)
544                 dst->o_atime = src->i_atime;
545         if (valid & OBD_MD_FLMTIME)
546                 dst->o_mtime = src->i_mtime;
547         if (valid & OBD_MD_FLCTIME)
548                 dst->o_ctime = src->i_ctime;
549         if (valid & OBD_MD_FLSIZE)
550                 dst->o_size = src->i_size;
551         if (valid & OBD_MD_FLBLOCKS)   /* allocation of space */
552                 dst->o_blocks = src->i_blocks;
553         if (valid & OBD_MD_FLBLKSZ)
554                 dst->o_blksize = src->i_blksize;
555         if (valid & OBD_MD_FLMODE)
556                 dst->o_mode = src->i_mode;
557         if (valid & OBD_MD_FLUID)
558                 dst->o_uid = src->i_uid;
559         if (valid & OBD_MD_FLGID)
560                 dst->o_gid = src->i_gid;
561         if (valid & OBD_MD_FLFLAGS)
562                 dst->o_flags = src->i_flags;
563         if (valid & OBD_MD_FLNLINK)
564                 dst->o_nlink = src->i_nlink;
565         if (valid & OBD_MD_FLGENER)
566                 dst->o_generation = src->i_generation;
567         if (valid & OBD_MD_FLRDEV)
568                 dst->o_rdev = src->i_rdev;
569
570         dst->o_valid |= (valid & ~OBD_MD_FLID);
571 }
572
573 static inline void obdo_to_inode(struct inode *dst, struct obdo *src,
574                                  obd_flag valid)
575 {
576 //        if (valid & OBD_MD_FLID)
577 //                dst->i_ino = src->o_id;
578         if (valid & OBD_MD_FLATIME)
579                 dst->i_atime = src->o_atime;
580         if (valid & OBD_MD_FLMTIME)
581                 dst->i_mtime = src->o_mtime;
582         if (valid & OBD_MD_FLCTIME)
583                 dst->i_ctime = src->o_ctime;
584         if (valid & OBD_MD_FLSIZE)
585                 dst->i_size = src->o_size;
586         if (valid & OBD_MD_FLBLOCKS) /* allocation of space */
587                 dst->i_blocks = src->o_blocks;
588         if (valid & OBD_MD_FLBLKSZ)
589                 dst->i_blksize = src->o_blksize;
590         if (valid & OBD_MD_FLMODE)
591                 dst->i_mode = src->o_mode;
592         if (valid & OBD_MD_FLUID)
593                 dst->i_uid = src->o_uid;
594         if (valid & OBD_MD_FLGID)
595                 dst->i_gid = src->o_gid;
596         if (valid & OBD_MD_FLFLAGS)
597                 dst->i_flags = src->o_flags;
598         if (valid & OBD_MD_FLNLINK)
599                 dst->i_nlink = src->o_nlink;
600         if (valid & OBD_MD_FLGENER)
601                 dst->i_generation = src->o_generation;
602         if (valid & OBD_MD_FLRDEV)
603                 dst->i_rdev = src->o_rdev;
604 }
605 #endif
606
607 static inline void obdo_cpy_md(struct obdo *dst, struct obdo *src,
608                                obd_flag valid)
609 {
610 #ifdef __KERNEL__
611         CDEBUG(D_INODE, "src obdo %Ld valid 0x%x, dst obdo %Ld\n",
612                (unsigned long long)src->o_id, src->o_valid,
613                (unsigned long long)dst->o_id);
614 #endif
615         if (valid & OBD_MD_FLATIME)
616                 dst->o_atime = src->o_atime;
617         if (valid & OBD_MD_FLMTIME)
618                 dst->o_mtime = src->o_mtime;
619         if (valid & OBD_MD_FLCTIME)
620                 dst->o_ctime = src->o_ctime;
621         if (valid & OBD_MD_FLSIZE)
622                 dst->o_size = src->o_size;
623         if (valid & OBD_MD_FLBLOCKS) /* allocation of space */
624                 dst->o_blocks = src->o_blocks;
625         if (valid & OBD_MD_FLBLKSZ)
626                 dst->o_blksize = src->o_blksize;
627         if (valid & OBD_MD_FLMODE)
628                 dst->o_mode = src->o_mode;
629         if (valid & OBD_MD_FLUID)
630                 dst->o_uid = src->o_uid;
631         if (valid & OBD_MD_FLGID)
632                 dst->o_gid = src->o_gid;
633         if (valid & OBD_MD_FLFLAGS)
634                 dst->o_flags = src->o_flags;
635         /*
636         if (valid & OBD_MD_FLOBDFLG)
637                 dst->o_obdflags = src->o_obdflags;
638         */
639         if (valid & OBD_MD_FLNLINK)
640                 dst->o_nlink = src->o_nlink;
641         if (valid & OBD_MD_FLGENER)
642                 dst->o_generation = src->o_generation;
643         if (valid & OBD_MD_FLRDEV)
644                 dst->o_rdev = src->o_rdev;
645         if (valid & OBD_MD_FLINLINE &&
646              src->o_obdflags & OBD_FL_INLINEDATA) {
647                 memcpy(dst->o_inline, src->o_inline, sizeof(src->o_inline));
648                 dst->o_obdflags |= OBD_FL_INLINEDATA;
649         }
650
651         dst->o_valid |= valid;
652 }
653
654
655 /* returns FALSE if comparison (by flags) is same, TRUE if changed */
656 static inline int obdo_cmp_md(struct obdo *dst, struct obdo *src,
657                               obd_flag compare)
658 {
659         int res = 0;
660
661         if ( compare & OBD_MD_FLATIME )
662                 res = (res || (dst->o_atime != src->o_atime));
663         if ( compare & OBD_MD_FLMTIME )
664                 res = (res || (dst->o_mtime != src->o_mtime));
665         if ( compare & OBD_MD_FLCTIME )
666                 res = (res || (dst->o_ctime != src->o_ctime));
667         if ( compare & OBD_MD_FLSIZE )
668                 res = (res || (dst->o_size != src->o_size));
669         if ( compare & OBD_MD_FLBLOCKS ) /* allocation of space */
670                 res = (res || (dst->o_blocks != src->o_blocks));
671         if ( compare & OBD_MD_FLBLKSZ )
672                 res = (res || (dst->o_blksize != src->o_blksize));
673         if ( compare & OBD_MD_FLMODE )
674                 res = (res || (dst->o_mode != src->o_mode));
675         if ( compare & OBD_MD_FLUID )
676                 res = (res || (dst->o_uid != src->o_uid));
677         if ( compare & OBD_MD_FLGID )
678                 res = (res || (dst->o_gid != src->o_gid));
679         if ( compare & OBD_MD_FLFLAGS )
680                 res = (res || (dst->o_flags != src->o_flags));
681         if ( compare & OBD_MD_FLNLINK )
682                 res = (res || (dst->o_nlink != src->o_nlink));
683         if ( compare & OBD_MD_FLGENER )
684                 res = (res || (dst->o_generation != src->o_generation));
685         /* XXX Don't know if thses should be included here - wasn't previously
686         if ( compare & OBD_MD_FLINLINE )
687                 res = (res || memcmp(dst->o_inline, src->o_inline));
688         */
689         return res;
690 }
691
692
693 #ifdef __KERNEL__
694 int class_register_type(struct obd_ops *ops, char *nm);
695 int class_unregister_type(char *nm);
696 int class_name2dev(char *name);
697 int class_uuid2dev(char *uuid);
698 struct obd_device *class_uuid2obd(char *uuid);
699 struct obd_export *class_new_export(struct obd_device *obddev);
700 void class_destroy_export(struct obd_export *exp);
701 int class_connect(struct lustre_handle *conn, struct obd_device *obd,
702                   obd_uuid_t cluuid);
703 int class_disconnect(struct lustre_handle *conn);
704 void class_disconnect_all(struct obd_device *obddev);
705
706 /* generic operations shared by various OBD types */
707 int class_multi_setup(struct obd_device *obddev, uint32_t len, void *data);
708 int class_multi_cleanup(struct obd_device *obddev);
709
710 extern void (*class_signal_connection_failure)(struct ptlrpc_connection *);
711
712 /* == mds_client_free if MDS running here */
713 extern int (*mds_destroy_export)(struct obd_export *exp);
714 /* == ldlm_client_free if(?) DLM running here */
715 extern int (*ldlm_destroy_export)(struct obd_export *exp);
716
717 static inline struct ptlrpc_connection *class_rd2conn(struct recovd_data *rd)
718 {
719         /* reuse list_entry's member-pointer offset stuff */
720         return list_entry(rd, struct ptlrpc_connection, c_recovd_data);
721 }
722
723 #endif
724
725 /* sysctl.c */
726 extern void obd_sysctl_init (void);
727 extern void obd_sysctl_clean (void);
728
729 /* uuid.c  */
730 typedef __u8 class_uuid_t[16];
731 //int class_uuid_parse(obd_uuid_t in, class_uuid_t out);
732 void class_uuid_unparse(class_uuid_t in, obd_uuid_t out);
733 #endif /* __LINUX_CLASS_OBD_H */