Whamcloud - gitweb
LU-3534 osp: transfer updates with bulk RPC
[fs/lustre-release.git] / lustre / osp / osp_internal.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2012, 2014, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/osp/osp_internal.h
37  *
38  * Author: Alex Zhuravlev <alexey.zhuravlev@intel.com>
39  */
40
41 #ifndef _OSP_INTERNAL_H
42 #define _OSP_INTERNAL_H
43
44 #include <obd.h>
45 #include <obd_class.h>
46 #include <dt_object.h>
47 #include <md_object.h>
48 #include <lustre_fid.h>
49 #include <lustre_update.h>
50 #include <lu_target.h>
51 #include <lustre_mdc.h>
52
53 /*
54  * Infrastructure to support tracking of last committed llog record
55  */
56 struct osp_id_tracker {
57         spinlock_t               otr_lock;
58         __u32                    otr_next_id;
59         __u32                    otr_committed_id;
60         /* callback is register once per diskfs -- that's the whole point */
61         struct dt_txn_callback   otr_tx_cb;
62         /* single node can run many clusters */
63         struct list_head         otr_wakeup_list;
64         struct list_head         otr_list;
65         /* underlying shared device */
66         struct dt_device        *otr_dev;
67         /* how many users of this tracker */
68         atomic_t                 otr_refcount;
69 };
70
71 struct osp_precreate {
72         /*
73          * Precreation pool
74          */
75         spinlock_t                       osp_pre_lock;
76
77         /* last fid to assign in creation */
78         struct lu_fid                    osp_pre_used_fid;
79         /* last created id OST reported, next-created - available id's */
80         struct lu_fid                    osp_pre_last_created_fid;
81         /* how many ids are reserved in declare, we shouldn't block in create */
82         __u64                            osp_pre_reserved;
83         /* consumers (who needs new ids) wait here */
84         wait_queue_head_t                osp_pre_user_waitq;
85         /* current precreation status: working, failed, stopping? */
86         int                              osp_pre_status;
87         /* how many to precreate next time */
88         int                              osp_pre_grow_count;
89         int                              osp_pre_min_grow_count;
90         int                              osp_pre_max_grow_count;
91         /* whether to grow precreation window next time or not */
92         int                              osp_pre_grow_slow;
93         /* cleaning up orphans or recreating missing objects */
94         int                              osp_pre_recovering;
95 };
96
97 struct osp_update_request_sub {
98         struct object_update_request    *ours_req;
99         size_t                          ours_req_size;
100         /* Linked to osp_update_request->our_req_list */
101         struct list_head                ours_list;
102 };
103
104 /**
105  * Tracking the updates being executed on this dt_device.
106  */
107 struct osp_update_request {
108         int                             our_flags;
109         /* update request result */
110         int                             our_rc;
111
112         /* List of osp_update_request_sub */
113         struct list_head                our_req_list;
114
115         struct list_head                our_cb_items;
116
117         /* points to thandle if this update request belongs to one */
118         struct osp_thandle              *our_th;
119         /* linked to the list(ou_list) in osp_updates */
120         struct list_head                our_list;
121         __u32                           our_req_sent:1;
122 };
123
124 struct osp_updates {
125         struct list_head        ou_list;
126         spinlock_t              ou_lock;
127         wait_queue_head_t       ou_waitq;
128         /* wait for next updates */
129         __u64                   ou_rpc_version;
130         __u64                   ou_version;
131 };
132
133 struct osp_device {
134         struct dt_device                 opd_dt_dev;
135         /* corresponded OST index */
136         int                              opd_index;
137
138         /* corrsponded MDT index, which will be used when connecting to OST
139          * for validating the connection (see ofd_parse_connect_data) */
140         int                              opd_group;
141         /* device used to store persistent state (llogs, last ids) */
142         struct obd_export               *opd_storage_exp;
143         struct dt_device                *opd_storage;
144         struct dt_object                *opd_last_used_oid_file;
145         struct dt_object                *opd_last_used_seq_file;
146
147         /* stored persistently in LE format, updated directly to/from disk
148          * and required le64_to_cpu() conversion before use.
149          * Protected by opd_pre_lock */
150         struct lu_fid                   opd_last_used_fid;
151         struct lu_fid                   opd_gap_start_fid;
152         int                              opd_gap_count;
153         /* connection to OST */
154         struct obd_device               *opd_obd;
155         struct obd_export               *opd_exp;
156         struct obd_uuid                  opd_cluuid;
157         struct obd_connect_data         *opd_connect_data;
158         int                              opd_connects;
159         struct proc_dir_entry           *opd_proc_entry;
160         struct lprocfs_stats            *opd_stats;
161         /* connection status. */
162         unsigned int                     opd_new_connection:1,
163                                          opd_got_disconnected:1,
164                                          opd_imp_connected:1,
165                                          opd_imp_active:1,
166                                          opd_imp_seen_connected:1,
167                                          opd_connect_mdt:1;
168
169         /* whether local recovery is completed:
170          * reported via ->ldo_recovery_complete() */
171         int                              opd_recovery_completed;
172
173         /* precreate structure for OSP */
174         struct osp_precreate            *opd_pre;
175         /* dedicate precreate thread */
176         struct ptlrpc_thread             opd_pre_thread;
177         /* thread waits for signals about pool going empty */
178         wait_queue_head_t                opd_pre_waitq;
179
180         /* send update thread */
181         struct osp_updates              *opd_update;
182         /* dedicate update thread */
183         struct ptlrpc_thread             opd_update_thread;
184
185         /*
186          * OST synchronization
187          */
188         spinlock_t                       opd_syn_lock;
189         /* unique generation, to recognize start of new records in the llog */
190         struct llog_gen                  opd_syn_generation;
191         /* number of changes to sync, used to wake up sync thread */
192         unsigned long                    opd_syn_changes;
193         /* processing of changes from previous mount is done? */
194         int                              opd_syn_prev_done;
195         /* found records */
196         struct ptlrpc_thread             opd_syn_thread;
197         wait_queue_head_t                opd_syn_waitq;
198         /* list of remotely committed rpc */
199         struct list_head                 opd_syn_committed_there;
200         /* number of changes being under sync */
201         int                              opd_syn_sync_in_progress;
202         /* number of RPCs in flight - flow control */
203         int                              opd_syn_rpc_in_flight;
204         int                              opd_syn_max_rpc_in_flight;
205         /* number of RPC in processing (including non-committed by OST) */
206         int                              opd_syn_rpc_in_progress;
207         int                              opd_syn_max_rpc_in_progress;
208         /* osd api's commit cb control structure */
209         struct dt_txn_callback           opd_syn_txn_cb;
210         /* last used change number -- semantically similar to transno */
211         unsigned long                    opd_syn_last_used_id;
212         /* last committed change number -- semantically similar to
213          * last_committed */
214         unsigned long                    opd_syn_last_committed_id;
215         /* last processed (taken from llog) id */
216         unsigned long                    opd_syn_last_processed_id;
217         struct osp_id_tracker           *opd_syn_tracker;
218         struct list_head                 opd_syn_ontrack;
219         /* stop processing new requests until barrier=0 */
220         atomic_t                         opd_syn_barrier;
221         wait_queue_head_t                opd_syn_barrier_waitq;
222
223         /*
224          * statfs related fields: OSP maintains it on its own
225          */
226         struct obd_statfs                opd_statfs;
227         cfs_time_t                       opd_statfs_fresh_till;
228         struct timer_list                        opd_statfs_timer;
229         int                              opd_statfs_update_in_progress;
230         /* how often to update statfs data */
231         int                              opd_statfs_maxage;
232
233         struct proc_dir_entry           *opd_symlink;
234
235         /* If the caller wants to do some idempotent async operations on
236          * remote server, it can append the async remote requests on the
237          * osp_device::opd_async_requests via declare() functions, these
238          * requests can be packed together and sent to the remote server
239          * via single OUT RPC later. */
240         struct osp_update_request       *opd_async_requests;
241         /* Protect current operations on opd_async_requests. */
242         struct mutex                     opd_async_requests_mutex;
243         struct list_head                 opd_async_updates;
244         struct rw_semaphore              opd_async_updates_rwsem;
245         atomic_t                         opd_async_updates_count;
246 };
247
248 #define opd_pre_lock                    opd_pre->osp_pre_lock
249 #define opd_pre_used_fid                opd_pre->osp_pre_used_fid
250 #define opd_pre_last_created_fid        opd_pre->osp_pre_last_created_fid
251 #define opd_pre_reserved                opd_pre->osp_pre_reserved
252 #define opd_pre_user_waitq              opd_pre->osp_pre_user_waitq
253 #define opd_pre_status                  opd_pre->osp_pre_status
254 #define opd_pre_grow_count              opd_pre->osp_pre_grow_count
255 #define opd_pre_min_grow_count          opd_pre->osp_pre_min_grow_count
256 #define opd_pre_max_grow_count          opd_pre->osp_pre_max_grow_count
257 #define opd_pre_grow_slow               opd_pre->osp_pre_grow_slow
258 #define opd_pre_recovering              opd_pre->osp_pre_recovering
259
260 extern struct kmem_cache *osp_object_kmem;
261
262 /* The first part of oxe_buf is xattr name, and is '\0' terminated.
263  * The left part is for value, binary mode. */
264 struct osp_xattr_entry {
265         struct list_head         oxe_list;
266         atomic_t                 oxe_ref;
267         void                    *oxe_value;
268         size_t                   oxe_buflen;
269         size_t                   oxe_namelen;
270         size_t                   oxe_vallen;
271         unsigned int             oxe_exist:1,
272                                  oxe_ready:1;
273         char                     oxe_buf[0];
274 };
275
276 struct osp_object_attr {
277         struct lu_attr          ooa_attr;
278         struct list_head        ooa_xattr_list;
279 };
280
281 /* this is a top object */
282 struct osp_object {
283         struct lu_object_header opo_header;
284         struct dt_object        opo_obj;
285         unsigned int            opo_reserved:1,
286                                 opo_non_exist:1;
287
288         /* read/write lock for md osp object */
289         struct rw_semaphore     opo_sem;
290         const struct lu_env     *opo_owner;
291         struct osp_object_attr *opo_ooa;
292         /* Protect opo_ooa. */
293         spinlock_t              opo_lock;
294 };
295
296 extern struct lu_object_operations osp_lu_obj_ops;
297 extern const struct dt_device_operations osp_dt_ops;
298 extern struct dt_object_operations osp_md_obj_ops;
299 extern struct dt_body_operations osp_md_body_ops;
300
301 struct osp_thread_info {
302         struct lu_buf            osi_lb;
303         struct lu_buf            osi_lb2;
304         struct lu_fid            osi_fid;
305         struct lu_attr           osi_attr;
306         struct ost_id            osi_oi;
307         struct ost_id            osi_oi2;
308         u64                      osi_id;
309         loff_t                   osi_off;
310         union {
311                 struct llog_rec_hdr             osi_hdr;
312                 struct llog_unlink64_rec        osi_unlink;
313                 struct llog_setattr64_rec       osi_setattr;
314                 struct llog_gen_rec             osi_gen;
315         };
316         struct llog_cookie       osi_cookie;
317         struct llog_catid        osi_cid;
318         struct lu_seq_range      osi_seq;
319         struct ldlm_res_id       osi_resid;
320         struct obdo              osi_obdo;
321 };
322
323 /* Iterator for OSP */
324 struct osp_it {
325         __u32                     ooi_pos_page;
326         __u32                     ooi_pos_lu_page;
327         __u32                     ooi_attr;
328         int                       ooi_pos_ent;
329         int                       ooi_total_npages;
330         int                       ooi_valid_npages;
331         unsigned int              ooi_swab:1;
332         __u64                     ooi_next;
333         struct dt_object         *ooi_obj;
334         void                     *ooi_ent;
335         struct page              *ooi_cur_page;
336         struct lu_idxpage        *ooi_cur_idxpage;
337         struct page              **ooi_pages;
338 };
339
340 #define OSP_THANDLE_MAGIC       0x20141214
341 struct osp_thandle {
342         struct thandle           ot_super;
343
344         /* OSP will use this thandle to update last oid*/
345         struct thandle          *ot_storage_th;
346         __u32                    ot_magic;
347         struct list_head         ot_commit_dcb_list;
348         struct list_head         ot_stop_dcb_list;
349         struct osp_update_request *ot_our;
350         atomic_t                 ot_refcount;
351         __u64                    ot_version;
352 };
353
354 static inline struct osp_thandle *
355 thandle_to_osp_thandle(struct thandle *th)
356 {
357         return container_of(th, struct osp_thandle, ot_super);
358 }
359
360 static inline struct osp_update_request *
361 thandle_to_osp_update_request(struct thandle *th)
362 {
363         struct osp_thandle *oth;
364
365         oth = thandle_to_osp_thandle(th);
366         return oth->ot_our;
367 }
368
369 /* The transaction only include the updates on the remote node, and
370  * no local updates at all */
371 static inline bool is_only_remote_trans(struct thandle *th)
372 {
373         return th->th_top == NULL;
374 }
375
376 static inline void osp_objid_buf_prep(struct lu_buf *buf, loff_t *off,
377                                       __u32 *id, int index)
378 {
379         /* Note: through id is only 32 bits, it will also write 64 bits
380          * for oid to keep compatibility with the previous version. */
381         buf->lb_buf = (void *)id;
382         buf->lb_len = sizeof(u64);
383         *off = sizeof(u64) * index;
384 }
385
386 static inline void osp_objseq_buf_prep(struct lu_buf *buf, loff_t *off,
387                                        __u64 *seq, int index)
388 {
389         buf->lb_buf = (void *)seq;
390         buf->lb_len = sizeof(u64);
391         *off = sizeof(u64) * index;
392 }
393
394 static inline void osp_buf_prep(struct lu_buf *lb, void *buf, int buf_len)
395 {
396         lb->lb_buf = buf;
397         lb->lb_len = buf_len;
398 }
399
400 extern struct lu_context_key osp_thread_key;
401
402 static inline struct osp_thread_info *osp_env_info(const struct lu_env *env)
403 {
404         struct osp_thread_info *info;
405
406         info = lu_context_key_get(&env->le_ctx, &osp_thread_key);
407         if (info == NULL) {
408                 lu_env_refill((struct lu_env *)env);
409                 info = lu_context_key_get(&env->le_ctx, &osp_thread_key);
410         }
411         LASSERT(info);
412         return info;
413 }
414
415 struct osp_txn_info {
416         __u32   oti_current_id;
417 };
418
419 extern struct lu_context_key osp_txn_key;
420
421 static inline struct osp_txn_info *osp_txn_info(struct lu_context *ctx)
422 {
423         struct osp_txn_info *info;
424
425         info = lu_context_key_get(ctx, &osp_txn_key);
426         return info;
427 }
428
429 extern const struct lu_device_operations osp_lu_ops;
430
431 static inline int lu_device_is_osp(struct lu_device *d)
432 {
433         return ergo(d != NULL && d->ld_ops != NULL, d->ld_ops == &osp_lu_ops);
434 }
435
436 static inline struct osp_device *lu2osp_dev(struct lu_device *d)
437 {
438         LASSERT(lu_device_is_osp(d));
439         return container_of0(d, struct osp_device, opd_dt_dev.dd_lu_dev);
440 }
441
442 static inline struct lu_device *osp2lu_dev(struct osp_device *d)
443 {
444         return &d->opd_dt_dev.dd_lu_dev;
445 }
446
447 static inline struct osp_device *dt2osp_dev(struct dt_device *d)
448 {
449         LASSERT(lu_device_is_osp(&d->dd_lu_dev));
450         return container_of0(d, struct osp_device, opd_dt_dev);
451 }
452
453 static inline struct osp_object *lu2osp_obj(struct lu_object *o)
454 {
455         LASSERT(ergo(o != NULL, lu_device_is_osp(o->lo_dev)));
456         return container_of0(o, struct osp_object, opo_obj.do_lu);
457 }
458
459 static inline struct lu_object *osp2lu_obj(struct osp_object *obj)
460 {
461         return &obj->opo_obj.do_lu;
462 }
463
464 static inline struct osp_object *osp_obj(const struct lu_object *o)
465 {
466         LASSERT(lu_device_is_osp(o->lo_dev));
467         return container_of0(o, struct osp_object, opo_obj.do_lu);
468 }
469
470 static inline struct osp_object *dt2osp_obj(const struct dt_object *d)
471 {
472         return osp_obj(&d->do_lu);
473 }
474
475 static inline struct dt_object *osp_object_child(struct osp_object *o)
476 {
477         return container_of0(lu_object_next(osp2lu_obj(o)),
478                              struct dt_object, do_lu);
479 }
480
481 static inline struct seq_server_site *osp_seq_site(struct osp_device *osp)
482 {
483         return osp->opd_dt_dev.dd_lu_dev.ld_site->ld_seq_site;
484 }
485
486 #define osp_init_rpc_lock(lck) mdc_init_rpc_lock(lck)
487
488 static inline void osp_get_rpc_lock(struct osp_device *osp)
489 {
490         struct mdc_rpc_lock *rpc_lock = osp->opd_obd->u.cli.cl_rpc_lock;
491
492         mdc_get_rpc_lock(rpc_lock, NULL);
493 }
494
495 static inline void osp_put_rpc_lock(struct osp_device *osp)
496 {
497         struct mdc_rpc_lock *rpc_lock = osp->opd_obd->u.cli.cl_rpc_lock;
498
499         mdc_put_rpc_lock(rpc_lock, NULL);
500 }
501
502 static inline int osp_fid_diff(const struct lu_fid *fid1,
503                                const struct lu_fid *fid2)
504 {
505         /* In 2.6+ ost_idx is packed into IDIF FID, while in 2.4 and 2.5 IDIF
506          * is always FID_SEQ_IDIF(0x100000000ULL), which does not include OST
507          * index in the seq. So we can not compare IDIF FID seq here */
508         if (fid_is_idif(fid1) && fid_is_idif(fid2)) {
509                 __u32 ost_idx1 = fid_idif_ost_idx(fid1);
510                 __u32 ost_idx2 = fid_idif_ost_idx(fid2);
511
512                 LASSERTF(ost_idx1 == 0 || ost_idx2 == 0 || ost_idx1 == ost_idx2,
513                          "fid1: "DFID", fid2: "DFID"\n", PFID(fid1),
514                          PFID(fid2));
515
516                 return fid_idif_id(fid1->f_seq, fid1->f_oid, 0) -
517                        fid_idif_id(fid2->f_seq, fid2->f_oid, 0);
518         }
519
520         LASSERTF(fid_seq(fid1) == fid_seq(fid2), "fid1:"DFID
521                  ", fid2:"DFID"\n", PFID(fid1), PFID(fid2));
522
523         return fid_oid(fid1) - fid_oid(fid2);
524 }
525
526
527 static inline void osp_update_last_fid(struct osp_device *d, struct lu_fid *fid)
528 {
529         int diff = osp_fid_diff(fid, &d->opd_last_used_fid);
530         /*
531          * we might have lost precreated objects due to VBR and precreate
532          * orphans, the gap in objid can be calculated properly only here
533          */
534         if (diff > 0) {
535                 if (diff > 1) {
536                         d->opd_gap_start_fid = d->opd_last_used_fid;
537                         d->opd_gap_start_fid.f_oid++;
538                         d->opd_gap_count = diff - 1;
539                         CDEBUG(D_HA, "Gap in objids: start="DFID", count =%d\n",
540                                PFID(&d->opd_gap_start_fid), d->opd_gap_count);
541                 }
542                 d->opd_last_used_fid = *fid;
543         }
544 }
545
546 static int osp_fid_end_seq(const struct lu_env *env, struct lu_fid *fid)
547 {
548         if (fid_is_idif(fid)) {
549                 struct osp_thread_info *info = osp_env_info(env);
550                 struct ost_id *oi = &info->osi_oi;
551
552                 fid_to_ostid(fid, oi);
553                 return ostid_id(oi) == IDIF_MAX_OID;
554         } else {
555                 return fid_oid(fid) == LUSTRE_DATA_SEQ_MAX_WIDTH;
556         }
557 }
558
559 static inline int osp_precreate_end_seq_nolock(const struct lu_env *env,
560                                                struct osp_device *osp)
561 {
562         struct lu_fid *fid = &osp->opd_pre_last_created_fid;
563
564         return osp_fid_end_seq(env, fid);
565 }
566
567 static inline int osp_precreate_end_seq(const struct lu_env *env,
568                                         struct osp_device *osp)
569 {
570         int rc;
571
572         spin_lock(&osp->opd_pre_lock);
573         rc = osp_precreate_end_seq_nolock(env, osp);
574         spin_unlock(&osp->opd_pre_lock);
575         return rc;
576 }
577
578 static inline int osp_is_fid_client(struct osp_device *osp)
579 {
580         struct obd_import *imp = osp->opd_obd->u.cli.cl_import;
581
582         return imp->imp_connect_data.ocd_connect_flags & OBD_CONNECT_FID;
583 }
584
585 struct object_update *
586 update_buffer_get_update(struct object_update_request *request,
587                          unsigned int index);
588
589 int osp_extend_update_buffer(const struct lu_env *env,
590                              struct osp_update_request *our);
591
592 struct osp_update_request_sub *
593 osp_current_object_update_request(struct osp_update_request *our);
594
595 int osp_object_update_request_create(struct osp_update_request *our,
596                                      size_t size);
597
598 #define osp_update_rpc_pack(env, name, our, op, ...)                    \
599 ({                                                                      \
600         struct object_update    *object_update;                         \
601         size_t                  max_update_length;                      \
602         struct osp_update_request_sub *ours;                            \
603         int ret;                                                        \
604                                                                         \
605         while (1) {                                                     \
606                 ours = osp_current_object_update_request(our);          \
607                 LASSERT(ours != NULL);                                  \
608                 max_update_length = ours->ours_req_size -               \
609                             object_update_request_size(ours->ours_req); \
610                                                                         \
611                 object_update = update_buffer_get_update(ours->ours_req,\
612                                          ours->ours_req->ourq_count);   \
613                 ret = out_##name##_pack(env, object_update,             \
614                                         &max_update_length,             \
615                                        __VA_ARGS__);                    \
616                 if (ret == -E2BIG) {                                    \
617                         int rc1;                                        \
618                         /* Create new object update request */          \
619                         rc1 = osp_object_update_request_create(our,     \
620                                 max_update_length  +                    \
621                                 offsetof(struct object_update_request,  \
622                                          ourq_updates[0]) + 1);         \
623                         if (rc1 != 0) {                                 \
624                                 ret = rc1;                              \
625                                 break;                                  \
626                         }                                               \
627                         continue;                                       \
628                 } else {                                                \
629                         if (ret == 0) {                                 \
630                                 ours->ours_req->ourq_count++;           \
631                                 object_update->ou_flags |=              \
632                                                      update->our_flags; \
633                         }                                               \
634                         break;                                          \
635                 }                                                       \
636         }                                                               \
637         ret;                                                            \
638 })
639
640 static inline bool osp_send_update_thread_running(struct osp_device *osp)
641 {
642         return osp->opd_update_thread.t_flags & SVC_RUNNING;
643 }
644
645 static inline bool osp_send_update_thread_stopped(struct osp_device *osp)
646 {
647         return osp->opd_update_thread.t_flags & SVC_STOPPED;
648 }
649
650 typedef int (*osp_update_interpreter_t)(const struct lu_env *env,
651                                         struct object_update_reply *rep,
652                                         struct ptlrpc_request *req,
653                                         struct osp_object *obj,
654                                         void *data, int index, int rc);
655
656 /* osp_dev.c */
657 void osp_update_last_id(struct osp_device *d, u64 objid);
658 extern struct llog_operations osp_mds_ost_orig_logops;
659
660 /* osp_trans.c */
661 int osp_insert_async_request(const struct lu_env *env, enum update_type op,
662                              struct osp_object *obj, int count, __u16 *lens,
663                              const void **bufs, void *data,
664                              osp_update_interpreter_t interpreter);
665
666 int osp_unplug_async_request(const struct lu_env *env,
667                              struct osp_device *osp,
668                              struct osp_update_request *update);
669 int osp_trans_update_request_create(struct thandle *th);
670 struct thandle *osp_trans_create(const struct lu_env *env,
671                                  struct dt_device *d);
672 int osp_trans_start(const struct lu_env *env, struct dt_device *dt,
673                     struct thandle *th);
674 int osp_insert_update_callback(const struct lu_env *env,
675                                struct osp_update_request *update,
676                                struct osp_object *obj, void *data,
677                                osp_update_interpreter_t interpreter);
678
679 struct osp_update_request *osp_update_request_create(struct dt_device *dt);
680 void osp_update_request_destroy(struct osp_update_request *update);
681
682 int osp_send_update_thread(void *arg);
683 int osp_check_and_set_rpc_version(struct osp_thandle *oth);
684
685 void osp_thandle_destroy(struct osp_thandle *oth);
686 static inline void osp_thandle_get(struct osp_thandle *oth)
687 {
688         atomic_inc(&oth->ot_refcount);
689 }
690
691 static inline void osp_thandle_put(struct osp_thandle *oth)
692 {
693         if (atomic_dec_and_test(&oth->ot_refcount))
694                 osp_thandle_destroy(oth);
695 }
696
697 int osp_prep_update_req(const struct lu_env *env, struct obd_import *imp,
698                         struct osp_update_request *our,
699                         struct ptlrpc_request **reqp);
700 int osp_remote_sync(const struct lu_env *env, struct osp_device *osp,
701                     struct osp_update_request *update,
702                     struct ptlrpc_request **reqp);
703
704 struct thandle *osp_get_storage_thandle(const struct lu_env *env,
705                                         struct thandle *th,
706                                         struct osp_device *osp);
707 void osp_trans_callback(const struct lu_env *env,
708                         struct osp_thandle *oth, int rc);
709 /* osp_object.c */
710 int osp_attr_get(const struct lu_env *env, struct dt_object *dt,
711                  struct lu_attr *attr);
712 int osp_xattr_get(const struct lu_env *env, struct dt_object *dt,
713                   struct lu_buf *buf, const char *name);
714 int osp_declare_xattr_set(const struct lu_env *env, struct dt_object *dt,
715                           const struct lu_buf *buf, const char *name,
716                           int flag, struct thandle *th);
717 int osp_xattr_set(const struct lu_env *env, struct dt_object *dt,
718                   const struct lu_buf *buf, const char *name, int fl,
719                   struct thandle *th);
720 int osp_declare_xattr_del(const struct lu_env *env, struct dt_object *dt,
721                           const char *name, struct thandle *th);
722 int osp_xattr_del(const struct lu_env *env, struct dt_object *dt,
723                   const char *name, struct thandle *th);
724
725 int osp_trans_stop(const struct lu_env *env, struct dt_device *dt,
726                    struct thandle *th);
727 int osp_trans_cb_add(struct thandle *th, struct dt_txn_commit_cb *dcb);
728
729 struct dt_it *osp_it_init(const struct lu_env *env, struct dt_object *dt,
730                           __u32 attr);
731 void osp_it_fini(const struct lu_env *env, struct dt_it *di);
732 int osp_it_get(const struct lu_env *env, struct dt_it *di,
733                const struct dt_key *key);
734 void osp_it_put(const struct lu_env *env, struct dt_it *di);
735 __u64 osp_it_store(const struct lu_env *env, const struct dt_it *di);
736 int osp_it_key_rec(const struct lu_env *env, const struct dt_it *di,
737                    void *key_rec);
738 int osp_it_next_page(const struct lu_env *env, struct dt_it *di);
739 int osp_oac_init(struct osp_object *obj);
740 /* osp_md_object.c */
741 int osp_md_declare_object_create(const struct lu_env *env,
742                                  struct dt_object *dt,
743                                  struct lu_attr *attr,
744                                  struct dt_allocation_hint *hint,
745                                  struct dt_object_format *dof,
746                                  struct thandle *th);
747 int osp_md_object_create(const struct lu_env *env, struct dt_object *dt,
748                          struct lu_attr *attr, struct dt_allocation_hint *hint,
749                          struct dt_object_format *dof, struct thandle *th);
750 int osp_md_declare_attr_set(const struct lu_env *env, struct dt_object *dt,
751                             const struct lu_attr *attr, struct thandle *th);
752 int osp_md_attr_set(const struct lu_env *env, struct dt_object *dt,
753                     const struct lu_attr *attr, struct thandle *th);
754 extern const struct dt_index_operations osp_md_index_ops;
755
756 /* osp_precreate.c */
757 int osp_init_precreate(struct osp_device *d);
758 int osp_precreate_reserve(const struct lu_env *env, struct osp_device *d);
759 __u64 osp_precreate_get_id(struct osp_device *d);
760 int osp_precreate_get_fid(const struct lu_env *env, struct osp_device *d,
761                           struct lu_fid *fid);
762 void osp_precreate_fini(struct osp_device *d);
763 int osp_object_truncate(const struct lu_env *env, struct dt_object *dt, __u64);
764 void osp_pre_update_status(struct osp_device *d, int rc);
765 void osp_statfs_need_now(struct osp_device *d);
766 int osp_reset_last_used(const struct lu_env *env, struct osp_device *osp);
767 int osp_write_last_oid_seq_files(struct lu_env *env, struct osp_device *osp,
768                                  struct lu_fid *fid, int sync);
769 int osp_init_pre_fid(struct osp_device *osp);
770
771 /* lproc_osp.c */
772 void osp_lprocfs_init(struct osp_device *osp);
773
774 /* osp_sync.c */
775 int osp_sync_declare_add(const struct lu_env *env, struct osp_object *o,
776                          llog_op_type type, struct thandle *th);
777 int osp_sync_add(const struct lu_env *env, struct osp_object *o,
778                  llog_op_type type, struct thandle *th,
779                  const struct lu_attr *attr);
780 int osp_sync_init(const struct lu_env *env, struct osp_device *d);
781 int osp_sync_fini(struct osp_device *d);
782 void __osp_sync_check_for_work(struct osp_device *d);
783
784 /* lwp_dev.c */
785 extern struct obd_ops lwp_obd_device_ops;
786 extern struct lu_device_type lwp_device_type;
787
788 #endif