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