Whamcloud - gitweb
assorted bug fixes and a working directory readpage routine
[fs/lustre-release.git] / lustre / include / linux / obd.h
1 #ifndef __OBD_H
2 #define __OBD_H
3 /*
4  * Copyright (C) 2001  Cluster File Systems, Inc.
5  *
6  * This code is issued under the GNU General Public License.
7  * See the file COPYING in this distribution
8  */
9
10 struct obd_conn_info {
11         unsigned int conn_id;     /* handle */
12 };
13
14 struct obd_type {
15         struct list_head typ_chain;
16         struct obd_ops *typ_ops;
17         char *typ_name;
18         int  typ_refcnt;
19 };
20
21 #define OBD_MAGIC       0xffff0000
22 #define OBD_MAGIC_MASK  0xffff0000
23
24
25
26 #endif