Whamcloud - gitweb
land b_ost_amd onto HEAD.
[fs/lustre-release.git] / lustre / ptlrpc / import.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (c) 2002, 2003 Cluster File Systems, Inc.
5  *   Author: Mike Shaver <shaver@clusterfs.com>
6  *
7  *   This file is part of Lustre, http://www.lustre.org.
8  *
9  *   Lustre is free software; you can redistribute it and/or
10  *   modify it under the terms of version 2 of the GNU General Public
11  *   License as published by the Free Software Foundation.
12  *
13  *   Lustre is distributed in the hope that it will be useful,
14  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *   GNU General Public License for more details.
17  *
18  *   You should have received a copy of the GNU General Public License
19  *   along with Lustre; if not, write to the Free Software
20  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  */
22
23 #define DEBUG_SUBSYSTEM S_RPC
24 #ifdef __KERNEL__
25 # include <linux/config.h>
26 # include <linux/module.h>
27 # include <linux/kmod.h>
28 #else
29 # include <liblustre.h>
30 #endif
31
32 #include <linux/obd_support.h>
33 #include <linux/lustre_ha.h>
34 #include <linux/lustre_net.h>
35 #include <linux/lustre_import.h>
36 #include <linux/lustre_export.h>
37 #include <linux/obd.h>
38 #include <linux/obd_class.h>
39
40 #include "ptlrpc_internal.h"
41
42 struct ptlrpc_connect_async_args {
43          __u64 pcaa_peer_committed;
44         int pcaa_initial_connect;
45 };
46
47 /* A CLOSED import should remain so. */
48 #define IMPORT_SET_STATE_NOLOCK(imp, state)                                    \
49 do {                                                                           \
50         if (imp->imp_state != LUSTRE_IMP_CLOSED) {                             \
51                CDEBUG(D_HA, "%p %s: changing import state from %s to %s\n",    \
52                       imp, imp->imp_target_uuid.uuid,                          \
53                       ptlrpc_import_state_name(imp->imp_state),                \
54                       ptlrpc_import_state_name(state));                        \
55                imp->imp_state = state;                                         \
56         }                                                                      \
57 } while(0)
58
59 #define IMPORT_SET_STATE(imp, state)                    \
60 do {                                                    \
61         unsigned long flags;                            \
62                                                         \
63         spin_lock_irqsave(&imp->imp_lock, flags);       \
64         IMPORT_SET_STATE_NOLOCK(imp, state);            \
65         spin_unlock_irqrestore(&imp->imp_lock, flags);  \
66 } while(0)
67
68
69 static int ptlrpc_connect_interpret(struct ptlrpc_request *request,
70                                     void * data, int rc);
71 int ptlrpc_import_recovery_state_machine(struct obd_import *imp);
72
73 /* Only this function is allowed to change the import state when it is
74  * CLOSED. I would rather refcount the import and free it after
75  * disconnection like we do with exports. To do that, the client_obd
76  * will need to save the peer info somewhere other than in the import,
77  * though. */
78 int ptlrpc_init_import(struct obd_import *imp)
79 {
80         unsigned long flags;
81
82         spin_lock_irqsave(&imp->imp_lock, flags);
83
84         imp->imp_generation++;
85         imp->imp_state =  LUSTRE_IMP_NEW;
86
87         spin_unlock_irqrestore(&imp->imp_lock, flags);
88
89         return 0;
90 }
91
92 /* Returns true if import was FULL, false if import was already not
93  * connected.
94  */
95 int ptlrpc_set_import_discon(struct obd_import *imp)
96 {
97         unsigned long flags;
98         int rc = 0;
99
100         spin_lock_irqsave(&imp->imp_lock, flags);
101
102         if (imp->imp_state == LUSTRE_IMP_FULL) {
103                 IMPORT_SET_STATE_NOLOCK(imp, LUSTRE_IMP_DISCON);
104                 spin_unlock_irqrestore(&imp->imp_lock, flags);
105                 obd_import_event(imp->imp_obd, imp, IMP_EVENT_DISCON);
106                 rc = 1;
107         } else {
108                 spin_unlock_irqrestore(&imp->imp_lock, flags);
109                 CDEBUG(D_HA, "%p %s: import already not connected: %s\n",
110                        imp,imp->imp_client->cli_name,
111                        ptlrpc_import_state_name(imp->imp_state));
112         }
113
114         return rc;
115 }
116
117 /*
118  * This acts as a barrier; all existing requests are rejected, and
119  * no new requests will be accepted until the import is valid again.
120  */
121 void ptlrpc_deactivate_import(struct obd_import *imp)
122 {
123         unsigned long flags;
124         ENTRY;
125
126         spin_lock_irqsave(&imp->imp_lock, flags);
127         CDEBUG(D_HA, "setting import %s INVALID\n",
128                imp->imp_target_uuid.uuid);
129         imp->imp_invalid = 1;
130         imp->imp_generation++;
131         spin_unlock_irqrestore(&imp->imp_lock, flags);
132
133         ptlrpc_abort_inflight(imp);
134         obd_import_event(imp->imp_obd, imp, IMP_EVENT_INACTIVE);
135 }
136
137 /*
138  * This function will invalidate the import, if necessary, then block
139  * for all the RPC completions, and finally notify the obd to
140  * invalidate its state (ie cancel locks, clear pending requests,
141  * etc).
142  *
143  * in_rpc: true if this is called while processing an rpc, like
144  *    CONNECT. It will allow for one RPC to be inflight while
145  *    waiting for requests to complete. Ugly, yes, but I don't see an
146  *    cleaner way right now.
147  */
148 void ptlrpc_invalidate_import(struct obd_import *imp, int in_rpc)
149 {
150         struct l_wait_info lwi;
151         unsigned long timeout;
152         int inflight = 0;
153         int rc;
154
155         if (!imp->imp_invalid)
156                 ptlrpc_deactivate_import(imp);
157
158         LASSERT(imp->imp_invalid);
159
160         if (in_rpc)
161                 inflight = 1;
162
163         /* wait for all requests to error out and call completion 
164            callbacks */
165         if (imp->imp_server_timeout)
166                 timeout = obd_timeout / 2;
167         else
168                 timeout = obd_timeout;
169         timeout = MAX(timeout * HZ, 1);
170         lwi = LWI_TIMEOUT_INTR(timeout, NULL, NULL, NULL);
171         rc = l_wait_event(imp->imp_recovery_waitq, 
172                           (atomic_read(&imp->imp_inflight) == inflight), 
173                           &lwi);
174
175         if (rc)
176                 CERROR("%s: rc = %d waiting for callback (%d != %d)\n",
177                        imp->imp_target_uuid.uuid, rc,
178                        atomic_read(&imp->imp_inflight), inflight);
179
180         obd_import_event(imp->imp_obd, imp, IMP_EVENT_INVALIDATE);
181 }
182
183 void ptlrpc_activate_import(struct obd_import *imp)
184 {
185         struct obd_device *obd = imp->imp_obd;
186         unsigned long flags;
187
188         spin_lock_irqsave(&imp->imp_lock, flags);
189         imp->imp_invalid = 0;
190         spin_unlock_irqrestore(&imp->imp_lock, flags);
191
192         obd_import_event(obd, imp, IMP_EVENT_ACTIVE);
193 }
194
195 void ptlrpc_fail_import(struct obd_import *imp, int generation)
196 {
197         ENTRY;
198
199         LASSERT (!imp->imp_dlm_fake);
200
201         if (ptlrpc_set_import_discon(imp)) {
202                 unsigned long flags;
203
204                 if (!imp->imp_replayable) {
205                         CDEBUG(D_HA, "import %s@%s for %s not replayable, "
206                                "auto-deactivating\n",
207                                imp->imp_target_uuid.uuid,
208                                imp->imp_connection->c_remote_uuid.uuid,
209                                imp->imp_obd->obd_name);
210                         ptlrpc_deactivate_import(imp);
211                 }
212
213                 CDEBUG(D_HA, "%s: waking up pinger\n",
214                        imp->imp_target_uuid.uuid);
215
216                 spin_lock_irqsave(&imp->imp_lock, flags);
217                 imp->imp_force_verify = 1;
218                 spin_unlock_irqrestore(&imp->imp_lock, flags);
219
220                 ptlrpc_pinger_wake_up();
221         }
222         EXIT;
223 }
224
225 int ptlrpc_connect_import(struct obd_import *imp, char * new_uuid)
226 {
227         struct obd_device *obd = imp->imp_obd;
228         int initial_connect = 0;
229         int rc;
230         __u64 committed_before_reconnect = 0;
231         struct ptlrpc_request *request;
232         int size[] = {sizeof(imp->imp_target_uuid),
233                                  sizeof(obd->obd_uuid),
234                                  sizeof(imp->imp_dlm_handle)};
235         char *tmp[] = {imp->imp_target_uuid.uuid,
236                        obd->obd_uuid.uuid,
237                        (char *)&imp->imp_dlm_handle};
238         struct ptlrpc_connect_async_args *aa;
239         unsigned long flags;
240
241         spin_lock_irqsave(&imp->imp_lock, flags);
242         if (imp->imp_state == LUSTRE_IMP_CLOSED) {
243                 spin_unlock_irqrestore(&imp->imp_lock, flags);
244                 CERROR("can't connect to a closed import\n");
245                 RETURN(-EINVAL);
246         } else if (imp->imp_state == LUSTRE_IMP_FULL) {
247                 spin_unlock_irqrestore(&imp->imp_lock, flags);
248                 CERROR("already connected\n");
249                 RETURN(0);
250         } else if (imp->imp_state == LUSTRE_IMP_CONNECTING) {
251                 spin_unlock_irqrestore(&imp->imp_lock, flags);
252                 CERROR("already connecting\n");
253                 RETURN(-EALREADY);
254         }
255
256         IMPORT_SET_STATE_NOLOCK(imp, LUSTRE_IMP_CONNECTING);
257
258         imp->imp_conn_cnt++;
259         imp->imp_last_replay_transno = 0;
260
261         if (imp->imp_remote_handle.cookie == 0) {
262                 initial_connect = 1;
263         } else {
264                 committed_before_reconnect = imp->imp_peer_committed_transno;;
265
266         }
267
268
269         spin_unlock_irqrestore(&imp->imp_lock, flags);
270
271         if (new_uuid) {
272                 struct ptlrpc_connection *conn;
273                 struct obd_uuid uuid;
274                 struct obd_export *dlmexp;
275
276                 obd_str2uuid(&uuid, new_uuid);
277
278                 conn = ptlrpc_uuid_to_connection(&uuid);
279                 if (!conn)
280                         GOTO(out, rc = -ENOENT);
281
282                 CDEBUG(D_HA, "switching import %s/%s from %s to %s\n",
283                        imp->imp_target_uuid.uuid, imp->imp_obd->obd_name,
284                        imp->imp_connection->c_remote_uuid.uuid,
285                        conn->c_remote_uuid.uuid);
286
287                 /* Switch the import's connection and the DLM export's
288                  * connection (which are almost certainly the same, but we
289                  * keep distinct refs just to make things clearer. I think. */
290                 if (imp->imp_connection)
291                         ptlrpc_put_connection(imp->imp_connection);
292                 /* We hand off the ref from ptlrpc_get_connection. */
293                 imp->imp_connection = conn;
294
295                 dlmexp = class_conn2export(&imp->imp_dlm_handle);
296
297                 LASSERT(dlmexp != NULL);
298
299                 if (dlmexp->exp_connection)
300                         ptlrpc_put_connection(dlmexp->exp_connection);
301                 dlmexp->exp_connection = ptlrpc_connection_addref(conn);
302                 class_export_put(dlmexp);
303
304         }
305
306         request = ptlrpc_prep_req(imp, imp->imp_connect_op, 3, size, tmp);
307         if (!request)
308                 GOTO(out, rc = -ENOMEM);
309
310 #ifndef __KERNEL__
311         lustre_msg_add_op_flags(request->rq_reqmsg, MSG_CONNECT_LIBCLIENT);
312 #endif
313
314         request->rq_send_state = LUSTRE_IMP_CONNECTING;
315         request->rq_replen = lustre_msg_size(0, NULL);
316         request->rq_interpret_reply = ptlrpc_connect_interpret;
317
318         LASSERT (sizeof (*aa) <= sizeof (request->rq_async_args));
319         aa = (struct ptlrpc_connect_async_args *)&request->rq_async_args;
320         memset(aa, 0, sizeof *aa);
321
322         aa->pcaa_peer_committed = committed_before_reconnect;
323         aa->pcaa_initial_connect = initial_connect;
324
325         if (aa->pcaa_initial_connect)
326                 imp->imp_replayable = 1;
327
328         ptlrpcd_add_req(request);
329         rc = 0;
330         imp->imp_connect_start = jiffies;
331 out:
332         if (rc != 0) {
333                 IMPORT_SET_STATE(imp, LUSTRE_IMP_DISCON);
334         }
335
336         RETURN(rc);
337 }
338
339 static int ptlrpc_connect_interpret(struct ptlrpc_request *request,
340                                     void * data, int rc)
341 {
342         struct ptlrpc_connect_async_args *aa = data;
343         struct obd_import *imp = request->rq_import;
344         struct lustre_handle old_hdl;
345         unsigned long flags;
346         int msg_flags;
347         ENTRY;
348
349         spin_lock_irqsave(&imp->imp_lock, flags);
350         if (imp->imp_state == LUSTRE_IMP_CLOSED) {
351                 spin_unlock_irqrestore(&imp->imp_lock, flags);
352                 RETURN(0);
353         }
354         spin_unlock_irqrestore(&imp->imp_lock, flags);
355
356         if (rc)
357                 GOTO(out, rc);
358
359         msg_flags = lustre_msg_get_op_flags(request->rq_repmsg);
360
361         if (aa->pcaa_initial_connect) {
362                 if (msg_flags & MSG_CONNECT_REPLAYABLE) {
363                         CDEBUG(D_HA, "connected to replayable target: %s\n",
364                                imp->imp_target_uuid.uuid);
365                         imp->imp_pingable = imp->imp_replayable = 1;
366                 } else {
367                         imp->imp_replayable = 0;
368                 }
369                 imp->imp_remote_handle = request->rq_repmsg->handle;
370                 IMPORT_SET_STATE(imp, LUSTRE_IMP_FULL);
371                 GOTO(finish, rc = 0);
372         }
373
374         /* Determine what recovery state to move the import to. */
375         if (MSG_CONNECT_RECONNECT & msg_flags) {
376                 memset(&old_hdl, 0, sizeof(old_hdl));
377                 if (!memcmp(&old_hdl, &request->rq_repmsg->handle,
378                             sizeof (old_hdl))) {
379                         CERROR("%s@%s didn't like our handle "LPX64
380                                ", failed\n", imp->imp_target_uuid.uuid,
381                                imp->imp_connection->c_remote_uuid.uuid,
382                                imp->imp_dlm_handle.cookie);
383                         GOTO(out, rc = -ENOTCONN);
384                 }
385
386                 if (memcmp(&imp->imp_remote_handle, &request->rq_repmsg->handle,
387                            sizeof(imp->imp_remote_handle))) {
388                         CERROR("%s@%s changed handle from "LPX64" to "LPX64
389                                "; copying, but this may foreshadow disaster\n",
390                                imp->imp_target_uuid.uuid,
391                                imp->imp_connection->c_remote_uuid.uuid,
392                                imp->imp_remote_handle.cookie,
393                                request->rq_repmsg->handle.cookie);
394                         imp->imp_remote_handle = request->rq_repmsg->handle;
395                 } else {
396                         CERROR("reconnected to %s@%s after partition\n",
397                                imp->imp_target_uuid.uuid,
398                                imp->imp_connection->c_remote_uuid.uuid);
399                 }
400
401                 if (imp->imp_invalid)
402                         IMPORT_SET_STATE(imp, LUSTRE_IMP_EVICTED);
403                 else
404                         IMPORT_SET_STATE(imp, LUSTRE_IMP_RECOVER);
405         } else if ((MSG_CONNECT_RECOVERING & msg_flags) && !imp->imp_invalid) {
406                 LASSERT(imp->imp_replayable);
407                 imp->imp_remote_handle = request->rq_repmsg->handle;
408                 IMPORT_SET_STATE(imp, LUSTRE_IMP_REPLAY);
409         } else {
410                 imp->imp_remote_handle = request->rq_repmsg->handle;
411                 IMPORT_SET_STATE(imp, LUSTRE_IMP_EVICTED);
412         }
413
414         /* Sanity checks for a reconnected import. */
415         if (!(imp->imp_replayable) != !(msg_flags & MSG_CONNECT_REPLAYABLE)) {
416                 CERROR("imp_replayable flag does not match server "
417                        "after reconnect. We should LBUG right here.\n");
418         }
419
420         if (request->rq_repmsg->last_committed < aa->pcaa_peer_committed) {
421                 CERROR("%s went back in time (transno "LPD64
422                        " was previously committed, server now claims "LPD64
423                        ")! is shared storage not coherent?\n",
424                        imp->imp_target_uuid.uuid,
425                        aa->pcaa_peer_committed,
426                        request->rq_repmsg->last_committed);
427         }
428
429 finish:
430         rc = ptlrpc_import_recovery_state_machine(imp);
431         if (rc != 0) {
432                 if (rc == -ENOTCONN) {
433                         CDEBUG(D_HA, "evicted/aborted by %s@%s during recovery;"
434                                "invalidating and reconnecting\n",
435                                imp->imp_target_uuid.uuid,
436                                imp->imp_connection->c_remote_uuid.uuid);
437                         ptlrpc_connect_import(imp, NULL);
438                         RETURN(0);
439                 }
440         }
441  out:
442         if (rc != 0) {
443                 IMPORT_SET_STATE(imp, LUSTRE_IMP_DISCON);
444                 if (aa->pcaa_initial_connect && !imp->imp_initial_recov) {
445                         ptlrpc_deactivate_import(imp);
446                 }
447                 if (rc == -ETIMEDOUT && (jiffies - imp->imp_connect_start) > HZ) {
448                         CDEBUG(D_ERROR, "recovery of %s on %s failed (timeout)\n",
449                                imp->imp_target_uuid.uuid,
450                                (char *)imp->imp_connection->c_remote_uuid.uuid);
451                         ptlrpc_connect_import(imp, NULL);
452                         RETURN(0);
453                 }
454                 CDEBUG(D_ERROR, "recovery of %s on %s failed (%d)\n",
455                        imp->imp_target_uuid.uuid,
456                        (char *)imp->imp_connection->c_remote_uuid.uuid, rc);
457         }
458
459         wake_up(&imp->imp_recovery_waitq);
460         RETURN(rc);
461 }
462
463 static int completed_replay_interpret(struct ptlrpc_request *req,
464                                     void * data, int rc)
465 {
466         atomic_dec(&req->rq_import->imp_replay_inflight);
467         ptlrpc_import_recovery_state_machine(req->rq_import);
468         RETURN(0);
469 }
470
471 static int signal_completed_replay(struct obd_import *imp)
472  {
473         struct ptlrpc_request *req;
474         ENTRY;
475
476         LASSERT(atomic_read(&imp->imp_replay_inflight) == 0);
477         atomic_inc(&imp->imp_replay_inflight);
478
479         req = ptlrpc_prep_req(imp, OBD_PING, 0, NULL, NULL);
480         if (!req)
481                 RETURN(-ENOMEM);
482
483         req->rq_replen = lustre_msg_size(0, NULL);
484         req->rq_send_state = LUSTRE_IMP_REPLAY_WAIT;
485         req->rq_reqmsg->flags |= MSG_LAST_REPLAY;
486         req->rq_timeout *= 3;
487         req->rq_interpret_reply = completed_replay_interpret;
488
489         ptlrpcd_add_req(req);
490         RETURN(0);
491 }
492
493 int ptlrpc_import_recovery_state_machine(struct obd_import *imp)
494 {
495         int rc = 0;
496         int inflight;
497
498         if (imp->imp_state == LUSTRE_IMP_EVICTED) {
499                 CDEBUG(D_HA, "evicted from %s@%s; invalidating\n",
500                        imp->imp_target_uuid.uuid,
501                        imp->imp_connection->c_remote_uuid.uuid);
502
503                 ptlrpc_invalidate_import(imp, 1);
504
505                 IMPORT_SET_STATE(imp, LUSTRE_IMP_RECOVER);
506         }
507
508         if (imp->imp_state == LUSTRE_IMP_REPLAY) {
509                 CDEBUG(D_HA, "replay requested by %s\n",
510                        imp->imp_target_uuid.uuid);
511                 rc = ptlrpc_replay_next(imp, &inflight);
512                 if (inflight == 0 &&
513                     atomic_read(&imp->imp_replay_inflight) == 0) {
514                         IMPORT_SET_STATE(imp, LUSTRE_IMP_REPLAY_LOCKS);
515                         rc = ldlm_replay_locks(imp);
516                         if (rc)
517                                 GOTO(out, rc);
518                 }
519                 rc = 0;
520         }
521
522         if (imp->imp_state == LUSTRE_IMP_REPLAY_LOCKS) {
523                 if (atomic_read(&imp->imp_replay_inflight) == 0) {
524                         IMPORT_SET_STATE(imp, LUSTRE_IMP_REPLAY_WAIT);
525                         rc = signal_completed_replay(imp);
526                         if (rc)
527                                 GOTO(out, rc);
528                 }
529
530         }
531
532         if (imp->imp_state == LUSTRE_IMP_REPLAY_WAIT) {
533                 if (atomic_read(&imp->imp_replay_inflight) == 0) {
534                         IMPORT_SET_STATE(imp, LUSTRE_IMP_RECOVER);
535                 }
536         }
537
538         if (imp->imp_state == LUSTRE_IMP_RECOVER) {
539                 CDEBUG(D_HA, "reconnected to %s@%s\n",
540                        imp->imp_target_uuid.uuid,
541                        imp->imp_connection->c_remote_uuid.uuid);
542
543                 rc = ptlrpc_resend(imp);
544                 if (rc)
545                         GOTO(out, rc);
546                 IMPORT_SET_STATE(imp, LUSTRE_IMP_FULL);
547                 ptlrpc_activate_import(imp);
548         }
549
550         if (imp->imp_state == LUSTRE_IMP_FULL) {
551                 wake_up(&imp->imp_recovery_waitq);
552                 ptlrpc_wake_delayed(imp);
553         }
554
555  out:
556         RETURN(rc);
557 }
558
559 static int back_to_sleep(void *unused)
560 {
561         return 0;
562 }
563
564 int ptlrpc_disconnect_import(struct obd_import *imp)
565 {
566         struct ptlrpc_request *request;
567         int rq_opc;
568         int rc = 0;
569         unsigned long flags;
570         ENTRY;
571
572         switch (imp->imp_connect_op) {
573         case OST_CONNECT: rq_opc = OST_DISCONNECT; break;
574         case MDS_CONNECT: rq_opc = MDS_DISCONNECT; break;
575         case MGMT_CONNECT:rq_opc = MGMT_DISCONNECT;break;
576         default:
577                 CERROR("don't know how to disconnect from %s (connect_op %d)\n",
578                        imp->imp_target_uuid.uuid, imp->imp_connect_op);
579                 RETURN(-EINVAL);
580         }
581
582
583         if (ptlrpc_import_in_recovery(imp)) {
584                 struct l_wait_info lwi;
585                 unsigned long timeout;
586                 if (imp->imp_server_timeout)
587                         timeout = obd_timeout / 2;
588                 else
589                         timeout = obd_timeout;
590                 timeout = MAX(timeout * HZ, 1);
591                 lwi = LWI_TIMEOUT_INTR(obd_timeout, back_to_sleep, NULL, NULL);
592                 rc = l_wait_event(imp->imp_recovery_waitq, 
593                                   !ptlrpc_import_in_recovery(imp), &lwi);
594
595         }
596
597         spin_lock_irqsave(&imp->imp_lock, flags);
598         if (imp->imp_state != LUSTRE_IMP_FULL) {
599                 GOTO(out, 0);
600         }
601         spin_unlock_irqrestore(&imp->imp_lock, flags);
602
603         request = ptlrpc_prep_req(imp, rq_opc, 0, NULL, NULL);
604         if (request) {
605                 /* For non-replayable connections, don't attempt
606                    reconnect if this fails */
607                 if (!imp->imp_replayable) {
608                         request->rq_no_resend = 1;
609                         IMPORT_SET_STATE(imp, LUSTRE_IMP_CONNECTING);
610                         request->rq_send_state =  LUSTRE_IMP_CONNECTING;
611                 }
612                 request->rq_replen = lustre_msg_size(0, NULL);
613                 rc = ptlrpc_queue_wait(request);
614                 ptlrpc_req_finished(request);
615         }
616
617         spin_lock_irqsave(&imp->imp_lock, flags);
618 out:
619         IMPORT_SET_STATE_NOLOCK(imp, LUSTRE_IMP_CLOSED);
620         memset(&imp->imp_remote_handle, 0, sizeof(imp->imp_remote_handle));
621         spin_unlock_irqrestore(&imp->imp_lock, flags);
622
623         RETURN(rc);
624 }
625