Whamcloud - gitweb
- merge 2 weeks of b1_4 fixes 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 static 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 out:
331         if (rc != 0) {
332                 IMPORT_SET_STATE(imp, LUSTRE_IMP_DISCON);
333         }
334
335         RETURN(rc);
336 }
337
338 static int ptlrpc_connect_interpret(struct ptlrpc_request *request,
339                                     void * data, int rc)
340 {
341         struct ptlrpc_connect_async_args *aa = data;
342         struct obd_import *imp = request->rq_import;
343         struct lustre_handle old_hdl;
344         unsigned long flags;
345         int msg_flags;
346         ENTRY;
347
348         spin_lock_irqsave(&imp->imp_lock, flags);
349         if (imp->imp_state == LUSTRE_IMP_CLOSED) {
350                 spin_unlock_irqrestore(&imp->imp_lock, flags);
351                 RETURN(0);
352         }
353         spin_unlock_irqrestore(&imp->imp_lock, flags);
354
355         if (rc)
356                 GOTO(out, rc);
357
358         msg_flags = lustre_msg_get_op_flags(request->rq_repmsg);
359
360         if (aa->pcaa_initial_connect) {
361                 if (msg_flags & MSG_CONNECT_REPLAYABLE) {
362                         CDEBUG(D_HA, "connected to replayable target: %s\n",
363                                imp->imp_target_uuid.uuid);
364                         imp->imp_pingable = imp->imp_replayable = 1;
365                 } else {
366                         imp->imp_replayable = 0;
367                 }
368                 imp->imp_remote_handle = request->rq_repmsg->handle;
369                 IMPORT_SET_STATE(imp, LUSTRE_IMP_FULL);
370                 GOTO(finish, rc = 0);
371         }
372
373         /* Determine what recovery state to move the import to. */
374         if (MSG_CONNECT_RECONNECT & msg_flags) {
375                 memset(&old_hdl, 0, sizeof(old_hdl));
376                 if (!memcmp(&old_hdl, &request->rq_repmsg->handle,
377                             sizeof (old_hdl))) {
378                         CERROR("%s@%s didn't like our handle "LPX64
379                                ", failed\n", imp->imp_target_uuid.uuid,
380                                imp->imp_connection->c_remote_uuid.uuid,
381                                imp->imp_dlm_handle.cookie);
382                         GOTO(out, rc = -ENOTCONN);
383                 }
384
385                 if (memcmp(&imp->imp_remote_handle, &request->rq_repmsg->handle,
386                            sizeof(imp->imp_remote_handle))) {
387                         CERROR("%s@%s changed handle from "LPX64" to "LPX64
388                                "; copying, but this may foreshadow disaster\n",
389                                imp->imp_target_uuid.uuid,
390                                imp->imp_connection->c_remote_uuid.uuid,
391                                imp->imp_remote_handle.cookie,
392                                request->rq_repmsg->handle.cookie);
393                         imp->imp_remote_handle = request->rq_repmsg->handle;
394                 } else {
395                         CERROR("reconnected to %s@%s after partition\n",
396                                imp->imp_target_uuid.uuid,
397                                imp->imp_connection->c_remote_uuid.uuid);
398                 }
399
400                 if (imp->imp_invalid)
401                         IMPORT_SET_STATE(imp, LUSTRE_IMP_EVICTED);
402                 else
403                         IMPORT_SET_STATE(imp, LUSTRE_IMP_RECOVER);
404         } else if ((MSG_CONNECT_RECOVERING & msg_flags) && !imp->imp_invalid) {
405                 LASSERT(imp->imp_replayable);
406                 imp->imp_remote_handle = request->rq_repmsg->handle;
407                 IMPORT_SET_STATE(imp, LUSTRE_IMP_REPLAY);
408         } else {
409                 imp->imp_remote_handle = request->rq_repmsg->handle;
410                 IMPORT_SET_STATE(imp, LUSTRE_IMP_EVICTED);
411         }
412
413         /* Sanity checks for a reconnected import. */
414         if (!(imp->imp_replayable) != !(msg_flags & MSG_CONNECT_REPLAYABLE)) {
415                 CERROR("imp_replayable flag does not match server "
416                        "after reconnect. We should LBUG right here.\n");
417         }
418
419         if (request->rq_repmsg->last_committed < aa->pcaa_peer_committed) {
420                 CERROR("%s went back in time (transno "LPD64
421                        " was previously committed, server now claims "LPD64
422                        ")! is shared storage not coherent?\n",
423                        imp->imp_target_uuid.uuid,
424                        aa->pcaa_peer_committed,
425                        request->rq_repmsg->last_committed);
426         }
427
428 finish:
429         rc = ptlrpc_import_recovery_state_machine(imp);
430         if (rc != 0) {
431                 if (rc == -ENOTCONN) {
432                         CDEBUG(D_HA, "evicted/aborted by %s@%s during recovery;"
433                                "invalidating and reconnecting\n",
434                                imp->imp_target_uuid.uuid,
435                                imp->imp_connection->c_remote_uuid.uuid);
436                         ptlrpc_connect_import(imp, NULL);
437                         RETURN(0);
438                 }
439         }
440  out:
441         if (rc != 0) {
442                 IMPORT_SET_STATE(imp, LUSTRE_IMP_DISCON);
443                 if (aa->pcaa_initial_connect && !imp->imp_initial_recov) {
444                         ptlrpc_deactivate_import(imp);
445                 }
446                 /*if (rc == -ETIMEDOUT) {
447                         CDEBUG(D_ERROR, "recovery of %s on %s failed (timeout)\n",
448                                imp->imp_target_uuid.uuid,
449                                (char *)imp->imp_connection->c_remote_uuid.uuid);
450                         ptlrpc_connect_import(imp, NULL);
451                         RETURN(0);
452                 }*/
453                 CDEBUG(D_ERROR, "recovery of %s on %s failed (%d)\n",
454                        imp->imp_target_uuid.uuid,
455                        (char *)imp->imp_connection->c_remote_uuid.uuid, rc);
456         }
457
458         wake_up(&imp->imp_recovery_waitq);
459         RETURN(rc);
460 }
461
462 static int completed_replay_interpret(struct ptlrpc_request *req,
463                                     void * data, int rc)
464 {
465         atomic_dec(&req->rq_import->imp_replay_inflight);
466         ptlrpc_import_recovery_state_machine(req->rq_import);
467         RETURN(0);
468 }
469
470 static int signal_completed_replay(struct obd_import *imp)
471  {
472         struct ptlrpc_request *req;
473         ENTRY;
474
475         LASSERT(atomic_read(&imp->imp_replay_inflight) == 0);
476         atomic_inc(&imp->imp_replay_inflight);
477
478         req = ptlrpc_prep_req(imp, OBD_PING, 0, NULL, NULL);
479         if (!req)
480                 RETURN(-ENOMEM);
481
482         req->rq_replen = lustre_msg_size(0, NULL);
483         req->rq_send_state = LUSTRE_IMP_REPLAY_WAIT;
484         req->rq_reqmsg->flags |= MSG_LAST_REPLAY;
485         req->rq_timeout *= 3;
486         req->rq_interpret_reply = completed_replay_interpret;
487
488         ptlrpcd_add_req(req);
489         RETURN(0);
490 }
491
492 int ptlrpc_import_recovery_state_machine(struct obd_import *imp)
493 {
494         int rc = 0;
495         int inflight;
496
497         if (imp->imp_state == LUSTRE_IMP_EVICTED) {
498                 CDEBUG(D_HA, "evicted from %s@%s; invalidating\n",
499                        imp->imp_target_uuid.uuid,
500                        imp->imp_connection->c_remote_uuid.uuid);
501
502                 ptlrpc_invalidate_import(imp, 1);
503
504                 IMPORT_SET_STATE(imp, LUSTRE_IMP_RECOVER);
505         }
506
507         if (imp->imp_state == LUSTRE_IMP_REPLAY) {
508                 CDEBUG(D_HA, "replay requested by %s\n",
509                        imp->imp_target_uuid.uuid);
510                 rc = ptlrpc_replay_next(imp, &inflight);
511                 if (inflight == 0 &&
512                     atomic_read(&imp->imp_replay_inflight) == 0) {
513                         IMPORT_SET_STATE(imp, LUSTRE_IMP_REPLAY_LOCKS);
514                         rc = ldlm_replay_locks(imp);
515                         if (rc)
516                                 GOTO(out, rc);
517                 }
518                 rc = 0;
519         }
520
521         if (imp->imp_state == LUSTRE_IMP_REPLAY_LOCKS) {
522                 if (atomic_read(&imp->imp_replay_inflight) == 0) {
523                         IMPORT_SET_STATE(imp, LUSTRE_IMP_REPLAY_WAIT);
524                         rc = signal_completed_replay(imp);
525                         if (rc)
526                                 GOTO(out, rc);
527                 }
528
529         }
530
531         if (imp->imp_state == LUSTRE_IMP_REPLAY_WAIT) {
532                 if (atomic_read(&imp->imp_replay_inflight) == 0) {
533                         IMPORT_SET_STATE(imp, LUSTRE_IMP_RECOVER);
534                 }
535         }
536
537         if (imp->imp_state == LUSTRE_IMP_RECOVER) {
538                 CDEBUG(D_HA, "reconnected to %s@%s\n",
539                        imp->imp_target_uuid.uuid,
540                        imp->imp_connection->c_remote_uuid.uuid);
541
542                 rc = ptlrpc_resend(imp);
543                 if (rc)
544                         GOTO(out, rc);
545                 IMPORT_SET_STATE(imp, LUSTRE_IMP_FULL);
546                 ptlrpc_activate_import(imp);
547         }
548
549         if (imp->imp_state == LUSTRE_IMP_FULL) {
550                 wake_up(&imp->imp_recovery_waitq);
551                 ptlrpc_wake_delayed(imp);
552         }
553
554  out:
555         RETURN(rc);
556 }
557
558 static int back_to_sleep(void *unused)
559 {
560         return 0;
561 }
562
563 int ptlrpc_disconnect_import(struct obd_import *imp)
564 {
565         struct ptlrpc_request *request;
566         int rq_opc;
567         int rc = 0;
568         unsigned long flags;
569         ENTRY;
570
571         switch (imp->imp_connect_op) {
572         case OST_CONNECT: rq_opc = OST_DISCONNECT; break;
573         case MDS_CONNECT: rq_opc = MDS_DISCONNECT; break;
574         case MGMT_CONNECT:rq_opc = MGMT_DISCONNECT;break;
575         default:
576                 CERROR("don't know how to disconnect from %s (connect_op %d)\n",
577                        imp->imp_target_uuid.uuid, imp->imp_connect_op);
578                 RETURN(-EINVAL);
579         }
580
581
582         if (ptlrpc_import_in_recovery(imp)) {
583                 struct l_wait_info lwi;
584                 unsigned long timeout;
585                 if (imp->imp_server_timeout)
586                         timeout = obd_timeout / 2;
587                 else
588                         timeout = obd_timeout;
589                 timeout = MAX(timeout * HZ, 1);
590                 lwi = LWI_TIMEOUT_INTR(obd_timeout, back_to_sleep, NULL, NULL);
591                 rc = l_wait_event(imp->imp_recovery_waitq, 
592                                   !ptlrpc_import_in_recovery(imp), &lwi);
593
594         }
595
596         spin_lock_irqsave(&imp->imp_lock, flags);
597         if (imp->imp_state != LUSTRE_IMP_FULL) {
598                 GOTO(out, 0);
599         }
600         spin_unlock_irqrestore(&imp->imp_lock, flags);
601
602         request = ptlrpc_prep_req(imp, rq_opc, 0, NULL, NULL);
603         if (request) {
604                 /* For non-replayable connections, don't attempt
605                    reconnect if this fails */
606                 if (!imp->imp_replayable) {
607                         request->rq_no_resend = 1;
608                         IMPORT_SET_STATE(imp, LUSTRE_IMP_CONNECTING);
609                         request->rq_send_state =  LUSTRE_IMP_CONNECTING;
610                 }
611                 request->rq_replen = lustre_msg_size(0, NULL);
612                 rc = ptlrpc_queue_wait(request);
613                 ptlrpc_req_finished(request);
614         }
615
616         spin_lock_irqsave(&imp->imp_lock, flags);
617 out:
618         IMPORT_SET_STATE_NOLOCK(imp, LUSTRE_IMP_CLOSED);
619         memset(&imp->imp_remote_handle, 0, sizeof(imp->imp_remote_handle));
620         spin_unlock_irqrestore(&imp->imp_lock, flags);
621
622         RETURN(rc);
623 }
624