Whamcloud - gitweb
LU-5506 lfsck: skip orphan OST-object handling for failed OSTs
[fs/lustre-release.git] / lustre / lfsck / lfsck_layout.c
index 10101ab..884d0e1 100644 (file)
 
 #include "lfsck_internal.h"
 
-#define LFSCK_LAYOUT_MAGIC             0xB173AE14
+#define LFSCK_LAYOUT_MAGIC_V1          0xB173AE14
+#define LFSCK_LAYOUT_MAGIC_V2          0xB1734D76
+
+#define LFSCK_LAYOUT_MAGIC             LFSCK_LAYOUT_MAGIC_V2
 
 static const char lfsck_layout_name[] = "lfsck_layout";
 
@@ -91,50 +94,18 @@ struct lfsck_layout_object {
        struct dt_object        *llo_obj;
        struct lu_attr           llo_attr;
        atomic_t                 llo_ref;
+       __u64                    llo_cookie;
        __u16                    llo_gen;
 };
 
 struct lfsck_layout_req {
-       struct list_head                 llr_list;
+       struct lfsck_assistant_req       llr_lar;
        struct lfsck_layout_object      *llr_parent;
        struct dt_object                *llr_child;
        __u32                            llr_ost_idx;
        __u32                            llr_lov_idx; /* offset in LOV EA */
 };
 
-struct lfsck_layout_master_data {
-       spinlock_t              llmd_lock;
-       struct list_head        llmd_req_list;
-
-       /* list for the ost targets involve layout verification. */
-       struct list_head        llmd_ost_list;
-
-       /* list for the ost targets in phase1 scanning. */
-       struct list_head        llmd_ost_phase1_list;
-
-       /* list for the ost targets in phase1 scanning. */
-       struct list_head        llmd_ost_phase2_list;
-
-       /* list for the mdt targets involve layout verification. */
-       struct list_head        llmd_mdt_list;
-
-       /* list for the mdt targets in phase1 scanning. */
-       struct list_head        llmd_mdt_phase1_list;
-
-       /* list for the mdt targets in phase1 scanning. */
-       struct list_head        llmd_mdt_phase2_list;
-
-       struct ptlrpc_thread    llmd_thread;
-       __u32                   llmd_touch_gen;
-       int                     llmd_prefetched;
-       int                     llmd_assistant_status;
-       int                     llmd_post_result;
-       unsigned int            llmd_to_post:1,
-                               llmd_to_double_scan:1,
-                               llmd_in_double_scan:1,
-                               llmd_exit:1;
-};
-
 struct lfsck_layout_slave_async_args {
        struct obd_export                *llsaa_exp;
        struct lfsck_component           *llsaa_com;
@@ -143,7 +114,7 @@ struct lfsck_layout_slave_async_args {
 
 static struct lfsck_layout_object *
 lfsck_layout_object_init(const struct lu_env *env, struct dt_object *obj,
-                        __u16 gen)
+                        __u64 cookie, __u16 gen)
 {
        struct lfsck_layout_object *llo;
        int                         rc;
@@ -161,6 +132,7 @@ lfsck_layout_object_init(const struct lu_env *env, struct dt_object *obj,
 
        lu_object_get(&obj->do_lu);
        llo->llo_obj = obj;
+       llo->llo_cookie = cookie;
        /* The gen can be used to check whether some others have changed the
         * file layout after LFSCK pre-fetching but before real verification. */
        llo->llo_gen = gen;
@@ -262,8 +234,9 @@ static inline void lfsck_layout_object_put(const struct lu_env *env,
 }
 
 static struct lfsck_layout_req *
-lfsck_layout_req_init(struct lfsck_layout_object *parent,
-                     struct dt_object *child, __u32 ost_idx, __u32 lov_idx)
+lfsck_layout_assistant_req_init(struct lfsck_layout_object *parent,
+                               struct dt_object *child, __u32 ost_idx,
+                               __u32 lov_idx)
 {
        struct lfsck_layout_req *llr;
 
@@ -271,7 +244,7 @@ lfsck_layout_req_init(struct lfsck_layout_object *parent,
        if (llr == NULL)
                return ERR_PTR(-ENOMEM);
 
-       INIT_LIST_HEAD(&llr->llr_list);
+       INIT_LIST_HEAD(&llr->llr_lar.lar_list);
        atomic_inc(&parent->llo_ref);
        llr->llr_parent = parent;
        llr->llr_child = child;
@@ -281,24 +254,126 @@ lfsck_layout_req_init(struct lfsck_layout_object *parent,
        return llr;
 }
 
-static inline void lfsck_layout_req_fini(const struct lu_env *env,
-                                        struct lfsck_layout_req *llr)
+static void lfsck_layout_assistant_req_fini(const struct lu_env *env,
+                                           struct lfsck_assistant_req *lar)
 {
+       struct lfsck_layout_req *llr =
+                       container_of0(lar, struct lfsck_layout_req, llr_lar);
+
        lu_object_put(env, &llr->llr_child->do_lu);
        lfsck_layout_object_put(env, llr->llr_parent);
        OBD_FREE_PTR(llr);
 }
 
-static inline bool lfsck_layout_req_empty(struct lfsck_layout_master_data *llmd)
+static int
+lfsck_layout_assistant_sync_failures_interpret(const struct lu_env *env,
+                                              struct ptlrpc_request *req,
+                                              void *args, int rc)
 {
-       bool empty = false;
+       struct lfsck_async_interpret_args *laia = args;
+
+       if (rc == 0)
+               atomic_dec(laia->laia_count);
+
+       return 0;
+}
+
+/**
+ * Notify remote LFSCK instances about former failures.
+ *
+ * The local LFSCK instance has recorded which OSTs have ever failed to respond
+ * some LFSCK verification requests (maybe because of network issues or the OST
+ * itself trouble). During the respond gap, the OST may missed some OST-objects
+ * verification, then the OST cannot know whether related OST-objects have been
+ * referenced by related MDT-objects or not, then in the second-stage scanning,
+ * these OST-objects will be regarded as orphan, if the OST-object contains bad
+ * parent FID for back reference, then it will misguide the LFSCK to make wrong
+ * fixing for the fake orphan.
+ *
+ * To avoid above trouble, when layout LFSCK finishes the first-stage scanning,
+ * it will scan the bitmap for the ever failed OTs, and notify them that it has
+ * ever missed some OST-object verification and should skip orphan handling for
+ * all MDTs that are in layout LFSCK.
+ *
+ * \param[in] env      pointer to the thread context
+ * \param[in] com      pointer to the lfsck component
+ * \param[in] lr       pointer to the lfsck request
+ */
+static void lfsck_layout_assistant_sync_failures(const struct lu_env *env,
+                                                struct lfsck_component *com,
+                                                struct lfsck_request *lr)
+{
+       struct lfsck_async_interpret_args *laia  =
+                               &lfsck_env_info(env)->lti_laia2;
+       struct lfsck_assistant_data       *lad   = com->lc_data;
+       struct lfsck_layout               *lo    = com->lc_file_ram;
+       struct lfsck_instance             *lfsck = com->lc_lfsck;
+       struct lfsck_tgt_descs            *ltds  = &lfsck->li_ost_descs;
+       struct lfsck_tgt_desc             *ltd;
+       struct ptlrpc_request_set         *set;
+       atomic_t                           count;
+       __u32                              idx;
+       int                                rc    = 0;
+       ENTRY;
+
+       if (!lad->lad_incomplete || lo->ll_flags & LF_INCOMPLETE)
+               RETURN_EXIT;
+
+       /* If the MDT has ever failed to verfiy some OST-objects,
+        * then sync failures with them firstly. */
+       lr->lr_flags2 = lo->ll_flags | LF_INCOMPLETE;
+
+       atomic_set(&count, 0);
+       memset(laia, 0, sizeof(*laia));
+       laia->laia_count = &count;
+       set = ptlrpc_prep_set();
+       if (set == NULL)
+               GOTO(out, rc = -ENOMEM);
+
+       down_read(&ltds->ltd_rw_sem);
+       cfs_foreach_bit(lad->lad_bitmap, idx) {
+               ltd = LTD_TGT(ltds, idx);
+               LASSERT(ltd != NULL);
+
+               spin_lock(&ltds->ltd_lock);
+               list_del_init(&ltd->ltd_layout_phase_list);
+               list_del_init(&ltd->ltd_layout_list);
+               spin_unlock(&ltds->ltd_lock);
+
+               rc = lfsck_async_request(env, ltd->ltd_exp, lr, set,
+                               lfsck_layout_assistant_sync_failures_interpret,
+                               laia, LFSCK_NOTIFY);
+               if (rc != 0) {
+                       CDEBUG(D_LFSCK, "%s: LFSCK assistant fail to "
+                              "notify target %x for %s phase1 done: "
+                              "rc = %d\n", lfsck_lfsck2name(com->lc_lfsck),
+                              ltd->ltd_index, lad->lad_name, rc);
 
-       spin_lock(&llmd->llmd_lock);
-       if (list_empty(&llmd->llmd_req_list))
-               empty = true;
-       spin_unlock(&llmd->llmd_lock);
+                       break;
+               }
+
+               atomic_inc(&count);
+       }
+       up_read(&ltds->ltd_rw_sem);
+
+       if (rc == 0 && atomic_read(&count) > 0)
+               rc = ptlrpc_set_wait(set);
 
-       return empty;
+       ptlrpc_set_destroy(set);
+
+       if (rc == 0 && atomic_read(&count) > 0)
+               rc = -EINVAL;
+
+       GOTO(out, rc);
+
+out:
+       if (rc != 0)
+               /* If failed to sync failures with the OSTs, then have to
+                * mark the whole LFSCK as LF_INCOMPLETE to skip the whole
+                * subsequent orphan OST-object handling. */
+               lo->ll_flags |= LF_INCOMPLETE;
+
+       lr->lr_flags2 = lo->ll_flags;
 }
 
 static int lfsck_layout_get_lovea(const struct lu_env *env,
@@ -697,6 +772,7 @@ static void lfsck_layout_le_to_cpu(struct lfsck_layout *des,
                des->ll_objs_repaired[i] =
                                le64_to_cpu(src->ll_objs_repaired[i]);
        des->ll_objs_skipped = le64_to_cpu(src->ll_objs_skipped);
+       des->ll_bitmap_size = le32_to_cpu(src->ll_bitmap_size);
 }
 
 static void lfsck_layout_cpu_to_le(struct lfsck_layout *des,
@@ -726,12 +802,103 @@ static void lfsck_layout_cpu_to_le(struct lfsck_layout *des,
                des->ll_objs_repaired[i] =
                                cpu_to_le64(src->ll_objs_repaired[i]);
        des->ll_objs_skipped = cpu_to_le64(src->ll_objs_skipped);
+       des->ll_bitmap_size = cpu_to_le32(src->ll_bitmap_size);
 }
 
 /**
- * \retval +ve: the lfsck_layout is broken, the caller should reset it.
- * \retval 0: succeed.
- * \retval -ve: failed cases.
+ * Load the OST bitmap from the lfsck_layout tracing file.
+ *
+ * \param[in] env      pointer to the thread context
+ * \param[in] com      pointer to the lfsck component
+ *
+ * \retval             positive number for data corruption
+ * \retval             0 for success
+ * \retval             negative error number on failure
+ */
+static int lfsck_layout_load_bitmap(const struct lu_env *env,
+                                   struct lfsck_component *com)
+{
+       struct dt_object                *obj    = com->lc_obj;
+       struct lfsck_assistant_data     *lad    = com->lc_data;
+       struct lfsck_layout             *lo     = com->lc_file_ram;
+       const struct dt_body_operations *dbo    = obj->do_body_ops;
+       cfs_bitmap_t                    *bitmap = lad->lad_bitmap;
+       loff_t                           pos    = com->lc_file_size;
+       ssize_t                          size;
+       __u32                            nbits;
+       int                              rc;
+       ENTRY;
+
+       if (com->lc_lfsck->li_ost_descs.ltd_tgts_bitmap->size >
+           lo->ll_bitmap_size)
+               nbits = com->lc_lfsck->li_ost_descs.ltd_tgts_bitmap->size;
+       else
+               nbits = lo->ll_bitmap_size;
+
+       if (unlikely(nbits < BITS_PER_LONG))
+               nbits = BITS_PER_LONG;
+
+       if (nbits > bitmap->size) {
+               __u32 new_bits = bitmap->size;
+               cfs_bitmap_t *new_bitmap;
+
+               while (new_bits < nbits)
+                       new_bits <<= 1;
+
+               new_bitmap = CFS_ALLOCATE_BITMAP(new_bits);
+               if (new_bitmap == NULL)
+                       RETURN(-ENOMEM);
+
+               lad->lad_bitmap = new_bitmap;
+               CFS_FREE_BITMAP(bitmap);
+               bitmap = new_bitmap;
+       }
+
+       if (lo->ll_bitmap_size == 0) {
+               lad->lad_incomplete = 0;
+               CFS_RESET_BITMAP(bitmap);
+
+               RETURN(0);
+       }
+
+       size = (lo->ll_bitmap_size + 7) >> 3;
+       rc = dbo->dbo_read(env, obj,
+                          lfsck_buf_get(env, bitmap->data, size), &pos,
+                          BYPASS_CAPA);
+       if (rc == 0) {
+               RETURN(-ENOENT);
+       } else if (rc != size) {
+               CDEBUG(D_LFSCK, "%s: lfsck_layout bitmap size %u != %u\n",
+                      lfsck_lfsck2name(com->lc_lfsck),
+                      (unsigned int)size, rc);
+
+               RETURN(rc);
+       }
+
+       if (cfs_bitmap_check_empty(bitmap))
+               lad->lad_incomplete = 0;
+       else
+               lad->lad_incomplete = 1;
+
+       RETURN(0);
+}
+
+/**
+ * Load the layout LFSCK tracing file from disk.
+ *
+ * The layout LFSCK tracing file records the layout LFSCK status information
+ * and other statistics, such as how many objects have been scanned, and how
+ * many objects have been repaired, and etc. It also contains the bitmap for
+ * failed OSTs during the layout LFSCK. All these information will be loaded
+ * from disk to RAM when the layout LFSCK component setup.
+ *
+ * \param[in] env      pointer to the thread context
+ * \param[in] com      pointer to the lfsck component
+ *
+ * \retval             positive number for file data corruption, the caller
+ *                     should reset the layout LFSCK tracing file
+ * \retval             0 for success
+ * \retval             negative error number on failure
  */
 static int lfsck_layout_load(const struct lu_env *env,
                             struct lfsck_component *com)
@@ -768,44 +935,92 @@ static int lfsck_layout_load(const struct lu_env *env,
        return 0;
 }
 
+/**
+ * Store the layout LFSCK tracing file on disk.
+ *
+ * The layout LFSCK tracing file records the layout LFSCK status information
+ * and other statistics, such as how many objects have been scanned, and how
+ * many objects have been repaired, and etc. It also contains the bitmap for
+ * failed OSTs during the layout LFSCK. All these information will be synced
+ * from RAM to disk periodically.
+ *
+ * \param[in] env      pointer to the thread context
+ * \param[in] com      pointer to the lfsck component
+ *
+ * \retval             0 for success
+ * \retval             negative error number on failure
+ */
 static int lfsck_layout_store(const struct lu_env *env,
                              struct lfsck_component *com)
 {
-       struct dt_object         *obj           = com->lc_obj;
-       struct lfsck_instance    *lfsck         = com->lc_lfsck;
-       struct lfsck_layout      *lo            = com->lc_file_disk;
-       struct thandle           *handle;
-       ssize_t                   size          = com->lc_file_size;
-       loff_t                    pos           = 0;
-       int                       rc;
+       struct dt_object        *obj    = com->lc_obj;
+       struct lfsck_instance   *lfsck  = com->lc_lfsck;
+       struct lfsck_layout     *lo_ram = com->lc_file_ram;
+       struct lfsck_layout     *lo     = com->lc_file_disk;
+       struct thandle          *th;
+       struct dt_device        *dev    = lfsck->li_bottom;
+       cfs_bitmap_t            *bitmap = NULL;
+       loff_t                   pos;
+       ssize_t                  size   = com->lc_file_size;
+       __u32                    nbits  = 0;
+       int                      rc;
        ENTRY;
 
-       lfsck_layout_cpu_to_le(lo, com->lc_file_ram);
-       handle = dt_trans_create(env, lfsck->li_bottom);
-       if (IS_ERR(handle))
-               GOTO(log, rc = PTR_ERR(handle));
+       if (lfsck->li_master) {
+               struct lfsck_assistant_data *lad = com->lc_data;
+
+               bitmap = lad->lad_bitmap;
+               nbits = bitmap->size;
+
+               LASSERT(nbits > 0);
+               LASSERTF((nbits & 7) == 0, "Invalid nbits %u\n", nbits);
+       }
+
+       lo_ram->ll_bitmap_size = nbits;
+       lfsck_layout_cpu_to_le(lo, lo_ram);
+       th = dt_trans_create(env, dev);
+       if (IS_ERR(th))
+               GOTO(log, rc = PTR_ERR(th));
 
        rc = dt_declare_record_write(env, obj, lfsck_buf_get(env, lo, size),
-                                    pos, handle);
+                                    (loff_t)0, th);
        if (rc != 0)
                GOTO(out, rc);
 
-       rc = dt_trans_start_local(env, lfsck->li_bottom, handle);
+       if (bitmap != NULL) {
+               rc = dt_declare_record_write(env, obj,
+                               lfsck_buf_get(env, bitmap->data, nbits >> 3),
+                               (loff_t)size, th);
+               if (rc != 0)
+                       GOTO(out, rc);
+       }
+
+       rc = dt_trans_start_local(env, dev, th);
        if (rc != 0)
                GOTO(out, rc);
 
-       rc = dt_record_write(env, obj, lfsck_buf_get(env, lo, size), &pos,
-                            handle);
+       pos = 0;
+       rc = dt_record_write(env, obj, lfsck_buf_get(env, lo, size), &pos, th);
+       if (rc != 0)
+               GOTO(out, rc);
+
+       if (bitmap != NULL) {
+               pos = size;
+               rc = dt_record_write(env, obj,
+                               lfsck_buf_get(env, bitmap->data, nbits >> 3),
+                               &pos, th);
+       }
 
        GOTO(out, rc);
 
 out:
-       dt_trans_stop(env, lfsck->li_bottom, handle);
+       dt_trans_stop(env, dev, th);
 
 log:
        if (rc != 0)
                CDEBUG(D_LFSCK, "%s: fail to store lfsck_layout: rc = %d\n",
                       lfsck_lfsck2name(lfsck), rc);
+
        return rc;
 }
 
@@ -1155,14 +1370,17 @@ out:
 }
 
 static void lfsck_layout_record_failure(const struct lu_env *env,
-                                                struct lfsck_instance *lfsck,
-                                                struct lfsck_layout *lo)
+                                       struct lfsck_instance *lfsck,
+                                       struct lfsck_layout *lo)
 {
+       __u64 cookie;
+
        lo->ll_objs_failed_phase1++;
-       if (unlikely(lo->ll_pos_first_inconsistent == 0)) {
-               lo->ll_pos_first_inconsistent =
-                       lfsck->li_obj_oit->do_index_ops->dio_it.store(env,
+       cookie = lfsck->li_obj_oit->do_index_ops->dio_it.store(env,
                                                        lfsck->li_di_oit);
+       if (lo->ll_pos_first_inconsistent == 0 ||
+           lo->ll_pos_first_inconsistent < cookie) {
+               lo->ll_pos_first_inconsistent = cookie;
 
                CDEBUG(D_LFSCK, "%s: layout LFSCK hit first non-repaired "
                       "inconsistency at the pos ["LPU64"]\n",
@@ -1171,429 +1389,12 @@ static void lfsck_layout_record_failure(const struct lu_env *env,
        }
 }
 
-static int lfsck_layout_master_async_interpret(const struct lu_env *env,
-                                              struct ptlrpc_request *req,
-                                              void *args, int rc)
-{
-       struct lfsck_async_interpret_args *laia = args;
-       struct lfsck_component            *com  = laia->laia_com;
-       struct lfsck_layout_master_data   *llmd = com->lc_data;
-       struct lfsck_tgt_descs            *ltds = laia->laia_ltds;
-       struct lfsck_tgt_desc             *ltd  = laia->laia_ltd;
-       struct lfsck_request              *lr   = laia->laia_lr;
-
-       switch (lr->lr_event) {
-       case LE_START:
-               if (rc != 0) {
-                       struct lfsck_layout *lo = com->lc_file_ram;
-
-                       CDEBUG(D_LFSCK, "%s: fail to notify %s %x for layout "
-                              "start: rc = %d\n",
-                              lfsck_lfsck2name(com->lc_lfsck),
-                              (lr->lr_flags & LEF_TO_OST) ? "OST" : "MDT",
-                              ltd->ltd_index, rc);
-                       lo->ll_flags |= LF_INCOMPLETE;
-                       break;
-               }
-
-               spin_lock(&ltds->ltd_lock);
-               if (ltd->ltd_dead || ltd->ltd_layout_done) {
-                       spin_unlock(&ltds->ltd_lock);
-                       break;
-               }
-
-               if (lr->lr_flags & LEF_TO_OST) {
-                       if (list_empty(&ltd->ltd_layout_list))
-                               list_add_tail(&ltd->ltd_layout_list,
-                                             &llmd->llmd_ost_list);
-                       if (list_empty(&ltd->ltd_layout_phase_list))
-                               list_add_tail(&ltd->ltd_layout_phase_list,
-                                             &llmd->llmd_ost_phase1_list);
-               } else {
-                       if (list_empty(&ltd->ltd_layout_list))
-                               list_add_tail(&ltd->ltd_layout_list,
-                                             &llmd->llmd_mdt_list);
-                       if (list_empty(&ltd->ltd_layout_phase_list))
-                               list_add_tail(&ltd->ltd_layout_phase_list,
-                                             &llmd->llmd_mdt_phase1_list);
-               }
-               spin_unlock(&ltds->ltd_lock);
-               break;
-       case LE_STOP:
-       case LE_PHASE1_DONE:
-       case LE_PHASE2_DONE:
-       case LE_PEER_EXIT:
-               if (rc != 0 && rc != -EALREADY)
-                       CDEBUG(D_LFSCK, "%s: fail to notify %s %x for layout: "
-                              "event = %d, rc = %d\n",
-                              lfsck_lfsck2name(com->lc_lfsck),
-                              (lr->lr_flags & LEF_TO_OST) ? "OST" : "MDT",
-                              ltd->ltd_index, lr->lr_event, rc);
-               break;
-       case LE_QUERY: {
-               struct lfsck_reply *reply;
-
-               if (rc != 0) {
-                       spin_lock(&ltds->ltd_lock);
-                       list_del_init(&ltd->ltd_layout_phase_list);
-                       list_del_init(&ltd->ltd_layout_list);
-                       spin_unlock(&ltds->ltd_lock);
-                       break;
-               }
-
-               reply = req_capsule_server_get(&req->rq_pill,
-                                              &RMF_LFSCK_REPLY);
-               if (reply == NULL) {
-                       rc = -EPROTO;
-                       CDEBUG(D_LFSCK, "%s:  invalid query reply: rc = %d\n",
-                              lfsck_lfsck2name(com->lc_lfsck), rc);
-                       spin_lock(&ltds->ltd_lock);
-                       list_del_init(&ltd->ltd_layout_phase_list);
-                       list_del_init(&ltd->ltd_layout_list);
-                       spin_unlock(&ltds->ltd_lock);
-                       break;
-               }
-
-               switch (reply->lr_status) {
-               case LS_SCANNING_PHASE1:
-                       break;
-               case LS_SCANNING_PHASE2:
-                       spin_lock(&ltds->ltd_lock);
-                       list_del_init(&ltd->ltd_layout_phase_list);
-                       if (ltd->ltd_dead || ltd->ltd_layout_done) {
-                               spin_unlock(&ltds->ltd_lock);
-                               break;
-                       }
-
-                       if (lr->lr_flags & LEF_TO_OST)
-                               list_add_tail(&ltd->ltd_layout_phase_list,
-                                             &llmd->llmd_ost_phase2_list);
-                       else
-                               list_add_tail(&ltd->ltd_layout_phase_list,
-                                             &llmd->llmd_mdt_phase2_list);
-                       spin_unlock(&ltds->ltd_lock);
-                       break;
-               default:
-                       spin_lock(&ltds->ltd_lock);
-                       list_del_init(&ltd->ltd_layout_phase_list);
-                       list_del_init(&ltd->ltd_layout_list);
-                       spin_unlock(&ltds->ltd_lock);
-                       break;
-               }
-               break;
-       }
-       default:
-               CDEBUG(D_LFSCK, "%s: layout LFSCK unexpected event: rc = %d\n",
-                      lfsck_lfsck2name(com->lc_lfsck), lr->lr_event);
-               break;
-       }
-
-       if (!laia->laia_shared) {
-               lfsck_tgt_put(ltd);
-               lfsck_component_put(env, com);
-       }
-
-       return 0;
-}
-
-static int lfsck_layout_master_query_others(const struct lu_env *env,
-                                           struct lfsck_component *com)
-{
-       struct lfsck_thread_info          *info  = lfsck_env_info(env);
-       struct lfsck_request              *lr    = &info->lti_lr;
-       struct lfsck_async_interpret_args *laia  = &info->lti_laia;
-       struct lfsck_instance             *lfsck = com->lc_lfsck;
-       struct lfsck_layout_master_data   *llmd  = com->lc_data;
-       struct ptlrpc_request_set         *set;
-       struct lfsck_tgt_descs            *ltds;
-       struct lfsck_tgt_desc             *ltd;
-       struct list_head                  *head;
-       int                                rc    = 0;
-       int                                rc1   = 0;
-       ENTRY;
-
-       set = ptlrpc_prep_set();
-       if (set == NULL)
-               RETURN(-ENOMEM);
-
-       llmd->llmd_touch_gen++;
-       memset(lr, 0, sizeof(*lr));
-       lr->lr_index = lfsck_dev_idx(lfsck->li_bottom);
-       lr->lr_event = LE_QUERY;
-       lr->lr_active = LFSCK_TYPE_LAYOUT;
-       laia->laia_com = com;
-       laia->laia_lr = lr;
-       laia->laia_shared = 0;
-
-       if (!list_empty(&llmd->llmd_mdt_phase1_list)) {
-               ltds = &lfsck->li_mdt_descs;
-               lr->lr_flags = 0;
-               head = &llmd->llmd_mdt_phase1_list;
-       } else {
-
-again:
-               ltds = &lfsck->li_ost_descs;
-               lr->lr_flags = LEF_TO_OST;
-               head = &llmd->llmd_ost_phase1_list;
-       }
-
-       laia->laia_ltds = ltds;
-       spin_lock(&ltds->ltd_lock);
-       while (!list_empty(head)) {
-               ltd = list_entry(head->next,
-                                struct lfsck_tgt_desc,
-                                ltd_layout_phase_list);
-               if (ltd->ltd_layout_gen == llmd->llmd_touch_gen)
-                       break;
-
-               ltd->ltd_layout_gen = llmd->llmd_touch_gen;
-               list_move_tail(&ltd->ltd_layout_phase_list, head);
-               atomic_inc(&ltd->ltd_ref);
-               laia->laia_ltd = ltd;
-               spin_unlock(&ltds->ltd_lock);
-               rc = lfsck_async_request(env, ltd->ltd_exp, lr, set,
-                                        lfsck_layout_master_async_interpret,
-                                        laia, LFSCK_QUERY);
-               if (rc != 0) {
-                       CDEBUG(D_LFSCK, "%s: layout LFSCK fail to query %s %x: "
-                              "rc = %d\n", lfsck_lfsck2name(lfsck),
-                              (lr->lr_flags & LEF_TO_OST) ? "OST" : "MDT",
-                              ltd->ltd_index, rc);
-                       lfsck_tgt_put(ltd);
-                       rc1 = rc;
-               }
-               spin_lock(&ltds->ltd_lock);
-       }
-       spin_unlock(&ltds->ltd_lock);
-
-       rc = ptlrpc_set_wait(set);
-       if (rc < 0) {
-               ptlrpc_set_destroy(set);
-               RETURN(rc);
-       }
-
-       if (!(lr->lr_flags & LEF_TO_OST) &&
-           list_empty(&llmd->llmd_mdt_phase1_list))
-               goto again;
-
-       ptlrpc_set_destroy(set);
-
-       RETURN(rc1 != 0 ? rc1 : rc);
-}
-
-static inline bool
-lfsck_layout_master_to_orphan(struct lfsck_layout_master_data *llmd)
-{
-       return list_empty(&llmd->llmd_mdt_phase1_list) &&
-              (!list_empty(&llmd->llmd_ost_phase2_list) ||
-               list_empty(&llmd->llmd_ost_phase1_list));
-}
-
-static int lfsck_layout_master_notify_others(const struct lu_env *env,
-                                            struct lfsck_component *com,
-                                            struct lfsck_request *lr)
-{
-       struct lfsck_thread_info          *info  = lfsck_env_info(env);
-       struct lfsck_async_interpret_args *laia  = &info->lti_laia;
-       struct lfsck_instance             *lfsck = com->lc_lfsck;
-       struct lfsck_layout_master_data   *llmd  = com->lc_data;
-       struct lfsck_layout               *lo    = com->lc_file_ram;
-       struct lfsck_bookmark             *bk    = &lfsck->li_bookmark_ram;
-       struct ptlrpc_request_set         *set;
-       struct lfsck_tgt_descs            *ltds;
-       struct lfsck_tgt_desc             *ltd;
-       struct lfsck_tgt_desc             *next;
-       struct list_head                  *head;
-       __u32                              idx;
-       int                                rc    = 0;
-       ENTRY;
-
-       set = ptlrpc_prep_set();
-       if (set == NULL)
-               RETURN(-ENOMEM);
-
-       lr->lr_index = lfsck_dev_idx(lfsck->li_bottom);
-       lr->lr_active = LFSCK_TYPE_LAYOUT;
-       laia->laia_com = com;
-       laia->laia_lr = lr;
-       laia->laia_shared = 0;
-       switch (lr->lr_event) {
-       case LE_START:
-               /* Notify OSTs firstly, then handle other MDTs if needed. */
-               ltds = &lfsck->li_ost_descs;
-               laia->laia_ltds = ltds;
-               down_read(&ltds->ltd_rw_sem);
-               cfs_foreach_bit(ltds->ltd_tgts_bitmap, idx) {
-                       ltd = lfsck_tgt_get(ltds, idx);
-                       LASSERT(ltd != NULL);
-
-                       laia->laia_ltd = ltd;
-                       ltd->ltd_layout_done = 0;
-                       rc = lfsck_async_request(env, ltd->ltd_exp, lr, set,
-                                       lfsck_layout_master_async_interpret,
-                                       laia, LFSCK_NOTIFY);
-                       if (rc != 0) {
-                               CDEBUG(D_LFSCK, "%s: layout LFSCK fail to "
-                                      "notify %s %x for start: rc = %d\n",
-                                      lfsck_lfsck2name(lfsck),
-                                      (lr->lr_flags & LEF_TO_OST) ? "OST" :
-                                      "MDT", idx, rc);
-                               lfsck_tgt_put(ltd);
-                               lo->ll_flags |= LF_INCOMPLETE;
-                       }
-               }
-               up_read(&ltds->ltd_rw_sem);
-
-               /* Sync up */
-               rc = ptlrpc_set_wait(set);
-               if (rc < 0) {
-                       ptlrpc_set_destroy(set);
-                       RETURN(rc);
-               }
-
-               if (!(bk->lb_param & LPF_ALL_TGT))
-                       break;
-
-               /* link other MDT targets locallly. */
-               ltds = &lfsck->li_mdt_descs;
-               spin_lock(&ltds->ltd_lock);
-               cfs_foreach_bit(ltds->ltd_tgts_bitmap, idx) {
-                       ltd = LTD_TGT(ltds, idx);
-                       LASSERT(ltd != NULL);
-
-                       if (!list_empty(&ltd->ltd_layout_list))
-                               continue;
-
-                       list_add_tail(&ltd->ltd_layout_list,
-                                     &llmd->llmd_mdt_list);
-                       list_add_tail(&ltd->ltd_layout_phase_list,
-                                     &llmd->llmd_mdt_phase1_list);
-               }
-               spin_unlock(&ltds->ltd_lock);
-               break;
-       case LE_STOP:
-       case LE_PHASE2_DONE:
-       case LE_PEER_EXIT: {
-               /* Handle other MDTs firstly if needed, then notify the OSTs. */
-               if (bk->lb_param & LPF_ALL_TGT) {
-                       head = &llmd->llmd_mdt_list;
-                       ltds = &lfsck->li_mdt_descs;
-                       if (lr->lr_event == LE_STOP) {
-                               /* unlink other MDT targets locallly. */
-                               spin_lock(&ltds->ltd_lock);
-                               list_for_each_entry_safe(ltd, next, head,
-                                                        ltd_layout_list) {
-                                       list_del_init(&ltd->ltd_layout_phase_list);
-                                       list_del_init(&ltd->ltd_layout_list);
-                               }
-                               spin_unlock(&ltds->ltd_lock);
-
-                               lr->lr_flags |= LEF_TO_OST;
-                               head = &llmd->llmd_ost_list;
-                               ltds = &lfsck->li_ost_descs;
-                       } else {
-                               lr->lr_flags &= ~LEF_TO_OST;
-                       }
-               } else {
-                       lr->lr_flags |= LEF_TO_OST;
-                       head = &llmd->llmd_ost_list;
-                       ltds = &lfsck->li_ost_descs;
-               }
-
-again:
-               laia->laia_ltds = ltds;
-               spin_lock(&ltds->ltd_lock);
-               while (!list_empty(head)) {
-                       ltd = list_entry(head->next, struct lfsck_tgt_desc,
-                                        ltd_layout_list);
-                       if (!list_empty(&ltd->ltd_layout_phase_list))
-                               list_del_init(&ltd->ltd_layout_phase_list);
-                       list_del_init(&ltd->ltd_layout_list);
-                       atomic_inc(&ltd->ltd_ref);
-                       laia->laia_ltd = ltd;
-                       spin_unlock(&ltds->ltd_lock);
-                       rc = lfsck_async_request(env, ltd->ltd_exp, lr, set,
-                                       lfsck_layout_master_async_interpret,
-                                       laia, LFSCK_NOTIFY);
-                       if (rc != 0) {
-                               CDEBUG(D_LFSCK, "%s: layout LFSCK fail to "
-                                      "notify %s %x for stop/phase2_done/"
-                                      "peer_exit: rc = %d\n",
-                                      lfsck_lfsck2name(lfsck),
-                                      (lr->lr_flags & LEF_TO_OST) ? "OST" :
-                                      "MDT", ltd->ltd_index, rc);
-                               lfsck_tgt_put(ltd);
-                       }
-                       spin_lock(&ltds->ltd_lock);
-               }
-               spin_unlock(&ltds->ltd_lock);
-
-               rc = ptlrpc_set_wait(set);
-               if (rc < 0) {
-                       ptlrpc_set_destroy(set);
-                       RETURN(rc);
-               }
-
-               if (!(lr->lr_flags & LEF_TO_OST)) {
-                       lr->lr_flags |= LEF_TO_OST;
-                       head = &llmd->llmd_ost_list;
-                       ltds = &lfsck->li_ost_descs;
-                       goto again;
-               }
-               break;
-       }
-       case LE_PHASE1_DONE:
-               llmd->llmd_touch_gen++;
-               ltds = &lfsck->li_mdt_descs;
-               laia->laia_ltds = ltds;
-               spin_lock(&ltds->ltd_lock);
-               while (!list_empty(&llmd->llmd_mdt_phase1_list)) {
-                       ltd = list_entry(llmd->llmd_mdt_phase1_list.next,
-                                        struct lfsck_tgt_desc,
-                                        ltd_layout_phase_list);
-                       if (ltd->ltd_layout_gen == llmd->llmd_touch_gen)
-                               break;
-
-                       ltd->ltd_layout_gen = llmd->llmd_touch_gen;
-                       list_move_tail(&ltd->ltd_layout_phase_list,
-                                      &llmd->llmd_mdt_phase1_list);
-                       atomic_inc(&ltd->ltd_ref);
-                       laia->laia_ltd = ltd;
-                       spin_unlock(&ltds->ltd_lock);
-                       rc = lfsck_async_request(env, ltd->ltd_exp, lr, set,
-                                       lfsck_layout_master_async_interpret,
-                                       laia, LFSCK_NOTIFY);
-                       if (rc != 0) {
-                               CDEBUG(D_LFSCK, "%s: layout LFSCK fail to "
-                                      "notify MDT %x for phase1_done: "
-                                      "rc = %d\n", lfsck_lfsck2name(lfsck),
-                                      ltd->ltd_index, rc);
-                               lfsck_tgt_put(ltd);
-                       }
-                       spin_lock(&ltds->ltd_lock);
-               }
-               spin_unlock(&ltds->ltd_lock);
-               break;
-       default:
-               CDEBUG(D_LFSCK, "%s: layout LFSCK unexpected event: rc = %d\n",
-                      lfsck_lfsck2name(lfsck), lr->lr_event);
-               rc = -EINVAL;
-               break;
-       }
-
-       rc = ptlrpc_set_wait(set);
-       ptlrpc_set_destroy(set);
-
-       RETURN(rc);
-}
-
 static int lfsck_layout_double_scan_result(const struct lu_env *env,
                                           struct lfsck_component *com,
                                           int rc)
 {
        struct lfsck_instance   *lfsck = com->lc_lfsck;
        struct lfsck_layout     *lo    = com->lc_file_ram;
-       struct lfsck_bookmark   *bk    = &lfsck->li_bookmark_ram;
 
        down_write(&com->lc_sem);
        lo->ll_run_time_phase2 += cfs_duration_sec(cfs_time_current() +
@@ -1603,11 +1404,21 @@ static int lfsck_layout_double_scan_result(const struct lu_env *env,
 
        if (rc > 0) {
                com->lc_journal = 0;
-               if (lo->ll_flags & LF_INCOMPLETE)
+               if (lo->ll_flags & LF_INCOMPLETE) {
                        lo->ll_status = LS_PARTIAL;
-               else
-                       lo->ll_status = LS_COMPLETED;
-               if (!(bk->lb_param & LPF_DRYRUN))
+               } else {
+                       if (lfsck->li_master) {
+                               struct lfsck_assistant_data *lad = com->lc_data;
+
+                               if (lad->lad_incomplete)
+                                       lo->ll_status = LS_PARTIAL;
+                               else
+                                       lo->ll_status = LS_COMPLETED;
+                       } else {
+                               lo->ll_status = LS_COMPLETED;
+                       }
+               }
+               if (!(lfsck->li_bookmark_ram.lb_param & LPF_DRYRUN))
                        lo->ll_flags &= ~(LF_SCANNED_ONCE | LF_INCONSISTENT);
                lo->ll_time_last_complete = lo->ll_time_last_checkpoint;
                lo->ll_success_count++;
@@ -1625,45 +1436,6 @@ static int lfsck_layout_double_scan_result(const struct lu_env *env,
        return rc;
 }
 
-static int lfsck_layout_lock(const struct lu_env *env,
-                            struct lfsck_component *com,
-                            struct dt_object *obj,
-                            struct lustre_handle *lh, __u64 bits)
-{
-       struct lfsck_thread_info        *info   = lfsck_env_info(env);
-       ldlm_policy_data_t              *policy = &info->lti_policy;
-       struct ldlm_res_id              *resid  = &info->lti_resid;
-       struct lfsck_instance           *lfsck  = com->lc_lfsck;
-       __u64                            flags  = LDLM_FL_ATOMIC_CB;
-       int                              rc;
-
-       LASSERT(lfsck->li_namespace != NULL);
-
-       memset(policy, 0, sizeof(*policy));
-       policy->l_inodebits.bits = bits;
-       fid_build_reg_res_name(lfsck_dto2fid(obj), resid);
-       rc = ldlm_cli_enqueue_local(lfsck->li_namespace, resid, LDLM_IBITS,
-                                   policy, LCK_EX, &flags, ldlm_blocking_ast,
-                                   ldlm_completion_ast, NULL, NULL, 0,
-                                   LVB_T_NONE, NULL, lh);
-       if (rc == ELDLM_OK) {
-               rc = 0;
-       } else {
-               memset(lh, 0, sizeof(*lh));
-               rc = -EIO;
-       }
-
-       return rc;
-}
-
-static void lfsck_layout_unlock(struct lustre_handle *lh)
-{
-       if (lustre_handle_is_used(lh)) {
-               ldlm_lock_decref(lh, LCK_EX);
-               memset(lh, 0, sizeof(*lh));
-       }
-}
-
 static int lfsck_layout_trans_stop(const struct lu_env *env,
                                   struct dt_device *dev,
                                   struct thandle *handle, int result)
@@ -1950,7 +1722,7 @@ out:
  *
  *  type "R":          The orphan OST-object knows its parent MDT-object FID,
  *                     but does not know the position (the file name) in the
- *                     namespace.
+ *                     layout.
  *
  * The orphan name will be like:
  * ${FID}-${infix}-${type}-${conflict_version}
@@ -2068,8 +1840,8 @@ static int lfsck_layout_recreate_parent(const struct lu_env *env,
         *      because creating MDT-object for orphan OST-object is rare, we
         *      do not much care about the performance. It can be improved in
         *      the future when needed. */
-       rc = lfsck_layout_lock(env, com, lfsck->li_lpf_obj, &lh,
-                              MDS_INODELOCK_UPDATE);
+       rc = lfsck_ibits_lock(env, lfsck, lfsck->li_lpf_obj, &lh,
+                             MDS_INODELOCK_UPDATE, LCK_EX);
        if (rc != 0)
                GOTO(put, rc);
 
@@ -2157,7 +1929,7 @@ stop:
        dt_trans_stop(env, next, th);
 
 unlock:
-       lfsck_layout_unlock(&lh);
+       lfsck_ibits_unlock(&lh, LCK_EX);
 
 put:
        if (cobj != NULL && !IS_ERR(cobj))
@@ -2376,8 +2148,9 @@ static int lfsck_layout_conflict_create(const struct lu_env *env,
                GOTO(out, rc);
 
        /* Hold layout lock on the parent to prevent others to access. */
-       rc = lfsck_layout_lock(env, com, parent, &lh,
-                              MDS_INODELOCK_LAYOUT | MDS_INODELOCK_XATTR);
+       rc = lfsck_ibits_lock(env, com->lc_lfsck, parent, &lh,
+                             MDS_INODELOCK_LAYOUT | MDS_INODELOCK_XATTR,
+                             LCK_EX);
        if (rc != 0)
                GOTO(out, rc);
 
@@ -2389,7 +2162,7 @@ static int lfsck_layout_conflict_create(const struct lu_env *env,
         * a new MDT-object for the orphan OST-object. */
        if (rc == -ETXTBSY) {
                /* No need the layout lock on the original parent. */
-               lfsck_layout_unlock(&lh);
+               lfsck_ibits_unlock(&lh, LCK_EX);
 
                fid_zero(&rec->lor_fid);
                snprintf(infix, LFSCK_TMPBUF_LEN, "-"DFID"-%x",
@@ -2428,7 +2201,7 @@ stop:
        dt_trans_stop(env, dev, th);
 
 unlock:
-       lfsck_layout_unlock(&lh);
+       lfsck_ibits_unlock(&lh, LCK_EX);
 
 out:
        CDEBUG(D_LFSCK, "%s: layout LFSCK assistant replaced the conflict "
@@ -2475,8 +2248,9 @@ static int lfsck_layout_recreate_lovea(const struct lu_env *env,
        bool                      locked        = false;
        ENTRY;
 
-       rc = lfsck_layout_lock(env, com, parent, &lh,
-                              MDS_INODELOCK_LAYOUT | MDS_INODELOCK_XATTR);
+       rc = lfsck_ibits_lock(env, lfsck, parent, &lh,
+                             MDS_INODELOCK_LAYOUT | MDS_INODELOCK_XATTR,
+                             LCK_EX);
        if (rc != 0) {
                CDEBUG(D_LFSCK, "%s: layout LFSCK assistant failed to recreate "
                       "LOV EA for "DFID": parent "DFID", OST-index %u, "
@@ -2669,7 +2443,7 @@ again:
                                dt_write_unlock(env, parent);
                                if (handle != NULL)
                                        dt_trans_stop(env, dt, handle);
-                               lfsck_layout_unlock(&lh);
+                               lfsck_ibits_unlock(&lh, LCK_EX);
                                rc = lfsck_layout_update_pfid(env, com, parent,
                                                        cfid, ltd->ltd_tgt, i);
 
@@ -2694,7 +2468,7 @@ again:
        dt_write_unlock(env, parent);
        if (handle != NULL)
                dt_trans_stop(env, dt, handle);
-       lfsck_layout_unlock(&lh);
+       lfsck_ibits_unlock(&lh, LCK_EX);
        if (le32_to_cpu(lmm->lmm_magic) == LOV_MAGIC_V1)
                objs = &lmm->lmm_objects[ea_off];
        else
@@ -2713,7 +2487,7 @@ stop:
                dt_trans_stop(env, dt, handle);
 
 unlock_layout:
-       lfsck_layout_unlock(&lh);
+       lfsck_ibits_unlock(&lh, LCK_EX);
 
        return rc;
 }
@@ -2792,7 +2566,7 @@ static int lfsck_layout_scan_orphan(const struct lu_env *env,
                                    struct lfsck_component *com,
                                    struct lfsck_tgt_desc *ltd)
 {
-       struct lfsck_layout             *lo     = com->lc_file_ram;
+       struct lfsck_assistant_data     *lad    = com->lc_data;
        struct lfsck_instance           *lfsck  = com->lc_lfsck;
        struct lfsck_bookmark           *bk     = &lfsck->li_bookmark_ram;
        struct lfsck_thread_info        *info   = lfsck_env_info(env);
@@ -2808,6 +2582,15 @@ static int lfsck_layout_scan_orphan(const struct lu_env *env,
               "scanning for OST%04x\n",
               lfsck_lfsck2name(lfsck), ltd->ltd_index);
 
+       if (lad->lad_incomplete &&
+           cfs_bitmap_check(lad->lad_bitmap, ltd->ltd_index)) {
+               CDEBUG(D_LFSCK, "%s: layout LFSCK assistant skip the orphan "
+                      "scanning for OST%04x\n",
+                      lfsck_lfsck2name(lfsck), ltd->ltd_index);
+
+               RETURN(0);
+       }
+
        ostid_set_seq(oi, FID_SEQ_IDIF);
        ostid_set_id(oi, 0);
        rc = ostid_to_fid(fid, oi, ltd->ltd_index);
@@ -2831,7 +2614,7 @@ static int lfsck_layout_scan_orphan(const struct lu_env *env,
        if (rc == -ESRCH) {
                /* -ESRCH means that the orphan OST-objects rbtree has been
                 * cleanup because of the OSS server restart or other errors. */
-               lo->ll_flags |= LF_INCOMPLETE;
+               lfsck_lad_set_bitmap(env, com, ltd->ltd_index);
                GOTO(fini, rc);
        }
 
@@ -2937,8 +2720,9 @@ static int lfsck_layout_repair_dangling(const struct lu_env *env,
        cla->la_valid = LA_TYPE | LA_MODE | LA_UID | LA_GID |
                        LA_ATIME | LA_MTIME | LA_CTIME;
 
-       rc = lfsck_layout_lock(env, com, parent, &lh,
-                              MDS_INODELOCK_LAYOUT | MDS_INODELOCK_XATTR);
+       rc = lfsck_ibits_lock(env, com->lc_lfsck, parent, &lh,
+                             MDS_INODELOCK_LAYOUT | MDS_INODELOCK_XATTR,
+                             LCK_EX);
        if (rc != 0)
                GOTO(log, rc);
 
@@ -2970,7 +2754,7 @@ static int lfsck_layout_repair_dangling(const struct lu_env *env,
                GOTO(stop, rc);
 
        dt_read_lock(env, parent, 0);
-       if (unlikely(lu_object_is_dying(parent->do_lu.lo_header)))
+       if (unlikely(lfsck_is_dead_obj(parent)))
                GOTO(unlock2, rc = 1);
 
        rc = dt_create(env, child, cla, hint, NULL, handle);
@@ -2989,7 +2773,7 @@ stop:
        rc = lfsck_layout_trans_stop(env, dev, handle, rc);
 
 unlock1:
-       lfsck_layout_unlock(&lh);
+       lfsck_ibits_unlock(&lh, LCK_EX);
 
 log:
        CDEBUG(D_LFSCK, "%s: layout LFSCK assistant found dangling "
@@ -3025,8 +2809,9 @@ static int lfsck_layout_repair_unmatched_pair(const struct lu_env *env,
        int                              rc;
        ENTRY;
 
-       rc = lfsck_layout_lock(env, com, parent, &lh,
-                              MDS_INODELOCK_LAYOUT | MDS_INODELOCK_XATTR);
+       rc = lfsck_ibits_lock(env, com->lc_lfsck, parent, &lh,
+                             MDS_INODELOCK_LAYOUT | MDS_INODELOCK_XATTR,
+                             LCK_EX);
        if (rc != 0)
                GOTO(log, rc);
 
@@ -3058,7 +2843,7 @@ static int lfsck_layout_repair_unmatched_pair(const struct lu_env *env,
                GOTO(stop, rc);
 
        dt_write_lock(env, parent, 0);
-       if (unlikely(lu_object_is_dying(parent->do_lu.lo_header)))
+       if (unlikely(lfsck_is_dead_obj(parent)))
                GOTO(unlock2, rc = 1);
 
        rc = dt_xattr_set(env, child, buf, XATTR_NAME_FID, 0, handle,
@@ -3083,7 +2868,7 @@ stop:
        rc = lfsck_layout_trans_stop(env, dev, handle, rc);
 
 unlock1:
-       lfsck_layout_unlock(&lh);
+       lfsck_ibits_unlock(&lh, LCK_EX);
 
 log:
        CDEBUG(D_LFSCK, "%s: layout LFSCK assistant repaired unmatched "
@@ -3124,8 +2909,9 @@ static int lfsck_layout_repair_multiple_references(const struct lu_env *env,
        int                              rc;
        ENTRY;
 
-       rc = lfsck_layout_lock(env, com, parent, &lh,
-                              MDS_INODELOCK_LAYOUT | MDS_INODELOCK_XATTR);
+       rc = lfsck_ibits_lock(env, com->lc_lfsck, parent, &lh,
+                             MDS_INODELOCK_LAYOUT | MDS_INODELOCK_XATTR,
+                             LCK_EX);
        if (rc != 0)
                GOTO(log, rc);
 
@@ -3161,7 +2947,7 @@ static int lfsck_layout_repair_multiple_references(const struct lu_env *env,
                GOTO(stop, rc);
 
        dt_write_lock(env, parent, 0);
-       if (unlikely(lu_object_is_dying(parent->do_lu.lo_header)))
+       if (unlikely(lfsck_is_dead_obj(parent)))
                GOTO(unlock2, rc = 0);
 
        rc = dt_xattr_get(env, parent, buf, XATTR_NAME_LOV, BYPASS_CAPA);
@@ -3212,7 +2998,7 @@ stop:
        dt_trans_stop(env, pdev, handle);
 
 unlock1:
-       lfsck_layout_unlock(&lh);
+       lfsck_ibits_unlock(&lh, LCK_EX);
 
 log:
        CDEBUG(D_LFSCK, "%s: layout LFSCK assistant repaired multiple "
@@ -3259,7 +3045,7 @@ static int lfsck_layout_repair_owner(const struct lu_env *env,
 
        /* Use the dt_object lock to serialize with destroy and attr_set. */
        dt_read_lock(env, parent, 0);
-       if (unlikely(lu_object_is_dying(parent->do_lu.lo_header)))
+       if (unlikely(lfsck_is_dead_obj(parent)))
                GOTO(unlock, rc = 1);
 
        /* Get the latest parent's owner. */
@@ -3409,10 +3195,12 @@ out:
        return rc;
 }
 
-static int lfsck_layout_assistant_handle_one(const struct lu_env *env,
+static int lfsck_layout_assistant_handler_p1(const struct lu_env *env,
                                             struct lfsck_component *com,
-                                            struct lfsck_layout_req *llr)
+                                            struct lfsck_assistant_req *lar)
 {
+       struct lfsck_layout_req              *llr    =
+                       container_of0(lar, struct lfsck_layout_req, llr_lar);
        struct lfsck_layout                  *lo     = com->lc_file_ram;
        struct lfsck_thread_info             *info   = lfsck_env_info(env);
        struct filter_fid_old                *pea    = &info->lti_old_pfid;
@@ -3429,17 +3217,16 @@ static int lfsck_layout_assistant_handle_one(const struct lu_env *env,
        int                                   rc;
        ENTRY;
 
-       rc = dt_attr_get(env, parent, pla, BYPASS_CAPA);
-       if (rc != 0) {
-               if (lu_object_is_dying(parent->do_lu.lo_header))
-                       RETURN(0);
+       if (unlikely(lfsck_is_dead_obj(parent)))
+               RETURN(0);
 
+       rc = dt_attr_get(env, parent, pla, BYPASS_CAPA);
+       if (rc != 0)
                GOTO(out, rc);
-       }
 
        rc = dt_attr_get(env, child, cla, BYPASS_CAPA);
        if (rc == -ENOENT) {
-               if (lu_object_is_dying(parent->do_lu.lo_header))
+               if (unlikely(lfsck_is_dead_obj(parent)))
                        RETURN(0);
 
                type = LLIT_DANGLING;
@@ -3520,9 +3307,9 @@ repair:
 out:
        down_write(&com->lc_sem);
        if (rc < 0) {
-               struct lfsck_layout_master_data *llmd = com->lc_data;
+               struct lfsck_assistant_data *lad = com->lc_data;
 
-               if (unlikely(llmd->llmd_exit)) {
+               if (unlikely(lad->lad_exit)) {
                        rc = 0;
                } else if (rc == -ENOTCONN || rc == -ESHUTDOWN ||
                           rc == -ETIMEDOUT || rc == -EHOSTDOWN ||
@@ -3532,7 +3319,7 @@ out:
                        CDEBUG(D_LFSCK, "%s: layout LFSCK assistant fail to "
                               "talk with OST %x: rc = %d\n",
                               lfsck_lfsck2name(lfsck), llr->llr_ost_idx, rc);
-                       lo->ll_flags |= LF_INCOMPLETE;
+                       lfsck_lad_set_bitmap(env, com, llr->llr_ost_idx);
                        lo->ll_objs_skipped++;
                        rc = 0;
                } else {
@@ -3554,302 +3341,43 @@ out:
        return rc;
 }
 
-static int lfsck_layout_assistant(void *args)
+static int lfsck_layout_assistant_handler_p2(const struct lu_env *env,
+                                            struct lfsck_component *com)
 {
-       struct lfsck_thread_args        *lta     = args;
-       struct lu_env                   *env     = &lta->lta_env;
-       struct lfsck_component          *com     = lta->lta_com;
-       struct lfsck_instance           *lfsck   = lta->lta_lfsck;
-       struct lfsck_bookmark           *bk      = &lfsck->li_bookmark_ram;
-       struct lfsck_position           *pos     = &com->lc_pos_start;
-       struct lfsck_thread_info        *info    = lfsck_env_info(env);
-       struct lfsck_request            *lr      = &info->lti_lr;
-       struct lfsck_layout_master_data *llmd    = com->lc_data;
-       struct ptlrpc_thread            *mthread = &lfsck->li_thread;
-       struct ptlrpc_thread            *athread = &llmd->llmd_thread;
-       struct lfsck_layout_req         *llr;
-       struct l_wait_info               lwi     = { 0 };
-       int                              rc      = 0;
-       int                              rc1     = 0;
+       struct lfsck_assistant_data     *lad    = com->lc_data;
+       struct lfsck_instance           *lfsck  = com->lc_lfsck;
+       struct lfsck_bookmark           *bk     = &lfsck->li_bookmark_ram;
+       struct lfsck_tgt_descs          *ltds   = &lfsck->li_ost_descs;
+       struct lfsck_tgt_desc           *ltd;
+       int                              rc     = 0;
        ENTRY;
 
-       memset(lr, 0, sizeof(*lr));
-       lr->lr_event = LE_START;
-       lr->lr_valid = LSV_SPEED_LIMIT | LSV_ERROR_HANDLE | LSV_DRYRUN |
-                      LSV_ASYNC_WINDOWS | LSV_CREATE_OSTOBJ;
-       lr->lr_speed = bk->lb_speed_limit;
-       lr->lr_version = bk->lb_version;
-       lr->lr_param = bk->lb_param;
-       lr->lr_async_windows = bk->lb_async_windows;
-       lr->lr_flags = LEF_TO_OST;
-       if (pos->lp_oit_cookie <= 1)
-               lr->lr_param |= LPF_RESET;
-
-       rc = lfsck_layout_master_notify_others(env, com, lr);
-       if (rc != 0) {
-               CDEBUG(D_LFSCK, "%s: layout LFSCK assistant failed to notify "
-                      "others for LFSCK start: rc = %d\n",
-                      lfsck_lfsck2name(lfsck), rc);
-               GOTO(fini, rc);
-       }
-
-       spin_lock(&llmd->llmd_lock);
-       thread_set_flags(athread, SVC_RUNNING);
-       spin_unlock(&llmd->llmd_lock);
-       wake_up_all(&mthread->t_ctl_waitq);
-
-       while (1) {
-               while (!list_empty(&llmd->llmd_req_list)) {
-                       bool wakeup = false;
-
-                       if (unlikely(llmd->llmd_exit ||
-                                    !thread_is_running(mthread)))
-                               GOTO(cleanup1, rc = llmd->llmd_post_result);
-
-                       llr = list_entry(llmd->llmd_req_list.next,
-                                        struct lfsck_layout_req,
-                                        llr_list);
-                       /* Only the lfsck_layout_assistant thread itself can
-                        * remove the "llr" from the head of the list, LFSCK
-                        * engine thread only inserts other new "lld" at the
-                        * end of the list. So it is safe to handle current
-                        * "llr" without the spin_lock. */
-                       rc = lfsck_layout_assistant_handle_one(env, com, llr);
-                       spin_lock(&llmd->llmd_lock);
-                       list_del_init(&llr->llr_list);
-                       llmd->llmd_prefetched--;
-                       /* Wake up the main engine thread only when the list
-                        * is empty or half of the prefetched items have been
-                        * handled to avoid too frequent thread schedule. */
-                       if (llmd->llmd_prefetched == 0 ||
-                           (bk->lb_async_windows != 0 &&
-                            bk->lb_async_windows / 2 ==
-                            llmd->llmd_prefetched))
-                               wakeup = true;
-                       spin_unlock(&llmd->llmd_lock);
-                       if (wakeup)
-                               wake_up_all(&mthread->t_ctl_waitq);
-
-                       lfsck_layout_req_fini(env, llr);
-                       if (rc < 0 && bk->lb_param & LPF_FAILOUT)
-                               GOTO(cleanup1, rc);
-               }
-
-               l_wait_event(athread->t_ctl_waitq,
-                            !lfsck_layout_req_empty(llmd) ||
-                            llmd->llmd_exit ||
-                            llmd->llmd_to_post ||
-                            llmd->llmd_to_double_scan,
-                            &lwi);
-
-               if (unlikely(llmd->llmd_exit))
-                       GOTO(cleanup1, rc = llmd->llmd_post_result);
-
-               if (!list_empty(&llmd->llmd_req_list))
-                       continue;
-
-               if (llmd->llmd_to_post) {
-                       llmd->llmd_to_post = 0;
-                       LASSERT(llmd->llmd_post_result > 0);
-
-                       memset(lr, 0, sizeof(*lr));
-                       lr->lr_event = LE_PHASE1_DONE;
-                       lr->lr_status = llmd->llmd_post_result;
-                       rc = lfsck_layout_master_notify_others(env, com, lr);
-                       if (rc != 0)
-                               CDEBUG(D_LFSCK, "%s: layout LFSCK assistant "
-                                      "failed to notify others for LFSCK "
-                                      "post: rc = %d\n",
-                                      lfsck_lfsck2name(lfsck), rc);
-
-                       /* Wakeup the master engine to go ahead. */
-                       wake_up_all(&mthread->t_ctl_waitq);
-               }
-
-               if (llmd->llmd_to_double_scan) {
-                       llmd->llmd_to_double_scan = 0;
-                       atomic_inc(&lfsck->li_double_scan_count);
-                       llmd->llmd_in_double_scan = 1;
-                       wake_up_all(&mthread->t_ctl_waitq);
-
-                       CDEBUG(D_LFSCK, "%s: layout LFSCK assistant phase2 "
-                              "scan start\n", lfsck_lfsck2name(lfsck));
-
-                       com->lc_new_checked = 0;
-                       com->lc_new_scanned = 0;
-                       com->lc_time_last_checkpoint = cfs_time_current();
-                       com->lc_time_next_checkpoint =
-                               com->lc_time_last_checkpoint +
-                               cfs_time_seconds(LFSCK_CHECKPOINT_INTERVAL);
-
-                       /* flush all async updating before handling orphan. */
-                       dt_sync(env, lfsck->li_next);
-
-                       while (llmd->llmd_in_double_scan) {
-                               struct lfsck_tgt_descs  *ltds =
-                                                       &lfsck->li_ost_descs;
-                               struct lfsck_tgt_desc   *ltd;
-
-                               rc = lfsck_layout_master_query_others(env, com);
-                               if (lfsck_layout_master_to_orphan(llmd))
-                                       goto orphan;
-
-                               if (rc < 0)
-                                       GOTO(cleanup2, rc);
-
-                               /* Pull LFSCK status on related targets once
-                                * per 30 seconds if we are not notified. */
-                               lwi = LWI_TIMEOUT_INTERVAL(cfs_time_seconds(30),
-                                                          cfs_time_seconds(1),
-                                                          NULL, NULL);
-                               rc = l_wait_event(athread->t_ctl_waitq,
-                                       lfsck_layout_master_to_orphan(llmd) ||
-                                       llmd->llmd_exit ||
-                                       !thread_is_running(mthread),
-                                       &lwi);
-
-                               if (unlikely(llmd->llmd_exit ||
-                                            !thread_is_running(mthread)))
-                                       GOTO(cleanup2, rc = 0);
-
-                               if (rc == -ETIMEDOUT)
-                                       continue;
-
-                               if (rc < 0)
-                                       GOTO(cleanup2, rc);
-
-orphan:
-                               spin_lock(&ltds->ltd_lock);
-                               while (!list_empty(
-                                               &llmd->llmd_ost_phase2_list)) {
-                                       ltd = list_entry(
-                                             llmd->llmd_ost_phase2_list.next,
-                                             struct lfsck_tgt_desc,
-                                             ltd_layout_phase_list);
-                                       list_del_init(
-                                               &ltd->ltd_layout_phase_list);
-                                       spin_unlock(&ltds->ltd_lock);
-
-                                       if (bk->lb_param & LPF_ALL_TGT) {
-                                               rc = lfsck_layout_scan_orphan(
-                                                               env, com, ltd);
-                                               if (rc != 0 &&
-                                                   bk->lb_param & LPF_FAILOUT)
-                                                       GOTO(cleanup2, rc);
-                                       }
-
-                                       if (unlikely(llmd->llmd_exit ||
-                                               !thread_is_running(mthread)))
-                                               GOTO(cleanup2, rc = 0);
-
-                                       spin_lock(&ltds->ltd_lock);
-                               }
-
-                               if (list_empty(&llmd->llmd_ost_phase1_list)) {
-                                       spin_unlock(&ltds->ltd_lock);
-                                       GOTO(cleanup2, rc = 1);
-                               }
-                               spin_unlock(&ltds->ltd_lock);
-                       }
-               }
-       }
-
-cleanup1:
-       /* Cleanup the unfinished requests. */
-       spin_lock(&llmd->llmd_lock);
-       if (rc < 0)
-               llmd->llmd_assistant_status = rc;
-
-       while (!list_empty(&llmd->llmd_req_list)) {
-               llr = list_entry(llmd->llmd_req_list.next,
-                                struct lfsck_layout_req,
-                                llr_list);
-               list_del_init(&llr->llr_list);
-               llmd->llmd_prefetched--;
-               spin_unlock(&llmd->llmd_lock);
-               lfsck_layout_req_fini(env, llr);
-               spin_lock(&llmd->llmd_lock);
-       }
-       spin_unlock(&llmd->llmd_lock);
-
-       LASSERTF(llmd->llmd_prefetched == 0, "unmatched prefeteched objs %d\n",
-                llmd->llmd_prefetched);
+       spin_lock(&ltds->ltd_lock);
+       while (!list_empty(&lad->lad_ost_phase2_list)) {
+               ltd = list_entry(lad->lad_ost_phase2_list.next,
+                                struct lfsck_tgt_desc,
+                                ltd_layout_phase_list);
+               list_del_init(&ltd->ltd_layout_phase_list);
+               if (bk->lb_param & LPF_ALL_TGT) {
+                       spin_unlock(&ltds->ltd_lock);
+                       rc = lfsck_layout_scan_orphan(env, com, ltd);
+                       if (rc != 0 && bk->lb_param & LPF_FAILOUT)
+                               RETURN(rc);
 
-cleanup2:
-       memset(lr, 0, sizeof(*lr));
-       if (rc > 0) {
-               lr->lr_event = LE_PHASE2_DONE;
-               lr->lr_status = rc;
-       } else if (rc == 0) {
-               if (lfsck->li_flags & LPF_ALL_TGT) {
-                       lr->lr_event = LE_STOP;
-                       lr->lr_status = LS_STOPPED;
-               } else {
-                       lr->lr_event = LE_PEER_EXIT;
-                       switch (lfsck->li_status) {
-                       case LS_PAUSED:
-                       case LS_CO_PAUSED:
-                               lr->lr_status = LS_CO_PAUSED;
-                               break;
-                       case LS_STOPPED:
-                       case LS_CO_STOPPED:
-                               lr->lr_status = LS_CO_STOPPED;
-                               break;
-                       default:
-                               CDEBUG(D_LFSCK, "%s: unknown status: rc = %d\n",
-                                      lfsck_lfsck2name(lfsck),
-                                      lfsck->li_status);
-                               lr->lr_status = LS_CO_FAILED;
-                               break;
-                       }
-               }
-       } else {
-               if (lfsck->li_flags & LPF_ALL_TGT) {
-                       lr->lr_event = LE_STOP;
-                       lr->lr_status = LS_FAILED;
-               } else {
-                       lr->lr_event = LE_PEER_EXIT;
-                       lr->lr_status = LS_CO_FAILED;
+                       if (unlikely(lad->lad_exit ||
+                                    !thread_is_running(&lfsck->li_thread)))
+                               RETURN(0);
+                       spin_lock(&ltds->ltd_lock);
                }
        }
 
-       rc1 = lfsck_layout_master_notify_others(env, com, lr);
-       if (rc1 != 0) {
-               CDEBUG(D_LFSCK, "%s: layout LFSCK assistant failed to "
-                      "notify others for LFSCK quit: rc = %d\n",
-                      lfsck_lfsck2name(lfsck), rc1);
-               rc = rc1;
-       }
-
-       /* flush all async updating before exit. */
-       dt_sync(env, lfsck->li_next);
-
-       /* Under force exit case, some requests may be just freed without
-        * verification, those objects should be re-handled when next run.
-        * So not update the on-disk tracing file under such case. */
-       if (llmd->llmd_in_double_scan) {
-               struct lfsck_layout *lo = com->lc_file_ram;
-
-               if (!llmd->llmd_exit)
-                       rc1 = lfsck_layout_double_scan_result(env, com, rc);
-
-               CDEBUG(D_LFSCK, "%s: layout LFSCK assistant phase2 scan "
-                      "finished, status %d: rc = %d\n",
-                      lfsck_lfsck2name(lfsck), lo->ll_status, rc1);
-       }
-
-fini:
-       if (llmd->llmd_in_double_scan)
-               atomic_dec(&lfsck->li_double_scan_count);
-
-       spin_lock(&llmd->llmd_lock);
-       llmd->llmd_assistant_status = (rc1 != 0 ? rc1 : rc);
-       thread_set_flags(athread, SVC_STOPPED);
-       wake_up_all(&mthread->t_ctl_waitq);
-       spin_unlock(&llmd->llmd_lock);
-       lfsck_thread_args_fini(lta);
+       if (list_empty(&lad->lad_ost_phase1_list))
+               rc = 1;
+       else
+               rc = 0;
+       spin_unlock(&ltds->ltd_lock);
 
-       return rc;
+       RETURN(rc);
 }
 
 static int
@@ -4036,6 +3564,7 @@ lfsck_layout_slave_notify_master(const struct lu_env *env,
                                 struct lfsck_component *com,
                                 enum lfsck_events event, int result)
 {
+       struct lfsck_layout              *lo    = com->lc_file_ram;
        struct lfsck_instance            *lfsck = com->lc_lfsck;
        struct lfsck_layout_slave_data   *llsd  = com->lc_data;
        struct lfsck_request             *lr    = &lfsck_env_info(env)->lti_lr;
@@ -4058,6 +3587,7 @@ lfsck_layout_slave_notify_master(const struct lu_env *env,
        lr->lr_status = result;
        lr->lr_index = lfsck_dev_idx(lfsck->li_bottom);
        lr->lr_active = LFSCK_TYPE_LAYOUT;
+       lr->lr_flags2 = lo->ll_flags;
        llsd->llsd_touch_gen++;
        spin_lock(&llsd->llsd_lock);
        while (!list_empty(&llsd->llsd_master_list)) {
@@ -4337,6 +3867,13 @@ static int lfsck_layout_reset(const struct lu_env *env,
        lo->ll_magic = LFSCK_LAYOUT_MAGIC;
        lo->ll_status = LS_INIT;
 
+       if (com->lc_lfsck->li_master) {
+               struct lfsck_assistant_data *lad = com->lc_data;
+
+               lad->lad_incomplete = 0;
+               CFS_RESET_BITMAP(lad->lad_bitmap);
+       }
+
        rc = lfsck_layout_store(env, com);
        up_write(&com->lc_sem);
 
@@ -4361,32 +3898,23 @@ static void lfsck_layout_fail(const struct lu_env *env,
 static int lfsck_layout_master_checkpoint(const struct lu_env *env,
                                          struct lfsck_component *com, bool init)
 {
-       struct lfsck_instance           *lfsck   = com->lc_lfsck;
-       struct lfsck_layout             *lo      = com->lc_file_ram;
-       struct lfsck_layout_master_data *llmd    = com->lc_data;
-       struct ptlrpc_thread            *mthread = &lfsck->li_thread;
-       struct ptlrpc_thread            *athread = &llmd->llmd_thread;
-       struct l_wait_info               lwi     = { 0 };
-       int                              rc;
-
-       if (com->lc_new_checked == 0 && !init)
-               return 0;
-
-       l_wait_event(mthread->t_ctl_waitq,
-                    list_empty(&llmd->llmd_req_list) ||
-                    !thread_is_running(mthread) ||
-                    thread_is_stopped(athread),
-                    &lwi);
+       struct lfsck_instance   *lfsck   = com->lc_lfsck;
+       struct lfsck_layout     *lo      = com->lc_file_ram;
+       int                      rc;
 
-       if (!thread_is_running(mthread) || thread_is_stopped(athread))
-               return 0;
+       if (!init) {
+               rc = lfsck_checkpoint_generic(env, com);
+               if (rc != 0)
+                       return rc > 0 ? 0 : rc;
+       }
 
        down_write(&com->lc_sem);
        if (init) {
-               lo->ll_pos_latest_start = lfsck->li_pos_current.lp_oit_cookie;
+               lo->ll_pos_latest_start =
+                               lfsck->li_pos_checkpoint.lp_oit_cookie;
        } else {
                lo->ll_pos_last_checkpoint =
-                                       lfsck->li_pos_current.lp_oit_cookie;
+                               lfsck->li_pos_checkpoint.lp_oit_cookie;
                lo->ll_run_time_phase1 += cfs_duration_sec(cfs_time_current() +
                                HALF_SEC - lfsck->li_time_last_checkpoint);
                lo->ll_time_last_checkpoint = cfs_time_current_sec();
@@ -4416,10 +3944,11 @@ static int lfsck_layout_slave_checkpoint(const struct lu_env *env,
 
        down_write(&com->lc_sem);
        if (init) {
-               lo->ll_pos_latest_start = lfsck->li_pos_current.lp_oit_cookie;
+               lo->ll_pos_latest_start =
+                               lfsck->li_pos_checkpoint.lp_oit_cookie;
        } else {
                lo->ll_pos_last_checkpoint =
-                                       lfsck->li_pos_current.lp_oit_cookie;
+                               lfsck->li_pos_checkpoint.lp_oit_cookie;
                lo->ll_run_time_phase1 += cfs_duration_sec(cfs_time_current() +
                                HALF_SEC - lfsck->li_time_last_checkpoint);
                lo->ll_time_last_checkpoint = cfs_time_current_sec();
@@ -4550,55 +4079,34 @@ static int lfsck_layout_master_prep(const struct lu_env *env,
                                    struct lfsck_component *com,
                                    struct lfsck_start_param *lsp)
 {
-       struct lfsck_instance           *lfsck   = com->lc_lfsck;
-       struct lfsck_layout_master_data *llmd    = com->lc_data;
-       struct ptlrpc_thread            *mthread = &lfsck->li_thread;
-       struct ptlrpc_thread            *athread = &llmd->llmd_thread;
-       struct lfsck_thread_args        *lta;
-       struct task_struct              *task;
-       int                              rc;
+       int rc;
        ENTRY;
 
+       rc = lfsck_layout_load_bitmap(env, com);
+       if (rc > 0) {
+               rc = lfsck_layout_reset(env, com, false);
+               if (rc == 0)
+                       rc = lfsck_set_param(env, com->lc_lfsck,
+                                            lsp->lsp_start, true);
+       }
+
+       if (rc != 0)
+               GOTO(log, rc);
+
        rc = lfsck_layout_prep(env, com, lsp->lsp_start);
        if (rc != 0)
                RETURN(rc);
 
-       llmd->llmd_assistant_status = 0;
-       llmd->llmd_post_result = 0;
-       llmd->llmd_to_post = 0;
-       llmd->llmd_to_double_scan = 0;
-       llmd->llmd_in_double_scan = 0;
-       llmd->llmd_exit = 0;
-       thread_set_flags(athread, 0);
-
-       lta = lfsck_thread_args_init(lfsck, com, lsp);
-       if (IS_ERR(lta))
-               RETURN(PTR_ERR(lta));
-
-       task = kthread_run(lfsck_layout_assistant, lta, "lfsck_layout");
-       if (IS_ERR(task)) {
-               rc = PTR_ERR(task);
-               CERROR("%s: cannot start LFSCK layout assistant thread: "
-                      "rc = %d\n", lfsck_lfsck2name(lfsck), rc);
-               lfsck_thread_args_fini(lta);
-       } else {
-               struct l_wait_info lwi = { 0 };
+       rc = lfsck_start_assistant(env, com, lsp);
 
-               l_wait_event(mthread->t_ctl_waitq,
-                            thread_is_running(athread) ||
-                            thread_is_stopped(athread),
-                            &lwi);
-               if (unlikely(!thread_is_running(athread)))
-                       rc = llmd->llmd_assistant_status;
-               else
-                       rc = 0;
-       }
+       GOTO(log, rc);
 
+log:
        CDEBUG(D_LFSCK, "%s: layout LFSCK master prep done, start pos ["
-              LPU64"\n", lfsck_lfsck2name(lfsck),
+              LPU64"\n", lfsck_lfsck2name(com->lc_lfsck),
               com->lc_pos_start.lp_oit_cookie);
 
-       RETURN(rc);
+       return 0;
 }
 
 /* Pre-fetch the attribute for each stripe in the given layout EA. */
@@ -4611,13 +4119,13 @@ static int lfsck_layout_scan_stripes(const struct lu_env *env,
        struct lfsck_instance           *lfsck   = com->lc_lfsck;
        struct lfsck_bookmark           *bk      = &lfsck->li_bookmark_ram;
        struct lfsck_layout             *lo      = com->lc_file_ram;
-       struct lfsck_layout_master_data *llmd    = com->lc_data;
+       struct lfsck_assistant_data     *lad     = com->lc_data;
        struct lfsck_layout_object      *llo     = NULL;
        struct lov_ost_data_v1          *objs;
        struct lfsck_tgt_descs          *ltds    = &lfsck->li_ost_descs;
        struct ptlrpc_thread            *mthread = &lfsck->li_thread;
-       struct ptlrpc_thread            *athread = &llmd->llmd_thread;
-               struct l_wait_info       lwi     = { 0 };
+       struct ptlrpc_thread            *athread = &lad->lad_thread;
+       struct l_wait_info               lwi     = { 0 };
        struct lu_buf                    buf;
        int                              rc      = 0;
        int                              i;
@@ -4656,7 +4164,7 @@ static int lfsck_layout_scan_stripes(const struct lu_env *env,
 
                l_wait_event(mthread->t_ctl_waitq,
                             bk->lb_async_windows == 0 ||
-                            llmd->llmd_prefetched < bk->lb_async_windows ||
+                            lad->lad_prefetched < bk->lb_async_windows ||
                             !thread_is_running(mthread) ||
                             thread_is_stopped(athread),
                             &lwi);
@@ -4665,6 +4173,9 @@ static int lfsck_layout_scan_stripes(const struct lu_env *env,
                             thread_is_stopped(athread))
                        GOTO(out, rc = 0);
 
+               if (unlikely(lfsck_is_dead_obj(parent)))
+                       GOTO(out, rc = 0);
+
                ostid_le_to_cpu(&objs->l_ost_oi, oi);
                index = le32_to_cpu(objs->l_ost_idx);
                rc = ostid_to_fid(fid, oi, index);
@@ -4680,12 +4191,48 @@ static int lfsck_layout_scan_stripes(const struct lu_env *env,
                        CDEBUG(D_LFSCK, "%s: cannot talk with OST %x which "
                               "did not join the layout LFSCK\n",
                               lfsck_lfsck2name(lfsck), index);
-                       lo->ll_flags |= LF_INCOMPLETE;
+                       lfsck_lad_set_bitmap(env, com, index);
                        goto next;
                }
 
-               cobj = lfsck_object_find_by_dev(env, tgt->ltd_tgt, fid);
+               /* There is potential deadlock race condition between object
+                * destroy and layout LFSCK. Consider the following scenario:
+                *
+                * 1) The LFSCK thread obtained the parent object firstly, at
+                *    that time, the parent object has not been destroyed yet.
+                *
+                * 2) One RPC service thread destroyed the parent and all its
+                *    children objects. Because the LFSCK is referencing the
+                *    parent object, then the parent object will be marked as
+                *    dying in RAM. On the other hand, the parent object is
+                *    referencing all its children objects, then all children
+                *    objects will be marked as dying in RAM also.
+                *
+                * 3) The LFSCK thread tries to find some child object with
+                *    the parent object referenced. Then it will find that the
+                *    child object is dying. According to the object visibility
+                *    rules: the object with dying flag cannot be returned to
+                *    others. So the LFSCK thread has to wait until the dying
+                *    object has been purged from RAM, then it can allocate a
+                *    new object (with the same FID) in RAM. Unfortunately, the
+                *    LFSCK thread itself is referencing the parent object, and
+                *    cause the parent object cannot be purged, then cause the
+                *    child object cannot be purged also. So the LFSCK thread
+                *    will fall into deadlock.
+                *
+                * We introduce non-blocked version lu_object_find() to allow
+                * the LFSCK thread to return failure immediately (instead of
+                * wait) when it finds dying (child) object, then the LFSCK
+                * thread can check whether the parent object is dying or not.
+                * So avoid above deadlock. LU-5395 */
+               cobj = lfsck_object_find_by_dev_nowait(env, tgt->ltd_tgt, fid);
                if (IS_ERR(cobj)) {
+                       if (lfsck_is_dead_obj(parent)) {
+                               lfsck_tgt_put(tgt);
+
+                               GOTO(out, rc = 0);
+                       }
+
                        rc = PTR_ERR(cobj);
                        goto next;
                }
@@ -4700,34 +4247,35 @@ static int lfsck_layout_scan_stripes(const struct lu_env *env,
                        goto next;
 
                if (llo == NULL) {
-                       llo = lfsck_layout_object_init(env, parent, gen);
+                       llo = lfsck_layout_object_init(env, parent,
+                               lfsck->li_pos_current.lp_oit_cookie, gen);
                        if (IS_ERR(llo)) {
                                rc = PTR_ERR(llo);
                                goto next;
                        }
                }
 
-               llr = lfsck_layout_req_init(llo, cobj, index, i);
+               llr = lfsck_layout_assistant_req_init(llo, cobj, index, i);
                if (IS_ERR(llr)) {
                        rc = PTR_ERR(llr);
                        goto next;
                }
 
                cobj = NULL;
-               spin_lock(&llmd->llmd_lock);
-               if (llmd->llmd_assistant_status < 0) {
-                       spin_unlock(&llmd->llmd_lock);
-                       lfsck_layout_req_fini(env, llr);
+               spin_lock(&lad->lad_lock);
+               if (lad->lad_assistant_status < 0) {
+                       spin_unlock(&lad->lad_lock);
+                       lfsck_layout_assistant_req_fini(env, &llr->llr_lar);
                        lfsck_tgt_put(tgt);
-                       RETURN(llmd->llmd_assistant_status);
+                       RETURN(lad->lad_assistant_status);
                }
 
-               list_add_tail(&llr->llr_list, &llmd->llmd_req_list);
-               if (llmd->llmd_prefetched == 0)
+               list_add_tail(&llr->llr_lar.lar_list, &lad->lad_req_list);
+               if (lad->lad_prefetched == 0)
                        wakeup = true;
 
-               llmd->llmd_prefetched++;
-               spin_unlock(&llmd->llmd_lock);
+               lad->lad_prefetched++;
+               spin_unlock(&lad->lad_lock);
                if (wakeup)
                        wake_up_all(&athread->t_ctl_waitq);
 
@@ -4759,7 +4307,7 @@ out:
 
 /* For the given object, read its layout EA locally. For each stripe, pre-fetch
  * the OST-object's attribute and generate an structure lfsck_layout_req on the
- * list ::llmd_req_list.
+ * list ::lad_req_list.
  *
  * For each request on above list, the lfsck_layout_assistant thread compares
  * the OST side attribute with local attribute, if inconsistent, then repair it.
@@ -4772,7 +4320,7 @@ static int lfsck_layout_master_exec_oit(const struct lu_env *env,
        struct lfsck_thread_info        *info   = lfsck_env_info(env);
        struct ost_id                   *oi     = &info->lti_oi;
        struct lfsck_layout             *lo     = com->lc_file_ram;
-       struct lfsck_layout_master_data *llmd   = com->lc_data;
+       struct lfsck_assistant_data     *lad    = com->lc_data;
        struct lfsck_instance           *lfsck  = com->lc_lfsck;
        struct lfsck_bookmark           *bk     = &lfsck->li_bookmark_ram;
        struct thandle                  *handle = NULL;
@@ -4791,7 +4339,7 @@ static int lfsck_layout_master_exec_oit(const struct lu_env *env,
        if (!S_ISREG(lfsck_object_type(obj)))
                GOTO(out, rc = 0);
 
-       if (llmd->llmd_assistant_status < 0)
+       if (lad->lad_assistant_status < 0)
                GOTO(out, rc = -ESRCH);
 
        fid_to_lmm_oi(lfsck_dto2fid(obj), oi);
@@ -4834,9 +4382,9 @@ again:
        if (!lustre_handle_is_used(&lh)) {
                dt_read_unlock(env, obj);
                locked = false;
-               rc = lfsck_layout_lock(env, com, obj, &lh,
-                                      MDS_INODELOCK_LAYOUT |
-                                      MDS_INODELOCK_XATTR);
+               rc = lfsck_ibits_lock(env, lfsck, obj, &lh,
+                                     MDS_INODELOCK_LAYOUT |
+                                     MDS_INODELOCK_XATTR, LCK_EX);
                if (rc != 0)
                        GOTO(out, rc);
 
@@ -4882,7 +4430,7 @@ out:
        if (handle != NULL && !IS_ERR(handle))
                dt_trans_stop(env, dev, handle);
 
-       lfsck_layout_unlock(&lh);
+       lfsck_ibits_unlock(&lh, LCK_EX);
 
        if (bad_oi)
                CDEBUG(D_LFSCK, "%s: layout LFSCK master %s bad lmm_oi for "
@@ -5018,8 +4566,7 @@ unlock:
 
 static int lfsck_layout_exec_dir(const struct lu_env *env,
                                 struct lfsck_component *com,
-                                struct dt_object *obj,
-                                struct lu_dirent *ent)
+                                struct lu_dirent *ent, __u16 type)
 {
        return 0;
 }
@@ -5028,41 +4575,24 @@ static int lfsck_layout_master_post(const struct lu_env *env,
                                    struct lfsck_component *com,
                                    int result, bool init)
 {
-       struct lfsck_instance           *lfsck   = com->lc_lfsck;
-       struct lfsck_layout             *lo      = com->lc_file_ram;
-       struct lfsck_layout_master_data *llmd    = com->lc_data;
-       struct ptlrpc_thread            *mthread = &lfsck->li_thread;
-       struct ptlrpc_thread            *athread = &llmd->llmd_thread;
-       struct l_wait_info               lwi     = { 0 };
-       int                              rc;
+       struct lfsck_instance   *lfsck  = com->lc_lfsck;
+       struct lfsck_layout     *lo     = com->lc_file_ram;
+       int                      rc;
        ENTRY;
 
-
-       llmd->llmd_post_result = result;
-       llmd->llmd_to_post = 1;
-       if (llmd->llmd_post_result <= 0)
-               llmd->llmd_exit = 1;
-
-       wake_up_all(&athread->t_ctl_waitq);
-       l_wait_event(mthread->t_ctl_waitq,
-                    (result > 0 && list_empty(&llmd->llmd_req_list)) ||
-                    thread_is_stopped(athread),
-                    &lwi);
-
-       if (llmd->llmd_assistant_status < 0)
-               result = llmd->llmd_assistant_status;
+       lfsck_post_generic(env, com, &result);
 
        down_write(&com->lc_sem);
        spin_lock(&lfsck->li_lock);
-       /* When LFSCK failed, there may be some prefetched objects those are
-        * not been processed yet, we do not know the exactly position, then
-        * just restart from last check-point next time. */
-       if (!init && !llmd->llmd_exit)
+       if (!init)
                lo->ll_pos_last_checkpoint =
-                                       lfsck->li_pos_current.lp_oit_cookie;
+                               lfsck->li_pos_checkpoint.lp_oit_cookie;
 
        if (result > 0) {
-               lo->ll_status = LS_SCANNING_PHASE2;
+               if (lo->ll_flags & LF_INCOMPLETE)
+                       lo->ll_status = LS_PARTIAL;
+               else
+                       lo->ll_status = LS_SCANNING_PHASE2;
                lo->ll_flags |= LF_SCANNED_ONCE;
                lo->ll_flags &= ~LF_UPGRADE;
                list_move_tail(&com->lc_link, &lfsck->li_list_double_scan);
@@ -5115,9 +4645,13 @@ static int lfsck_layout_slave_post(const struct lu_env *env,
        spin_lock(&lfsck->li_lock);
        if (!init)
                lo->ll_pos_last_checkpoint =
-                                       lfsck->li_pos_current.lp_oit_cookie;
+                               lfsck->li_pos_checkpoint.lp_oit_cookie;
+
        if (result > 0) {
-               lo->ll_status = LS_SCANNING_PHASE2;
+               if (lo->ll_flags & LF_INCOMPLETE)
+                       lo->ll_status = LS_PARTIAL;
+               else
+                       lo->ll_status = LS_SCANNING_PHASE2;
                lo->ll_flags |= LF_SCANNED_ONCE;
                if (lo->ll_flags & LF_CRASHED_LASTID) {
                        done = true;
@@ -5349,25 +4883,9 @@ out:
 static int lfsck_layout_master_double_scan(const struct lu_env *env,
                                           struct lfsck_component *com)
 {
-       struct lfsck_layout_master_data *llmd    = com->lc_data;
-       struct ptlrpc_thread            *mthread = &com->lc_lfsck->li_thread;
-       struct ptlrpc_thread            *athread = &llmd->llmd_thread;
-       struct lfsck_layout             *lo      = com->lc_file_ram;
-       struct l_wait_info               lwi     = { 0 };
-
-       if (unlikely(lo->ll_status != LS_SCANNING_PHASE2))
-               return 0;
-
-       llmd->llmd_to_double_scan = 1;
-       wake_up_all(&athread->t_ctl_waitq);
-       l_wait_event(mthread->t_ctl_waitq,
-                    llmd->llmd_in_double_scan ||
-                    thread_is_stopped(athread),
-                    &lwi);
-       if (llmd->llmd_assistant_status < 0)
-               return llmd->llmd_assistant_status;
+       struct lfsck_layout *lo = com->lc_file_ram;
 
-       return 0;
+       return lfsck_double_scan_generic(env, com, lo->ll_status);
 }
 
 static int lfsck_layout_slave_double_scan(const struct lu_env *env,
@@ -5445,30 +4963,30 @@ done:
 static void lfsck_layout_master_data_release(const struct lu_env *env,
                                             struct lfsck_component *com)
 {
-       struct lfsck_layout_master_data *llmd   = com->lc_data;
+       struct lfsck_assistant_data     *lad    = com->lc_data;
        struct lfsck_instance           *lfsck  = com->lc_lfsck;
        struct lfsck_tgt_descs          *ltds;
        struct lfsck_tgt_desc           *ltd;
        struct lfsck_tgt_desc           *next;
 
-       LASSERT(llmd != NULL);
-       LASSERT(thread_is_init(&llmd->llmd_thread) ||
-               thread_is_stopped(&llmd->llmd_thread));
-       LASSERT(list_empty(&llmd->llmd_req_list));
+       LASSERT(lad != NULL);
+       LASSERT(thread_is_init(&lad->lad_thread) ||
+               thread_is_stopped(&lad->lad_thread));
+       LASSERT(list_empty(&lad->lad_req_list));
 
        com->lc_data = NULL;
 
        ltds = &lfsck->li_ost_descs;
        spin_lock(&ltds->ltd_lock);
-       list_for_each_entry_safe(ltd, next, &llmd->llmd_ost_phase1_list,
+       list_for_each_entry_safe(ltd, next, &lad->lad_ost_phase1_list,
                                 ltd_layout_phase_list) {
                list_del_init(&ltd->ltd_layout_phase_list);
        }
-       list_for_each_entry_safe(ltd, next, &llmd->llmd_ost_phase2_list,
+       list_for_each_entry_safe(ltd, next, &lad->lad_ost_phase2_list,
                                 ltd_layout_phase_list) {
                list_del_init(&ltd->ltd_layout_phase_list);
        }
-       list_for_each_entry_safe(ltd, next, &llmd->llmd_ost_list,
+       list_for_each_entry_safe(ltd, next, &lad->lad_ost_list,
                                 ltd_layout_list) {
                list_del_init(&ltd->ltd_layout_list);
        }
@@ -5476,21 +4994,23 @@ static void lfsck_layout_master_data_release(const struct lu_env *env,
 
        ltds = &lfsck->li_mdt_descs;
        spin_lock(&ltds->ltd_lock);
-       list_for_each_entry_safe(ltd, next, &llmd->llmd_mdt_phase1_list,
+       list_for_each_entry_safe(ltd, next, &lad->lad_mdt_phase1_list,
                                 ltd_layout_phase_list) {
                list_del_init(&ltd->ltd_layout_phase_list);
        }
-       list_for_each_entry_safe(ltd, next, &llmd->llmd_mdt_phase2_list,
+       list_for_each_entry_safe(ltd, next, &lad->lad_mdt_phase2_list,
                                 ltd_layout_phase_list) {
                list_del_init(&ltd->ltd_layout_phase_list);
        }
-       list_for_each_entry_safe(ltd, next, &llmd->llmd_mdt_list,
+       list_for_each_entry_safe(ltd, next, &lad->lad_mdt_list,
                                 ltd_layout_list) {
                list_del_init(&ltd->ltd_layout_list);
        }
        spin_unlock(&ltds->ltd_lock);
 
-       OBD_FREE_PTR(llmd);
+       CFS_FREE_BITMAP(lad->lad_bitmap);
+
+       OBD_FREE_PTR(lad);
 }
 
 static void lfsck_layout_slave_data_release(const struct lu_env *env,
@@ -5522,22 +5042,6 @@ static void lfsck_layout_slave_data_release(const struct lu_env *env,
        OBD_FREE_PTR(llsd);
 }
 
-static void lfsck_layout_master_quit(const struct lu_env *env,
-                                    struct lfsck_component *com)
-{
-       struct lfsck_layout_master_data *llmd    = com->lc_data;
-       struct ptlrpc_thread            *mthread = &com->lc_lfsck->li_thread;
-       struct ptlrpc_thread            *athread = &llmd->llmd_thread;
-       struct l_wait_info               lwi     = { 0 };
-
-       llmd->llmd_exit = 1;
-       wake_up_all(&athread->t_ctl_waitq);
-       l_wait_event(mthread->t_ctl_waitq,
-                    thread_is_init(athread) ||
-                    thread_is_stopped(athread),
-                    &lwi);
-}
-
 static void lfsck_layout_slave_quit(const struct lu_env *env,
                                    struct lfsck_component *com)
 {
@@ -5550,7 +5054,7 @@ static int lfsck_layout_master_in_notify(const struct lu_env *env,
 {
        struct lfsck_instance           *lfsck = com->lc_lfsck;
        struct lfsck_layout             *lo    = com->lc_file_ram;
-       struct lfsck_layout_master_data *llmd  = com->lc_data;
+       struct lfsck_assistant_data     *lad   = com->lc_data;
        struct lfsck_tgt_descs          *ltds;
        struct lfsck_tgt_desc           *ltd;
        bool                             fail  = false;
@@ -5565,7 +5069,7 @@ static int lfsck_layout_master_in_notify(const struct lu_env *env,
                RETURN(rc);
        }
 
-       CDEBUG(D_LFSCK, "%s: layout LFSCK master handle notify %u "
+       CDEBUG(D_LFSCK, "%s: layout LFSCK master handles notify %u "
               "from %s %x, status %d\n", lfsck_lfsck2name(lfsck),
               lr->lr_event, (lr->lr_flags & LEF_TO_OST) ? "OST" : "MDT",
               lr->lr_index, lr->lr_status);
@@ -5590,10 +5094,16 @@ static int lfsck_layout_master_in_notify(const struct lu_env *env,
        list_del_init(&ltd->ltd_layout_phase_list);
        switch (lr->lr_event) {
        case LE_PHASE1_DONE:
-               if (lr->lr_status <= 0) {
+               if (lr->lr_status <= 0 || lr->lr_flags2 & LF_INCOMPLETE) {
+                       if (lr->lr_flags2 & LF_INCOMPLETE) {
+                               if (lr->lr_flags & LEF_FROM_OST)
+                                       lfsck_lad_set_bitmap(env, com,
+                                                            ltd->ltd_index);
+                               else
+                                       lo->ll_flags |= LF_INCOMPLETE;
+                       }
                        ltd->ltd_layout_done = 1;
                        list_del_init(&ltd->ltd_layout_list);
-                       lo->ll_flags |= LF_INCOMPLETE;
                        fail = true;
                        break;
                }
@@ -5601,15 +5111,15 @@ static int lfsck_layout_master_in_notify(const struct lu_env *env,
                if (lr->lr_flags & LEF_FROM_OST) {
                        if (list_empty(&ltd->ltd_layout_list))
                                list_add_tail(&ltd->ltd_layout_list,
-                                             &llmd->llmd_ost_list);
+                                             &lad->lad_ost_list);
                        list_add_tail(&ltd->ltd_layout_phase_list,
-                                     &llmd->llmd_ost_phase2_list);
+                                     &lad->lad_ost_phase2_list);
                } else {
                        if (list_empty(&ltd->ltd_layout_list))
                                list_add_tail(&ltd->ltd_layout_list,
-                                             &llmd->llmd_mdt_list);
+                                             &lad->lad_mdt_list);
                        list_add_tail(&ltd->ltd_layout_phase_list,
-                                     &llmd->llmd_mdt_phase2_list);
+                                     &lad->lad_mdt_phase2_list);
                }
                break;
        case LE_PHASE2_DONE:
@@ -5620,8 +5130,9 @@ static int lfsck_layout_master_in_notify(const struct lu_env *env,
                fail = true;
                ltd->ltd_layout_done = 1;
                list_del_init(&ltd->ltd_layout_list);
-               if (!(lfsck->li_bookmark_ram.lb_param & LPF_FAILOUT))
-                       lo->ll_flags |= LF_INCOMPLETE;
+               if (!(lfsck->li_bookmark_ram.lb_param & LPF_FAILOUT) &&
+                   !(lr->lr_flags & LEF_FROM_OST))
+                               lo->ll_flags |= LF_INCOMPLETE;
                break;
        default:
                break;
@@ -5635,8 +5146,8 @@ static int lfsck_layout_master_in_notify(const struct lu_env *env,
                stop->ls_status = lr->lr_status;
                stop->ls_flags = lr->lr_param & ~LPF_BROADCAST;
                lfsck_stop(env, lfsck->li_bottom, stop);
-       } else if (lfsck_layout_master_to_orphan(llmd)) {
-               wake_up_all(&llmd->llmd_thread.t_ctl_waitq);
+       } else if (lfsck_phase2_next_ready(lad)) {
+               wake_up_all(&lad->lad_thread.t_ctl_waitq);
        }
 
        RETURN(0);
@@ -5692,6 +5203,24 @@ static int lfsck_layout_slave_in_notify(const struct lu_env *env,
 
                RETURN(rc);
        }
+       case LE_PHASE1_DONE: {
+               if (lr->lr_flags2 & LF_INCOMPLETE) {
+                       struct lfsck_layout *lo = com->lc_file_ram;
+
+                       lo->ll_flags |= LF_INCOMPLETE;
+                       llst = lfsck_layout_llst_find_and_del(llsd,
+                                                             lr->lr_index,
+                                                             true);
+                       if (llst != NULL) {
+                               lfsck_layout_llst_put(llst);
+                               if (list_empty(&llsd->llsd_master_list))
+                                       wake_up_all(
+                                               &lfsck->li_thread.t_ctl_waitq);
+                       }
+               }
+
+               RETURN(0);
+       }
        case LE_PHASE2_DONE:
        case LE_PEER_EXIT:
                CDEBUG(D_LFSCK, "%s: layout LFSCK slave handle notify %u "
@@ -5704,14 +5233,17 @@ static int lfsck_layout_slave_in_notify(const struct lu_env *env,
 
        llst = lfsck_layout_llst_find_and_del(llsd, lr->lr_index, true);
        if (llst == NULL)
-               RETURN(-ENXIO);
+               RETURN(0);
 
        lfsck_layout_llst_put(llst);
        if (list_empty(&llsd->llsd_master_list))
                wake_up_all(&lfsck->li_thread.t_ctl_waitq);
 
        if (lr->lr_event == LE_PEER_EXIT &&
-           lfsck->li_bookmark_ram.lb_param & LPF_FAILOUT) {
+           (lfsck->li_bookmark_ram.lb_param & LPF_FAILOUT ||
+            (list_empty(&llsd->llsd_master_list) &&
+             (lr->lr_status == LS_STOPPED ||
+              lr->lr_status == LS_CO_STOPPED)))) {
                struct lfsck_stop *stop = &lfsck_env_info(env)->lti_stop;
 
                memset(stop, 0, sizeof(*stop));
@@ -5731,60 +5263,6 @@ static int lfsck_layout_query(const struct lu_env *env,
        return lo->ll_status;
 }
 
-static int lfsck_layout_master_stop_notify(const struct lu_env *env,
-                                          struct lfsck_component *com,
-                                          struct lfsck_tgt_descs *ltds,
-                                          struct lfsck_tgt_desc *ltd,
-                                          struct ptlrpc_request_set *set)
-{
-       struct lfsck_thread_info          *info  = lfsck_env_info(env);
-       struct lfsck_async_interpret_args *laia  = &info->lti_laia;
-       struct lfsck_request              *lr    = &info->lti_lr;
-       struct lfsck_instance             *lfsck = com->lc_lfsck;
-       int                                rc;
-
-       spin_lock(&ltds->ltd_lock);
-       if (list_empty(&ltd->ltd_layout_list)) {
-               LASSERT(list_empty(&ltd->ltd_layout_phase_list));
-               spin_unlock(&ltds->ltd_lock);
-
-               return 0;
-       }
-
-       list_del_init(&ltd->ltd_layout_phase_list);
-       list_del_init(&ltd->ltd_layout_list);
-       spin_unlock(&ltds->ltd_lock);
-
-       memset(lr, 0, sizeof(*lr));
-       lr->lr_index = lfsck_dev_idx(lfsck->li_bottom);
-       lr->lr_event = LE_PEER_EXIT;
-       lr->lr_active = LFSCK_TYPE_LAYOUT;
-       lr->lr_status = LS_CO_PAUSED;
-       if (ltds == &lfsck->li_ost_descs)
-               lr->lr_flags = LEF_TO_OST;
-
-       laia->laia_com = com;
-       laia->laia_ltds = ltds;
-       atomic_inc(&ltd->ltd_ref);
-       laia->laia_ltd = ltd;
-       laia->laia_lr = lr;
-       laia->laia_shared = 0;
-
-       rc = lfsck_async_request(env, ltd->ltd_exp, lr, set,
-                                lfsck_layout_master_async_interpret,
-                                laia, LFSCK_NOTIFY);
-       if (rc != 0) {
-               CDEBUG(D_LFSCK, "%s: layout LFSCK fail to notify %s %x "
-                      "for co-stop: rc = %d\n",
-                      lfsck_lfsck2name(lfsck),
-                      (lr->lr_flags & LEF_TO_OST) ? "OST" : "MDT",
-                      ltd->ltd_index, rc);
-               lfsck_tgt_put(ltd);
-       }
-
-       return rc;
-}
-
 /* with lfsck::li_lock held */
 static int lfsck_layout_slave_join(const struct lu_env *env,
                                   struct lfsck_component *com,
@@ -5833,14 +5311,12 @@ static struct lfsck_operations lfsck_layout_master_ops = {
        .lfsck_exec_oit         = lfsck_layout_master_exec_oit,
        .lfsck_exec_dir         = lfsck_layout_exec_dir,
        .lfsck_post             = lfsck_layout_master_post,
-       .lfsck_interpret        = lfsck_layout_master_async_interpret,
        .lfsck_dump             = lfsck_layout_dump,
        .lfsck_double_scan      = lfsck_layout_master_double_scan,
        .lfsck_data_release     = lfsck_layout_master_data_release,
-       .lfsck_quit             = lfsck_layout_master_quit,
+       .lfsck_quit             = lfsck_quit_generic,
        .lfsck_in_notify        = lfsck_layout_master_in_notify,
        .lfsck_query            = lfsck_layout_query,
-       .lfsck_stop_notify      = lfsck_layout_master_stop_notify,
 };
 
 static struct lfsck_operations lfsck_layout_slave_ops = {
@@ -5860,6 +5336,31 @@ static struct lfsck_operations lfsck_layout_slave_ops = {
        .lfsck_join             = lfsck_layout_slave_join,
 };
 
+static void lfsck_layout_assistant_fill_pos(const struct lu_env *env,
+                                           struct lfsck_component *com,
+                                           struct lfsck_position *pos)
+{
+       struct lfsck_assistant_data     *lad = com->lc_data;
+       struct lfsck_layout_req         *llr;
+
+       if (list_empty(&lad->lad_req_list))
+               return;
+
+       llr = list_entry(lad->lad_req_list.next,
+                        struct lfsck_layout_req,
+                        llr_lar.lar_list);
+       pos->lp_oit_cookie = llr->llr_parent->llo_cookie - 1;
+}
+
+struct lfsck_assistant_operations lfsck_layout_assistant_ops = {
+       .la_handler_p1          = lfsck_layout_assistant_handler_p1,
+       .la_handler_p2          = lfsck_layout_assistant_handler_p2,
+       .la_fill_pos            = lfsck_layout_assistant_fill_pos,
+       .la_double_scan_result  = lfsck_layout_double_scan_result,
+       .la_req_fini            = lfsck_layout_assistant_req_fini,
+       .la_sync_failures       = lfsck_layout_assistant_sync_failures,
+};
+
 int lfsck_layout_setup(const struct lu_env *env, struct lfsck_instance *lfsck)
 {
        struct lfsck_component  *com;
@@ -5880,23 +5381,12 @@ int lfsck_layout_setup(const struct lu_env *env, struct lfsck_instance *lfsck)
        com->lc_lfsck = lfsck;
        com->lc_type = LFSCK_TYPE_LAYOUT;
        if (lfsck->li_master) {
-               struct lfsck_layout_master_data *llmd;
-
                com->lc_ops = &lfsck_layout_master_ops;
-               OBD_ALLOC_PTR(llmd);
-               if (llmd == NULL)
+               com->lc_data = lfsck_assistant_data_init(
+                               &lfsck_layout_assistant_ops,
+                               "lfsck_layout");
+               if (com->lc_data == NULL)
                        GOTO(out, rc = -ENOMEM);
-
-               INIT_LIST_HEAD(&llmd->llmd_req_list);
-               spin_lock_init(&llmd->llmd_lock);
-               INIT_LIST_HEAD(&llmd->llmd_ost_list);
-               INIT_LIST_HEAD(&llmd->llmd_ost_phase1_list);
-               INIT_LIST_HEAD(&llmd->llmd_ost_phase2_list);
-               INIT_LIST_HEAD(&llmd->llmd_mdt_list);
-               INIT_LIST_HEAD(&llmd->llmd_mdt_phase1_list);
-               INIT_LIST_HEAD(&llmd->llmd_mdt_phase2_list);
-               init_waitqueue_head(&llmd->llmd_thread.t_ctl_waitq);
-               com->lc_data = llmd;
        } else {
                struct lfsck_layout_slave_data *llsd;
 
@@ -5965,7 +5455,8 @@ int lfsck_layout_setup(const struct lu_env *env, struct lfsck_instance *lfsck)
                 * If the system crashed before the status stored,
                 * it will be loaded back when next time. */
                lo->ll_status = LS_CRASHED;
-               lo->ll_flags |= LF_INCOMPLETE;
+               if (!lfsck->li_master)
+                       lo->ll_flags |= LF_INCOMPLETE;
                /* fall through */
        case LS_PAUSED:
        case LS_CRASHED:
@@ -6145,6 +5636,7 @@ static struct dt_it *lfsck_orphan_it_init(const struct lu_env *env,
        struct lfsck_component          *com    = NULL;
        struct lfsck_layout_slave_data  *llsd;
        struct lfsck_orphan_it          *it     = NULL;
+       struct lfsck_layout             *lo;
        int                              rc     = 0;
        ENTRY;
 
@@ -6156,6 +5648,10 @@ static struct dt_it *lfsck_orphan_it_init(const struct lu_env *env,
        if (unlikely(com == NULL))
                GOTO(out, rc = -ENOENT);
 
+       lo = com->lc_file_ram;
+       if (lo->ll_flags & LF_INCOMPLETE)
+               GOTO(out, rc = -ESRCH);
+
        llsd = com->lc_data;
        if (!llsd->llsd_rbtree_valid)
                GOTO(out, rc = -ESRCH);