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