Whamcloud - gitweb
don't resend llog cancels,
[fs/lustre-release.git] / lustre / ptlrpc / recov_thread.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/ptlrpc/recov_thread.c
37  *
38  * OST<->MDS recovery logging thread.
39  * Invariants in implementation:
40  * - we do not share logs among different OST<->MDS connections, so that
41  *   if an OST or MDS fails it need only look at log(s) relevant to itself
42  *
43  * Author: Andreas Dilger   <adilger@clusterfs.com>
44  *         Yury Umanets     <yury.umanets@sun.com>
45  *         Alexey Lyashkov  <alexey.lyashkov@sun.com>
46  */
47
48 #define DEBUG_SUBSYSTEM S_LOG
49
50 #ifndef EXPORT_SYMTAB
51 # define EXPORT_SYMTAB
52 #endif
53
54 #ifdef __KERNEL__
55 # include <libcfs/libcfs.h>
56 #else
57 # include <libcfs/list.h>
58 # include <liblustre.h>
59 #endif
60
61 #include <obd_class.h>
62 #include <obd_support.h>
63 #include <obd_class.h>
64 #include <lustre_net.h>
65 #include <lnet/types.h>
66 #include <libcfs/list.h>
67 #include <lustre_log.h>
68 #include "ptlrpc_internal.h"
69
70 static atomic_t                   llcd_count = ATOMIC_INIT(0);
71 static cfs_mem_cache_t           *llcd_cache = NULL;
72
73 #ifdef __KERNEL__
74 enum {
75         LLOG_LCM_FL_START       = 1 << 0,
76         LLOG_LCM_FL_EXIT        = 1 << 1
77 };
78
79 static void llcd_print(struct llog_canceld_ctxt *llcd, 
80                        const char *func, int line) 
81 {
82         CDEBUG(D_RPCTRACE, "Llcd (%p) at %s:%d:\n", llcd, func, line);
83         CDEBUG(D_RPCTRACE, "  size: %d\n", llcd->llcd_size);
84         CDEBUG(D_RPCTRACE, "  ctxt: %p\n", llcd->llcd_ctxt);
85         CDEBUG(D_RPCTRACE, "  lcm : %p\n", llcd->llcd_lcm);
86         CDEBUG(D_RPCTRACE, "  cookiebytes : %d\n", llcd->llcd_cookiebytes);
87 }
88
89 /**
90  * Allocate new llcd from cache, init it and return to caller.
91  * Bumps number of objects allocated.
92  */
93 static struct llog_canceld_ctxt *llcd_alloc(struct llog_commit_master *lcm)
94 {
95         struct llog_canceld_ctxt *llcd;
96         int size, overhead;
97
98         LASSERT(lcm != NULL);
99
100         /*
101          * We want to send one page of cookies with rpc header. This buffer
102          * will be assigned later to the rpc, this is why we preserve the
103          * space for rpc header.
104          */
105         size = CFS_PAGE_SIZE - lustre_msg_size(LUSTRE_MSG_MAGIC_V2, 1, NULL);
106         overhead =  offsetof(struct llog_canceld_ctxt, llcd_cookies);
107         OBD_SLAB_ALLOC(llcd, llcd_cache, CFS_ALLOC_STD, size + overhead);
108         if (!llcd)
109                 return NULL;
110
111         CFS_INIT_LIST_HEAD(&llcd->llcd_list);
112         llcd->llcd_cookiebytes = 0;
113         llcd->llcd_size = size;
114
115         spin_lock(&lcm->lcm_lock);
116         llcd->llcd_lcm = lcm;
117         atomic_inc(&lcm->lcm_count);
118         list_add_tail(&llcd->llcd_list, &lcm->lcm_llcds);
119         spin_unlock(&lcm->lcm_lock);
120         atomic_inc(&llcd_count);
121
122         CDEBUG(D_RPCTRACE, "Alloc llcd %p on lcm %p (%d)\n",
123                llcd, lcm, atomic_read(&lcm->lcm_count));
124
125         return llcd;
126 }
127
128 /**
129  * Returns passed llcd to cache.
130  */
131 static void llcd_free(struct llog_canceld_ctxt *llcd)
132 {
133         struct llog_commit_master *lcm = llcd->llcd_lcm;
134         int size;
135
136         if (lcm) {
137                 if (atomic_read(&lcm->lcm_count) == 0) {
138                         CERROR("Invalid llcd free %p\n", llcd);
139                         llcd_print(llcd, __FUNCTION__, __LINE__);
140                         LBUG();
141                 }
142                 spin_lock(&lcm->lcm_lock);
143                 LASSERT(!list_empty(&llcd->llcd_list));
144                 list_del_init(&llcd->llcd_list);
145                 atomic_dec(&lcm->lcm_count);
146                 spin_unlock(&lcm->lcm_lock);
147
148                 CDEBUG(D_RPCTRACE, "Free llcd %p on lcm %p (%d)\n", 
149                        llcd, lcm, atomic_read(&lcm->lcm_count));
150         }
151
152         LASSERT(atomic_read(&llcd_count) > 0);
153         atomic_dec(&llcd_count);
154
155         size = offsetof(struct llog_canceld_ctxt, llcd_cookies) + 
156             llcd->llcd_size;
157         OBD_SLAB_FREE(llcd, llcd_cache, size);
158 }
159
160 /**
161  * Checks if passed cookie fits into llcd free space buffer. Returns
162  * 1 if yes and 0 otherwise.
163  */
164 static inline int 
165 llcd_fit(struct llog_canceld_ctxt *llcd, struct llog_cookie *cookies)
166 {
167         return (llcd->llcd_size - llcd->llcd_cookiebytes >= sizeof(*cookies));
168 }
169
170 /**
171  * Copy passed @cookies to @llcd.
172  */
173 static inline void 
174 llcd_copy(struct llog_canceld_ctxt *llcd, struct llog_cookie *cookies)
175 {
176         LASSERT(llcd_fit(llcd, cookies));
177         memcpy((char *)llcd->llcd_cookies + llcd->llcd_cookiebytes, 
178               cookies, sizeof(*cookies));
179         llcd->llcd_cookiebytes += sizeof(*cookies);
180 }
181
182 /**
183  * Llcd completion function. Called uppon llcd send finish regardless
184  * sending result. Error is passed in @rc. Note, that this will be called
185  * in cleanup time when all inflight rpcs aborted.
186  */
187 static int
188 llcd_interpret(const struct lu_env *env,
189                struct ptlrpc_request *req, void *noused, int rc)
190 {
191         struct llog_canceld_ctxt *llcd = req->rq_async_args.pointer_arg[0];
192         CDEBUG(D_RPCTRACE, "Sent llcd %p (%d) - killing it\n", llcd, rc);
193         llcd_free(llcd);
194         return 0;
195 }
196
197 /**
198  * Send @llcd to remote node. Free llcd uppon completion or error. Sending
199  * is performed in async style so this function will return asap without
200  * blocking.
201  */
202 static int llcd_send(struct llog_canceld_ctxt *llcd)
203 {
204         char *bufs[2] = { NULL, (char *)llcd->llcd_cookies };
205         struct obd_import *import = NULL;
206         struct llog_commit_master *lcm;
207         struct ptlrpc_request *req;
208         struct llog_ctxt *ctxt;
209         int rc;
210         ENTRY;
211
212         ctxt = llcd->llcd_ctxt;
213         if (!ctxt) {
214                 CERROR("Invalid llcd with NULL ctxt found (%p)\n",
215                        llcd);
216                 llcd_print(llcd, __FUNCTION__, __LINE__);
217                 LBUG();
218         }
219         LASSERT_SEM_LOCKED(&ctxt->loc_sem);
220
221         if (llcd->llcd_cookiebytes == 0)
222                 GOTO(exit, rc = 0);
223
224         lcm = llcd->llcd_lcm;
225
226         /*
227          * Check if we're in exit stage. Do not send llcd in
228          * this case.
229          */
230         if (test_bit(LLOG_LCM_FL_EXIT, &lcm->lcm_flags))
231                 GOTO(exit, rc = -ENODEV);
232
233         CDEBUG(D_RPCTRACE, "Sending llcd %p\n", llcd);
234
235         import = llcd->llcd_ctxt->loc_imp;
236         if (!import || (import == LP_POISON) ||
237             (import->imp_client == LP_POISON)) {
238                 CERROR("Invalid import %p for llcd %p\n",
239                        import, llcd);
240                 GOTO(exit, rc = -ENODEV);
241         }
242
243         OBD_FAIL_TIMEOUT(OBD_FAIL_PTLRPC_DELAY_RECOV, 10);
244
245         /*
246          * No need to get import here as it is already done in
247          * llog_receptor_accept().
248          */
249         req = ptlrpc_request_alloc(import, &RQF_LOG_CANCEL);
250         if (req == NULL) {
251                 CERROR("Can't allocate request for sending llcd %p\n",
252                        llcd);
253                 GOTO(exit, rc = -ENOMEM);
254         }
255         req_capsule_set_size(&req->rq_pill, &RMF_LOGCOOKIES,
256                              RCL_CLIENT, llcd->llcd_cookiebytes);
257
258         rc = ptlrpc_request_bufs_pack(req, LUSTRE_LOG_VERSION,
259                                       OBD_LOG_CANCEL, bufs, NULL);
260         if (rc) {
261                 ptlrpc_request_free(req);
262                 GOTO(exit, rc);
263         }
264
265         ptlrpc_at_set_req_timeout(req);
266         ptlrpc_request_set_replen(req);
267
268         /* bug 5515 */
269         req->rq_request_portal = LDLM_CANCEL_REQUEST_PORTAL;
270         req->rq_reply_portal = LDLM_CANCEL_REPLY_PORTAL;
271         req->rq_interpret_reply = (ptlrpc_interpterer_t)llcd_interpret;
272         req->rq_async_args.pointer_arg[0] = llcd;
273
274         /* llog cancels will be replayed after reconnect so this will do twice
275          * first from replay llog, second for resended rpc */
276         req->rq_no_delay = req->rq_no_resend = 1;
277
278         rc = ptlrpc_set_add_new_req(&lcm->lcm_pc, req);
279         if (rc) {
280                 ptlrpc_request_free(req);
281                 GOTO(exit, rc);
282         }
283         RETURN(0);
284 exit:
285         CDEBUG(D_RPCTRACE, "Refused llcd %p\n", llcd);
286         llcd_free(llcd);
287         return rc;
288 }
289
290 /**
291  * Attach @llcd to @ctxt. Establish llcd vs. ctxt reserve connection
292  * so hat they can refer each other.
293  */
294 static int
295 llcd_attach(struct llog_ctxt *ctxt, struct llog_canceld_ctxt *llcd)
296 {
297         LASSERT(ctxt != NULL && llcd != NULL);
298         LASSERT_SEM_LOCKED(&ctxt->loc_sem);
299         LASSERT(ctxt->loc_llcd == NULL);
300         llcd->llcd_ctxt = llog_ctxt_get(ctxt);
301         ctxt->loc_llcd = llcd;
302
303         CDEBUG(D_RPCTRACE, "Attach llcd %p to ctxt %p\n",
304                llcd, ctxt);
305
306         return 0;
307 }
308
309 /**
310  * Opposite to llcd_attach(). Detaches llcd from its @ctxt. This makes
311  * sure that this llcd will not be found another time we try to cancel.
312  */
313 static struct llog_canceld_ctxt *llcd_detach(struct llog_ctxt *ctxt)
314 {
315         struct llog_canceld_ctxt *llcd;
316
317         LASSERT(ctxt != NULL);
318         LASSERT_SEM_LOCKED(&ctxt->loc_sem);
319
320         llcd = ctxt->loc_llcd;
321         if (!llcd)
322                 return NULL;
323
324         CDEBUG(D_RPCTRACE, "Detach llcd %p from ctxt %p\n", 
325                llcd, ctxt);
326
327         ctxt->loc_llcd = NULL;
328         llog_ctxt_put(ctxt);
329         return llcd;
330 }
331
332 /**
333  * Return @llcd cached in @ctxt. Allocate new one if required. Attach it
334  * to ctxt so that it may be used for gathering cookies and sending.
335  */
336 static struct llog_canceld_ctxt *llcd_get(struct llog_ctxt *ctxt)
337 {
338         struct llog_canceld_ctxt *llcd;
339
340         llcd = llcd_alloc(ctxt->loc_lcm);
341         if (!llcd) {
342                 CERROR("Can't alloc an llcd for ctxt %p\n", ctxt);
343                 return NULL;
344         }
345         llcd_attach(ctxt, llcd);
346         return llcd;
347 }
348
349 /**
350  * Deatch llcd from its @ctxt. Free llcd.
351  */
352 static void llcd_put(struct llog_ctxt *ctxt)
353 {
354         struct llog_canceld_ctxt *llcd;
355
356         llcd = llcd_detach(ctxt);
357         if (llcd)
358                 llcd_free(llcd);
359 }
360
361 /**
362  * Detach llcd from its @ctxt so that nobody will find it with try to
363  * re-use. Send llcd to remote node.
364  */
365 static int llcd_push(struct llog_ctxt *ctxt)
366 {
367         struct llog_canceld_ctxt *llcd;
368         int rc;
369
370         /*
371          * Make sure that this llcd will not be sent again as we detach
372          * it from ctxt.
373          */
374         llcd = llcd_detach(ctxt);
375         if (!llcd) {
376                 CERROR("Invalid detached llcd found %p\n", llcd);
377                 llcd_print(llcd, __FUNCTION__, __LINE__);
378                 LBUG();
379         }
380
381         rc = llcd_send(llcd);
382         if (rc)
383                 CERROR("Couldn't send llcd %p (%d)\n", llcd, rc);
384         return rc;
385 }
386
387 /**
388  * Start recovery thread which actually deals llcd sending. This
389  * is all ptlrpc standard thread based so there is not much of work
390  * to do.
391  */
392 int llog_recov_thread_start(struct llog_commit_master *lcm)
393 {
394         int rc;
395         ENTRY;
396
397         rc = ptlrpcd_start(lcm->lcm_name, &lcm->lcm_pc);
398         if (rc) {
399                 CERROR("Error %d while starting recovery thread %s\n",
400                        rc, lcm->lcm_name);
401                 RETURN(rc);
402         }
403         RETURN(rc);
404 }
405 EXPORT_SYMBOL(llog_recov_thread_start);
406
407 /**
408  * Stop recovery thread. Complement to llog_recov_thread_start().
409  */
410 void llog_recov_thread_stop(struct llog_commit_master *lcm, int force)
411 {
412         ENTRY;
413
414         /*
415          * Let all know that we're stopping. This will also make
416          * llcd_send() refuse any new llcds.
417          */
418         set_bit(LLOG_LCM_FL_EXIT, &lcm->lcm_flags);
419
420         /*
421          * Stop processing thread. No new rpcs will be accepted for
422          * for processing now.
423          */
424         ptlrpcd_stop(&lcm->lcm_pc, force);
425
426         /*
427          * By this point no alive inflight llcds should be left. Only
428          * those forgotten in sync may still be attached to ctxt. Let's
429          * print them.
430          */
431         if (atomic_read(&lcm->lcm_count) != 0) {
432                 struct llog_canceld_ctxt *llcd;
433                 struct list_head         *tmp;
434
435                 CERROR("Busy llcds found (%d) on lcm %p\n", 
436                        atomic_read(&lcm->lcm_count) == 0, lcm);
437
438                 spin_lock(&lcm->lcm_lock);
439                 list_for_each(tmp, &lcm->lcm_llcds) {
440                         llcd = list_entry(tmp, struct llog_canceld_ctxt,
441                                           llcd_list);
442                         llcd_print(llcd, __FUNCTION__, __LINE__);
443                 }
444                 spin_unlock(&lcm->lcm_lock);
445                 
446                 /*
447                  * No point to go further with busy llcds at this point
448                  * as this is clear bug. It might mean we got hanging
449                  * rpc which holds import ref and this means we will not
450                  * be able to cleanup anyways.
451                  *
452                  * Or we just missed to kill them when they were not
453                  * attached to ctxt. In this case our slab will remind
454                  * us about this a bit later.
455                  */
456                 LBUG();
457         }
458         EXIT;
459 }
460 EXPORT_SYMBOL(llog_recov_thread_stop);
461
462 /**
463  * Initialize commit master structure and start recovery thread on it.
464  */
465 struct llog_commit_master *llog_recov_thread_init(char *name)
466 {
467         struct llog_commit_master *lcm;
468         int rc;
469         ENTRY;
470
471         OBD_ALLOC_PTR(lcm);
472         if (!lcm)
473                 RETURN(NULL);
474
475         /*
476          * Try to create threads with unique names.
477          */
478         snprintf(lcm->lcm_name, sizeof(lcm->lcm_name),
479                  "ll_log_commit_%s", name);
480
481         atomic_set(&lcm->lcm_count, 0);
482         spin_lock_init(&lcm->lcm_lock);
483         CFS_INIT_LIST_HEAD(&lcm->lcm_llcds);
484         rc = llog_recov_thread_start(lcm);
485         if (rc) {
486                 CERROR("Can't start commit thread, rc %d\n", rc);
487                 GOTO(out, rc);
488         }
489         RETURN(lcm);
490 out:
491         OBD_FREE_PTR(lcm);
492         return NULL;
493 }
494 EXPORT_SYMBOL(llog_recov_thread_init);
495
496 /**
497  * Finalize commit master and its recovery thread.
498  */
499 void llog_recov_thread_fini(struct llog_commit_master *lcm, int force)
500 {
501         ENTRY;
502         llog_recov_thread_stop(lcm, force);
503         OBD_FREE_PTR(lcm);
504         EXIT;
505 }
506 EXPORT_SYMBOL(llog_recov_thread_fini);
507
508 static int llog_recov_thread_replay(struct llog_ctxt *ctxt,
509                                     void *cb, void *arg)
510 {
511         struct obd_device *obd = ctxt->loc_obd;
512         struct llog_process_cat_args *lpca;
513         int rc;
514         ENTRY;
515
516         if (obd->obd_stopping)
517                 RETURN(-ENODEV);
518
519         /*
520          * This will be balanced in llog_cat_process_thread()
521          */
522         OBD_ALLOC_PTR(lpca);
523         if (!lpca)
524                 RETURN(-ENOMEM);
525
526         lpca->lpca_cb = cb;
527         lpca->lpca_arg = arg;
528
529         /*
530          * This will be balanced in llog_cat_process_thread()
531          */
532         lpca->lpca_ctxt = llog_ctxt_get(ctxt);
533         if (!lpca->lpca_ctxt) {
534                 OBD_FREE_PTR(lpca);
535                 RETURN(-ENODEV);
536         }
537         rc = cfs_kernel_thread(llog_cat_process_thread, lpca,
538                                CLONE_VM | CLONE_FILES);
539         if (rc < 0) {
540                 CERROR("Error starting llog_cat_process_thread(): %d\n", rc);
541                 OBD_FREE_PTR(lpca);
542                 llog_ctxt_put(ctxt);
543         } else {
544                 CDEBUG(D_HA, "Started llog_cat_process_thread(): %d\n", rc);
545                 rc = 0;
546         }
547
548         RETURN(rc);
549 }
550
551 int llog_obd_repl_connect(struct llog_ctxt *ctxt,
552                           struct llog_logid *logid, struct llog_gen *gen,
553                           struct obd_uuid *uuid)
554 {
555         int rc;
556         ENTRY;
557
558         /*
559          * Send back cached llcd from llog before recovery if we have any.
560          * This is void is nothing cached is found there.
561          */
562         llog_sync(ctxt, NULL);
563
564         /*
565          * Start recovery in separate thread.
566          */
567         mutex_down(&ctxt->loc_sem);
568         ctxt->loc_gen = *gen;
569         rc = llog_recov_thread_replay(ctxt, ctxt->llog_proc_cb, logid);
570         mutex_up(&ctxt->loc_sem);
571
572         RETURN(rc);
573 }
574 EXPORT_SYMBOL(llog_obd_repl_connect);
575
576 /**
577  * Deleted objects have a commit callback that cancels the MDS
578  * log record for the deletion. The commit callback calls this
579  * function.
580  */
581 int llog_obd_repl_cancel(struct llog_ctxt *ctxt,
582                          struct lov_stripe_md *lsm, int count,
583                          struct llog_cookie *cookies, int flags)
584 {
585         struct llog_commit_master *lcm;
586         struct llog_canceld_ctxt *llcd;
587         int rc = 0;
588         ENTRY;
589
590         LASSERT(ctxt != NULL);
591
592         mutex_down(&ctxt->loc_sem);
593         lcm = ctxt->loc_lcm;
594
595         /*
596          * Let's check if we have all structures alive. We also check for
597          * possible shutdown. Do nothing if we're stopping.
598          */
599         if (ctxt->loc_imp == NULL) {
600                 CDEBUG(D_RPCTRACE, "No import for ctxt %p\n", ctxt);
601                 GOTO(out, rc = -ENODEV);
602         }
603
604         if (test_bit(LLOG_LCM_FL_EXIT, &lcm->lcm_flags)) {
605                 CDEBUG(D_RPCTRACE, "Commit thread is stopping for ctxt %p\n",
606                        ctxt);
607                 GOTO(out, rc = -ENODEV);
608         }
609
610         llcd = ctxt->loc_llcd;
611
612         if (count > 0 && cookies != NULL) {
613                 /*
614                  * Get new llcd from ctxt if required.
615                  */
616                 if (!llcd) {
617                         llcd = llcd_get(ctxt);
618                         if (!llcd)
619                                 GOTO(out, rc = -ENOMEM);
620                         /*
621                          * Allocation is successful, let's check for stop
622                          * flag again to fall back as soon as possible.
623                          */
624                         if (test_bit(LLOG_LCM_FL_EXIT, &lcm->lcm_flags))
625                                 GOTO(out, rc = -ENODEV);
626                 }
627
628                 /*
629                  * Llcd does not have enough room for @cookies. Let's push
630                  * it out and allocate new one.
631                  */
632                 if (!llcd_fit(llcd, cookies)) {
633                         rc = llcd_push(ctxt);
634                         if (rc)
635                                 GOTO(out, rc);
636                         llcd = llcd_get(ctxt);
637                         if (!llcd)
638                                 GOTO(out, rc = -ENOMEM);
639                         /*
640                          * Allocation is successful, let's check for stop
641                          * flag again to fall back as soon as possible.
642                          */
643                         if (test_bit(LLOG_LCM_FL_EXIT, &lcm->lcm_flags))
644                                 GOTO(out, rc = -ENODEV);
645                 }
646
647                 /*
648                  * Copy cookies to @llcd, no matter old or new allocated
649                  * one.
650                  */
651                 llcd_copy(llcd, cookies);
652         }
653
654         /*
655          * Let's check if we need to send copied @cookies asap. If yes
656          * then do it.
657          */
658         if (llcd && (flags & OBD_LLOG_FL_SENDNOW)) {
659                 CDEBUG(D_RPCTRACE, "Sync llcd %p\n", llcd);
660                 rc = llcd_push(ctxt);
661                 if (rc)
662                         GOTO(out, rc);
663         }
664         EXIT;
665 out:
666         if (rc)
667                 llcd_put(ctxt);
668         mutex_up(&ctxt->loc_sem);
669         return rc;
670 }
671 EXPORT_SYMBOL(llog_obd_repl_cancel);
672
673 int llog_obd_repl_sync(struct llog_ctxt *ctxt, struct obd_export *exp)
674 {
675         int rc = 0;
676         ENTRY;
677
678         /* 
679          * Flush any remaining llcd. 
680          */
681         mutex_down(&ctxt->loc_sem);
682         if (exp && (ctxt->loc_imp == exp->exp_imp_reverse)) {
683                 /*
684                  * This is ost->mds connection, we can't be sure that mds
685                  * can still receive cookies, let's killed the cached llcd.
686                  */
687                 CDEBUG(D_RPCTRACE, "Kill cached llcd\n");
688                 llcd_put(ctxt);
689                 mutex_up(&ctxt->loc_sem);
690         } else {
691                 /* 
692                  * This is either llog_sync() from generic llog code or sync
693                  * on client disconnect. In either way let's do it and send
694                  * llcds to the target with waiting for completion. 
695                  */
696                 CDEBUG(D_RPCTRACE, "Sync cached llcd\n");
697                 mutex_up(&ctxt->loc_sem);
698                 rc = llog_cancel(ctxt, NULL, 0, NULL, OBD_LLOG_FL_SENDNOW);
699         }
700         RETURN(rc);
701 }
702 EXPORT_SYMBOL(llog_obd_repl_sync);
703
704 #else /* !__KERNEL__ */
705
706 int llog_obd_repl_cancel(struct llog_ctxt *ctxt,
707                          struct lov_stripe_md *lsm, int count,
708                          struct llog_cookie *cookies, int flags)
709 {
710         return 0;
711 }
712 #endif
713
714 /**
715  * Module init time fucntion. Initializes slab for llcd objects.
716  */
717 int llog_recov_init(void)
718 {
719         int llcd_size;
720
721         llcd_size = CFS_PAGE_SIZE -
722                 lustre_msg_size(LUSTRE_MSG_MAGIC_V2, 1, NULL);
723         llcd_size += offsetof(struct llog_canceld_ctxt, llcd_cookies);
724         llcd_cache = cfs_mem_cache_create("llcd_cache", llcd_size, 0, 0);
725         if (!llcd_cache) {
726                 CERROR("Error allocating llcd cache\n");
727                 return -ENOMEM;
728         }
729         return 0;
730 }
731
732 /**
733  * Module fini time fucntion. Releases slab for llcd objects.
734  */
735 void llog_recov_fini(void)
736 {
737         /*
738          * Kill llcd cache when thread is stopped and we're sure no
739          * llcd in use left.
740          */
741         if (llcd_cache) {
742                 /*
743                  * In 2.6.22 cfs_mem_cache_destroy() will not return error
744                  * for busy resources. Let's check it another way.
745                  */
746                 LASSERTF(atomic_read(&llcd_count) == 0,
747                          "Can't destroy llcd cache! Number of "
748                          "busy llcds: %d\n", atomic_read(&llcd_count));
749                 cfs_mem_cache_destroy(llcd_cache);
750                 llcd_cache = NULL;
751         }
752 }