Whamcloud - gitweb
Fix problem with multiple connections to the same local device.
[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 mdc_obd {
62         struct ptlrpc_client *mdc_client;
63         struct ptlrpc_client *mdc_ldlm_client;
64         struct ptlrpc_connection *mdc_conn;
65         int mdc_max_mdsize;
66         __u8 mdc_target_uuid[37];
67 };
68
69 struct osc_obd {
70         struct ptlrpc_client *osc_client;
71         struct ptlrpc_client *osc_ldlm_client;
72         struct ptlrpc_connection *osc_conn;
73         __u8 osc_target_uuid[37];
74 };
75
76 struct mds_obd {
77         struct ldlm_namespace *mds_local_namespace;
78         struct ptlrpc_service *mds_service;
79         struct ptlrpc_client *mds_ldlm_client; /* to be an LDLM client */
80         struct ptlrpc_connection *mds_ldlm_conn; /* to be an LDLM client */
81         struct lustre_handle mds_connh; /* to be one's on DLM client */
82
83         char *mds_fstype;
84         struct super_block *mds_sb;
85         struct super_operations *mds_sop;
86         struct vfsmount *mds_vfsmnt;
87         struct obd_run_ctxt mds_ctxt;
88         struct file_operations *mds_fop;
89         struct inode_operations *mds_iop;
90         struct address_space_operations *mds_aops;
91         struct mds_fs_operations *mds_fsops;
92         int mds_max_mdsize;
93         struct file *mds_rcvd_filp;
94         __u64 mds_last_committed;
95         __u64 mds_last_rcvd;
96         __u64 mds_mount_count;
97         struct ll_fid mds_rootfid;
98         int mds_client_count;
99         struct list_head mds_client_info;
100         struct mds_server_data *mds_server_data;
101 };
102
103 struct ldlm_obd {
104         struct ptlrpc_service *ldlm_service;
105         struct ptlrpc_client *ldlm_client;
106         struct ptlrpc_connection *ldlm_server_conn;
107 };
108
109 struct echo_obd {
110         char *eo_fstype;
111         struct super_block *eo_sb;
112         struct vfsmount *eo_vfsmnt;
113         struct obd_run_ctxt eo_ctxt;
114         spinlock_t eo_lock;
115         __u64 eo_lastino;
116         struct file_operations *eo_fop;
117         struct inode_operations *eo_iop;
118         struct address_space_operations *eo_aops;
119 };
120
121 struct recovd_obd {
122         time_t                recovd_waketime;
123         time_t                recovd_timeout;
124         struct ptlrpc_service *recovd_service;
125         struct ptlrpc_client  *recovd_client;
126         __u32                  recovd_flags; 
127         __u32                  recovd_wakeup_flag; 
128         spinlock_t             recovd_lock;
129         struct list_head      recovd_clients_lh; /* clients managed  */
130         struct list_head      recovd_troubled_lh; /* clients in trouble */
131         wait_queue_head_t     recovd_recovery_waitq;
132         wait_queue_head_t     recovd_ctl_waitq;
133         wait_queue_head_t     recovd_waitq;
134         struct task_struct    *recovd_thread;
135 };
136
137 struct trace_obd {
138         struct obdtrace_opstats *stats;
139 };
140
141 #if 0
142 struct snap_obd {
143         unsigned int snap_index;  /* which snapshot index are we accessing */
144         int snap_tableno;
145 };
146
147 #endif
148
149 struct ost_obd {
150         struct ptlrpc_service *ost_service;
151         struct lustre_handle ost_conn;   /* the local connection to the OBD */
152 };
153
154
155 struct lov_tgt_desc { 
156         uuid_t uuid;
157         struct lustre_handle conn; 
158 };
159
160 struct lov_obd {
161         struct lustre_handle mdc_connh;
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 mdc_obd mdc;
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 struct obd_ops {
214         int (*o_iocontrol)(long cmd, struct lustre_handle *, int len, void *karg,
215                            void *uarg);
216         int (*o_get_info)(struct lustre_handle *, 
217                           obd_count keylen, void *key,
218                           obd_count *vallen, void **val);
219         int (*o_set_info)(struct lustre_handle *, 
220                           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, obd_id *ids);
232         int (*o_create)(struct lustre_handle *conn,  struct obdo *oa, 
233                         struct lov_stripe_md **ea);
234         int (*o_destroy)(struct lustre_handle *conn, struct obdo *oa, 
235                          struct lov_stripe_md *ea);
236         int (*o_setattr)(struct lustre_handle *conn, struct obdo *oa);
237         int (*o_getattr)(struct lustre_handle *conn, struct obdo *oa);
238         int (*o_open)(struct lustre_handle *conn, struct obdo *oa,
239                       struct lov_stripe_md *);
240         int (*o_close)(struct lustre_handle *conn, struct obdo *oa,
241                        struct lov_stripe_md *);
242         int (*o_brw)(int rw, struct lustre_handle *conn, 
243                      struct lov_stripe_md *md, obd_count oa_bufs, 
244                      struct page **buf,
245                      obd_size *count, 
246                      obd_off *offset, 
247                      obd_flag *flags,
248                      void *);
249         int (*o_punch)(struct lustre_handle *conn, struct obdo *tgt, struct lov_stripe_md *md, obd_size count,
250                        obd_off offset);
251         int (*o_sync)(struct lustre_handle *conn, struct obdo *tgt, obd_size count,
252                       obd_off offset);
253         int (*o_migrate)(struct lustre_handle *conn, struct obdo *dst,
254                          struct obdo *src, obd_size count, obd_off offset);
255         int (*o_copy)(struct lustre_handle *dstconn, struct obdo *dst,
256                       struct lustre_handle *srconn, struct obdo *src,
257                       obd_size count, obd_off offset);
258         int (*o_iterate)(struct lustre_handle *conn, int (*)(obd_id, obd_gr, void *),
259                          obd_id *startid, obd_gr group, void *data);
260         int (*o_preprw)(int cmd, struct lustre_handle *conn,
261                         int objcount, struct obd_ioobj *obj,
262                         int niocount, struct niobuf_remote *remote,
263                         struct niobuf_local *local, void **desc_private);
264         int (*o_commitrw)(int cmd, struct lustre_handle *conn,
265                           int objcount, struct obd_ioobj *obj,
266                           int niocount, struct niobuf_local *local,
267                           void *desc_private);
268         int (*o_enqueue)(struct lustre_handle *conn,
269                          struct lustre_handle *parent_lock, __u64 *res_id,
270                          __u32 type, void *cookie, int cookielen, __u32 mode,
271                          int *flags, void *cb, void *data, int datalen,
272                          struct lustre_handle *lockh);
273         int (*o_cancel)(struct lustre_handle *, __u32 mode, struct lustre_handle *);
274 };
275
276 #endif