Whamcloud - gitweb
LU-1302 llog: pass lu_env to the llog callback
[fs/lustre-release.git] / lustre / obdclass / llog_cat.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 /*
31  * This file is part of Lustre, http://www.lustre.org/
32  * Lustre is a trademark of Sun Microsystems, Inc.
33  *
34  * lustre/obdclass/llog_cat.c
35  *
36  * OST<->MDS recovery logging infrastructure.
37  *
38  * Invariants in implementation:
39  * - we do not share logs among different OST<->MDS connections, so that
40  *   if an OST or MDS fails it need only look at log(s) relevant to itself
41  *
42  * Author: Andreas Dilger <adilger@clusterfs.com>
43  */
44
45 #define DEBUG_SUBSYSTEM S_LOG
46
47 #ifndef __KERNEL__
48 #include <liblustre.h>
49 #endif
50
51 #include <obd_class.h>
52 #include <lustre_log.h>
53
54 #include "llog_internal.h"
55
56 /* Create a new log handle and add it to the open list.
57  * This log handle will be closed when all of the records in it are removed.
58  *
59  * Assumes caller has already pushed us into the kernel context and is locking.
60  */
61 static struct llog_handle *llog_cat_new_log(struct llog_handle *cathandle)
62 {
63         struct llog_handle *loghandle;
64         struct llog_log_hdr *llh;
65         struct llog_logid_rec rec = { { 0 }, };
66         int rc, index, bitmap_size;
67         ENTRY;
68
69         llh = cathandle->lgh_hdr;
70         bitmap_size = LLOG_BITMAP_SIZE(llh);
71
72         index = (cathandle->lgh_last_idx + 1) % bitmap_size;
73
74         /* maximum number of available slots in catlog is bitmap_size - 2 */
75         if (llh->llh_cat_idx == index) {
76                 CERROR("no free catalog slots for log...\n");
77                 RETURN(ERR_PTR(-ENOSPC));
78         }
79
80         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_LLOG_CREATE_FAILED))
81                 RETURN(ERR_PTR(-ENOSPC));
82
83         rc = llog_create(cathandle->lgh_ctxt, &loghandle, NULL, NULL);
84         if (rc)
85                 RETURN(ERR_PTR(rc));
86
87         rc = llog_init_handle(loghandle,
88                               LLOG_F_IS_PLAIN | LLOG_F_ZAP_WHEN_EMPTY,
89                               &cathandle->lgh_hdr->llh_tgtuuid);
90         if (rc)
91                 GOTO(out_destroy, rc);
92
93         if (index == 0)
94                 index = 1;
95
96         cfs_spin_lock(&loghandle->lgh_hdr_lock);
97         llh->llh_count++;
98         if (ext2_set_bit(index, llh->llh_bitmap)) {
99                 CERROR("argh, index %u already set in log bitmap?\n",
100                        index);
101                 cfs_spin_unlock(&loghandle->lgh_hdr_lock);
102                 LBUG(); /* should never happen */
103         }
104         cfs_spin_unlock(&loghandle->lgh_hdr_lock);
105
106         cathandle->lgh_last_idx = index;
107         llh->llh_tail.lrt_index = index;
108
109         CDEBUG(D_RPCTRACE,"new recovery log "LPX64":%x for index %u of catalog "
110                LPX64"\n", loghandle->lgh_id.lgl_oid, loghandle->lgh_id.lgl_ogen,
111                index, cathandle->lgh_id.lgl_oid);
112         /* build the record for this log in the catalog */
113         rec.lid_hdr.lrh_len = sizeof(rec);
114         rec.lid_hdr.lrh_index = index;
115         rec.lid_hdr.lrh_type = LLOG_LOGID_MAGIC;
116         rec.lid_id = loghandle->lgh_id;
117         rec.lid_tail.lrt_len = sizeof(rec);
118         rec.lid_tail.lrt_index = index;
119
120         /* update the catalog: header and record */
121         rc = llog_write_rec(cathandle, &rec.lid_hdr,
122                             &loghandle->u.phd.phd_cookie, 1, NULL, index);
123         if (rc < 0) {
124                 GOTO(out_destroy, rc);
125         }
126
127         loghandle->lgh_hdr->llh_cat_idx = index;
128         cathandle->u.chd.chd_current_log = loghandle;
129         LASSERT(cfs_list_empty(&loghandle->u.phd.phd_entry));
130         cfs_list_add_tail(&loghandle->u.phd.phd_entry,
131                           &cathandle->u.chd.chd_head);
132
133 out_destroy:
134         if (rc < 0)
135                 llog_destroy(loghandle);
136
137         RETURN(loghandle);
138 }
139
140 /* Open an existent log handle and add it to the open list.
141  * This log handle will be closed when all of the records in it are removed.
142  *
143  * Assumes caller has already pushed us into the kernel context and is locking.
144  * We return a lock on the handle to ensure nobody yanks it from us.
145  */
146 int llog_cat_id2handle(struct llog_handle *cathandle, struct llog_handle **res,
147                        struct llog_logid *logid)
148 {
149         struct llog_handle *loghandle;
150         int rc = 0;
151         ENTRY;
152
153         if (cathandle == NULL)
154                 RETURN(-EBADF);
155
156         cfs_list_for_each_entry(loghandle, &cathandle->u.chd.chd_head,
157                                 u.phd.phd_entry) {
158                 struct llog_logid *cgl = &loghandle->lgh_id;
159                 if (cgl->lgl_oid == logid->lgl_oid) {
160                         if (cgl->lgl_ogen != logid->lgl_ogen) {
161                                 CERROR("log "LPX64" generation %x != %x\n",
162                                        logid->lgl_oid, cgl->lgl_ogen,
163                                        logid->lgl_ogen);
164                                 continue;
165                         }
166                         loghandle->u.phd.phd_cat_handle = cathandle;
167                         GOTO(out, rc = 0);
168                 }
169         }
170
171         rc = llog_create(cathandle->lgh_ctxt, &loghandle, logid, NULL);
172         if (rc) {
173                 CERROR("error opening log id "LPX64":%x: rc %d\n",
174                        logid->lgl_oid, logid->lgl_ogen, rc);
175         } else {
176                 rc = llog_init_handle(loghandle, LLOG_F_IS_PLAIN, NULL);
177                 if (!rc) {
178                         cfs_list_add(&loghandle->u.phd.phd_entry,
179                                      &cathandle->u.chd.chd_head);
180                 }
181         }
182         if (!rc) {
183                 loghandle->u.phd.phd_cat_handle = cathandle;
184                 loghandle->u.phd.phd_cookie.lgc_lgl = cathandle->lgh_id;
185                 loghandle->u.phd.phd_cookie.lgc_index =
186                         loghandle->lgh_hdr->llh_cat_idx;
187         }
188
189 out:
190         *res = loghandle;
191         RETURN(rc);
192 }
193
194 int llog_cat_put(struct llog_handle *cathandle)
195 {
196         struct llog_handle *loghandle, *n;
197         int rc;
198         ENTRY;
199
200         cfs_list_for_each_entry_safe(loghandle, n, &cathandle->u.chd.chd_head,
201                                      u.phd.phd_entry) {
202                 int err = llog_close(loghandle);
203                 if (err)
204                         CERROR("error closing loghandle\n");
205         }
206         rc = llog_close(cathandle);
207         RETURN(rc);
208 }
209 EXPORT_SYMBOL(llog_cat_put);
210
211 /**
212  * lockdep markers for nested struct llog_handle::lgh_lock locking.
213  */
214 enum {
215         LLOGH_CAT,
216         LLOGH_LOG
217 };
218
219 /** Return the currently active log handle.  If the current log handle doesn't
220  * have enough space left for the current record, start a new one.
221  *
222  * If reclen is 0, we only want to know what the currently active log is,
223  * otherwise we get a lock on this log so nobody can steal our space.
224  *
225  * Assumes caller has already pushed us into the kernel context and is locking.
226  *
227  * NOTE: loghandle is write-locked upon successful return
228  */
229 static struct llog_handle *llog_cat_current_log(struct llog_handle *cathandle,
230                                                 int create)
231 {
232         struct llog_handle *loghandle = NULL;
233         ENTRY;
234
235         cfs_down_read_nested(&cathandle->lgh_lock, LLOGH_CAT);
236         loghandle = cathandle->u.chd.chd_current_log;
237         if (loghandle) {
238                 struct llog_log_hdr *llh = loghandle->lgh_hdr;
239                 cfs_down_write_nested(&loghandle->lgh_lock, LLOGH_LOG);
240                 if (loghandle->lgh_last_idx < LLOG_BITMAP_SIZE(llh) - 1) {
241                         cfs_up_read(&cathandle->lgh_lock);
242                         RETURN(loghandle);
243                 } else {
244                         cfs_up_write(&loghandle->lgh_lock);
245                 }
246         }
247         if (!create) {
248                 if (loghandle)
249                         cfs_down_write(&loghandle->lgh_lock);
250                 cfs_up_read(&cathandle->lgh_lock);
251                 RETURN(loghandle);
252         }
253         cfs_up_read(&cathandle->lgh_lock);
254
255         /* time to create new log */
256
257         /* first, we have to make sure the state hasn't changed */
258         cfs_down_write_nested(&cathandle->lgh_lock, LLOGH_CAT);
259         loghandle = cathandle->u.chd.chd_current_log;
260         if (loghandle) {
261                 struct llog_log_hdr *llh = loghandle->lgh_hdr;
262                 cfs_down_write_nested(&loghandle->lgh_lock, LLOGH_LOG);
263                 if (loghandle->lgh_last_idx < LLOG_BITMAP_SIZE(llh) - 1) {
264                         cfs_up_write(&cathandle->lgh_lock);
265                         RETURN(loghandle);
266                 } else {
267                         cfs_up_write(&loghandle->lgh_lock);
268                 }
269         }
270
271         CDEBUG(D_INODE, "creating new log\n");
272         loghandle = llog_cat_new_log(cathandle);
273         if (!IS_ERR(loghandle))
274                 cfs_down_write_nested(&loghandle->lgh_lock, LLOGH_LOG);
275         cfs_up_write(&cathandle->lgh_lock);
276         RETURN(loghandle);
277 }
278
279 /* Add a single record to the recovery log(s) using a catalog
280  * Returns as llog_write_record
281  *
282  * Assumes caller has already pushed us into the kernel context.
283  */
284 int llog_cat_add_rec(struct llog_handle *cathandle, struct llog_rec_hdr *rec,
285                      struct llog_cookie *reccookie, void *buf)
286 {
287         struct llog_handle *loghandle;
288         int rc;
289         ENTRY;
290
291         LASSERT(rec->lrh_len <= LLOG_CHUNK_SIZE);
292         loghandle = llog_cat_current_log(cathandle, 1);
293         if (IS_ERR(loghandle))
294                 RETURN(PTR_ERR(loghandle));
295         /* loghandle is already locked by llog_cat_current_log() for us */
296         rc = llog_write_rec(loghandle, rec, reccookie, 1, buf, -1);
297         if (rc < 0)
298                 CERROR("llog_write_rec %d: lh=%p\n", rc, loghandle);
299         cfs_up_write(&loghandle->lgh_lock);
300         if (rc == -ENOSPC) {
301                 /* to create a new plain log */
302                 loghandle = llog_cat_current_log(cathandle, 1);
303                 if (IS_ERR(loghandle))
304                         RETURN(PTR_ERR(loghandle));
305                 rc = llog_write_rec(loghandle, rec, reccookie, 1, buf, -1);
306                 cfs_up_write(&loghandle->lgh_lock);
307         }
308
309         RETURN(rc);
310 }
311 EXPORT_SYMBOL(llog_cat_add_rec);
312
313 /* For each cookie in the cookie array, we clear the log in-use bit and either:
314  * - the log is empty, so mark it free in the catalog header and delete it
315  * - the log is not empty, just write out the log header
316  *
317  * The cookies may be in different log files, so we need to get new logs
318  * each time.
319  *
320  * Assumes caller has already pushed us into the kernel context.
321  */
322 int llog_cat_cancel_records(struct llog_handle *cathandle, int count,
323                             struct llog_cookie *cookies)
324 {
325         int i, index, rc = 0;
326         ENTRY;
327
328         cfs_down_write_nested(&cathandle->lgh_lock, LLOGH_CAT);
329         for (i = 0; i < count; i++, cookies++) {
330                 struct llog_handle *loghandle;
331                 struct llog_logid *lgl = &cookies->lgc_lgl;
332
333                 rc = llog_cat_id2handle(cathandle, &loghandle, lgl);
334                 if (rc) {
335                         CERROR("Cannot find log "LPX64"\n", lgl->lgl_oid);
336                         break;
337                 }
338
339                 cfs_down_write_nested(&loghandle->lgh_lock, LLOGH_LOG);
340                 rc = llog_cancel_rec(loghandle, cookies->lgc_index);
341                 cfs_up_write(&loghandle->lgh_lock);
342
343                 if (rc == 1) {          /* log has been destroyed */
344                         index = loghandle->u.phd.phd_cookie.lgc_index;
345                         if (cathandle->u.chd.chd_current_log == loghandle)
346                                 cathandle->u.chd.chd_current_log = NULL;
347                         llog_free_handle(loghandle);
348
349                         LASSERT(index);
350                         llog_cat_set_first_idx(cathandle, index);
351                         rc = llog_cancel_rec(cathandle, index);
352                         if (rc == 0)
353                                 CDEBUG(D_RPCTRACE,"cancel plain log at index %u"
354                                        " of catalog "LPX64"\n",
355                                        index, cathandle->lgh_id.lgl_oid);
356                 }
357         }
358         cfs_up_write(&cathandle->lgh_lock);
359
360         RETURN(rc);
361 }
362 EXPORT_SYMBOL(llog_cat_cancel_records);
363
364 int llog_cat_process_cb(const struct lu_env *env, struct llog_handle *cat_llh,
365                         struct llog_rec_hdr *rec, void *data)
366 {
367         struct llog_process_data *d = data;
368         struct llog_logid_rec *lir = (struct llog_logid_rec *)rec;
369         struct llog_handle *llh;
370         int rc;
371
372         ENTRY;
373         if (rec->lrh_type != LLOG_LOGID_MAGIC) {
374                 CERROR("invalid record in catalog\n");
375                 RETURN(-EINVAL);
376         }
377         CDEBUG(D_HA, "processing log "LPX64":%x at index %u of catalog "
378                LPX64"\n", lir->lid_id.lgl_oid, lir->lid_id.lgl_ogen,
379                rec->lrh_index, cat_llh->lgh_id.lgl_oid);
380
381         rc = llog_cat_id2handle(cat_llh, &llh, &lir->lid_id);
382         if (rc) {
383                 CERROR("Cannot find handle for log "LPX64"\n",
384                        lir->lid_id.lgl_oid);
385                 RETURN(rc);
386         }
387
388         if (rec->lrh_index < d->lpd_startcat)
389                 /* Skip processing of the logs until startcat */
390                 RETURN(0);
391
392         if (d->lpd_startidx > 0) {
393                 struct llog_process_cat_data cd;
394
395                 cd.lpcd_first_idx = d->lpd_startidx;
396                 cd.lpcd_last_idx = 0;
397                 rc = llog_process(env, llh, d->lpd_cb, d->lpd_data, &cd);
398                 /* Continue processing the next log from idx 0 */
399                 d->lpd_startidx = 0;
400         } else {
401                 rc = llog_process(env, llh, d->lpd_cb, d->lpd_data, NULL);
402         }
403
404         RETURN(rc);
405 }
406
407 int llog_cat_process_or_fork(const struct lu_env *env,
408                              struct llog_handle *cat_llh,
409                              llog_cb_t cb, void *data, int startcat,
410                              int startidx, bool fork)
411 {
412         struct llog_process_data d;
413         struct llog_log_hdr *llh = cat_llh->lgh_hdr;
414         int rc;
415         ENTRY;
416
417         LASSERT(llh->llh_flags & LLOG_F_IS_CAT);
418         d.lpd_data = data;
419         d.lpd_cb = cb;
420         d.lpd_startcat = startcat;
421         d.lpd_startidx = startidx;
422
423         if (llh->llh_cat_idx > cat_llh->lgh_last_idx) {
424                 struct llog_process_cat_data cd;
425
426                 CWARN("catlog "LPX64" crosses index zero\n",
427                       cat_llh->lgh_id.lgl_oid);
428
429                 cd.lpcd_first_idx = llh->llh_cat_idx;
430                 cd.lpcd_last_idx = 0;
431                 rc = llog_process_or_fork(env, cat_llh, llog_cat_process_cb,
432                                           &d, &cd, fork);
433                 if (rc != 0)
434                         RETURN(rc);
435
436                 cd.lpcd_first_idx = 0;
437                 cd.lpcd_last_idx = cat_llh->lgh_last_idx;
438                 rc = llog_process_or_fork(env, cat_llh, llog_cat_process_cb,
439                                           &d, &cd, fork);
440         } else {
441                 rc = llog_process_or_fork(env, cat_llh, llog_cat_process_cb,
442                                           &d, NULL, fork);
443         }
444
445         RETURN(rc);
446 }
447 EXPORT_SYMBOL(llog_cat_process_or_fork);
448
449 int llog_cat_process(const struct lu_env *env, struct llog_handle *cat_llh,
450                      llog_cb_t cb, void *data, int startcat, int startidx)
451 {
452         return llog_cat_process_or_fork(env, cat_llh, cb, data, startcat,
453                                         startidx, 0);
454 }
455 EXPORT_SYMBOL(llog_cat_process);
456
457 #ifdef __KERNEL__
458 int llog_cat_process_thread(void *data)
459 {
460         struct llog_process_cat_args *args = data;
461         struct llog_ctxt *ctxt = args->lpca_ctxt;
462         struct llog_handle *llh = NULL;
463         llog_cb_t cb = args->lpca_cb;
464         struct llog_thread_info *lgi;
465         struct lu_env            env;
466         int rc;
467         ENTRY;
468
469         cfs_daemonize_ctxt("ll_log_process");
470
471         rc = lu_env_init(&env, LCT_LOCAL);
472         if (rc)
473                 GOTO(out, rc);
474         lgi = llog_info(&env);
475         LASSERT(lgi);
476
477         lgi->lgi_logid = *(struct llog_logid *)(args->lpca_arg);
478         rc = llog_create(ctxt, &llh, &lgi->lgi_logid, NULL);
479         if (rc) {
480                 CERROR("llog_create() failed %d\n", rc);
481                 GOTO(out_env, rc);
482         }
483         rc = llog_init_handle(llh, LLOG_F_IS_CAT, NULL);
484         if (rc) {
485                 CERROR("llog_init_handle failed %d\n", rc);
486                 GOTO(release_llh, rc);
487         }
488
489         if (cb) {
490                 rc = llog_cat_process(&env, llh, cb, NULL, 0, 0);
491                 if (rc != LLOG_PROC_BREAK && rc != 0)
492                         CERROR("llog_cat_process() failed %d\n", rc);
493                 cb(&env, llh, NULL, NULL);
494         } else {
495                 CWARN("No callback function for recovery\n");
496         }
497
498         /*
499          * Make sure that all cached data is sent.
500          */
501         llog_sync(ctxt, NULL, 0);
502         GOTO(release_llh, rc);
503 release_llh:
504         rc = llog_cat_put(llh);
505         if (rc)
506                 CERROR("llog_cat_put() failed %d\n", rc);
507 out_env:
508         lu_env_fini(&env);
509 out:
510         llog_ctxt_put(ctxt);
511         OBD_FREE_PTR(args);
512         return rc;
513 }
514 EXPORT_SYMBOL(llog_cat_process_thread);
515 #endif
516
517 static int llog_cat_reverse_process_cb(const struct lu_env *env,
518                                        struct llog_handle *cat_llh,
519                                        struct llog_rec_hdr *rec, void *data)
520 {
521         struct llog_process_data *d = data;
522         struct llog_logid_rec *lir = (struct llog_logid_rec *)rec;
523         struct llog_handle *llh;
524         int rc;
525
526         if (le32_to_cpu(rec->lrh_type) != LLOG_LOGID_MAGIC) {
527                 CERROR("invalid record in catalog\n");
528                 RETURN(-EINVAL);
529         }
530         CDEBUG(D_HA, "processing log "LPX64":%x at index %u of catalog "
531                LPX64"\n", lir->lid_id.lgl_oid, lir->lid_id.lgl_ogen,
532                le32_to_cpu(rec->lrh_index), cat_llh->lgh_id.lgl_oid);
533
534         rc = llog_cat_id2handle(cat_llh, &llh, &lir->lid_id);
535         if (rc) {
536                 CERROR("Cannot find handle for log "LPX64"\n",
537                        lir->lid_id.lgl_oid);
538                 RETURN(rc);
539         }
540
541         rc = llog_reverse_process(env, llh, d->lpd_cb, d->lpd_data, NULL);
542         RETURN(rc);
543 }
544
545 int llog_cat_reverse_process(const struct lu_env *env,
546                              struct llog_handle *cat_llh,
547                              llog_cb_t cb, void *data)
548 {
549         struct llog_process_data d;
550         struct llog_process_cat_data cd;
551         struct llog_log_hdr *llh = cat_llh->lgh_hdr;
552         int rc;
553         ENTRY;
554
555         LASSERT(llh->llh_flags & LLOG_F_IS_CAT);
556         d.lpd_data = data;
557         d.lpd_cb = cb;
558
559         if (llh->llh_cat_idx > cat_llh->lgh_last_idx) {
560                 CWARN("catalog "LPX64" crosses index zero\n",
561                       cat_llh->lgh_id.lgl_oid);
562
563                 cd.lpcd_first_idx = 0;
564                 cd.lpcd_last_idx = cat_llh->lgh_last_idx;
565                 rc = llog_reverse_process(env, cat_llh,
566                                           llog_cat_reverse_process_cb,
567                                           &d, &cd);
568                 if (rc != 0)
569                         RETURN(rc);
570
571                 cd.lpcd_first_idx = le32_to_cpu(llh->llh_cat_idx);
572                 cd.lpcd_last_idx = 0;
573                 rc = llog_reverse_process(env, cat_llh,
574                                           llog_cat_reverse_process_cb,
575                                           &d, &cd);
576         } else {
577                 rc = llog_reverse_process(env, cat_llh,
578                                           llog_cat_reverse_process_cb,
579                                           &d, NULL);
580         }
581
582         RETURN(rc);
583 }
584 EXPORT_SYMBOL(llog_cat_reverse_process);
585
586 int llog_cat_set_first_idx(struct llog_handle *cathandle, int index)
587 {
588         struct llog_log_hdr *llh = cathandle->lgh_hdr;
589         int i, bitmap_size, idx;
590         ENTRY;
591
592         bitmap_size = LLOG_BITMAP_SIZE(llh);
593         if (llh->llh_cat_idx == (index - 1)) {
594                 idx = llh->llh_cat_idx + 1;
595                 llh->llh_cat_idx = idx;
596                 if (idx == cathandle->lgh_last_idx)
597                         goto out;
598                 for (i = (index + 1) % bitmap_size;
599                      i != cathandle->lgh_last_idx;
600                      i = (i + 1) % bitmap_size) {
601                         if (!ext2_test_bit(i, llh->llh_bitmap)) {
602                                 idx = llh->llh_cat_idx + 1;
603                                 llh->llh_cat_idx = idx;
604                         } else if (i == 0) {
605                                 llh->llh_cat_idx = 0;
606                         } else {
607                                 break;
608                         }
609                 }
610 out:
611                 CDEBUG(D_RPCTRACE, "set catlog "LPX64" first idx %u\n",
612                        cathandle->lgh_id.lgl_oid, llh->llh_cat_idx);
613         }
614
615         RETURN(0);
616 }
617
618 /* callback func for llog_process in llog_obd_origin_setup */
619 int cat_cancel_cb(const struct lu_env *env, struct llog_handle *cathandle,
620                   struct llog_rec_hdr *rec, void *data)
621 {
622         struct llog_logid_rec   *lir = (struct llog_logid_rec *)rec;
623         struct llog_handle      *loghandle;
624         struct llog_log_hdr     *llh;
625         int                      rc, index;
626
627         ENTRY;
628
629         if (rec->lrh_type != LLOG_LOGID_MAGIC) {
630                 CERROR("%s: invalid record in catalog\n",
631                        loghandle->lgh_ctxt->loc_obd->obd_name);
632                 RETURN(-EINVAL);
633         }
634         CDEBUG(D_HA, "processing log "LPX64":%x at index %u of catalog "
635                LPX64"\n", lir->lid_id.lgl_oid, lir->lid_id.lgl_ogen,
636                rec->lrh_index, cathandle->lgh_id.lgl_oid);
637
638         rc = llog_cat_id2handle(cathandle, &loghandle, &lir->lid_id);
639         if (rc) {
640                 CERROR("%s: cannot find handle for llog "LPX64"\n",
641                        loghandle->lgh_ctxt->loc_obd->obd_name,
642                        lir->lid_id.lgl_oid);
643                 if (rc == -ENOENT) {
644                         index = rec->lrh_index;
645                         goto cat_cleanup;
646                 }
647                 RETURN(rc);
648         }
649
650         llh = loghandle->lgh_hdr;
651         if ((llh->llh_flags & LLOG_F_ZAP_WHEN_EMPTY) &&
652             (llh->llh_count == 1)) {
653                 rc = llog_destroy(loghandle);
654                 if (rc)
655                         CERROR("%s: fail to destroy empty log: rc = %d\n",
656                                loghandle->lgh_ctxt->loc_obd->obd_name, rc);
657
658                 index = loghandle->u.phd.phd_cookie.lgc_index;
659                 llog_free_handle(loghandle);
660
661 cat_cleanup:
662                 LASSERT(index);
663                 llog_cat_set_first_idx(cathandle, index);
664                 rc = llog_cancel_rec(cathandle, index);
665                 if (rc == 0)
666                         CDEBUG(D_HA,
667                                "cancel log "LPX64":%x at index %u of catalog "
668                                LPX64"\n", lir->lid_id.lgl_oid,
669                                lir->lid_id.lgl_ogen, rec->lrh_index,
670                                cathandle->lgh_id.lgl_oid);
671         }
672
673         RETURN(rc);
674 }