]> git.ipfire.org Git - people/ms/linux.git/commitdiff
staging: lustre: ldlm: disconnect speedup
authorVitaly Fertman <vitaly_fertman@xyratex.com>
Sat, 18 Feb 2017 21:47:11 +0000 (16:47 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 6 Mar 2017 08:17:00 +0000 (09:17 +0100)
disconnect takes too long time if there are many locks to cancel.
besides the amount of time spent on each lock cancel, there is a
resched() in cfs_hash_for_each_relax(), i.e. disconnect or eviction
may take unexpectedly long time. While this patch only contains
the client side fixes the original fix covered changes to both
the server and client code to ensure proper disconnect handling.
Below details the change done on both the server and client so
people can examine the disconnect behavior with both source bases.

- do not cancel locks on disconnect_export;
- export will be left in obd_unlinked_exports list pinned by live
  locks;
- new re-connects will created other non-conflicting exports;
- new locks will cancel obsolete locks on conflicts;
- once all the locks on the disconnected export will be cancelled,
  the export will be destroyed on the last ref put;
- do not cancel in small portions, cancel all together in just 1
  dedicated thread - use server side blocking thread for that;
- cancel blocked locks first so that waiting locks could proceed;
- take care about blocked waiting locks, so that they would get
  cancelled quickly too;
- do not remove lock from waiting list on AST error before moving
  it to elt_expired_locks list, because it removes it from export
  list too; otherwise this blocked lock will not be cancelled
  immediately on failed export;
- cancel lock instead of just destroy for failed export, to make
  full cleanup, i.e. remove it from export list.

Signed-off-by: Vitaly Fertman <vitaly_fertman@xyratex.com>
Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-3031
Xyratex-bug-id: MRP-395 MRP-1366 MRP-1366
Reviewed-by: Andriy Skulysh <Andriy_Skulysh@xyratex.com>
Reviewed-by: Alexey Lyashkov <Alexey_Lyashkov@xyratex.com>
Reviewed-on: http://review.whamcloud.com/5843
Reviewed-by: James Simmons <uja.ornl@yahoo.com>
Reviewed-by: Andreas Dilger <andreas.dilger@intel.com>
Reviewed-by: Oleg Drokin <oleg.drokin@intel.com>
Signed-off-by: James Simmons <jsimmons@infradead.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/include/lustre_dlm.h
drivers/staging/lustre/lustre/include/obd_support.h
drivers/staging/lustre/lustre/ldlm/ldlm_internal.h
drivers/staging/lustre/lustre/ldlm/ldlm_lock.c
drivers/staging/lustre/lustre/ldlm/ldlm_lockd.c
drivers/staging/lustre/lustre/ldlm/ldlm_pool.c

index b7e61d082e55e9107f5d5c8b8bc423be1fd634a0..1e86fb53388a92e814a9886ac5a8395754d6d22c 100644 (file)
@@ -812,13 +812,6 @@ struct ldlm_lock {
        /** referenced export object */
        struct obd_export       *l_exp_refs_target;
 #endif
-       /**
-        * export blocking dlm lock list, protected by
-        * l_export->exp_bl_list_lock.
-        * Lock order of waiting_lists_spinlock, exp_bl_list_lock and res lock
-        * is: res lock -> exp_bl_list_lock -> wanting_lists_spinlock.
-        */
-       struct list_head                l_exp_list;
 };
 
 /**
@@ -1192,6 +1185,10 @@ ldlm_namespace_new(struct obd_device *obd, char *name,
                   enum ldlm_side client, enum ldlm_appetite apt,
                   enum ldlm_ns_type ns_type);
 int ldlm_namespace_cleanup(struct ldlm_namespace *ns, __u64 flags);
+void ldlm_namespace_free_prior(struct ldlm_namespace *ns,
+                              struct obd_import *imp,
+                              int force);
+void ldlm_namespace_free_post(struct ldlm_namespace *ns);
 void ldlm_namespace_get(struct ldlm_namespace *ns);
 void ldlm_namespace_put(struct ldlm_namespace *ns);
 int ldlm_debugfs_setup(void);
index dace6591a0a4492a96a6ae6253108757eaa6a664..33304041bb63457a500fd9a9ef9df26adf3930ad 100644 (file)
@@ -318,6 +318,7 @@ extern char obd_jobid_var[];
 #define OBD_FAIL_LDLM_AGL_NOLOCK        0x31b
 #define OBD_FAIL_LDLM_OST_LVB           0x31c
 #define OBD_FAIL_LDLM_ENQUEUE_HANG      0x31d
+#define OBD_FAIL_LDLM_PAUSE_CANCEL2     0x31f
 #define OBD_FAIL_LDLM_CP_CB_WAIT2       0x320
 #define OBD_FAIL_LDLM_CP_CB_WAIT3       0x321
 #define OBD_FAIL_LDLM_CP_CB_WAIT4       0x322
index 5c02501d0560e7ea45b86cfba3069dd1a56becb7..5d24b4825796c42dce8d0278218068229a22be67 100644 (file)
@@ -108,9 +108,7 @@ extern unsigned int ldlm_cancel_unused_locks_before_replay;
 
 /* ldlm_resource.c */
 int ldlm_resource_putref_locked(struct ldlm_resource *res);
-void ldlm_namespace_free_prior(struct ldlm_namespace *ns,
-                              struct obd_import *imp, int force);
-void ldlm_namespace_free_post(struct ldlm_namespace *ns);
+
 /* ldlm_lock.c */
 
 struct ldlm_cb_set_arg {
@@ -156,6 +154,7 @@ int ldlm_bl_to_thread_list(struct ldlm_namespace *ns,
                           struct ldlm_lock_desc *ld,
                           struct list_head *cancels, int count,
                           enum ldlm_cancel_flags cancel_flags);
+int ldlm_bl_thread_wakeup(void);
 
 void ldlm_handle_bl_callback(struct ldlm_namespace *ns,
                             struct ldlm_lock_desc *ld, struct ldlm_lock *lock);
index 16c2a8b001bc4ce04787960e84f36d732b1f903f..ddb46428093f81aabce9fe770bdc7ee2bd0f8f56 100644 (file)
@@ -435,7 +435,6 @@ static struct ldlm_lock *ldlm_lock_new(struct ldlm_resource *resource)
        lock->l_exp_refs_nr = 0;
        lock->l_exp_refs_target = NULL;
 #endif
-       INIT_LIST_HEAD(&lock->l_exp_list);
 
        return lock;
 }
index 12647af5a33691c798f62e5620944063f535a110..4c21b9bf7f9da47a92194ffc9a8163a93de36617 100644 (file)
@@ -454,6 +454,12 @@ int ldlm_bl_to_thread_list(struct ldlm_namespace *ns, struct ldlm_lock_desc *ld,
        return ldlm_bl_to_thread(ns, ld, NULL, cancels, count, cancel_flags);
 }
 
+int ldlm_bl_thread_wakeup(void)
+{
+       wake_up(&ldlm_state->ldlm_bl_pool->blp_waitq);
+       return 0;
+}
+
 /* Setinfo coming from Server (eg MDT) to Client (eg MDC)! */
 static int ldlm_handle_setinfo(struct ptlrpc_request *req)
 {
@@ -675,8 +681,11 @@ static int ldlm_callback_handler(struct ptlrpc_request *req)
        return 0;
 }
 
-static struct ldlm_bl_work_item *ldlm_bl_get_work(struct ldlm_bl_pool *blp)
+static int ldlm_bl_get_work(struct ldlm_bl_pool *blp,
+                           struct ldlm_bl_work_item **p_blwi,
+                           struct obd_export **p_exp)
 {
+       int num_th = atomic_read(&blp->blp_num_threads);
        struct ldlm_bl_work_item *blwi = NULL;
        static unsigned int num_bl;
 
@@ -693,13 +702,14 @@ static struct ldlm_bl_work_item *ldlm_bl_get_work(struct ldlm_bl_pool *blp)
                                          blwi_entry);
 
        if (blwi) {
-               if (++num_bl >= atomic_read(&blp->blp_num_threads))
+               if (++num_bl >= num_th)
                        num_bl = 0;
                list_del(&blwi->blwi_entry);
        }
        spin_unlock(&blp->blp_lock);
+       *p_blwi = blwi;
 
-       return blwi;
+       return (*p_blwi || *p_exp) ? 1 : 0;
 }
 
 /* This only contains temporary data until the thread starts */
@@ -732,6 +742,65 @@ static int ldlm_bl_thread_start(struct ldlm_bl_pool *blp)
        return 0;
 }
 
+/* Not fatal if racy and have a few too many threads */
+static int ldlm_bl_thread_need_create(struct ldlm_bl_pool *blp,
+                                     struct ldlm_bl_work_item *blwi)
+{
+       int busy = atomic_read(&blp->blp_busy_threads);
+
+       if (busy >= blp->blp_max_threads)
+               return 0;
+
+       if (busy < atomic_read(&blp->blp_num_threads))
+               return 0;
+
+       if (blwi && (!blwi->blwi_ns || blwi->blwi_mem_pressure))
+               return 0;
+
+       return 1;
+}
+
+static int ldlm_bl_thread_blwi(struct ldlm_bl_pool *blp,
+                              struct ldlm_bl_work_item *blwi)
+{
+       if (!blwi->blwi_ns)
+               /* added by ldlm_cleanup() */
+               return LDLM_ITER_STOP;
+
+       if (blwi->blwi_mem_pressure)
+               memory_pressure_set();
+
+       OBD_FAIL_TIMEOUT(OBD_FAIL_LDLM_PAUSE_CANCEL2, 4);
+
+       if (blwi->blwi_count) {
+               int count;
+
+               /*
+                * The special case when we cancel locks in lru
+                * asynchronously, we pass the list of locks here.
+                * Thus locks are marked LDLM_FL_CANCELING, but NOT
+                * canceled locally yet.
+                */
+               count = ldlm_cli_cancel_list_local(&blwi->blwi_head,
+                                                  blwi->blwi_count,
+                                                  LCF_BL_AST);
+               ldlm_cli_cancel_list(&blwi->blwi_head, count, NULL,
+                                    blwi->blwi_flags);
+       } else {
+               ldlm_handle_bl_callback(blwi->blwi_ns, &blwi->blwi_ld,
+                                       blwi->blwi_lock);
+       }
+       if (blwi->blwi_mem_pressure)
+               memory_pressure_clr();
+
+       if (blwi->blwi_flags & LCF_ASYNC)
+               kfree(blwi);
+       else
+               complete(&blwi->blwi_comp);
+
+       return 0;
+}
+
 /**
  * Main blocking requests processing thread.
  *
@@ -742,73 +811,41 @@ static int ldlm_bl_thread_start(struct ldlm_bl_pool *blp)
 static int ldlm_bl_thread_main(void *arg)
 {
        struct ldlm_bl_pool *blp;
+       struct ldlm_bl_thread_data *bltd = arg;
 
-       {
-               struct ldlm_bl_thread_data *bltd = arg;
-
-               blp = bltd->bltd_blp;
+       blp = bltd->bltd_blp;
 
-               atomic_inc(&blp->blp_num_threads);
-               atomic_inc(&blp->blp_busy_threads);
+       atomic_inc(&blp->blp_num_threads);
+       atomic_inc(&blp->blp_busy_threads);
 
-               complete(&bltd->bltd_comp);
-               /* cannot use bltd after this, it is only on caller's stack */
-       }
+       complete(&bltd->bltd_comp);
+       /* cannot use bltd after this, it is only on caller's stack */
 
        while (1) {
                struct l_wait_info lwi = { 0 };
                struct ldlm_bl_work_item *blwi = NULL;
-               int busy;
+               struct obd_export *exp = NULL;
+               int rc;
 
-               blwi = ldlm_bl_get_work(blp);
-
-               if (!blwi) {
+               rc = ldlm_bl_get_work(blp, &blwi, &exp);
+               if (!rc) {
                        atomic_dec(&blp->blp_busy_threads);
                        l_wait_event_exclusive(blp->blp_waitq,
-                                              (blwi = ldlm_bl_get_work(blp)),
+                                              ldlm_bl_get_work(blp, &blwi,
+                                                               &exp),
                                               &lwi);
-                       busy = atomic_inc_return(&blp->blp_busy_threads);
-               } else {
-                       busy = atomic_read(&blp->blp_busy_threads);
+                       atomic_inc(&blp->blp_busy_threads);
                }
 
-               if (!blwi->blwi_ns)
-                       /* added by ldlm_cleanup() */
-                       break;
-
-               /* Not fatal if racy and have a few too many threads */
-               if (unlikely(busy < blp->blp_max_threads &&
-                            busy >= atomic_read(&blp->blp_num_threads) &&
-                            !blwi->blwi_mem_pressure))
+               if (ldlm_bl_thread_need_create(blp, blwi))
                        /* discard the return value, we tried */
                        ldlm_bl_thread_start(blp);
 
-               if (blwi->blwi_mem_pressure)
-                       memory_pressure_set();
-
-               if (blwi->blwi_count) {
-                       int count;
-                       /* The special case when we cancel locks in LRU
-                        * asynchronously, we pass the list of locks here.
-                        * Thus locks are marked LDLM_FL_CANCELING, but NOT
-                        * canceled locally yet.
-                        */
-                       count = ldlm_cli_cancel_list_local(&blwi->blwi_head,
-                                                          blwi->blwi_count,
-                                                          LCF_BL_AST);
-                       ldlm_cli_cancel_list(&blwi->blwi_head, count, NULL,
-                                            blwi->blwi_flags);
-               } else {
-                       ldlm_handle_bl_callback(blwi->blwi_ns, &blwi->blwi_ld,
-                                               blwi->blwi_lock);
-               }
-               if (blwi->blwi_mem_pressure)
-                       memory_pressure_clr();
+               if (blwi)
+                       rc = ldlm_bl_thread_blwi(blp, blwi);
 
-               if (blwi->blwi_flags & LCF_ASYNC)
-                       kfree(blwi);
-               else
-                       complete(&blwi->blwi_comp);
+               if (rc == LDLM_ITER_STOP)
+                       break;
        }
 
        atomic_dec(&blp->blp_busy_threads);
index 13fbbedf494576dee19e712719cd2303acbba46e..cf3fc5793377da4c4fa044537b55246f9205d832 100644 (file)
@@ -975,6 +975,10 @@ static int ldlm_pools_recalc(enum ldlm_side client)
                        ldlm_namespace_put(ns);
                }
        }
+
+       /* Wake up the blocking threads from time to time. */
+       ldlm_bl_thread_wakeup();
+
        return time;
 }