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