Whamcloud - gitweb
LU-1267 lfsck: enhance RPCs (2) for MDT-OST consistency
[fs/lustre-release.git] / lustre / lfsck / lfsck_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,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License version 2 for more details.  A copy is
14  * included in the COPYING file that accompanied this code.
15
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2013, Intel Corporation.
24  */
25 /*
26  * lustre/lfsck/lfsck_internal.h
27  *
28  * Shared definitions and declarations for the LFSCK.
29  *
30  * Author: Fan, Yong <fan.yong@intel.com>
31  */
32
33 #ifndef _LFSCK_INTERNAL_H
34 # define _LFSCK_INTERNAL_H
35
36 #include <lustre/lustre_lfsck_user.h>
37 #include <lustre/lustre_user.h>
38 #include <lustre/lustre_idl.h>
39 #include <lustre_lfsck.h>
40 #include <obd.h>
41 #include <lu_object.h>
42 #include <dt_object.h>
43 #include <md_object.h>
44 #include <lustre_net.h>
45 #include <lustre_dlm.h>
46 #include <lustre_fid.h>
47 #include <md_object.h>
48
49 #define HALF_SEC                        (HZ >> 1)
50 #define LFSCK_CHECKPOINT_INTERVAL       60
51
52 #define LFSCK_NAMEENTRY_DEAD            1 /* The object has been unlinked. */
53 #define LFSCK_NAMEENTRY_REMOVED         2 /* The entry has been removed. */
54 #define LFSCK_NAMEENTRY_RECREATED       3 /* The entry has been recreated. */
55
56 enum lfsck_flags {
57         /* Finish the first cycle scanning. */
58         LF_SCANNED_ONCE         = 0x00000001ULL,
59
60         /* There is some namespace inconsistency. */
61         LF_INCONSISTENT         = 0x00000002ULL,
62
63         /* The device is upgraded from 1.8 format. */
64         LF_UPGRADE              = 0x00000004ULL,
65
66         /* The server ever restarted during the LFSCK, and may miss to process
67          * some objects check/repair. */
68         LF_INCOMPLETE           = 0x00000008ULL,
69
70         /* The LAST_ID (file) crashed. */
71         LF_CRASHED_LASTID       = 0x00000010ULL,
72 };
73
74 struct lfsck_position {
75         /* low layer object table-based iteration position. */
76         __u64   lp_oit_cookie;
77
78         /* parent FID for directory traversal. */
79         struct lu_fid lp_dir_parent;
80
81         /* namespace-based directory traversal position. */
82         __u64   lp_dir_cookie;
83 };
84
85 struct lfsck_bookmark {
86         /* Magic number to detect that this struct contains valid data. */
87         __u32   lb_magic;
88
89         /* For compatible with old versions. */
90         __u16   lb_version;
91
92         /* See 'enum lfsck_param_flags' */
93         __u16   lb_param;
94
95         /* How many items can be scanned at most per second. */
96         __u32   lb_speed_limit;
97
98         /* The windows size for async requests pipeline. */
99         __u16   lb_async_windows;
100
101         /* For 64-bits aligned. */
102         __u16   lb_padding;
103
104         /* For future using. */
105         __u64   lb_reserved[6];
106 };
107
108 struct lfsck_namespace {
109         /* Magic number to detect that this struct contains valid data. */
110         __u32   ln_magic;
111
112         /* See 'enum lfsck_status'. */
113         __u32   ln_status;
114
115         /* See 'enum lfsck_flags'. */
116         __u32   ln_flags;
117
118         /* How many completed LFSCK runs on the device. */
119         __u32   ln_success_count;
120
121         /*  How long the LFSCK phase1 has run in seconds. */
122         __u32   ln_run_time_phase1;
123
124         /*  How long the LFSCK phase2 has run in seconds. */
125         __u32   ln_run_time_phase2;
126
127         /* Time for the last LFSCK completed in seconds since epoch. */
128         __u64   ln_time_last_complete;
129
130         /* Time for the latest LFSCK ran in seconds since epoch. */
131         __u64   ln_time_latest_start;
132
133         /* Time for the last LFSCK checkpoint in seconds since epoch. */
134         __u64   ln_time_last_checkpoint;
135
136         /* Position for the latest LFSCK started from. */
137         struct lfsck_position   ln_pos_latest_start;
138
139         /* Position for the last LFSCK checkpoint. */
140         struct lfsck_position   ln_pos_last_checkpoint;
141
142         /* Position for the first should be updated object. */
143         struct lfsck_position   ln_pos_first_inconsistent;
144
145         /* How many items (including dir) have been checked. */
146         __u64   ln_items_checked;
147
148         /* How many items have been repaired. */
149         __u64   ln_items_repaired;
150
151         /* How many items failed to be processed. */
152         __u64   ln_items_failed;
153
154         /* How many directories have been traversed. */
155         __u64   ln_dirs_checked;
156
157         /* How many multiple-linked objects have been checked. */
158         __u64   ln_mlinked_checked;
159
160         /* How many objects have been double scanned. */
161         __u64   ln_objs_checked_phase2;
162
163         /* How many objects have been reparied during double scan. */
164         __u64   ln_objs_repaired_phase2;
165
166         /* How many objects failed to be processed during double scan. */
167         __u64   ln_objs_failed_phase2;
168
169         /* How many objects with nlink fixed. */
170         __u64   ln_objs_nlink_repaired;
171
172         /* How many objects were lost before, but found back now. */
173         __u64   ln_objs_lost_found;
174
175         /* The latest object has been processed (failed) during double scan. */
176         struct lu_fid   ln_fid_latest_scanned_phase2;
177
178         /* For further using. 256-bytes aligned now. */
179         __u64   ln_reserved[2];
180 };
181
182 enum lfsck_layout_inconsistency_type {
183         LLIT_NONE                       = 0,
184         LLIT_DANGLING                   = 1,
185         LLIT_UNMATCHED_PAIR             = 2,
186         LLIT_MULTIPLE_REFERENCED        = 3,
187         LLIT_ORPHAN                     = 4,
188         LLIT_INCONSISTENT_OWNER         = 5,
189         LLIT_OTHERS                     = 6,
190         LLIT_MAX                        = LLIT_OTHERS
191 };
192
193 struct lfsck_layout {
194         /* Magic number to detect that this struct contains valid data. */
195         __u32   ll_magic;
196
197         /* See 'enum lfsck_status'. */
198         __u32   ll_status;
199
200         /* See 'enum lfsck_flags'. */
201         __u32   ll_flags;
202
203         /* How many completed LFSCK runs on the device. */
204         __u32   ll_success_count;
205
206         /*  How long the LFSCK phase1 has run in seconds. */
207         __u32   ll_run_time_phase1;
208
209         /*  How long the LFSCK phase2 has run in seconds. */
210         __u32   ll_run_time_phase2;
211
212         /* Time for the last LFSCK completed in seconds since epoch. */
213         __u64   ll_time_last_complete;
214
215         /* Time for the latest LFSCK ran in seconds since epoch. */
216         __u64   ll_time_latest_start;
217
218         /* Time for the last LFSCK checkpoint in seconds since epoch. */
219         __u64   ll_time_last_checkpoint;
220
221         /* Position for the latest LFSCK started from. */
222         __u64   ll_pos_latest_start;
223
224         /* Position for the last LFSCK checkpoint. */
225         __u64   ll_pos_last_checkpoint;
226
227         /* Position for the first should be updated object. */
228         __u64   ll_pos_first_inconsistent;
229
230         /* How many objects have been checked. */
231         __u64   ll_objs_checked_phase1;
232
233         /* How many objects failed to be processed. */
234         __u64   ll_objs_failed_phase1;
235
236         /* How many objects have been double scanned. */
237         __u64   ll_objs_checked_phase2;
238
239         /* How many objects failed to be processed during double scan. */
240         __u64   ll_objs_failed_phase2;
241
242         /* kinds of inconsistency have been repaired.
243          * ll_objs_repaired[type - 1] is the count for the given @type. */
244         __u64   ll_objs_repaired[LLIT_MAX];
245
246         /* How many objects have been skipped because of related
247          * MDT(s)/OST(s) do not participate in the LFSCK */
248         __u64   ll_objs_skipped;
249
250         /* For further using. 256-bytes aligned now. */
251         __u64   ll_reserved[12];
252 };
253
254 struct lfsck_component;
255 struct lfsck_tgt_descs;
256 struct lfsck_tgt_desc;
257
258 struct lfsck_operations {
259         int (*lfsck_reset)(const struct lu_env *env,
260                            struct lfsck_component *com,
261                            bool init);
262
263         void (*lfsck_fail)(const struct lu_env *env,
264                            struct lfsck_component *com,
265                            bool new_checked);
266
267         int (*lfsck_checkpoint)(const struct lu_env *env,
268                                 struct lfsck_component *com,
269                                 bool init);
270
271         int (*lfsck_prep)(const struct lu_env *env,
272                           struct lfsck_component *com);
273
274         int (*lfsck_exec_oit)(const struct lu_env *env,
275                               struct lfsck_component *com,
276                               struct dt_object *obj);
277
278         int (*lfsck_exec_dir)(const struct lu_env *env,
279                               struct lfsck_component *com,
280                               struct dt_object *obj,
281                               struct lu_dirent *ent);
282
283         int (*lfsck_post)(const struct lu_env *env,
284                           struct lfsck_component *com,
285                           int result,
286                           bool init);
287
288         int (*lfsck_dump)(const struct lu_env *env,
289                           struct lfsck_component *com,
290                           char *buf,
291                           int len);
292
293         int (*lfsck_double_scan)(const struct lu_env *env,
294                                  struct lfsck_component *com);
295
296         void (*lfsck_data_release)(const struct lu_env *env,
297                                    struct lfsck_component *com);
298
299         void (*lfsck_quit)(const struct lu_env *env,
300                            struct lfsck_component *com);
301
302         int (*lfsck_in_notify)(const struct lu_env *env,
303                                struct lfsck_component *com,
304                                struct lfsck_request *lr);
305
306         int (*lfsck_query)(const struct lu_env *env,
307                            struct lfsck_component *com);
308
309         int (*lfsck_stop_notify)(const struct lu_env *env,
310                                  struct lfsck_component *com,
311                                  struct lfsck_tgt_descs *ltds,
312                                  struct lfsck_tgt_desc *ltd,
313                                  struct ptlrpc_request_set *set);
314 };
315
316 #define TGT_PTRS                256     /* number of pointers at 1st level */
317 #define TGT_PTRS_PER_BLOCK      256     /* number of pointers at 2nd level */
318
319 struct lfsck_tgt_desc {
320         struct list_head   ltd_orphan_list;
321         struct dt_device  *ltd_tgt;
322         struct dt_device  *ltd_key;
323         struct obd_export *ltd_exp;
324         struct list_head   ltd_layout_list;
325         struct list_head   ltd_layout_phase_list;
326         atomic_t           ltd_ref;
327         __u32              ltd_index;
328         __u32              ltd_layout_gen;
329         unsigned int       ltd_dead:1;
330 };
331
332 struct lfsck_tgt_desc_idx {
333         struct lfsck_tgt_desc *ldi_tgts[TGT_PTRS_PER_BLOCK];
334 };
335
336 struct lfsck_tgt_descs {
337         /* list of known TGTs */
338         struct lfsck_tgt_desc_idx       *ltd_tgts_idx[TGT_PTRS];
339
340         /* bitmap of TGTs available */
341         cfs_bitmap_t                    *ltd_tgts_bitmap;
342
343         /* for lfsck_tgt_desc::ltd_xxx_list */
344         spinlock_t                       ltd_lock;
345
346         /* for tgts table accessing and changes */
347         struct rw_semaphore              ltd_rw_sem;
348
349         /* Temporary list for orphan targets. */
350         struct list_head                 ltd_orphan;
351
352         /* number of registered TGTs */
353         int                              ltd_tgtnr;
354 };
355
356 #define LTD_TGT(ltd, index)     \
357         ((ltd)->ltd_tgts_idx[(index) / TGT_PTRS_PER_BLOCK]->\
358          ldi_tgts[(index) % TGT_PTRS_PER_BLOCK])
359
360 #define OST_TGT(lfsck, index)   LTD_TGT(&lfsck->li_ost_descs, index)
361 #define MDT_TGT(lfsck, index)   LTD_TGT(&lfsck->li_mdt_descs, index)
362
363 struct lfsck_component {
364         /* into lfsck_instance::li_list_(scan,double_scan,idle} */
365         cfs_list_t               lc_link;
366
367         /* into lfsck_instance::li_list_dir */
368         cfs_list_t               lc_link_dir;
369
370         struct rw_semaphore      lc_sem;
371         atomic_t                 lc_ref;
372
373         struct lfsck_position    lc_pos_start;
374         struct lfsck_instance   *lc_lfsck;
375         struct dt_object        *lc_obj;
376         struct lfsck_operations *lc_ops;
377         void                    *lc_file_ram;
378         void                    *lc_file_disk;
379         void                    *lc_data;
380
381         /* The time for last checkpoint, jiffies */
382         cfs_time_t               lc_time_last_checkpoint;
383
384         /* The time for next checkpoint, jiffies */
385         cfs_time_t               lc_time_next_checkpoint;
386
387         __u32                    lc_file_size;
388
389         /* How many objects have been checked since last checkpoint. */
390         __u32                    lc_new_checked;
391
392         /* How many objects have been scanned since last sleep. */
393         __u32                    lc_new_scanned;
394
395         unsigned int             lc_journal:1;
396         __u16                    lc_type;
397 };
398
399 struct lfsck_instance {
400         struct mutex              li_mutex;
401         spinlock_t                li_lock;
402
403         /* Link into the lfsck_instance_list. */
404         cfs_list_t                li_link;
405
406         /* For the components in (first) scanning via otable-based iteration. */
407         cfs_list_t                li_list_scan;
408
409         /* For the components in scanning via directory traversal. Because
410          * directory traversal cannot guarantee all the object be scanned,
411          * so the component in the li_list_dir must be in li_list_scan. */
412         cfs_list_t                li_list_dir;
413
414         /* For the components in double scanning. */
415         cfs_list_t                li_list_double_scan;
416
417         /* For the components those are not scanning now. */
418         cfs_list_t                li_list_idle;
419
420         atomic_t                  li_ref;
421         atomic_t                  li_double_scan_count;
422         struct ptlrpc_thread      li_thread;
423
424         /* The time for last checkpoint, jiffies */
425         cfs_time_t                li_time_last_checkpoint;
426
427         /* The time for next checkpoint, jiffies */
428         cfs_time_t                li_time_next_checkpoint;
429
430         lfsck_out_notify          li_out_notify;
431         void                     *li_out_notify_data;
432         struct dt_device         *li_next;
433         struct dt_device         *li_bottom;
434         struct ldlm_namespace    *li_namespace;
435         struct local_oid_storage *li_los;
436         struct lu_fid             li_local_root_fid;  /* backend root "/" */
437         struct lu_fid             li_global_root_fid; /* /ROOT */
438         struct dt_object         *li_bookmark_obj;
439         struct lfsck_bookmark     li_bookmark_ram;
440         struct lfsck_bookmark     li_bookmark_disk;
441         struct lfsck_position     li_pos_current;
442
443         /* Obj for otable-based iteration */
444         struct dt_object         *li_obj_oit;
445
446         /* Obj for directory traversal */
447         struct dt_object         *li_obj_dir;
448
449         /* It for otable-based iteration */
450         struct dt_it             *li_di_oit;
451
452         /* It for directory traversal */
453         struct dt_it             *li_di_dir;
454
455         /* Description of OST */
456         struct lfsck_tgt_descs    li_ost_descs;
457
458         /* Description of MDT */
459         struct lfsck_tgt_descs    li_mdt_descs;
460
461         /* namespace-based directory traversal position. */
462         __u64                     li_cookie_dir;
463
464         /* Arguments for low layer otable-based iteration. */
465         __u32                     li_args_oit;
466
467         /* Arugments for namespace-based directory traversal. */
468         __u32                     li_args_dir;
469
470         /* Schedule for every N objects. */
471         __u32                     li_sleep_rate;
472
473         /* Sleep N jiffies for each schedule. */
474         __u32                     li_sleep_jif;
475
476         /* How many objects have been scanned since last sleep. */
477         __u32                     li_new_scanned;
478
479         /* The status when the LFSCK stopped or paused. */
480         __u32                     li_status;
481
482         unsigned int              li_oit_over:1, /* oit is finished. */
483                                   li_drop_dryrun:1, /* Ever dryrun, not now. */
484                                   li_master:1, /* Master instance or not. */
485                                   li_current_oit_processed:1;
486 };
487
488 enum lfsck_linkea_flags {
489         /* The linkea entries does not match the object nlinks. */
490         LLF_UNMATCH_NLINKS      = 0x01,
491
492         /* Fail to repair the multiple-linked objects during the double scan. */
493         LLF_REPAIR_FAILED       = 0x02,
494 };
495
496 struct lfsck_async_interpret_args {
497         struct lfsck_component          *laia_com;
498         struct lfsck_tgt_descs          *laia_ltds;
499         struct lfsck_tgt_desc           *laia_ltd;
500         struct lfsck_request            *laia_lr;
501 };
502
503 struct lfsck_thread_args {
504         struct lu_env            lta_env;
505         struct lfsck_instance   *lta_lfsck;
506         struct lfsck_component  *lta_com;
507 };
508
509 struct lfsck_thread_info {
510         struct lu_name          lti_name;
511         struct lu_buf           lti_buf;
512         struct lu_buf           lti_linkea_buf;
513         struct lu_fid           lti_fid;
514         struct lu_fid           lti_fid2;
515         struct lu_attr          lti_la;
516         struct ost_id           lti_oi;
517         union {
518                 struct lustre_mdt_attrs lti_lma;
519                 /* old LMA for compatibility */
520                 char                    lti_lma_old[LMA_OLD_SIZE];
521         };
522         struct dt_object_format lti_dof;
523         /* lti_ent and lti_key must be conjoint,
524          * then lti_ent::lde_name will be lti_key. */
525         struct lu_dirent        lti_ent;
526         char                    lti_key[NAME_MAX + 16];
527         struct lfsck_request    lti_lr;
528         struct lfsck_async_interpret_args lti_laia;
529 };
530
531 /* lfsck_lib.c */
532 const char *lfsck_status2names(enum lfsck_status status);
533 void lfsck_component_cleanup(const struct lu_env *env,
534                              struct lfsck_component *com);
535 void lfsck_instance_cleanup(const struct lu_env *env,
536                             struct lfsck_instance *lfsck);
537 int lfsck_bits_dump(char **buf, int *len, int bits, const char *names[],
538                     const char *prefix);
539 int lfsck_time_dump(char **buf, int *len, __u64 time, const char *prefix);
540 int lfsck_pos_dump(char **buf, int *len, struct lfsck_position *pos,
541                    const char *prefix);
542 void lfsck_pos_fill(const struct lu_env *env, struct lfsck_instance *lfsck,
543                     struct lfsck_position *pos, bool init);
544 void lfsck_control_speed(struct lfsck_instance *lfsck);
545 void lfsck_control_speed_by_self(struct lfsck_component *com);
546 int lfsck_reset(const struct lu_env *env, struct lfsck_instance *lfsck,
547                 bool init);
548 struct lfsck_thread_args *lfsck_thread_args_init(struct lfsck_instance *lfsck,
549                                                  struct lfsck_component *com);
550 void lfsck_thread_args_fini(struct lfsck_thread_args *lta);
551 void lfsck_fail(const struct lu_env *env, struct lfsck_instance *lfsck,
552                 bool new_checked);
553 int lfsck_checkpoint(const struct lu_env *env, struct lfsck_instance *lfsck);
554 int lfsck_prep(const struct lu_env *env, struct lfsck_instance *lfsck);
555 int lfsck_exec_oit(const struct lu_env *env, struct lfsck_instance *lfsck,
556                    struct dt_object *obj);
557 int lfsck_exec_dir(const struct lu_env *env, struct lfsck_instance *lfsck,
558                    struct dt_object *obj, struct lu_dirent *ent);
559 int lfsck_post(const struct lu_env *env, struct lfsck_instance *lfsck,
560                int result);
561 int lfsck_double_scan(const struct lu_env *env, struct lfsck_instance *lfsck);
562 void lfsck_quit(const struct lu_env *env, struct lfsck_instance *lfsck);
563 int lfsck_async_request(const struct lu_env *env, struct obd_export *exp,
564                         struct lfsck_request *lr,
565                         struct ptlrpc_request_set *set,
566                         ptlrpc_interpterer_t interpterer,
567                         void *args, int request);
568
569 /* lfsck_engine.c */
570 int lfsck_master_engine(void *args);
571
572 /* lfsck_bookmark.c */
573 int lfsck_bookmark_store(const struct lu_env *env,
574                          struct lfsck_instance *lfsck);
575 int lfsck_bookmark_setup(const struct lu_env *env,
576                          struct lfsck_instance *lfsck);
577
578 /* lfsck_namespace.c */
579 int lfsck_namespace_setup(const struct lu_env *env,
580                           struct lfsck_instance *lfsck);
581
582 /* lfsck_layout.c */
583 int lfsck_layout_setup(const struct lu_env *env, struct lfsck_instance *lfsck);
584
585 extern const char *lfsck_flags_names[];
586 extern const char *lfsck_param_names[];
587 extern struct lu_context_key lfsck_thread_key;
588
589 static inline struct lfsck_thread_info *
590 lfsck_env_info(const struct lu_env *env)
591 {
592         struct lfsck_thread_info *info;
593
594         info = lu_context_key_get(&env->le_ctx, &lfsck_thread_key);
595         LASSERT(info != NULL);
596         return info;
597 }
598
599 static inline const struct lu_name *
600 lfsck_name_get_const(const struct lu_env *env, const void *area, ssize_t len)
601 {
602         struct lu_name *lname;
603
604         lname = &lfsck_env_info(env)->lti_name;
605         lname->ln_name = area;
606         lname->ln_namelen = len;
607         return lname;
608 }
609
610 static inline struct lu_buf *
611 lfsck_buf_get(const struct lu_env *env, void *area, ssize_t len)
612 {
613         struct lu_buf *buf;
614
615         buf = &lfsck_env_info(env)->lti_buf;
616         buf->lb_buf = area;
617         buf->lb_len = len;
618         return buf;
619 }
620
621 static inline const struct lu_buf *
622 lfsck_buf_get_const(const struct lu_env *env, const void *area, ssize_t len)
623 {
624         struct lu_buf *buf;
625
626         buf = &lfsck_env_info(env)->lti_buf;
627         buf->lb_buf = (void *)area;
628         buf->lb_len = len;
629         return buf;
630 }
631
632 static inline char *lfsck_lfsck2name(struct lfsck_instance *lfsck)
633 {
634         return lfsck->li_bottom->dd_lu_dev.ld_obd->obd_name;
635 }
636
637 static inline const struct lu_fid *lfsck_dto2fid(const struct dt_object *obj)
638 {
639         return lu_object_fid(&obj->do_lu);
640 }
641
642 static inline void lfsck_pos_set_zero(struct lfsck_position *pos)
643 {
644         memset(pos, 0, sizeof(*pos));
645 }
646
647 static inline int lfsck_pos_is_zero(const struct lfsck_position *pos)
648 {
649         return pos->lp_oit_cookie == 0 && fid_is_zero(&pos->lp_dir_parent);
650 }
651
652 static inline int lfsck_pos_is_eq(const struct lfsck_position *pos1,
653                                   const struct lfsck_position *pos2)
654 {
655         if (pos1->lp_oit_cookie < pos2->lp_oit_cookie)
656                 return -1;
657
658         if (pos1->lp_oit_cookie > pos2->lp_oit_cookie)
659                 return 1;
660
661         if (fid_is_zero(&pos1->lp_dir_parent) &&
662             !fid_is_zero(&pos2->lp_dir_parent))
663                 return -1;
664
665         if (!fid_is_zero(&pos1->lp_dir_parent) &&
666             fid_is_zero(&pos2->lp_dir_parent))
667                 return 1;
668
669         if (fid_is_zero(&pos1->lp_dir_parent) &&
670             fid_is_zero(&pos2->lp_dir_parent))
671                 return 0;
672
673         LASSERT(lu_fid_eq(&pos1->lp_dir_parent, &pos2->lp_dir_parent));
674
675         if (pos1->lp_dir_cookie < pos2->lp_dir_cookie)
676                 return -1;
677
678         if (pos1->lp_dir_cookie > pos2->lp_dir_cookie)
679                 return 1;
680
681         return 0;
682 }
683
684 static void inline lfsck_position_le_to_cpu(struct lfsck_position *des,
685                                             struct lfsck_position *src)
686 {
687         des->lp_oit_cookie = le64_to_cpu(src->lp_oit_cookie);
688         fid_le_to_cpu(&des->lp_dir_parent, &src->lp_dir_parent);
689         des->lp_dir_cookie = le64_to_cpu(src->lp_dir_cookie);
690 }
691
692 static void inline lfsck_position_cpu_to_le(struct lfsck_position *des,
693                                             struct lfsck_position *src)
694 {
695         des->lp_oit_cookie = cpu_to_le64(src->lp_oit_cookie);
696         fid_cpu_to_le(&des->lp_dir_parent, &src->lp_dir_parent);
697         des->lp_dir_cookie = cpu_to_le64(src->lp_dir_cookie);
698 }
699
700 static inline umode_t lfsck_object_type(const struct dt_object *obj)
701 {
702         return lu_object_attr(&obj->do_lu);
703 }
704
705 static inline int lfsck_is_dead_obj(const struct dt_object *obj)
706 {
707         struct lu_object_header *loh = obj->do_lu.lo_header;
708
709         return !!test_bit(LU_OBJECT_HEARD_BANSHEE, &loh->loh_flags);
710 }
711
712 static inline struct dt_object *lfsck_object_find(const struct lu_env *env,
713                                                   struct lfsck_instance *lfsck,
714                                                   const struct lu_fid *fid)
715 {
716         return lu2dt(lu_object_find_slice(env, dt2lu_dev(lfsck->li_next),
717                      fid, NULL));
718 }
719
720 static inline struct dt_object *lfsck_object_get(struct dt_object *obj)
721 {
722         lu_object_get(&obj->do_lu);
723         return obj;
724 }
725
726 static inline void lfsck_object_put(const struct lu_env *env,
727                                     struct dt_object *obj)
728 {
729         lu_object_put(env, &obj->do_lu);
730 }
731
732 static inline struct lfsck_tgt_desc *lfsck_tgt_get(struct lfsck_tgt_descs *ltds,
733                                                    __u32 index)
734 {
735         struct lfsck_tgt_desc *ltd;
736
737         ltd = LTD_TGT(ltds, index);
738         if (ltd != NULL)
739                 atomic_inc(&ltd->ltd_ref);
740
741         return ltd;
742 }
743
744 static inline void lfsck_tgt_put(struct lfsck_tgt_desc *ltd)
745 {
746         if (atomic_dec_and_test(&ltd->ltd_ref))
747                 OBD_FREE_PTR(ltd);
748 }
749
750 static inline struct lfsck_component *
751 lfsck_component_get(struct lfsck_component *com)
752 {
753         atomic_inc(&com->lc_ref);
754
755         return com;
756 }
757
758 static inline void lfsck_component_put(const struct lu_env *env,
759                                        struct lfsck_component *com)
760 {
761         if (atomic_dec_and_test(&com->lc_ref)) {
762                 if (com->lc_obj != NULL)
763                         lu_object_put_nocache(env, &com->lc_obj->do_lu);
764                 if (com->lc_file_ram != NULL)
765                         OBD_FREE(com->lc_file_ram, com->lc_file_size);
766                 if (com->lc_file_disk != NULL)
767                         OBD_FREE(com->lc_file_disk, com->lc_file_size);
768                 if (com->lc_data != NULL) {
769                         LASSERT(com->lc_ops->lfsck_data_release != NULL);
770
771                         com->lc_ops->lfsck_data_release(env, com);
772                 }
773
774                 OBD_FREE_PTR(com);
775         }
776 }
777
778 static inline struct lfsck_instance *
779 lfsck_instance_get(struct lfsck_instance *lfsck)
780 {
781         atomic_inc(&lfsck->li_ref);
782
783         return lfsck;
784 }
785
786 static inline void lfsck_instance_put(const struct lu_env *env,
787                                       struct lfsck_instance *lfsck)
788 {
789         if (atomic_dec_and_test(&lfsck->li_ref))
790                 lfsck_instance_cleanup(env, lfsck);
791 }
792
793 static inline mdsno_t lfsck_dev_idx(struct dt_device *dev)
794 {
795         return dev->dd_lu_dev.ld_site->ld_seq_site->ss_node_id;
796 }
797
798 #endif /* _LFSCK_INTERNAL_H */