Whamcloud - gitweb
Nice change to the OBD_ALLOC and OBD_FREE macros - it prints the name of
[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 #endif
43
44 /*
45  *  ======== OBD Device Declarations ===========
46  */
47 #define MAX_OBD_DEVICES 8
48 extern struct obd_device obd_dev[MAX_OBD_DEVICES];
49
50 #define OBD_ATTACHED 0x1
51 #define OBD_SET_UP   0x2
52
53 extern struct proc_dir_entry *
54 proc_lustre_register_obd_device(struct obd_device *obd);
55 extern void proc_lustre_release_obd_device(struct obd_device *obd);
56 extern void proc_lustre_remove_obd_entry(const char* name,
57                                          struct obd_device *obd);
58
59 /*
60  *  ======== OBD Operations Declarations ===========
61  */
62
63 #define OBD_BRW_READ    1
64 #define OBD_BRW_WRITE   2
65 #define OBD_BRW_RWMASK  OBD_BRW_READ | OBD_BRW_WRITE
66 #define OBD_BRW_CREATE  4
67
68 #ifdef __KERNEL__
69 struct obd_request {
70         struct obdo *oa;
71         struct obd_conn *conn;
72         __u32 plen1;
73         char *pbuf1;
74 };
75
76 static inline int obd_check_conn(struct obd_conn *conn) 
77 {
78         struct obd_device *obd;
79         if (!conn) {
80                 CERROR("obd_check_conn: NULL conn\n");
81                 RETURN(-ENOTCONN);
82         }
83         obd = conn->oc_dev;
84         if (!obd) {
85                 CERROR("obd_check_conn: NULL obd\n");
86                 RETURN(-ENODEV);
87         }
88
89         if (!obd->obd_flags & OBD_ATTACHED ) {
90                 CERROR("obd_check_conn: obd %d not attached\n", obd->obd_minor);
91                 RETURN(-ENODEV);
92         }
93
94         if (!obd->obd_flags & OBD_SET_UP) {
95                 CERROR("obd_check_conn: obd %d not setup\n", obd->obd_minor); 
96                 RETURN(-ENODEV);
97         }
98
99         if (!obd->obd_type) {
100                 CERROR("obd_check_conn: obd %d not typed\n", obd->obd_minor);
101                 RETURN(-ENODEV);
102         }
103
104         if (!obd->obd_type->typ_ops) {
105                 CERROR("obd_check_conn: obd %d no operations\n",
106                        obd->obd_minor);
107                 RETURN(-EOPNOTSUPP);
108         }
109         return 0;
110 }
111
112 #define OBT(dev)        (dev)->obd_type
113 #define OBP(dev,op)     (dev)->obd_type->typ_ops->o_ ## op
114
115 #define OBD_CHECK_SETUP(conn)                                   \
116 do {                                                            \
117         if (!(conn)) {                                          \
118                 CERROR("NULL connection\n");                    \
119                 RETURN(-EINVAL);                                \
120         }                                                       \
121                                                                 \
122         if (!((conn)->oc_dev)) {                                \
123                 CERROR("NULL device\n");                        \
124                 RETURN(-EINVAL);                                \
125         }                                                       \
126                                                                 \
127         if ( !((conn)->oc_dev->obd_flags & OBD_SET_UP) ) {      \
128                 CERROR("Device %d not setup\n",                 \
129                        (conn)->oc_dev->obd_minor);              \
130                 RETURN(-EINVAL);                                \
131         }                                                       \
132 } while (0)
133
134 #define OBD_CHECK_OP(conn,op)                                   \
135 do {                                                            \
136         int rc = obd_check_conn(conn);                          \
137         if (rc) {                                               \
138                 CERROR("obd: error in operation: " #op "\n");   \
139                 RETURN(rc);                                     \
140         }                                                       \
141         if (!OBP(conn->oc_dev,op)) {                            \
142                 CERROR("obd_" #op ": dev %d no operation\n",    \
143                        conn->oc_dev->obd_minor);                \
144                 RETURN(-EOPNOTSUPP);                            \
145         }                                                       \
146 } while (0)
147
148 static inline int obd_get_info(struct obd_conn *conn, obd_count keylen,
149                                void *key, obd_count *vallen, void **val)
150 {
151         int rc;
152         OBD_CHECK_SETUP(conn);
153         OBD_CHECK_OP(conn,get_info);
154
155         rc = OBP(conn->oc_dev, get_info)(conn, keylen, key, vallen, val);
156         RETURN(rc);
157 }
158
159 static inline int obd_set_info(struct obd_conn *conn, obd_count keylen,
160                                void *key, obd_count vallen, void *val)
161 {
162         int rc;
163         OBD_CHECK_SETUP(conn);
164         OBD_CHECK_OP(conn,set_info);
165
166         rc = OBP(conn->oc_dev, set_info)(conn, keylen, key, vallen, val);
167         RETURN(rc);
168 }
169
170 static inline int obd_setup(struct obd_device *obd, int datalen, void *data)
171 {
172         struct obd_conn conn;
173         int rc;
174         conn.oc_dev = obd;
175
176         OBD_CHECK_OP((&conn),setup);
177
178         rc = OBP(conn.oc_dev, setup)(obd, datalen, data);
179         RETURN(rc);
180 }
181
182 static inline int obd_cleanup(struct obd_device *obd)
183 {
184         struct obd_conn conn;
185         int rc;
186         conn.oc_dev = obd;
187
188         OBD_CHECK_SETUP(&conn);
189         OBD_CHECK_OP((&conn),cleanup);
190
191         rc = OBP(conn.oc_dev, cleanup)(obd);
192         RETURN(rc);
193 }
194
195 static inline int obd_create(struct obd_conn *conn, struct obdo *obdo)
196 {
197         int rc;
198         OBD_CHECK_SETUP(conn);
199         OBD_CHECK_OP(conn,create);
200
201         rc = OBP(conn->oc_dev, create)(conn, obdo);
202         RETURN(rc);
203 }
204
205 static inline int obd_destroy(struct obd_conn *conn, struct obdo *obdo)
206 {
207         int rc;
208         OBD_CHECK_SETUP(conn);
209         OBD_CHECK_OP(conn,destroy);
210
211         rc = OBP(conn->oc_dev, destroy)(conn, obdo);
212         RETURN(rc);
213 }
214
215 static inline int obd_getattr(struct obd_conn *conn, struct obdo *obdo)
216 {
217         int rc;
218         OBD_CHECK_SETUP(conn);
219         OBD_CHECK_OP(conn,getattr);
220
221         rc = OBP(conn->oc_dev, getattr)(conn, obdo);
222         RETURN(rc);
223 }
224
225 static inline int obd_close(struct obd_conn *conn, struct obdo *obdo)
226 {
227         int rc;
228         OBD_CHECK_SETUP(conn);
229         OBD_CHECK_OP(conn,close);
230
231         rc = OBP(conn->oc_dev, close)(conn, obdo);
232         RETURN(rc);
233 }
234 static inline int obd_open(struct obd_conn *conn, struct obdo *obdo)
235 {
236         int rc;
237         OBD_CHECK_SETUP(conn);
238         OBD_CHECK_OP(conn,open);
239
240         rc = OBP(conn->oc_dev, open) (conn, obdo);
241         RETURN(rc);
242 }
243
244 static inline int obd_setattr(struct obd_conn *conn, struct obdo *obdo)
245 {
246         int rc;
247         OBD_CHECK_SETUP(conn);
248         OBD_CHECK_OP(conn,setattr);
249
250         rc = OBP(conn->oc_dev, setattr)(conn, obdo);
251         RETURN(rc);
252 }
253
254 static inline int obd_connect(struct obd_conn *conn)
255 {
256         int rc;
257         OBD_CHECK_SETUP(conn);
258         OBD_CHECK_OP(conn,connect);
259
260         rc = OBP(conn->oc_dev, connect)(conn);
261         RETURN(rc);
262 }
263
264 static inline int obd_disconnect(struct obd_conn *conn)
265 {
266         int rc;
267         OBD_CHECK_SETUP(conn);
268         OBD_CHECK_OP(conn,disconnect);
269
270         rc = OBP(conn->oc_dev, disconnect)(conn);
271         RETURN(rc);
272 }
273
274 static inline int obd_statfs(struct obd_conn *conn, struct statfs *buf)
275 {
276         int rc;
277         OBD_CHECK_SETUP(conn);
278         OBD_CHECK_OP(conn,statfs);
279
280         rc = OBP(conn->oc_dev, statfs)(conn, buf);
281         RETURN(rc);
282 }
283
284 static inline int obd_punch(struct obd_conn *conn, struct obdo *tgt,
285                             obd_size count, obd_off offset)
286 {
287         int rc;
288         OBD_CHECK_SETUP(conn);
289         OBD_CHECK_OP(conn,punch);
290
291         rc = OBP(conn->oc_dev, punch)(conn, tgt, count, offset);
292         RETURN(rc);
293 }
294
295 static inline int obd_brw(int rw, struct obd_conn *conn, obd_count num_oa,
296                           struct obdo **oa, obd_count *oa_bufs,
297                           struct page **buf, obd_size *count, obd_off *offset,
298                           obd_flag *flags)
299 {
300         int rc;
301         OBD_CHECK_SETUP(conn);
302         OBD_CHECK_OP(conn,brw);
303
304         rc = OBP(conn->oc_dev, brw)(rw, conn, num_oa, oa, oa_bufs, buf,
305                                     count, offset, flags);
306         RETURN(rc);
307 }
308
309 static inline int obd_preprw(int cmd, struct obd_conn *conn,
310                              int objcount, struct obd_ioobj *obj,
311                              int niocount, struct niobuf *nb,
312                              struct niobuf *res)
313 {
314         int rc;
315         OBD_CHECK_SETUP(conn);
316         OBD_CHECK_OP(conn, preprw);
317
318         rc = OBP(conn->oc_dev, preprw)(cmd, conn, objcount, obj, niocount, nb,
319                                        res);
320         RETURN(rc);
321 }
322
323 static inline int obd_commitrw(int cmd, struct obd_conn *conn,
324                                int objcount, struct obd_ioobj *obj,
325                                int niocount, struct niobuf *res)
326 {
327         int rc;
328         OBD_CHECK_SETUP(conn);
329         OBD_CHECK_OP(conn, commitrw);
330
331         rc = OBP(conn->oc_dev, commitrw)(cmd, conn, objcount, obj, niocount,
332                                          res);
333         RETURN(rc);
334 }
335
336 static inline int obd_iocontrol(int cmd, struct obd_conn *conn,
337                                 int len, void *karg, void *uarg)
338 {
339         int rc;
340         OBD_CHECK_SETUP(conn);
341         OBD_CHECK_OP(conn, iocontrol);
342
343         rc = OBP(conn->oc_dev, iocontrol)(cmd, conn, len, karg, uarg);
344         RETURN(rc);
345 }
346
347 #endif 
348
349 /*
350  *  ======== OBD Metadata Support  ===========
351  */
352
353 extern int obd_init_obdo_cache(void);
354 extern void obd_cleanup_obdo_cache(void);
355
356
357 static inline int obdo_has_inline(struct obdo *obdo)
358 {
359         return (obdo->o_valid & OBD_MD_FLINLINE &&
360                 obdo->o_obdflags & OBD_FL_INLINEDATA);
361 };
362
363 static inline int obdo_has_obdmd(struct obdo *obdo)
364 {
365         return (obdo->o_valid & OBD_MD_FLOBDMD &&
366                 obdo->o_obdflags & OBD_FL_OBDMDEXISTS);
367 };
368
369 #ifdef __KERNEL__
370 /* support routines */
371 extern kmem_cache_t *obdo_cachep;
372
373 static __inline__ struct obdo *obdo_alloc(void)
374 {
375         struct obdo *oa = NULL;
376
377         oa = kmem_cache_alloc(obdo_cachep, SLAB_KERNEL);
378         memset(oa, 0, sizeof (*oa));
379
380         return oa;
381 }
382
383 static __inline__ void obdo_free(struct obdo *oa)
384 {
385         if ( !oa ) 
386                 return;
387         kmem_cache_free(obdo_cachep, oa);
388 }
389
390 static __inline__ struct obdo *obdo_fromid(struct obd_conn *conn, obd_id id,
391                                            obd_mode mode, obd_flag valid)
392 {
393         struct obdo *oa;
394         int err;
395
396         ENTRY;
397         oa = obdo_alloc();
398         if ( !oa ) {
399                 EXIT;
400                 return ERR_PTR(-ENOMEM);
401         }
402
403         oa->o_id = id;
404         oa->o_mode = mode;
405         oa->o_valid = valid;
406         if ((err = OBP(conn->oc_dev, getattr)(conn, oa))) {
407                 obdo_free(oa);
408                 EXIT;
409                 return ERR_PTR(err);
410         }
411         EXIT;
412         return oa;
413 }
414
415 static inline void obdo_from_iattr(struct obdo *oa, struct iattr *attr)
416 {
417         unsigned int ia_valid = attr->ia_valid;
418
419         if (ia_valid & ATTR_ATIME) {
420                 oa->o_atime = attr->ia_atime;
421                 oa->o_valid |= OBD_MD_FLATIME;
422         }
423         if (ia_valid & ATTR_MTIME) {
424                 oa->o_mtime = attr->ia_mtime;
425                 oa->o_valid |= OBD_MD_FLMTIME;
426         }
427         if (ia_valid & ATTR_CTIME) {
428                 oa->o_ctime = attr->ia_ctime;
429                 oa->o_valid |= OBD_MD_FLCTIME;
430         }
431         if (ia_valid & ATTR_SIZE) {
432                 oa->o_size = attr->ia_size;
433                 oa->o_valid |= OBD_MD_FLSIZE;
434         }
435         if (ia_valid & ATTR_MODE) {
436                 oa->o_mode = attr->ia_mode;
437                 oa->o_valid |= OBD_MD_FLMODE;
438                 if (!in_group_p(oa->o_gid) && !capable(CAP_FSETID))
439                         oa->o_mode &= ~S_ISGID;
440         }
441         if (ia_valid & ATTR_UID)
442         {
443                 oa->o_uid = attr->ia_uid;
444                 oa->o_valid |= OBD_MD_FLUID;
445         }
446         if (ia_valid & ATTR_GID) {
447                 oa->o_gid = attr->ia_gid;
448                 oa->o_valid |= OBD_MD_FLGID;
449         }
450 }
451
452
453 static inline void iattr_from_obdo(struct iattr *attr, struct obdo *oa)
454 {
455         unsigned int ia_valid = oa->o_valid;
456         
457         memset(attr, 0, sizeof(*attr));
458         if (ia_valid & OBD_MD_FLATIME) {
459                 attr->ia_atime = oa->o_atime;
460                 attr->ia_valid |= ATTR_ATIME;
461         }
462         if (ia_valid & OBD_MD_FLMTIME) {
463                 attr->ia_mtime = oa->o_mtime;
464                 attr->ia_valid |= ATTR_MTIME;
465         }
466         if (ia_valid & OBD_MD_FLCTIME) {
467                 attr->ia_ctime = oa->o_ctime;
468                 attr->ia_valid |= ATTR_CTIME;
469         }
470         if (ia_valid & OBD_MD_FLSIZE) {
471                 attr->ia_size = oa->o_size;
472                 attr->ia_valid |= ATTR_SIZE;
473         }
474         if (ia_valid & OBD_MD_FLMODE) {
475                 attr->ia_mode = oa->o_mode;
476                 attr->ia_valid |= ATTR_MODE;
477                 if (!in_group_p(oa->o_gid) && !capable(CAP_FSETID))
478                         attr->ia_mode &= ~S_ISGID;
479         }
480         if (ia_valid & OBD_MD_FLUID)
481         {
482                 attr->ia_uid = oa->o_uid;
483                 attr->ia_valid |= ATTR_UID;
484         }
485         if (ia_valid & OBD_MD_FLGID) {
486                 attr->ia_gid = oa->o_gid;
487                 attr->ia_valid |= ATTR_GID;
488         }
489 }
490
491
492 /* WARNING: the file systems must take care not to tinker with
493    attributes they don't manage (such as blocks). */
494
495 static __inline__ void obdo_from_inode(struct obdo *dst, struct inode *src)
496 {
497         if ( dst->o_valid & OBD_MD_FLID )
498                 dst->o_id = src->i_ino;
499         if ( dst->o_valid & OBD_MD_FLATIME )
500                 dst->o_atime = src->i_atime;
501         if ( dst->o_valid & OBD_MD_FLMTIME )
502                 dst->o_mtime = src->i_mtime;
503         if ( dst->o_valid & OBD_MD_FLCTIME )
504                 dst->o_ctime = src->i_ctime;
505         if ( dst->o_valid & OBD_MD_FLSIZE )
506                 dst->o_size = src->i_size;
507         if ( dst->o_valid & OBD_MD_FLBLOCKS )   /* allocation of space */
508                 dst->o_blocks = src->i_blocks;
509         if ( dst->o_valid & OBD_MD_FLBLKSZ )
510                 dst->o_blksize = src->i_blksize;
511         if ( dst->o_valid & OBD_MD_FLMODE )
512                 dst->o_mode = src->i_mode;
513         if ( dst->o_valid & OBD_MD_FLUID )
514                 dst->o_uid = src->i_uid;
515         if ( dst->o_valid & OBD_MD_FLGID )
516                 dst->o_gid = src->i_gid;
517         if ( dst->o_valid & OBD_MD_FLFLAGS )
518                 dst->o_flags = src->i_flags;
519         if ( dst->o_valid & OBD_MD_FLNLINK )
520                 dst->o_nlink = src->i_nlink;
521         if ( dst->o_valid & OBD_MD_FLGENER ) 
522                 dst->o_generation = src->i_generation;
523 }
524
525 static __inline__ void obdo_to_inode(struct inode *dst, struct obdo *src)
526 {
527
528         if ( src->o_valid & OBD_MD_FLID )
529                 dst->i_ino = src->o_id;
530         if ( src->o_valid & OBD_MD_FLATIME ) 
531                 dst->i_atime = src->o_atime;
532         if ( src->o_valid & OBD_MD_FLMTIME ) 
533                 dst->i_mtime = src->o_mtime;
534         if ( src->o_valid & OBD_MD_FLCTIME ) 
535                 dst->i_ctime = src->o_ctime;
536         if ( src->o_valid & OBD_MD_FLSIZE ) 
537                 dst->i_size = src->o_size;
538         if ( src->o_valid & OBD_MD_FLBLOCKS ) /* allocation of space */
539                 dst->i_blocks = src->o_blocks;
540         if ( src->o_valid & OBD_MD_FLBLKSZ )
541                 dst->i_blksize = src->o_blksize;
542         if ( src->o_valid & OBD_MD_FLMODE ) 
543                 dst->i_mode = src->o_mode;
544         if ( src->o_valid & OBD_MD_FLUID ) 
545                 dst->i_uid = src->o_uid;
546         if ( src->o_valid & OBD_MD_FLGID ) 
547                 dst->i_gid = src->o_gid;
548         if ( src->o_valid & OBD_MD_FLFLAGS ) 
549                 dst->i_flags = src->o_flags;
550         if ( src->o_valid & OBD_MD_FLNLINK )
551                 dst->i_nlink = src->o_nlink;
552         if ( src->o_valid & OBD_MD_FLGENER )
553                 dst->i_generation = src->o_generation;
554 }
555
556 #endif 
557
558 static __inline__ void obdo_cpy_md(struct obdo *dst, struct obdo *src)
559 {
560 #ifdef __KERNEL__
561         CDEBUG(D_INODE, "src obdo %Ld valid 0x%x, dst obdo %Ld\n",
562                (unsigned long long)src->o_id, src->o_valid,
563                (unsigned long long)dst->o_id);
564 #endif
565         if ( src->o_valid & OBD_MD_FLATIME ) 
566                 dst->o_atime = src->o_atime;
567         if ( src->o_valid & OBD_MD_FLMTIME ) 
568                 dst->o_mtime = src->o_mtime;
569         if ( src->o_valid & OBD_MD_FLCTIME ) 
570                 dst->o_ctime = src->o_ctime;
571         if ( src->o_valid & OBD_MD_FLSIZE ) 
572                 dst->o_size = src->o_size;
573         if ( src->o_valid & OBD_MD_FLBLOCKS ) /* allocation of space */
574                 dst->o_blocks = src->o_blocks;
575         if ( src->o_valid & OBD_MD_FLBLKSZ )
576                 dst->o_blksize = src->o_blksize;
577         if ( src->o_valid & OBD_MD_FLMODE ) 
578                 dst->o_mode = src->o_mode;
579         if ( src->o_valid & OBD_MD_FLUID ) 
580                 dst->o_uid = src->o_uid;
581         if ( src->o_valid & OBD_MD_FLGID ) 
582                 dst->o_gid = src->o_gid;
583         if ( src->o_valid & OBD_MD_FLFLAGS ) 
584                 dst->o_flags = src->o_flags;
585         /*
586         if ( src->o_valid & OBD_MD_FLOBDFLG ) 
587                 dst->o_obdflags = src->o_obdflags;
588         */
589         if ( src->o_valid & OBD_MD_FLNLINK ) 
590                 dst->o_nlink = src->o_nlink;
591         if ( src->o_valid & OBD_MD_FLGENER ) 
592                 dst->o_generation = src->o_generation;
593         if ( src->o_valid & OBD_MD_FLINLINE &&
594              src->o_obdflags & OBD_FL_INLINEDATA) {
595                 memcpy(dst->o_inline, src->o_inline, sizeof(src->o_inline));
596                 dst->o_obdflags |= OBD_FL_INLINEDATA;
597         }
598         if ( src->o_valid & OBD_MD_FLOBDMD &&
599              src->o_obdflags & OBD_FL_OBDMDEXISTS) {
600                 memcpy(dst->o_obdmd, src->o_obdmd, sizeof(src->o_obdmd));
601                 dst->o_obdflags |= OBD_FL_OBDMDEXISTS;
602         }
603
604         dst->o_valid |= src->o_valid;
605 }
606
607
608 /* returns FALSE if comparison (by flags) is same, TRUE if changed */
609 static __inline__ int obdo_cmp_md(struct obdo *dst, struct obdo *src,
610                                   obd_flag compare)
611 {
612         int res = 0;
613
614         if ( compare & OBD_MD_FLATIME )
615                 res = (res || (dst->o_atime != src->o_atime));
616         if ( compare & OBD_MD_FLMTIME )
617                 res = (res || (dst->o_mtime != src->o_mtime));
618         if ( compare & OBD_MD_FLCTIME )
619                 res = (res || (dst->o_ctime != src->o_ctime));
620         if ( compare & OBD_MD_FLSIZE )
621                 res = (res || (dst->o_size != src->o_size));
622         if ( compare & OBD_MD_FLBLOCKS ) /* allocation of space */
623                 res = (res || (dst->o_blocks != src->o_blocks));
624         if ( compare & OBD_MD_FLBLKSZ )
625                 res = (res || (dst->o_blksize != src->o_blksize));
626         if ( compare & OBD_MD_FLMODE )
627                 res = (res || (dst->o_mode != src->o_mode));
628         if ( compare & OBD_MD_FLUID )
629                 res = (res || (dst->o_uid != src->o_uid));
630         if ( compare & OBD_MD_FLGID )
631                 res = (res || (dst->o_gid != src->o_gid));
632         if ( compare & OBD_MD_FLFLAGS ) 
633                 res = (res || (dst->o_flags != src->o_flags));
634         if ( compare & OBD_MD_FLNLINK )
635                 res = (res || (dst->o_nlink != src->o_nlink));
636         if ( compare & OBD_MD_FLGENER )
637                 res = (res || (dst->o_generation != src->o_generation));
638         /* XXX Don't know if thses should be included here - wasn't previously
639         if ( compare & OBD_MD_FLINLINE )
640                 res = (res || memcmp(dst->o_inline, src->o_inline));
641         if ( compare & OBD_MD_FLOBDMD )
642                 res = (res || memcmp(dst->o_obdmd, src->o_obdmd));
643         */
644         return res;
645 }
646
647
648 #ifdef __KERNEL__
649 int obd_register_type(struct obd_ops *ops, char *nm);
650 int obd_unregister_type(char *nm);
651
652 struct obd_client {
653         struct list_head cli_chain;
654         struct obd_device *cli_obd;
655         unsigned int cli_id;
656         unsigned long cli_prealloc_quota;
657         struct list_head cli_prealloc_inodes;
658 };
659
660
661 struct obd_prealloc_inode {
662         struct list_head obd_prealloc_chain;
663         unsigned long inode;
664 };
665
666 /* generic operations shared by various OBD types */
667 int gen_multi_setup(struct obd_device *obddev, uint32_t len, void *data);
668 int gen_multi_cleanup(struct obd_device *obddev);
669 int gen_multi_attach(struct obd_device *obddev, uint32_t len, void *data);
670 int gen_multi_detach(struct obd_device *obddev);
671 int gen_connect (struct obd_conn *conn);
672 int gen_disconnect(struct obd_conn *conn);
673 struct obd_client *gen_client(const struct obd_conn *);
674 int gen_cleanup(struct obd_device *obddev);
675 int gen_copy_data(struct obd_conn *dst_conn, struct obdo *dst,
676                   struct obd_conn *src_conn, struct obdo *src,
677                   obd_size count, obd_off offset);
678
679 #endif
680
681 /* sysctl.c */
682 extern void obd_sysctl_init (void);
683 extern void obd_sysctl_clean (void);
684
685 #endif /* __LINUX_CLASS_OBD_H */