Whamcloud - gitweb
a73c64f3f78cebb40dad1694cebc38c545970e84
[fs/lustre-release.git] / lustre / include / linux / obd.h
1 #ifndef __OBD_H
2 #define __OBD_H
3
4
5 struct obd_conn_info {
6         unsigned int conn_id;     /* handle */
7 };
8
9 struct obd_type {
10         struct list_head typ_chain;
11         struct obd_ops *typ_ops;
12         char *typ_name;
13         int  typ_refcnt;
14 };
15
16 #define OBD_MAGIC       0xffff0000
17 #define OBD_MAGIC_MASK  0xffff0000
18
19
20
21 #endif