Whamcloud - gitweb
LU-16138 kernel: preserve RHEL8.x server kABI for block integrity
[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  *
31  * lustre/osp/osp_internal.h
32  *
33  * Author: Alex Zhuravlev <alexey.zhuravlev@intel.com>
34  */
35
36 #ifndef _OSP_INTERNAL_H
37 #define _OSP_INTERNAL_H
38
39 #include <obd.h>
40 #include <obd_class.h>
41 #include <dt_object.h>
42 #include <md_object.h>
43 #include <lustre_fid.h>
44 #include <lustre_update.h>
45 #include <lu_target.h>
46
47 /*
48  * Infrastructure to support tracking of last committed llog record
49  */
50 struct osp_id_tracker {
51         spinlock_t               otr_lock;
52         __u64                    otr_next_id;
53         __u64                    otr_committed_id;
54         /* callback is register once per diskfs -- that's the whole point */
55         struct dt_txn_callback   otr_tx_cb;
56         /* single node can run many clusters */
57         struct list_head         otr_wakeup_list;
58         struct list_head         otr_list;
59         /* underlying shared device */
60         struct dt_device        *otr_dev;
61         /* how many users of this tracker */
62         atomic_t                 otr_refcount;
63 };
64
65 struct osp_precreate {
66         /*
67          * Precreation pool
68          */
69
70         /* last fid to assign in creation */
71         struct lu_fid                    osp_pre_used_fid;
72         /* last created id OST reported, next-created - available id's */
73         struct lu_fid                    osp_pre_last_created_fid;
74         /* how many ids are reserved in declare, we shouldn't block in create */
75         __u64                            osp_pre_reserved;
76         /* consumers (who needs new ids) wait here */
77         wait_queue_head_t                osp_pre_user_waitq;
78         /* current precreation status: working, failed, stopping? */
79         int                              osp_pre_status;
80         /* how many objects to precreate next time */
81         int                              osp_pre_create_count;
82         int                              osp_pre_min_create_count;
83         int                              osp_pre_max_create_count;
84         /* whether to increase precreation window next time or not */
85         int                              osp_pre_create_slow;
86         /* cleaning up orphans or recreating missing objects */
87         int                              osp_pre_recovering;
88 };
89
90 struct osp_update_request_sub {
91         struct object_update_request    *ours_req; /* may be vmalloc'd */
92         size_t                          ours_req_size;
93         /* Linked to osp_update_request->our_req_list */
94         struct list_head                ours_list;
95 };
96
97 struct osp_update_request {
98         int                             our_flags;
99         /* update request result */
100         int                             our_rc;
101
102         /* List of osp_update_request_sub */
103         struct list_head                our_req_list;
104         int                             our_req_nr;
105         int                             our_update_nr;
106
107         struct list_head                our_cb_items;
108         struct list_head                our_invalidate_cb_list;
109
110         /* points to thandle if this update request belongs to one */
111         struct osp_thandle              *our_th;
112
113         __u64                           our_version;
114         __u64                           our_generation;
115         /* protect our_list and flag */
116         spinlock_t                      our_list_lock;
117         /* linked to the list(ou_list) in osp_updates */
118         struct list_head                our_list;
119         __u32                           our_batchid;
120         __u32                           our_req_ready:1;
121
122 };
123
124 struct osp_updates {
125         struct list_head        ou_list;
126         spinlock_t              ou_lock;
127         wait_queue_head_t       ou_waitq;
128
129         /* The next rpc version which supposed to be sent in
130          * osp_send_update_thread().*/
131         __u64                   ou_rpc_version;
132
133         /* The rpc version assigned to the osp thandle during (osp_md_write()),
134          * which will be sent by this order. Note: the osp_thandle has be sent
135          * by this order to make sure the remote update log will follow the
136          * llog format rule. XXX: these probably should be removed once we
137          * invent new llog format */
138         __u64                   ou_version;
139
140         /* The generation of current osp update RPC, which is used to make sure
141          * those stale RPC(with older generation) will not be sent, otherwise it
142          * will cause update lllog corruption */
143         __u64                   ou_generation;
144
145         /* dedicate update thread */
146         struct task_struct      *ou_update_task;
147         struct lu_env           ou_env;
148 };
149
150 struct osp_device {
151         struct dt_device                 opd_dt_dev;
152         /* corresponded OST index */
153         int                              opd_index;
154
155         /* corrsponded MDT index, which will be used when connecting to OST
156          * for validating the connection (see ofd_parse_connect_data) */
157         int                              opd_group;
158         /* device used to store persistent state (llogs, last ids) */
159         struct obd_export               *opd_storage_exp;
160         struct dt_device                *opd_storage;
161         struct dt_object                *opd_last_used_oid_file;
162         struct dt_object                *opd_last_used_seq_file;
163
164         /* stored persistently in LE format, updated directly to/from disk
165          * and required le64_to_cpu() conversion before use.
166          * Protected by opd_pre_lock */
167         struct lu_fid                   opd_last_used_fid;
168         /* on disk copy last_used_fid.f_oid or idif */
169         u64                             opd_last_id;
170         struct lu_fid                   opd_gap_start_fid;
171         int                              opd_gap_count;
172         struct obd_device               *opd_obd;
173         struct obd_export               *opd_exp;
174         struct obd_connect_data         *opd_connect_data;
175
176         /* connection status. */
177         unsigned int                     opd_new_connection:1,
178                                          opd_got_disconnected:1,
179                                          opd_imp_connected:1,
180                                          opd_imp_active:1,
181                                          opd_imp_seen_connected:1,
182                                          opd_connect_mdt:1;
183
184         /* whether local recovery is completed:
185          * reported via ->ldo_recovery_complete() */
186         int                              opd_recovery_completed;
187
188         /* precreate structure for OSP */
189         struct osp_precreate            *opd_pre;
190         /* dedicate precreate thread */
191         struct task_struct              *opd_pre_task;
192         spinlock_t                       opd_pre_lock;
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
199         /*
200          * OST synchronization thread
201          */
202         spinlock_t                       opd_sync_lock;
203         /* unique generation, to recognize start of new records in the llog */
204         struct llog_gen                  opd_sync_generation;
205         /* number of changes to sync, used to wake up sync thread */
206         atomic_t                         opd_sync_changes;
207         /* limit of changes to sync */
208         int                              opd_sync_max_changes;
209         /* processing of changes from previous mount is done? */
210         int                              opd_sync_prev_done;
211         /* found records */
212         struct task_struct              *opd_sync_task;
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 dentry                   *opd_debugfs;
253
254         /* If the caller wants to do some idempotent async operations on
255          * remote server, it can append the async remote requests on the
256          * osp_device::opd_async_requests via declare() functions, these
257          * requests can be packed together and sent to the remote server
258          * via single OUT RPC later. */
259         struct osp_update_request       *opd_async_requests;
260         /* Protect current operations on opd_async_requests. */
261         struct mutex                     opd_async_requests_mutex;
262         struct list_head                 opd_async_updates;
263         struct rw_semaphore              opd_async_updates_rwsem;
264         atomic_t                         opd_async_updates_count;
265
266         /*
267          * Limit the object allocation using ENOSPC for opd_pre_status
268          */
269         unsigned int                    opd_reserved_mb_high;
270         unsigned int                    opd_reserved_mb_low;
271         unsigned int                    opd_reserved_ino_high;
272         unsigned int                    opd_reserved_ino_low;
273         bool                            opd_cleanup_orphans_done;
274         bool                            opd_force_creation;
275 };
276
277 #define opd_pre_used_fid                opd_pre->osp_pre_used_fid
278 #define opd_pre_last_created_fid        opd_pre->osp_pre_last_created_fid
279 #define opd_pre_reserved                opd_pre->osp_pre_reserved
280 #define opd_pre_user_waitq              opd_pre->osp_pre_user_waitq
281 #define opd_pre_status                  opd_pre->osp_pre_status
282 #define opd_pre_create_count            opd_pre->osp_pre_create_count
283 #define opd_pre_min_create_count        opd_pre->osp_pre_min_create_count
284 #define opd_pre_max_create_count        opd_pre->osp_pre_max_create_count
285 #define opd_pre_create_slow             opd_pre->osp_pre_create_slow
286 #define opd_pre_recovering              opd_pre->osp_pre_recovering
287
288 extern struct kmem_cache *osp_object_kmem;
289
290 /* The first part of oxe_buf is xattr name, and is '\0' terminated.
291  * The left part is for value, binary mode. */
292 struct osp_xattr_entry {
293         struct list_head         oxe_list;
294         void                    *oxe_value;
295         atomic_t                 oxe_ref;
296         unsigned int             oxe_buflen;
297         unsigned int             oxe_vallen;
298         unsigned short           oxe_namelen;
299         unsigned short           oxe_exist:1,
300                                  oxe_ready:1,
301                                  oxe_largebuf:1;
302         char                     oxe_name[0];
303 };
304
305 /* this is a top object */
306 struct osp_object {
307         struct lu_object_header opo_header;
308         struct dt_object        opo_obj;
309         unsigned int            opo_reserved:1,
310                                 opo_non_exist:1,
311                                 opo_stale:1,
312                                 opo_destroyed:1;
313
314         /* read/write lock for md osp object */
315         struct rw_semaphore     opo_sem;
316         const struct lu_env     *opo_owner;
317         struct lu_attr          opo_attr;
318         struct list_head        opo_xattr_list;
319         struct list_head        opo_invalidate_cb_list;
320         /* Protect opo_ooa. */
321         spinlock_t              opo_lock;
322         /* to implement in-flight invalidation */
323         atomic_t                opo_invalidate_seq;
324         struct rw_semaphore     opo_invalidate_sem;
325 };
326
327 extern const struct lu_object_operations osp_lu_obj_ops;
328 extern const struct dt_object_operations osp_md_obj_ops;
329 extern const struct dt_body_operations osp_md_body_ops;
330
331 struct osp_thread_info {
332         struct lu_buf            osi_lb;
333         struct lu_buf            osi_lb2;
334         struct lu_fid            osi_fid;
335         struct lu_attr           osi_attr;
336         struct ost_id            osi_oi;
337         struct ost_id            osi_oi2;
338         loff_t                   osi_off;
339         union {
340                 struct llog_rec_hdr             osi_hdr;
341                 struct llog_unlink64_rec        osi_unlink;
342                 struct llog_setattr64_rec_v2    osi_setattr;
343                 struct llog_gen_rec             osi_gen;
344         };
345         struct llog_cookie       osi_cookie;
346         struct llog_catid        osi_cid;
347         struct lu_seq_range      osi_seq;
348         struct ldlm_res_id       osi_resid;
349         struct obdo              osi_obdo;
350 };
351
352 /* Iterator for OSP */
353 struct osp_it {
354         __u32                     ooi_pos_page;
355         __u32                     ooi_pos_lu_page;
356         __u32                     ooi_attr;
357         __u32                     ooi_rec_size;
358         int                       ooi_pos_ent;
359         int                       ooi_total_npages;
360         int                       ooi_valid_npages;
361         unsigned int              ooi_swab:1;
362         __u64                     ooi_next;
363         struct dt_object         *ooi_obj;
364         void                     *ooi_ent;
365         struct page              *ooi_cur_page;
366         struct lu_idxpage        *ooi_cur_idxpage;
367         struct page              **ooi_pages;
368 };
369
370 #define OSP_THANDLE_MAGIC       0x20141214
371 struct osp_thandle {
372         struct thandle           ot_super;
373
374         /* OSP will use this thandle to update last oid*/
375         struct thandle          *ot_storage_th;
376         __u32                    ot_magic;
377         struct list_head         ot_commit_dcb_list;
378         struct list_head         ot_stop_dcb_list;
379         struct osp_update_request *ot_our;
380         atomic_t                 ot_refcount;
381 };
382
383 static inline struct osp_thandle *
384 thandle_to_osp_thandle(struct thandle *th)
385 {
386         return container_of(th, struct osp_thandle, ot_super);
387 }
388
389 static inline struct osp_update_request *
390 thandle_to_osp_update_request(struct thandle *th)
391 {
392         struct osp_thandle *oth;
393
394         oth = thandle_to_osp_thandle(th);
395         return oth->ot_our;
396 }
397
398 /* The transaction only include the updates on the remote node, and
399  * no local updates at all */
400 static inline bool is_only_remote_trans(struct thandle *th)
401 {
402         return th->th_top == NULL;
403 }
404
405 static inline void osp_objid_buf_prep(struct lu_buf *buf, loff_t *off,
406                                       __u64 *id, int index)
407 {
408         /* Note: through id is only 32 bits, it will also write 64 bits
409          * for oid to keep compatibility with the previous version. */
410         buf->lb_buf = (void *)id;
411         buf->lb_len = sizeof(u64);
412         *off = sizeof(u64) * index;
413 }
414
415 static inline void osp_objseq_buf_prep(struct lu_buf *buf, loff_t *off,
416                                        __u64 *seq, int index)
417 {
418         buf->lb_buf = (void *)seq;
419         buf->lb_len = sizeof(u64);
420         *off = sizeof(u64) * index;
421 }
422
423 static inline void osp_buf_prep(struct lu_buf *lb, void *buf, int buf_len)
424 {
425         lb->lb_buf = buf;
426         lb->lb_len = buf_len;
427 }
428
429 extern struct lu_context_key osp_thread_key;
430
431 static inline struct osp_thread_info *osp_env_info(const struct lu_env *env)
432 {
433         return lu_env_info(env, &osp_thread_key);
434 }
435
436 struct osp_txn_info {
437         __u64   oti_current_id;
438 };
439
440 extern struct lu_context_key osp_txn_key;
441
442 static inline struct osp_txn_info *osp_txn_info(struct lu_context *ctx)
443 {
444         struct osp_txn_info *info;
445
446         info = lu_context_key_get(ctx, &osp_txn_key);
447         return info;
448 }
449
450 extern const struct lu_device_operations osp_lu_ops;
451
452 static inline int lu_device_is_osp(struct lu_device *d)
453 {
454         return ergo(d != NULL && d->ld_ops != NULL, d->ld_ops == &osp_lu_ops);
455 }
456
457 static inline struct osp_device *lu2osp_dev(struct lu_device *d)
458 {
459         LASSERT(lu_device_is_osp(d));
460         return container_of_safe(d, struct osp_device, opd_dt_dev.dd_lu_dev);
461 }
462
463 static inline struct lu_device *osp2lu_dev(struct osp_device *d)
464 {
465         return &d->opd_dt_dev.dd_lu_dev;
466 }
467
468 static inline struct osp_device *dt2osp_dev(struct dt_device *d)
469 {
470         LASSERT(lu_device_is_osp(&d->dd_lu_dev));
471         return container_of_safe(d, struct osp_device, opd_dt_dev);
472 }
473
474 static inline struct osp_object *lu2osp_obj(struct lu_object *o)
475 {
476         LASSERT(ergo(o != NULL, lu_device_is_osp(o->lo_dev)));
477         return container_of_safe(o, struct osp_object, opo_obj.do_lu);
478 }
479
480 static inline struct lu_object *osp2lu_obj(struct osp_object *obj)
481 {
482         return &obj->opo_obj.do_lu;
483 }
484
485 static inline struct osp_object *osp_obj(const struct lu_object *o)
486 {
487         LASSERT(lu_device_is_osp(o->lo_dev));
488         return container_of_safe(o, struct osp_object, opo_obj.do_lu);
489 }
490
491 static inline struct osp_object *dt2osp_obj(const struct dt_object *d)
492 {
493         return osp_obj(&d->do_lu);
494 }
495
496 static inline struct dt_object *osp_object_child(struct osp_object *o)
497 {
498         return container_of(lu_object_next(osp2lu_obj(o)),
499                             struct dt_object, do_lu);
500 }
501
502 static inline struct seq_server_site *osp_seq_site(struct osp_device *osp)
503 {
504         return osp->opd_dt_dev.dd_lu_dev.ld_site->ld_seq_site;
505 }
506
507 static inline int osp_fid_diff(const struct lu_fid *fid1,
508                                const struct lu_fid *fid2)
509 {
510         /* In 2.6+ ost_idx is packed into IDIF FID, while in 2.4 and 2.5 IDIF
511          * is always FID_SEQ_IDIF(0x100000000ULL), which does not include OST
512          * index in the seq. So we can not compare IDIF FID seq here */
513         if (fid_is_idif(fid1) && fid_is_idif(fid2)) {
514                 __u32 ost_idx1 = fid_idif_ost_idx(fid1);
515                 __u32 ost_idx2 = fid_idif_ost_idx(fid2);
516
517                 LASSERTF(ost_idx1 == 0 || ost_idx2 == 0 || ost_idx1 == ost_idx2,
518                          "fid1: "DFID", fid2: "DFID"\n", PFID(fid1),
519                          PFID(fid2));
520
521                 return fid_idif_id(fid1->f_seq, fid1->f_oid, 0) -
522                        fid_idif_id(fid2->f_seq, fid2->f_oid, 0);
523         }
524
525         LASSERTF(fid_seq(fid1) == fid_seq(fid2), "fid1:"DFID", fid2:"DFID"\n",
526                  PFID(fid1), PFID(fid2));
527
528         return fid_oid(fid1) - fid_oid(fid2);
529 }
530
531 static inline void osp_fid_to_obdid(struct lu_fid *last_fid, u64 *osi_id)
532 {
533         if (fid_is_idif((last_fid)))
534                 *osi_id = fid_idif_id(fid_seq(last_fid), fid_oid(last_fid),
535                                       fid_ver(last_fid));
536         else
537                 *osi_id = fid_oid(last_fid);
538 }
539
540 static inline void osp_update_last_fid(struct osp_device *d, struct lu_fid *fid)
541 {
542         int diff = osp_fid_diff(fid, &d->opd_last_used_fid);
543         struct lu_fid *gap_start = &d->opd_gap_start_fid;
544
545         /*
546          * we might have lost precreated objects due to VBR and precreate
547          * orphans, the gap in objid can be calculated properly only here
548          */
549         if (diff > 0) {
550                 if (diff > 1) {
551                         d->opd_gap_start_fid = d->opd_last_used_fid;
552                         if (fid_oid(gap_start) == LUSTRE_DATA_SEQ_MAX_WIDTH) {
553                                 gap_start->f_seq++;
554                                 gap_start->f_oid = fid_is_idif(gap_start) ?
555                                                                0 : 1;
556                         } else {
557                                 gap_start->f_oid++;
558                         }
559                         d->opd_gap_count = diff - 1;
560                         CDEBUG(D_HA, "Gap in objids: start="DFID", count =%d\n",
561                                PFID(&d->opd_gap_start_fid), d->opd_gap_count);
562                 }
563                 d->opd_last_used_fid = *fid;
564                 osp_fid_to_obdid(fid, &d->opd_last_id);
565         }
566 }
567
568 static int osp_fid_end_seq(const struct lu_env *env, struct lu_fid *fid)
569 {
570         if (fid_is_idif(fid)) {
571                 struct osp_thread_info *info = osp_env_info(env);
572                 struct ost_id *oi = &info->osi_oi;
573
574                 fid_to_ostid(fid, oi);
575                 return ostid_id(oi) == IDIF_MAX_OID;
576         } else {
577                 return fid_oid(fid) == LUSTRE_DATA_SEQ_MAX_WIDTH;
578         }
579 }
580
581 static inline int osp_precreate_end_seq_nolock(const struct lu_env *env,
582                                                struct osp_device *osp)
583 {
584         struct lu_fid *fid = &osp->opd_pre_last_created_fid;
585
586         return osp_fid_end_seq(env, fid);
587 }
588
589 static inline int osp_precreate_end_seq(const struct lu_env *env,
590                                         struct osp_device *osp)
591 {
592         int rc;
593
594         spin_lock(&osp->opd_pre_lock);
595         rc = osp_precreate_end_seq_nolock(env, osp);
596         spin_unlock(&osp->opd_pre_lock);
597         return rc;
598 }
599
600 static inline int osp_is_fid_client(struct osp_device *osp)
601 {
602         struct obd_import *imp = osp->opd_obd->u.cli.cl_import;
603
604         return imp->imp_connect_data.ocd_connect_flags & OBD_CONNECT_FID;
605 }
606
607 struct object_update *
608 update_buffer_get_update(struct object_update_request *request,
609                          unsigned int index);
610
611 int osp_extend_update_buffer(const struct lu_env *env,
612                              struct osp_update_request *our);
613
614 struct osp_update_request_sub *
615 osp_current_object_update_request(struct osp_update_request *our);
616
617 int osp_object_update_request_create(struct osp_update_request *our,
618                                      size_t size);
619
620 #define OSP_UPDATE_RPC_PACK(env, out_something_pack, our, ...)          \
621 ({                                                                      \
622         struct object_update *object_update;                            \
623         size_t max_update_length;                                       \
624         struct osp_update_request_sub *ours;                            \
625         int ret;                                                        \
626                                                                         \
627         while (1) {                                                     \
628                 ours = osp_current_object_update_request(our);          \
629                 LASSERT(ours != NULL);                                  \
630                 max_update_length = ours->ours_req_size -               \
631                             object_update_request_size(ours->ours_req); \
632                                                                         \
633                 object_update = update_buffer_get_update(ours->ours_req,\
634                                          ours->ours_req->ourq_count);   \
635                 ret = out_something_pack(env, object_update,            \
636                                          &max_update_length,            \
637                                          __VA_ARGS__);                  \
638                 if (ret == -E2BIG) {                                    \
639                         int rc1;                                        \
640                         /* Create new object update request */          \
641                         rc1 = osp_object_update_request_create(our,     \
642                                 max_update_length  +                    \
643                                 offsetof(struct object_update_request,  \
644                                          ourq_updates[0]) + 1);         \
645                         if (rc1 != 0) {                                 \
646                                 ret = rc1;                              \
647                                 break;                                  \
648                         }                                               \
649                         continue;                                       \
650                 } else {                                                \
651                         if (ret == 0) {                                 \
652                                 ours->ours_req->ourq_count++;           \
653                                 (our)->our_update_nr++;                 \
654                                 object_update->ou_batchid =             \
655                                                      (our)->our_batchid;\
656                                 object_update->ou_flags |=              \
657                                                      (our)->our_flags;  \
658                         }                                               \
659                         break;                                          \
660                 }                                                       \
661         }                                                               \
662         ret;                                                            \
663 })
664
665 typedef int (*osp_update_interpreter_t)(const struct lu_env *env,
666                                         struct object_update_reply *rep,
667                                         struct ptlrpc_request *req,
668                                         struct osp_object *obj,
669                                         void *data, int index, int rc);
670
671 /* osp_dev.c */
672 void osp_update_last_id(struct osp_device *d, u64 objid);
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 bool osp_check_stale(struct dt_object *dt);
744 void osp_obj_invalidate_cache(struct osp_object *obj);
745
746 int osp_trans_stop(const struct lu_env *env, struct dt_device *dt,
747                    struct thandle *th);
748 int osp_trans_cb_add(struct thandle *th, struct dt_txn_commit_cb *dcb);
749
750 struct dt_it *osp_it_init(const struct lu_env *env, struct dt_object *dt,
751                           __u32 attr);
752 void osp_it_fini(const struct lu_env *env, struct dt_it *di);
753 int osp_it_get(const struct lu_env *env, struct dt_it *di,
754                const struct dt_key *key);
755 void osp_it_put(const struct lu_env *env, struct dt_it *di);
756 __u64 osp_it_store(const struct lu_env *env, const struct dt_it *di);
757 int osp_it_key_rec(const struct lu_env *env, const struct dt_it *di,
758                    void *key_rec);
759 int osp_it_next_page(const struct lu_env *env, struct dt_it *di);
760 /* osp_md_object.c */
761 int osp_md_declare_create(const struct lu_env *env, struct dt_object *dt,
762                           struct lu_attr *attr, struct dt_allocation_hint *hint,
763                           struct dt_object_format *dof, struct thandle *th);
764 int osp_md_create(const struct lu_env *env, struct dt_object *dt,
765                   struct lu_attr *attr, struct dt_allocation_hint *hint,
766                   struct dt_object_format *dof, struct thandle *th);
767 int osp_md_declare_attr_set(const struct lu_env *env, struct dt_object *dt,
768                             const struct lu_attr *attr, struct thandle *th);
769 int osp_md_attr_set(const struct lu_env *env, struct dt_object *dt,
770                     const struct lu_attr *attr, struct thandle *th);
771 extern const struct dt_index_operations osp_md_index_ops;
772
773 /* osp_precreate.c */
774 int osp_init_precreate(struct osp_device *d);
775 int osp_precreate_reserve(const struct lu_env *env,
776                           struct osp_device *d, bool can_block);
777 __u64 osp_precreate_get_id(struct osp_device *d);
778 int osp_precreate_get_fid(const struct lu_env *env, struct osp_device *d,
779                           struct lu_fid *fid);
780 void osp_precreate_fini(struct osp_device *d);
781 int osp_object_truncate(const struct lu_env *env, struct dt_object *dt, __u64);
782 void osp_pre_update_status(struct osp_device *d, int rc);
783 void osp_statfs_need_now(struct osp_device *d);
784 int osp_reset_last_used(const struct lu_env *env, struct osp_device *osp);
785 int osp_write_last_oid_seq_files(struct lu_env *env, struct osp_device *osp,
786                                  struct lu_fid *fid, int sync);
787 int osp_init_pre_fid(struct osp_device *osp);
788 int osp_init_statfs(struct osp_device *osp);
789 void osp_fini_statfs(struct osp_device *osp);
790 void osp_statfs_fini(struct osp_device *d);
791
792 /* lproc_osp.c */
793 void osp_tunables_init(struct osp_device *osp);
794 void osp_tunables_fini(struct osp_device *osp);
795
796 /* osp_sync.c */
797 int osp_sync_declare_add(const struct lu_env *env, struct osp_object *o,
798                          enum llog_op_type type, struct thandle *th);
799 int osp_sync_add(const struct lu_env *env, struct osp_object *o,
800                  enum llog_op_type type, struct thandle *th,
801                  const struct lu_attr *attr);
802 int osp_sync_init(const struct lu_env *env, struct osp_device *d);
803 int osp_sync_fini(struct osp_device *d);
804 void osp_sync_check_for_work(struct osp_device *osp);
805 void osp_sync_force(const struct lu_env *env, struct osp_device *d);
806 int osp_sync_add_commit_cb_1s(const struct lu_env *env, struct osp_device *d,
807                               struct thandle *th);
808
809 /* lwp_dev.c */
810 extern const struct obd_ops lwp_obd_device_ops;
811 extern struct lu_device_type lwp_device_type;
812
813 static inline struct lu_device *osp2top(const struct osp_device *osp)
814 {
815         return osp->opd_dt_dev.dd_lu_dev.ld_site->ls_top_dev;
816 }
817
818 static inline void osp_set_req_replay(const struct osp_device *osp,
819                                       struct ptlrpc_request *req)
820 {
821         struct obd_device *obd = osp2top(osp)->ld_obd;
822
823         /* The RPC must be recovery related for the cases:
824          *
825          * 1. sent during recovery, or
826          * 2. sent before the recovery thread target_recovery_thread() start,
827          *    such as triggered by lod_sub_recovery_thread(). */
828         if (obd->obd_recovering || (obd->obd_replayable && obd->obd_no_conn))
829                 req->rq_allow_replay = 1;
830 }
831
832 #endif