Whamcloud - gitweb
- move the peter branch changes to the head
[fs/lustre-release.git] / lustre / include / linux / obd.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.
5  *
6  * This code is issued under the GNU General Public License.
7  * See the file COPYING in this distribution
8  */
9
10 #ifndef __OBD_H
11 #define __OBD_H
12 #include <linux/fs.h>
13 #include <linux/list.h>
14 #include <linux/smp_lock.h>
15
16 #include <linux/lustre_idl.h>
17
18 struct obd_type {
19         struct list_head typ_chain;
20         struct obd_ops *typ_ops;
21         char *typ_name;
22         int  typ_refcnt;
23 };
24
25
26 /* Individual type definitions */
27
28 struct ext2_obd {
29         struct super_block *e2_sb;
30         struct vfsmount *e2_vfsmnt;
31 };
32
33 #define OBD_RUN_CTXT_MAGIC      0xC0FFEEAA
34 #define OBD_CTXT_DEBUG          /* development-only debugging */
35 struct obd_run_ctxt {
36         struct vfsmount *pwdmnt;
37         struct dentry   *pwd;
38         mm_segment_t     fs;
39 #ifdef OBD_CTXT_DEBUG
40         __u32            magic;
41 #endif
42 };
43
44 struct filter_obd {
45         char *fo_fstype;
46         struct super_block *fo_sb;
47         struct vfsmount *fo_vfsmnt;
48         struct obd_run_ctxt fo_ctxt;
49         struct dentry *fo_dentry_O;
50         struct dentry *fo_dentry_O_mode[16];
51         spinlock_t fo_lock;
52         __u64 fo_lastino;
53         struct file_operations *fo_fop;
54         struct inode_operations *fo_iop;
55         struct address_space_operations *fo_aops;
56 };
57
58 struct mds_client_info;
59 struct mds_server_data;
60
61 struct client_obd {
62         struct ptlrpc_client *cl_client;
63         struct ptlrpc_client *cl_ldlm_client;
64         struct ptlrpc_connection *cl_conn;
65         struct lustre_handle cl_exporth;
66         struct semaphore cl_sem;
67         int cl_conn_count;
68         __u8 cl_target_uuid[37];
69         int cl_max_mdsize;
70 };
71
72 #if 0
73 struct osc_obd {
74         struct ptlrpc_client *osc_client;
75         struct ptlrpc_client *osc_ldlm_client;
76         struct ptlrpc_connection *osc_conn;
77         __u8 osc_target_uuid[37];
78 };
79 #endif
80
81 struct mds_obd {
82         struct ptlrpc_service *mds_service;
83
84         char *mds_fstype;
85         struct super_block *mds_sb;
86         struct super_operations *mds_sop;
87         struct vfsmount *mds_vfsmnt;
88         struct obd_run_ctxt mds_ctxt;
89         struct file_operations *mds_fop;
90         struct inode_operations *mds_iop;
91         struct address_space_operations *mds_aops;
92         struct mds_fs_operations *mds_fsops;
93         int mds_max_mdsize;
94         struct file *mds_rcvd_filp;
95         __u64 mds_last_committed;
96         __u64 mds_last_rcvd;
97         __u64 mds_mount_count;
98         struct ll_fid mds_rootfid;
99         int mds_client_count;
100         struct list_head mds_client_info;
101         struct mds_server_data *mds_server_data;
102 };
103
104 struct ldlm_obd {
105         struct ptlrpc_service *ldlm_service;
106         struct ptlrpc_client *ldlm_client;
107         struct ptlrpc_connection *ldlm_server_conn;
108 };
109
110 struct echo_obd {
111         char *eo_fstype;
112         struct super_block *eo_sb;
113         struct vfsmount *eo_vfsmnt;
114         struct obd_run_ctxt eo_ctxt;
115         spinlock_t eo_lock;
116         __u64 eo_lastino;
117         struct file_operations *eo_fop;
118         struct inode_operations *eo_iop;
119         struct address_space_operations *eo_aops;
120 };
121
122 struct recovd_obd {
123         time_t                recovd_waketime;
124         time_t                recovd_timeout;
125         struct ptlrpc_service *recovd_service;
126         struct ptlrpc_client  *recovd_client;
127         __u32                  recovd_flags; 
128         __u32                  recovd_wakeup_flag; 
129         spinlock_t             recovd_lock;
130         struct list_head      recovd_clients_lh; /* clients managed  */
131         struct list_head      recovd_troubled_lh; /* clients in trouble */
132         wait_queue_head_t     recovd_recovery_waitq;
133         wait_queue_head_t     recovd_ctl_waitq;
134         wait_queue_head_t     recovd_waitq;
135         struct task_struct    *recovd_thread;
136 };
137
138 struct trace_obd {
139         struct obdtrace_opstats *stats;
140 };
141
142 #if 0
143 struct snap_obd {
144         unsigned int snap_index;  /* which snapshot index are we accessing */
145         int snap_tableno;
146 };
147
148 #endif
149
150 struct ost_obd {
151         struct ptlrpc_service *ost_service;
152         struct lustre_handle ost_conn;   /* the local connection to the OBD */
153 };
154
155
156 struct lov_tgt_desc { 
157         uuid_t uuid;
158         struct lustre_handle conn; 
159 };
160
161 struct lov_obd {
162         struct obd_device *mdcobd;
163         struct lov_desc desc;
164         int bufsize; 
165         struct lov_tgt_desc *tgts;
166 };
167
168 struct niobuf_local {
169         __u64 offset;
170         __u32 len;
171         __u32 xid;
172         __u32 flags;
173         void *addr;
174         struct page *page;
175         void *target_private;
176         struct dentry *dentry;
177 };
178
179 #define N_LOCAL_TEMP_PAGE 0x00000001
180
181 /* corresponds to one of the obd's */
182 struct obd_device {
183         struct obd_type *obd_type;
184
185         /* common and UUID name of this device */
186         char *obd_name;
187         __u8 obd_uuid[37];
188
189         int obd_minor;
190         int obd_flags;
191         struct proc_dir_entry *obd_proc_entry;
192         struct list_head obd_exports;
193         struct list_head obd_imports;
194         struct ldlm_namespace *obd_namespace;
195         union {
196                 struct ext2_obd ext2;
197                 struct filter_obd filter;
198                 struct mds_obd mds;
199                 struct client_obd cli;
200                 struct ost_obd ost;
201                 //                struct osc_obd osc;
202                 struct ldlm_obd ldlm;
203                 struct echo_obd echo;
204                 struct recovd_obd recovd;
205                 struct trace_obd trace;
206                 struct lov_obd lov;
207 #if 0
208                 struct snap_obd snap;
209 #endif
210         } u;
211 };
212
213 typedef void (*brw_callback_t)(void *);
214
215 struct obd_ops {
216         int (*o_iocontrol)(long cmd, struct lustre_handle *, int len,
217                            void *karg, void *uarg);
218         int (*o_get_info)(struct lustre_handle *, obd_count keylen, void *key,
219                           obd_count *vallen, void **val);
220         int (*o_set_info)(struct lustre_handle *, obd_count keylen, void *key,
221                           obd_count vallen, void *val);
222         int (*o_attach)(struct obd_device *dev, obd_count len, void *data);
223         int (*o_detach)(struct obd_device *dev);
224         int (*o_setup) (struct obd_device *dev, obd_count len, void *data);
225         int (*o_cleanup)(struct obd_device *dev);
226         int (*o_connect)(struct lustre_handle *conn, struct obd_device *src);
227         int (*o_disconnect)(struct lustre_handle *conn);
228
229
230         int (*o_statfs)(struct lustre_handle *conn, struct statfs *statfs);
231         int (*o_preallocate)(struct lustre_handle *, obd_count *req,
232                              obd_id *ids);
233         int (*o_create)(struct lustre_handle *conn,  struct obdo *oa,
234                         struct lov_stripe_md **ea);
235         int (*o_destroy)(struct lustre_handle *conn, struct obdo *oa,
236                          struct lov_stripe_md *ea);
237         int (*o_setattr)(struct lustre_handle *conn, struct obdo *oa,
238                          struct lov_stripe_md *ea);
239         int (*o_getattr)(struct lustre_handle *conn, struct obdo *oa,
240                          struct lov_stripe_md *ea);
241         int (*o_open)(struct lustre_handle *conn, struct obdo *oa,
242                       struct lov_stripe_md *);
243         int (*o_close)(struct lustre_handle *conn, struct obdo *oa,
244                        struct lov_stripe_md *);
245         int (*o_brw)(int rw, struct lustre_handle *conn,
246                      struct lov_stripe_md *md, obd_count oa_bufs,
247                      struct page **buf, obd_size *count, obd_off *offset,
248                      obd_flag *flags, brw_callback_t callback, void * data);
249         int (*o_punch)(struct lustre_handle *conn, struct obdo *tgt,
250                        struct lov_stripe_md *md, obd_size count,
251                        obd_off offset);
252         int (*o_sync)(struct lustre_handle *conn, struct obdo *tgt,
253                       obd_size count, obd_off offset);
254         int (*o_migrate)(struct lustre_handle *conn, struct obdo *dst,
255                          struct obdo *src, obd_size count, obd_off offset);
256         int (*o_copy)(struct lustre_handle *dstconn, struct obdo *dst,
257                       struct lustre_handle *srconn, struct obdo *src,
258                       obd_size count, obd_off offset);
259         int (*o_iterate)(struct lustre_handle *conn,
260                          int (*)(obd_id, obd_gr, void *),
261                          obd_id *startid, obd_gr group, void *data);
262         int (*o_preprw)(int cmd, struct lustre_handle *conn,
263                         int objcount, struct obd_ioobj *obj,
264                         int niocount, struct niobuf_remote *remote,
265                         struct niobuf_local *local, void **desc_private);
266         int (*o_commitrw)(int cmd, struct lustre_handle *conn,
267                           int objcount, struct obd_ioobj *obj,
268                           int niocount, struct niobuf_local *local,
269                           void *desc_private);
270         int (*o_enqueue)(struct lustre_handle *conn,
271                          struct lustre_handle *parent_lock, __u64 *res_id,
272                          __u32 type, void *cookie, int cookielen, __u32 mode,
273                          int *flags, void *cb, void *data, int datalen,
274                          struct lustre_handle *lockh);
275         int (*o_cancel)(struct lustre_handle *, __u32 mode,
276                         struct lustre_handle *);
277 };
278
279 #endif