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