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