4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
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
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
27 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28 * Use is subject to license terms.
30 * Copyright (c) 2012, 2013, Intel Corporation.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
36 * lustre/obdclass/llog_cat.c
38 * OST<->MDS recovery logging infrastructure.
40 * Invariants in implementation:
41 * - we do not share logs among different OST<->MDS connections, so that
42 * if an OST or MDS fails it need only look at log(s) relevant to itself
44 * Author: Andreas Dilger <adilger@clusterfs.com>
45 * Author: Alexey Zhuravlev <alexey.zhuravlev@intel.com>
46 * Author: Mikhail Pershin <mike.pershin@intel.com>
49 #define DEBUG_SUBSYSTEM S_LOG
52 #include <liblustre.h>
55 #include <obd_class.h>
57 #include "llog_internal.h"
59 /* Create a new log handle and add it to the open list.
60 * This log handle will be closed when all of the records in it are removed.
62 * Assumes caller has already pushed us into the kernel context and is locking.
64 static int llog_cat_new_log(const struct lu_env *env,
65 struct llog_handle *cathandle,
66 struct llog_handle *loghandle,
69 struct llog_thread_info *lgi = llog_info(env);
70 struct llog_logid_rec *rec = &lgi->lgi_logid;
71 struct llog_log_hdr *llh;
72 int rc, index, bitmap_size;
75 llh = cathandle->lgh_hdr;
76 bitmap_size = LLOG_BITMAP_SIZE(llh);
78 index = (cathandle->lgh_last_idx + 1) % bitmap_size;
80 /* maximum number of available slots in catlog is bitmap_size - 2 */
81 if (llh->llh_cat_idx == index) {
82 CERROR("no free catalog slots for log...\n");
86 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_LLOG_CREATE_FAILED))
89 rc = llog_create(env, loghandle, th);
90 /* if llog is already created, no need to initialize it */
94 CERROR("%s: can't create new plain llog in catalog: rc = %d\n",
95 loghandle->lgh_ctxt->loc_obd->obd_name, rc);
99 rc = llog_init_handle(env, loghandle,
100 LLOG_F_IS_PLAIN | LLOG_F_ZAP_WHEN_EMPTY,
101 &cathandle->lgh_hdr->llh_tgtuuid);
103 GOTO(out_destroy, rc);
108 spin_lock(&loghandle->lgh_hdr_lock);
110 if (ext2_set_bit(index, llh->llh_bitmap)) {
111 CERROR("argh, index %u already set in log bitmap?\n",
113 spin_unlock(&loghandle->lgh_hdr_lock);
114 LBUG(); /* should never happen */
116 spin_unlock(&loghandle->lgh_hdr_lock);
118 cathandle->lgh_last_idx = index;
119 llh->llh_tail.lrt_index = index;
121 CDEBUG(D_RPCTRACE,"new recovery log "DOSTID":%x for index %u of catalog"
122 DOSTID"\n", POSTID(&loghandle->lgh_id.lgl_oi),
123 loghandle->lgh_id.lgl_ogen, index,
124 POSTID(&cathandle->lgh_id.lgl_oi));
125 /* build the record for this log in the catalog */
126 rec->lid_hdr.lrh_len = sizeof(*rec);
127 rec->lid_hdr.lrh_index = index;
128 rec->lid_hdr.lrh_type = LLOG_LOGID_MAGIC;
129 rec->lid_id = loghandle->lgh_id;
130 rec->lid_tail.lrt_len = sizeof(*rec);
131 rec->lid_tail.lrt_index = index;
133 /* update the catalog: header and record */
134 rc = llog_write_rec(env, cathandle, &rec->lid_hdr,
135 &loghandle->u.phd.phd_cookie, 1, NULL, index, th);
137 GOTO(out_destroy, rc);
139 loghandle->lgh_hdr->llh_cat_idx = index;
142 llog_destroy(env, loghandle);
146 /* Open an existent log handle and add it to the open list.
147 * This log handle will be closed when all of the records in it are removed.
149 * Assumes caller has already pushed us into the kernel context and is locking.
150 * We return a lock on the handle to ensure nobody yanks it from us.
152 * This takes extra reference on llog_handle via llog_handle_get() and require
153 * this reference to be put by caller using llog_handle_put()
155 int llog_cat_id2handle(const struct lu_env *env, struct llog_handle *cathandle,
156 struct llog_handle **res, struct llog_logid *logid)
158 struct llog_handle *loghandle;
163 if (cathandle == NULL)
166 down_write(&cathandle->lgh_lock);
167 cfs_list_for_each_entry(loghandle, &cathandle->u.chd.chd_head,
169 struct llog_logid *cgl = &loghandle->lgh_id;
171 if (ostid_id(&cgl->lgl_oi) == ostid_id(&logid->lgl_oi) &&
172 ostid_seq(&cgl->lgl_oi) == ostid_seq(&logid->lgl_oi)) {
173 if (cgl->lgl_ogen != logid->lgl_ogen) {
174 CERROR("%s: log "DOSTID" generation %x != %x\n",
175 loghandle->lgh_ctxt->loc_obd->obd_name,
176 POSTID(&logid->lgl_oi), cgl->lgl_ogen,
180 loghandle->u.phd.phd_cat_handle = cathandle;
181 up_write(&cathandle->lgh_lock);
185 up_write(&cathandle->lgh_lock);
187 rc = llog_open(env, cathandle->lgh_ctxt, &loghandle, logid, NULL,
190 CERROR("%s: error opening log id "DOSTID":%x: rc = %d\n",
191 cathandle->lgh_ctxt->loc_obd->obd_name,
192 POSTID(&logid->lgl_oi), logid->lgl_ogen, rc);
196 rc = llog_init_handle(env, loghandle, LLOG_F_IS_PLAIN, NULL);
198 llog_close(env, loghandle);
203 down_write(&cathandle->lgh_lock);
204 cfs_list_add(&loghandle->u.phd.phd_entry, &cathandle->u.chd.chd_head);
205 up_write(&cathandle->lgh_lock);
207 loghandle->u.phd.phd_cat_handle = cathandle;
208 loghandle->u.phd.phd_cookie.lgc_lgl = cathandle->lgh_id;
209 loghandle->u.phd.phd_cookie.lgc_index =
210 loghandle->lgh_hdr->llh_cat_idx;
213 llog_handle_get(loghandle);
218 int llog_cat_close(const struct lu_env *env, struct llog_handle *cathandle)
220 struct llog_handle *loghandle, *n;
225 cfs_list_for_each_entry_safe(loghandle, n, &cathandle->u.chd.chd_head,
227 struct llog_log_hdr *llh = loghandle->lgh_hdr;
230 /* unlink open-not-created llogs */
231 cfs_list_del_init(&loghandle->u.phd.phd_entry);
232 llh = loghandle->lgh_hdr;
233 if (loghandle->lgh_obj != NULL && llh != NULL &&
234 (llh->llh_flags & LLOG_F_ZAP_WHEN_EMPTY) &&
235 (llh->llh_count == 1)) {
236 rc = llog_destroy(env, loghandle);
238 CERROR("%s: failure destroying log during "
239 "cleanup: rc = %d\n",
240 loghandle->lgh_ctxt->loc_obd->obd_name,
243 index = loghandle->u.phd.phd_cookie.lgc_index;
244 llog_cat_cleanup(env, cathandle, NULL, index);
246 llog_close(env, loghandle);
248 /* if handle was stored in ctxt, remove it too */
249 if (cathandle->lgh_ctxt->loc_handle == cathandle)
250 cathandle->lgh_ctxt->loc_handle = NULL;
251 rc = llog_close(env, cathandle);
254 EXPORT_SYMBOL(llog_cat_close);
257 * lockdep markers for nested struct llog_handle::lgh_lock locking.
264 /** Return the currently active log handle. If the current log handle doesn't
265 * have enough space left for the current record, start a new one.
267 * If reclen is 0, we only want to know what the currently active log is,
268 * otherwise we get a lock on this log so nobody can steal our space.
270 * Assumes caller has already pushed us into the kernel context and is locking.
272 * NOTE: loghandle is write-locked upon successful return
274 static struct llog_handle *llog_cat_current_log(struct llog_handle *cathandle,
277 struct llog_handle *loghandle = NULL;
280 down_read_nested(&cathandle->lgh_lock, LLOGH_CAT);
281 loghandle = cathandle->u.chd.chd_current_log;
283 struct llog_log_hdr *llh;
285 down_write_nested(&loghandle->lgh_lock, LLOGH_LOG);
286 llh = loghandle->lgh_hdr;
288 loghandle->lgh_last_idx < LLOG_BITMAP_SIZE(llh) - 1) {
289 up_read(&cathandle->lgh_lock);
292 up_write(&loghandle->lgh_lock);
295 up_read(&cathandle->lgh_lock);
297 /* time to use next log */
299 /* first, we have to make sure the state hasn't changed */
300 down_write_nested(&cathandle->lgh_lock, LLOGH_CAT);
301 loghandle = cathandle->u.chd.chd_current_log;
303 struct llog_log_hdr *llh;
305 down_write_nested(&loghandle->lgh_lock, LLOGH_LOG);
306 llh = loghandle->lgh_hdr;
308 if (loghandle->lgh_last_idx < LLOG_BITMAP_SIZE(llh) - 1) {
309 up_write(&cathandle->lgh_lock);
312 up_write(&loghandle->lgh_lock);
316 CDEBUG(D_INODE, "use next log\n");
318 loghandle = cathandle->u.chd.chd_next_log;
319 cathandle->u.chd.chd_current_log = loghandle;
320 cathandle->u.chd.chd_next_log = NULL;
321 down_write_nested(&loghandle->lgh_lock, LLOGH_LOG);
322 up_write(&cathandle->lgh_lock);
327 /* Add a single record to the recovery log(s) using a catalog
328 * Returns as llog_write_record
330 * Assumes caller has already pushed us into the kernel context.
332 int llog_cat_add_rec(const struct lu_env *env, struct llog_handle *cathandle,
333 struct llog_rec_hdr *rec, struct llog_cookie *reccookie,
334 void *buf, struct thandle *th)
336 struct llog_handle *loghandle;
340 LASSERT(rec->lrh_len <= LLOG_CHUNK_SIZE);
341 loghandle = llog_cat_current_log(cathandle, th);
342 LASSERT(!IS_ERR(loghandle));
344 /* loghandle is already locked by llog_cat_current_log() for us */
345 if (!llog_exist(loghandle)) {
346 rc = llog_cat_new_log(env, cathandle, loghandle, th);
348 up_write(&loghandle->lgh_lock);
352 /* now let's try to add the record */
353 rc = llog_write_rec(env, loghandle, rec, reccookie, 1, buf, -1, th);
355 CDEBUG_LIMIT(rc == -ENOSPC ? D_HA : D_ERROR,
356 "llog_write_rec %d: lh=%p\n", rc, loghandle);
357 up_write(&loghandle->lgh_lock);
359 /* try to use next log */
360 loghandle = llog_cat_current_log(cathandle, th);
361 LASSERT(!IS_ERR(loghandle));
362 /* new llog can be created concurrently */
363 if (!llog_exist(loghandle)) {
364 rc = llog_cat_new_log(env, cathandle, loghandle, th);
366 up_write(&loghandle->lgh_lock);
370 /* now let's try to add the record */
371 rc = llog_write_rec(env, loghandle, rec, reccookie, 1, buf,
374 CERROR("llog_write_rec %d: lh=%p\n", rc, loghandle);
375 up_write(&loghandle->lgh_lock);
380 EXPORT_SYMBOL(llog_cat_add_rec);
382 int llog_cat_declare_add_rec(const struct lu_env *env,
383 struct llog_handle *cathandle,
384 struct llog_rec_hdr *rec, struct thandle *th)
386 struct llog_thread_info *lgi = llog_info(env);
387 struct llog_logid_rec *lirec = &lgi->lgi_logid;
388 struct llog_handle *loghandle, *next;
393 if (cathandle->u.chd.chd_current_log == NULL) {
394 /* declare new plain llog */
395 down_write(&cathandle->lgh_lock);
396 if (cathandle->u.chd.chd_current_log == NULL) {
397 rc = llog_open(env, cathandle->lgh_ctxt, &loghandle,
398 NULL, NULL, LLOG_OPEN_NEW);
400 cathandle->u.chd.chd_current_log = loghandle;
401 cfs_list_add_tail(&loghandle->u.phd.phd_entry,
402 &cathandle->u.chd.chd_head);
405 up_write(&cathandle->lgh_lock);
406 } else if (cathandle->u.chd.chd_next_log == NULL) {
407 /* declare next plain llog */
408 down_write(&cathandle->lgh_lock);
409 if (cathandle->u.chd.chd_next_log == NULL) {
410 rc = llog_open(env, cathandle->lgh_ctxt, &loghandle,
411 NULL, NULL, LLOG_OPEN_NEW);
413 cathandle->u.chd.chd_next_log = loghandle;
414 cfs_list_add_tail(&loghandle->u.phd.phd_entry,
415 &cathandle->u.chd.chd_head);
418 up_write(&cathandle->lgh_lock);
423 lirec->lid_hdr.lrh_len = sizeof(*lirec);
425 if (!llog_exist(cathandle->u.chd.chd_current_log)) {
426 rc = llog_declare_create(env, cathandle->u.chd.chd_current_log,
430 llog_declare_write_rec(env, cathandle, &lirec->lid_hdr, -1, th);
432 /* declare records in the llogs */
433 rc = llog_declare_write_rec(env, cathandle->u.chd.chd_current_log,
438 next = cathandle->u.chd.chd_next_log;
440 if (!llog_exist(next)) {
441 rc = llog_declare_create(env, next, th);
442 llog_declare_write_rec(env, cathandle, &lirec->lid_hdr,
445 /* XXX: we hope for declarations made for existing llog
446 * this might be not correct with some backends
447 * where declarations are expected against specific
448 * object like ZFS with full debugging enabled */
449 /*llog_declare_write_rec(env, next, rec, -1, th);*/
454 EXPORT_SYMBOL(llog_cat_declare_add_rec);
456 int llog_cat_add(const struct lu_env *env, struct llog_handle *cathandle,
457 struct llog_rec_hdr *rec, struct llog_cookie *reccookie,
460 struct llog_ctxt *ctxt;
461 struct dt_device *dt;
462 struct thandle *th = NULL;
465 ctxt = cathandle->lgh_ctxt;
467 LASSERT(ctxt->loc_exp);
469 LASSERT(cathandle->lgh_obj != NULL);
470 dt = lu2dt_dev(cathandle->lgh_obj->do_lu.lo_dev);
472 th = dt_trans_create(env, dt);
476 rc = llog_cat_declare_add_rec(env, cathandle, rec, th);
480 rc = dt_trans_start_local(env, dt, th);
483 rc = llog_cat_add_rec(env, cathandle, rec, reccookie, buf, th);
485 dt_trans_stop(env, dt, th);
488 EXPORT_SYMBOL(llog_cat_add);
490 /* For each cookie in the cookie array, we clear the log in-use bit and either:
491 * - the log is empty, so mark it free in the catalog header and delete it
492 * - the log is not empty, just write out the log header
494 * The cookies may be in different log files, so we need to get new logs
497 * Assumes caller has already pushed us into the kernel context.
499 int llog_cat_cancel_records(const struct lu_env *env,
500 struct llog_handle *cathandle, int count,
501 struct llog_cookie *cookies)
503 int i, index, rc = 0, failed = 0;
507 for (i = 0; i < count; i++, cookies++) {
508 struct llog_handle *loghandle;
509 struct llog_logid *lgl = &cookies->lgc_lgl;
512 rc = llog_cat_id2handle(env, cathandle, &loghandle, lgl);
514 CERROR("%s: cannot find handle for llog "DOSTID": %d\n",
515 cathandle->lgh_ctxt->loc_obd->obd_name,
516 POSTID(&lgl->lgl_oi), rc);
521 lrc = llog_cancel_rec(env, loghandle, cookies->lgc_index);
522 if (lrc == LLOG_DEL_PLAIN) { /* log has been destroyed */
523 index = loghandle->u.phd.phd_cookie.lgc_index;
524 rc = llog_cat_cleanup(env, cathandle, loghandle,
526 } else if (lrc == -ENOENT) {
527 if (rc == 0) /* ENOENT shouldn't rewrite any error */
529 } else if (lrc < 0) {
533 llog_handle_put(loghandle);
536 CERROR("%s: fail to cancel %d of %d llog-records: rc = %d\n",
537 cathandle->lgh_ctxt->loc_obd->obd_name, failed, count,
542 EXPORT_SYMBOL(llog_cat_cancel_records);
544 int llog_cat_process_cb(const struct lu_env *env, struct llog_handle *cat_llh,
545 struct llog_rec_hdr *rec, void *data)
547 struct llog_process_data *d = data;
548 struct llog_logid_rec *lir = (struct llog_logid_rec *)rec;
549 struct llog_handle *llh;
553 if (rec->lrh_type != LLOG_LOGID_MAGIC) {
554 CERROR("invalid record in catalog\n");
557 CDEBUG(D_HA, "processing log "DOSTID":%x at index %u of catalog "
558 DOSTID"\n", POSTID(&lir->lid_id.lgl_oi), lir->lid_id.lgl_ogen,
559 rec->lrh_index, POSTID(&cat_llh->lgh_id.lgl_oi));
561 rc = llog_cat_id2handle(env, cat_llh, &llh, &lir->lid_id);
563 CERROR("%s: cannot find handle for llog "DOSTID": %d\n",
564 cat_llh->lgh_ctxt->loc_obd->obd_name,
565 POSTID(&lir->lid_id.lgl_oi), rc);
569 if (rec->lrh_index < d->lpd_startcat) {
570 /* Skip processing of the logs until startcat */
572 } else if (d->lpd_startidx > 0) {
573 struct llog_process_cat_data cd;
575 cd.lpcd_first_idx = d->lpd_startidx;
576 cd.lpcd_last_idx = 0;
577 rc = llog_process_or_fork(env, llh, d->lpd_cb, d->lpd_data,
579 /* Continue processing the next log from idx 0 */
582 rc = llog_process_or_fork(env, llh, d->lpd_cb, d->lpd_data,
586 /* The empty plain log was destroyed while processing */
587 if (rc == LLOG_DEL_PLAIN)
588 rc = llog_cat_cleanup(env, cat_llh, llh,
589 llh->u.phd.phd_cookie.lgc_index);
590 llog_handle_put(llh);
595 int llog_cat_process_or_fork(const struct lu_env *env,
596 struct llog_handle *cat_llh,
597 llog_cb_t cb, void *data, int startcat,
598 int startidx, bool fork)
600 struct llog_process_data d;
601 struct llog_log_hdr *llh = cat_llh->lgh_hdr;
605 LASSERT(llh->llh_flags & LLOG_F_IS_CAT);
608 d.lpd_startcat = startcat;
609 d.lpd_startidx = startidx;
611 if (llh->llh_cat_idx > cat_llh->lgh_last_idx) {
612 struct llog_process_cat_data cd;
614 CWARN("catlog "DOSTID" crosses index zero\n",
615 POSTID(&cat_llh->lgh_id.lgl_oi));
617 cd.lpcd_first_idx = llh->llh_cat_idx;
618 cd.lpcd_last_idx = 0;
619 rc = llog_process_or_fork(env, cat_llh, llog_cat_process_cb,
624 cd.lpcd_first_idx = 0;
625 cd.lpcd_last_idx = cat_llh->lgh_last_idx;
626 rc = llog_process_or_fork(env, cat_llh, llog_cat_process_cb,
629 rc = llog_process_or_fork(env, cat_llh, llog_cat_process_cb,
635 EXPORT_SYMBOL(llog_cat_process_or_fork);
637 int llog_cat_process(const struct lu_env *env, struct llog_handle *cat_llh,
638 llog_cb_t cb, void *data, int startcat, int startidx)
640 return llog_cat_process_or_fork(env, cat_llh, cb, data, startcat,
643 EXPORT_SYMBOL(llog_cat_process);
645 static int llog_cat_reverse_process_cb(const struct lu_env *env,
646 struct llog_handle *cat_llh,
647 struct llog_rec_hdr *rec, void *data)
649 struct llog_process_data *d = data;
650 struct llog_logid_rec *lir = (struct llog_logid_rec *)rec;
651 struct llog_handle *llh;
654 if (le32_to_cpu(rec->lrh_type) != LLOG_LOGID_MAGIC) {
655 CERROR("invalid record in catalog\n");
658 CDEBUG(D_HA, "processing log "DOSTID":%x at index %u of catalog "
659 DOSTID"\n", POSTID(&lir->lid_id.lgl_oi), lir->lid_id.lgl_ogen,
660 le32_to_cpu(rec->lrh_index), POSTID(&cat_llh->lgh_id.lgl_oi));
662 rc = llog_cat_id2handle(env, cat_llh, &llh, &lir->lid_id);
664 CERROR("%s: cannot find handle for llog "DOSTID": %d\n",
665 cat_llh->lgh_ctxt->loc_obd->obd_name,
666 POSTID(&lir->lid_id.lgl_oi), rc);
670 rc = llog_reverse_process(env, llh, d->lpd_cb, d->lpd_data, NULL);
672 /* The empty plain was destroyed while processing */
673 if (rc == LLOG_DEL_PLAIN)
674 rc = llog_cat_cleanup(env, cat_llh, llh,
675 llh->u.phd.phd_cookie.lgc_index);
677 llog_handle_put(llh);
681 int llog_cat_reverse_process(const struct lu_env *env,
682 struct llog_handle *cat_llh,
683 llog_cb_t cb, void *data)
685 struct llog_process_data d;
686 struct llog_process_cat_data cd;
687 struct llog_log_hdr *llh = cat_llh->lgh_hdr;
691 LASSERT(llh->llh_flags & LLOG_F_IS_CAT);
695 if (llh->llh_cat_idx > cat_llh->lgh_last_idx) {
696 CWARN("catalog "DOSTID" crosses index zero\n",
697 POSTID(&cat_llh->lgh_id.lgl_oi));
699 cd.lpcd_first_idx = 0;
700 cd.lpcd_last_idx = cat_llh->lgh_last_idx;
701 rc = llog_reverse_process(env, cat_llh,
702 llog_cat_reverse_process_cb,
707 cd.lpcd_first_idx = le32_to_cpu(llh->llh_cat_idx);
708 cd.lpcd_last_idx = 0;
709 rc = llog_reverse_process(env, cat_llh,
710 llog_cat_reverse_process_cb,
713 rc = llog_reverse_process(env, cat_llh,
714 llog_cat_reverse_process_cb,
720 EXPORT_SYMBOL(llog_cat_reverse_process);
722 int llog_cat_set_first_idx(struct llog_handle *cathandle, int index)
724 struct llog_log_hdr *llh = cathandle->lgh_hdr;
725 int i, bitmap_size, idx;
728 bitmap_size = LLOG_BITMAP_SIZE(llh);
729 if (llh->llh_cat_idx == (index - 1)) {
730 idx = llh->llh_cat_idx + 1;
731 llh->llh_cat_idx = idx;
732 if (idx == cathandle->lgh_last_idx)
734 for (i = (index + 1) % bitmap_size;
735 i != cathandle->lgh_last_idx;
736 i = (i + 1) % bitmap_size) {
737 if (!ext2_test_bit(i, llh->llh_bitmap)) {
738 idx = llh->llh_cat_idx + 1;
739 llh->llh_cat_idx = idx;
741 llh->llh_cat_idx = 0;
747 CDEBUG(D_RPCTRACE, "set catlog "DOSTID" first idx %u\n",
748 POSTID(&cathandle->lgh_id.lgl_oi), llh->llh_cat_idx);
754 /* Cleanup deleted plain llog traces from catalog */
755 int llog_cat_cleanup(const struct lu_env *env, struct llog_handle *cathandle,
756 struct llog_handle *loghandle, int index)
761 if (loghandle != NULL) {
762 /* remove destroyed llog from catalog list and
763 * chd_current_log variable */
764 down_write(&cathandle->lgh_lock);
765 if (cathandle->u.chd.chd_current_log == loghandle)
766 cathandle->u.chd.chd_current_log = NULL;
767 cfs_list_del_init(&loghandle->u.phd.phd_entry);
768 up_write(&cathandle->lgh_lock);
769 LASSERT(index == loghandle->u.phd.phd_cookie.lgc_index);
770 /* llog was opened and keep in a list, close it now */
771 llog_close(env, loghandle);
773 /* remove plain llog entry from catalog by index */
774 llog_cat_set_first_idx(cathandle, index);
775 rc = llog_cancel_rec(env, cathandle, index);
777 CDEBUG(D_HA, "cancel plain log at index"
778 " %u of catalog "DOSTID"\n",
779 index, POSTID(&cathandle->lgh_id.lgl_oi));
783 int cat_cancel_cb(const struct lu_env *env, struct llog_handle *cathandle,
784 struct llog_rec_hdr *rec, void *data)
786 struct llog_logid_rec *lir = (struct llog_logid_rec *)rec;
787 struct llog_handle *loghandle;
788 struct llog_log_hdr *llh;
793 if (rec->lrh_type != LLOG_LOGID_MAGIC) {
794 CERROR("invalid record in catalog\n");
798 CDEBUG(D_HA, "processing log "DOSTID":%x at index %u of catalog "
799 DOSTID"\n", POSTID(&lir->lid_id.lgl_oi), lir->lid_id.lgl_ogen,
800 rec->lrh_index, POSTID(&cathandle->lgh_id.lgl_oi));
802 rc = llog_cat_id2handle(env, cathandle, &loghandle, &lir->lid_id);
804 CERROR("%s: cannot find handle for llog "DOSTID": %d\n",
805 cathandle->lgh_ctxt->loc_obd->obd_name,
806 POSTID(&lir->lid_id.lgl_oi), rc);
807 if (rc == -ENOENT || rc == -ESTALE) {
808 /* remove index from catalog */
809 llog_cat_cleanup(env, cathandle, NULL, rec->lrh_index);
814 llh = loghandle->lgh_hdr;
815 if ((llh->llh_flags & LLOG_F_ZAP_WHEN_EMPTY) &&
816 (llh->llh_count == 1)) {
817 rc = llog_destroy(env, loghandle);
819 CERROR("%s: fail to destroy empty log: rc = %d\n",
820 loghandle->lgh_ctxt->loc_obd->obd_name, rc);
822 llog_cat_cleanup(env, cathandle, loghandle,
823 loghandle->u.phd.phd_cookie.lgc_index);
825 llog_handle_put(loghandle);
829 EXPORT_SYMBOL(cat_cancel_cb);
831 /* helper to initialize catalog llog and process it to cancel */
832 int llog_cat_init_and_process(const struct lu_env *env,
833 struct llog_handle *llh)
837 rc = llog_init_handle(env, llh, LLOG_F_IS_CAT, NULL);
841 rc = llog_process_or_fork(env, llh, cat_cancel_cb, NULL, NULL, false);
843 CERROR("%s: llog_process() with cat_cancel_cb failed: rc = "
844 "%d\n", llh->lgh_ctxt->loc_obd->obd_name, rc);
847 EXPORT_SYMBOL(llog_cat_init_and_process);