Whamcloud - gitweb
LU-1302 llog: pass lu_env to the llog callback
[fs/lustre-release.git] / lustre / obdclass / llog_test.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_test.c
35  *
36  * Author: Phil Schwan <phil@clusterfs.com>
37  */
38
39 #define DEBUG_SUBSYSTEM S_CLASS
40
41 #include <linux/module.h>
42 #include <linux/init.h>
43
44 #include <obd_class.h>
45 #include <lustre_log.h>
46
47 static int llog_test_rand;
48 static struct obd_uuid uuid = { .uuid = "test_uuid" };
49 static struct llog_logid cat_logid;
50
51 struct llog_mini_rec {
52         struct llog_rec_hdr     lmr_hdr;
53         struct llog_rec_tail    lmr_tail;
54 } __attribute__((packed));
55
56 static int verify_handle(char *test, struct llog_handle *llh, int num_recs)
57 {
58         int i;
59         int last_idx = 0;
60         int active_recs = 0;
61
62         for (i = 0; i < LLOG_BITMAP_BYTES * 8; i++) {
63                 if (ext2_test_bit(i, llh->lgh_hdr->llh_bitmap)) {
64                         last_idx = i;
65                         active_recs++;
66                 }
67         }
68
69         if (active_recs != num_recs) {
70                 CERROR("%s: expected %d active recs after write, found %d\n",
71                        test, num_recs, active_recs);
72                 RETURN(-ERANGE);
73         }
74
75         if (llh->lgh_hdr->llh_count != num_recs) {
76                 CERROR("%s: handle->count is %d, expected %d after write\n",
77                        test, llh->lgh_hdr->llh_count, num_recs);
78                 RETURN(-ERANGE);
79         }
80
81         if (llh->lgh_last_idx < last_idx) {
82                 CERROR("%s: handle->last_idx is %d, expected %d after write\n",
83                        test, llh->lgh_last_idx, last_idx);
84                 RETURN(-ERANGE);
85         }
86
87         RETURN(0);
88 }
89
90 /* Test named-log create/open, close */
91 static int llog_test_1(struct obd_device *obd, char *name)
92 {
93         struct llog_handle *llh;
94         struct llog_ctxt *ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
95         int rc;
96         int rc2;
97         ENTRY;
98
99         CWARN("1a: create a log with name: %s\n", name);
100         LASSERT(ctxt);
101
102         rc = llog_create(ctxt, &llh, NULL, name);
103         if (rc) {
104                 CERROR("1a: llog_create with name %s failed: %d\n", name, rc);
105                 llog_ctxt_put(ctxt);
106                 RETURN(rc);
107         }
108         llog_init_handle(llh, LLOG_F_IS_PLAIN, &uuid);
109
110         if ((rc = verify_handle("1", llh, 1)))
111                 GOTO(out, rc);
112
113  out:
114         CWARN("1b: close newly-created log\n");
115         rc2 = llog_close(llh);
116         llog_ctxt_put(ctxt);
117         if (rc2) {
118                 CERROR("1b: close log %s failed: %d\n", name, rc2);
119                 if (rc == 0)
120                         rc = rc2;
121         }
122         RETURN(rc);
123 }
124
125 /* Test named-log reopen; returns opened log on success */
126 static int llog_test_2(struct obd_device *obd, char *name,
127                        struct llog_handle **llh)
128 {
129         struct llog_ctxt *ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
130         int rc;
131         ENTRY;
132
133         CWARN("2a: re-open a log with name: %s\n", name);
134         rc = llog_create(ctxt, llh, NULL, name);
135         if (rc) {
136                 CERROR("2a: re-open log with name %s failed: %d\n", name, rc);
137                 GOTO(out, rc);
138         }
139         llog_init_handle(*llh, LLOG_F_IS_PLAIN, &uuid);
140
141         if ((rc = verify_handle("2", *llh, 1)))
142                 GOTO(out, rc);
143 #if 0
144         CWARN("2b: create a log without specified NAME & LOGID\n");
145         rc = llog_create(ctxt, &loghandle, NULL, NULL);
146         if (rc) {
147                 CERROR("2b: create log failed\n");
148                 GOTO(out, rc);
149         }
150         llog_init_handle(loghandle, LLOG_F_IS_PLAIN, &uuid);
151         logid = loghandle->lgh_id;
152         llog_close(loghandle);
153
154         CWARN("2b: re-open the log by LOGID\n");
155         rc = llog_create(ctxt, &loghandle, &logid, NULL);
156         if (rc) {
157                 CERROR("2b: re-open log by LOGID failed\n");
158                 GOTO(out, rc);
159         }
160         llog_init_handle(loghandle, LLOG_F_IS_PLAIN, &uuid);
161
162         CWARN("2b: destroy this log\n");
163         rc = llog_destroy(loghandle);
164         if (rc) {
165                 CERROR("2b: destroy log failed\n");
166                 GOTO(out, rc);
167         }
168         llog_free_handle(loghandle);
169 #endif
170 out:
171         llog_ctxt_put(ctxt);
172
173         RETURN(rc);
174 }
175
176 /* Test record writing, single and in bulk */
177 static int llog_test_3(struct obd_device *obd, struct llog_handle *llh)
178 {
179         struct llog_create_rec lcr;
180         int rc, i;
181         int num_recs = 1;       /* 1 for the header */
182         ENTRY;
183
184         lcr.lcr_hdr.lrh_len = lcr.lcr_tail.lrt_len = sizeof(lcr);
185         lcr.lcr_hdr.lrh_type = OST_SZ_REC;
186
187         CWARN("3a: write one create_rec\n");
188         rc = llog_write_rec(llh,  &lcr.lcr_hdr, NULL, 0, NULL, -1);
189         num_recs++;
190         if (rc) {
191                 CERROR("3a: write one log record failed: %d\n", rc);
192                 RETURN(rc);
193         }
194
195         if ((rc = verify_handle("3a", llh, num_recs)))
196                 RETURN(rc);
197
198         CWARN("3b: write 10 cfg log records with 8 bytes bufs\n");
199         for (i = 0; i < 10; i++) {
200                 struct llog_rec_hdr hdr;
201                 char buf[8];
202                 hdr.lrh_len = 8;
203                 hdr.lrh_type = OBD_CFG_REC;
204                 memset(buf, 0, sizeof buf);
205                 rc = llog_write_rec(llh, &hdr, NULL, 0, buf, -1);
206                 if (rc) {
207                         CERROR("3b: write 10 records failed at #%d: %d\n",
208                                i + 1, rc);
209                         RETURN(rc);
210                 }
211                 num_recs++;
212                 if ((rc = verify_handle("3c", llh, num_recs)))
213                         RETURN(rc);
214         }
215
216         if ((rc = verify_handle("3b", llh, num_recs)))
217                 RETURN(rc);
218
219         CWARN("3c: write 1000 more log records\n");
220         for (i = 0; i < 1000; i++) {
221                 rc = llog_write_rec(llh, &lcr.lcr_hdr, NULL, 0, NULL, -1);
222                 if (rc) {
223                         CERROR("3c: write 1000 records failed at #%d: %d\n",
224                                i + 1, rc);
225                         RETURN(rc);
226                 }
227                 num_recs++;
228                 if ((rc = verify_handle("3b", llh, num_recs)))
229                         RETURN(rc);
230         }
231
232         if ((rc = verify_handle("3c", llh, num_recs)))
233                 RETURN(rc);
234
235         CWARN("3d: write log more than BITMAP_SIZE, return -ENOSPC\n");
236         for (i = 0; i < LLOG_BITMAP_SIZE(llh->lgh_hdr) + 1; i++) {
237                 struct llog_rec_hdr hdr;
238                 char buf_even[24];
239                 char buf_odd[32];
240
241                 memset(buf_odd, 0, sizeof buf_odd);
242                 memset(buf_even, 0, sizeof buf_even);
243                 if ((i % 2) == 0) {
244                         hdr.lrh_len = 24;
245                         hdr.lrh_type = OBD_CFG_REC;
246                         rc = llog_write_rec(llh, &hdr, NULL, 0, buf_even, -1);
247                 } else {
248                         hdr.lrh_len = 32;
249                         hdr.lrh_type = OBD_CFG_REC;
250                         rc = llog_write_rec(llh, &hdr, NULL, 0, buf_odd, -1);
251                 }
252                 if (rc) {
253                         if (rc == -ENOSPC) {
254                                 break;
255                         } else {
256                                 CERROR("3c: write recs failed at #%d: %d\n",
257                                         i + 1, rc);
258                                 RETURN(rc);
259                         }
260                 }
261                 num_recs++;
262         }
263         if (rc != -ENOSPC) {
264                 CWARN("3d: write record more than BITMAP size!\n");
265                 RETURN(-EINVAL);
266         }
267         if ((rc = verify_handle("3d", llh, num_recs)))
268                 RETURN(rc);
269
270         RETURN(rc);
271 }
272
273 /* Test catalogue additions */
274 static int llog_test_4(struct obd_device *obd)
275 {
276         struct llog_handle *cath;
277         char name[10];
278         int rc, i, buflen;
279         struct llog_mini_rec lmr;
280         struct llog_cookie cookie;
281         struct llog_ctxt *ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
282         int num_recs = 0;
283         char *buf;
284         struct llog_rec_hdr rec;
285
286         ENTRY;
287
288         lmr.lmr_hdr.lrh_len = lmr.lmr_tail.lrt_len = LLOG_MIN_REC_SIZE;
289         lmr.lmr_hdr.lrh_type = 0xf00f00;
290
291         sprintf(name, "%x", llog_test_rand+1);
292         CWARN("4a: create a catalog log with name: %s\n", name);
293         rc = llog_create(ctxt, &cath, NULL, name);
294         if (rc) {
295                 CERROR("1a: llog_create with name %s failed: %d\n", name, rc);
296                 GOTO(out, rc);
297         }
298         llog_init_handle(cath, LLOG_F_IS_CAT, &uuid);
299         num_recs++;
300         cat_logid = cath->lgh_id;
301
302         CWARN("4b: write 1 record into the catalog\n");
303         rc = llog_cat_add_rec(cath, &lmr.lmr_hdr, &cookie, NULL);
304         if (rc != 1) {
305                 CERROR("4b: write 1 catalog record failed at: %d\n", rc);
306                 GOTO(out, rc);
307         }
308         num_recs++;
309         if ((rc = verify_handle("4b", cath, 2)))
310                 GOTO(ctxt_release, rc);
311
312         if ((rc = verify_handle("4b", cath->u.chd.chd_current_log, num_recs)))
313                 GOTO(ctxt_release, rc);
314
315         CWARN("4c: cancel 1 log record\n");
316         rc = llog_cat_cancel_records(cath, 1, &cookie);
317         if (rc) {
318                 CERROR("4c: cancel 1 catalog based record failed: %d\n", rc);
319                 GOTO(out, rc);
320         }
321         num_recs--;
322
323         if ((rc = verify_handle("4c", cath->u.chd.chd_current_log, num_recs)))
324                 GOTO(ctxt_release, rc);
325
326         CWARN("4d: write 40,000 more log records\n");
327         for (i = 0; i < 40000; i++) {
328                 rc = llog_cat_add_rec(cath, &lmr.lmr_hdr, NULL, NULL);
329                 if (rc) {
330                         CERROR("4d: write 40000 records failed at #%d: %d\n",
331                                i + 1, rc);
332                         GOTO(out, rc);
333                 }
334                 num_recs++;
335         }
336
337         CWARN("4e: add 5 large records, one record per block\n");
338         buflen = LLOG_CHUNK_SIZE - sizeof(struct llog_rec_hdr)
339                         - sizeof(struct llog_rec_tail);
340         OBD_ALLOC(buf, buflen);
341         if (buf == NULL)
342                 GOTO(out, rc = -ENOMEM);
343         for (i = 0; i < 5; i++) {
344                 rec.lrh_len = buflen;
345                 rec.lrh_type = OBD_CFG_REC;
346                 rc = llog_cat_add_rec(cath, &rec, NULL, buf);
347                 if (rc) {
348                         CERROR("4e: write 5 records failed at #%d: %d\n",
349                                i + 1, rc);
350                         OBD_FREE(buf, buflen);
351                         GOTO(out, rc);
352                 }
353                 num_recs++;
354         }
355         OBD_FREE(buf, buflen);
356
357  out:
358         CWARN("4f: put newly-created catalog\n");
359         rc = llog_cat_put(cath);
360 ctxt_release:
361         llog_ctxt_put(ctxt);
362         if (rc)
363                 CERROR("1b: close log %s failed: %d\n", name, rc);
364         RETURN(rc);
365 }
366
367 static int cat_print_cb(const struct lu_env *env, struct llog_handle *llh,
368                         struct llog_rec_hdr *rec, void *data)
369 {
370         struct llog_logid_rec *lir = (struct llog_logid_rec *)rec;
371
372         if (rec->lrh_type != LLOG_LOGID_MAGIC) {
373                 CERROR("invalid record in catalog\n");
374                 RETURN(-EINVAL);
375         }
376
377         CWARN("seeing record at index %d - "LPX64":%x in log "LPX64"\n",
378                rec->lrh_index, lir->lid_id.lgl_oid,
379                lir->lid_id.lgl_ogen, llh->lgh_id.lgl_oid);
380         RETURN(0);
381 }
382
383 static int plain_print_cb(const struct lu_env *env, struct llog_handle *llh,
384                           struct llog_rec_hdr *rec, void *data)
385 {
386         if (!(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN)) {
387                 CERROR("log is not plain\n");
388                 RETURN(-EINVAL);
389         }
390
391         CWARN("seeing record at index %d in log "LPX64"\n",
392                rec->lrh_index, llh->lgh_id.lgl_oid);
393         RETURN(0);
394 }
395
396 static int llog_cancel_rec_cb(const struct lu_env *env,
397                               struct llog_handle *llh,
398                               struct llog_rec_hdr *rec, void *data)
399 {
400         struct llog_cookie cookie;
401         static int i = 0;
402
403         if (!(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN)) {
404                 CERROR("log is not plain\n");
405                 RETURN(-EINVAL);
406         }
407
408         cookie.lgc_lgl = llh->lgh_id;
409         cookie.lgc_index = rec->lrh_index;
410
411         llog_cat_cancel_records(llh->u.phd.phd_cat_handle, 1, &cookie);
412         i++;
413         if (i == 40000)
414                 RETURN(-4711);
415         RETURN(0);
416 }
417
418 /* Test log and catalogue processing */
419 static int llog_test_5(struct obd_device *obd)
420 {
421         struct llog_handle *llh = NULL;
422         char name[10];
423         int rc;
424         struct llog_mini_rec lmr;
425         struct llog_ctxt *ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
426
427         ENTRY;
428
429         lmr.lmr_hdr.lrh_len = lmr.lmr_tail.lrt_len = LLOG_MIN_REC_SIZE;
430         lmr.lmr_hdr.lrh_type = 0xf00f00;
431
432         CWARN("5a: re-open catalog by id\n");
433         rc = llog_create(ctxt, &llh, &cat_logid, NULL);
434         if (rc) {
435                 CERROR("5a: llog_create with logid failed: %d\n", rc);
436                 GOTO(out, rc);
437         }
438         llog_init_handle(llh, LLOG_F_IS_CAT, &uuid);
439
440         CWARN("5b: print the catalog entries.. we expect 2\n");
441         rc = llog_process(NULL, llh, cat_print_cb, "test 5", NULL);
442         if (rc) {
443                 CERROR("5b: process with cat_print_cb failed: %d\n", rc);
444                 GOTO(out, rc);
445         }
446
447         CWARN("5c: Cancel 40000 records, see one log zapped\n");
448         rc = llog_cat_process(NULL, llh, llog_cancel_rec_cb, "foobar", 0, 0);
449         if (rc != -4711) {
450                 CERROR("5c: process with cat_cancel_cb failed: %d\n", rc);
451                 GOTO(out, rc);
452         }
453
454         CWARN("5d: add 1 record to the log with many canceled empty pages\n");
455         rc = llog_cat_add_rec(llh, &lmr.lmr_hdr, NULL, NULL);
456         if (rc) {
457                 CERROR("5d: add record to the log with many canceled empty\
458                        pages failed\n");
459                 GOTO(out, rc);
460         }
461
462         CWARN("5b: print the catalog entries.. we expect 1\n");
463         rc = llog_process(NULL, llh, cat_print_cb, "test 5", NULL);
464         if (rc) {
465                 CERROR("5b: process with cat_print_cb failed: %d\n", rc);
466                 GOTO(out, rc);
467         }
468
469         CWARN("5e: print plain log entries.. expect 6\n");
470         rc = llog_cat_process(NULL, llh, plain_print_cb, "foobar", 0, 0);
471         if (rc) {
472                 CERROR("5e: process with plain_print_cb failed: %d\n", rc);
473                 GOTO(out, rc);
474         }
475
476         CWARN("5f: print plain log entries reversely.. expect 6\n");
477         rc = llog_cat_reverse_process(NULL, llh, plain_print_cb, "foobar");
478         if (rc) {
479                 CERROR("5f: reversely process with plain_print_cb failed: %d\n", rc);
480                 GOTO(out, rc);
481         }
482
483  out:
484         CWARN("5: close re-opened catalog\n");
485         if (llh)
486                 rc = llog_cat_put(llh);
487         if (rc)
488                 CERROR("1b: close log %s failed: %d\n", name, rc);
489         llog_ctxt_put(ctxt);
490
491         RETURN(rc);
492 }
493
494 /* Test client api; open log by name and process */
495 static int llog_test_6(struct obd_device *obd, char *name)
496 {
497         struct obd_device *mgc_obd;
498         struct llog_ctxt *ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
499         struct obd_uuid *mgs_uuid = &ctxt->loc_exp->exp_obd->obd_uuid;
500         struct obd_export *exp;
501         struct obd_uuid uuid = {"LLOG_TEST6_UUID"};
502         struct llog_handle *llh = NULL;
503         struct llog_ctxt *nctxt;
504         int rc;
505
506         CWARN("6a: re-open log %s using client API\n", name);
507         mgc_obd = class_find_client_obd(mgs_uuid, LUSTRE_MGC_NAME, NULL);
508         if (mgc_obd == NULL) {
509                 CERROR("6: no MGC devices connected to %s found.\n",
510                        mgs_uuid->uuid);
511                 GOTO(ctxt_release, rc = -ENOENT);
512         }
513
514         rc = obd_connect(NULL, &exp, mgc_obd, &uuid,
515                          NULL /* obd_connect_data */, NULL);
516         if (rc != -EALREADY) {
517                 CERROR("6: connect on connected MDC (%s) failed to return"
518                        " -EALREADY", mgc_obd->obd_name);
519                 if (rc == 0)
520                         obd_disconnect(exp);
521                 GOTO(ctxt_release, rc = -EINVAL);
522         }
523
524         nctxt = llog_get_context(mgc_obd, LLOG_CONFIG_REPL_CTXT);
525         rc = llog_create(nctxt, &llh, NULL, name);
526         if (rc) {
527                 CERROR("6: llog_create failed %d\n", rc);
528                 llog_ctxt_put(nctxt);
529                 GOTO(ctxt_release, rc);
530         }
531
532         rc = llog_init_handle(llh, LLOG_F_IS_PLAIN, NULL);
533         if (rc) {
534                 CERROR("6: llog_init_handle failed %d\n", rc);
535                 GOTO(parse_out, rc);
536         }
537
538         rc = llog_process(NULL, llh, plain_print_cb, NULL, NULL);
539         if (rc)
540                 CERROR("6: llog_process failed %d\n", rc);
541
542         rc = llog_reverse_process(NULL, llh, plain_print_cb, NULL, NULL);
543         if (rc)
544                 CERROR("6: llog_reverse_process failed %d\n", rc);
545
546 parse_out:
547         rc = llog_close(llh);
548         llog_ctxt_put(nctxt);
549         if (rc) {
550                 CERROR("6: llog_close failed: rc = %d\n", rc);
551         }
552 ctxt_release:
553         llog_ctxt_put(ctxt);
554         RETURN(rc);
555 }
556
557 static int llog_test_7(struct obd_device *obd)
558 {
559         struct llog_ctxt *ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
560         struct llog_handle *llh;
561         struct llog_create_rec lcr;
562         char name[10];
563         int rc;
564         ENTRY;
565
566         sprintf(name, "%x", llog_test_rand+2);
567         CWARN("7: create a log with name: %s\n", name);
568         LASSERT(ctxt);
569
570         rc = llog_create(ctxt, &llh, NULL, name);
571         if (rc) {
572                 CERROR("7: llog_create with name %s failed: %d\n", name, rc);
573                 GOTO(ctxt_release, rc);
574         }
575         llog_init_handle(llh, LLOG_F_IS_PLAIN, &uuid);
576
577         lcr.lcr_hdr.lrh_len = lcr.lcr_tail.lrt_len = sizeof(lcr);
578         lcr.lcr_hdr.lrh_type = OST_SZ_REC;
579         rc = llog_write_rec(llh,  &lcr.lcr_hdr, NULL, 0, NULL, -1);
580         if (rc) {
581                 CERROR("7: write one log record failed: %d\n", rc);
582                 GOTO(ctxt_release, rc);
583         }
584
585         rc = llog_destroy(llh);
586         if (rc)
587                 CERROR("7: llog_destroy failed: %d\n", rc);
588         else
589                 llog_free_handle(llh);
590 ctxt_release:
591         llog_ctxt_put(ctxt);
592         RETURN(rc);
593 }
594
595 /* -------------------------------------------------------------------------
596  * Tests above, boring obd functions below
597  * ------------------------------------------------------------------------- */
598 static int llog_run_tests(struct obd_device *obd)
599 {
600         struct llog_handle *llh;
601         struct lvfs_run_ctxt saved;
602         struct llog_ctxt *ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
603         int rc, err, cleanup_phase = 0;
604         char name[10];
605         ENTRY;
606
607         sprintf(name, "%x", llog_test_rand);
608         push_ctxt(&saved, &ctxt->loc_exp->exp_obd->obd_lvfs_ctxt, NULL);
609
610         rc = llog_test_1(obd, name);
611         if (rc)
612                 GOTO(cleanup, rc);
613
614         rc = llog_test_2(obd, name, &llh);
615         if (rc)
616                 GOTO(cleanup, rc);
617         cleanup_phase = 1; /* close llh */
618
619         rc = llog_test_3(obd, llh);
620         if (rc)
621                 GOTO(cleanup, rc);
622
623         rc = llog_test_4(obd);
624         if (rc)
625                 GOTO(cleanup, rc);
626
627         rc = llog_test_5(obd);
628         if (rc)
629                 GOTO(cleanup, rc);
630
631         rc = llog_test_6(obd, name);
632         if (rc)
633                 GOTO(cleanup, rc);
634
635         rc = llog_test_7(obd);
636         if (rc)
637                 GOTO(cleanup, rc);
638
639  cleanup:
640         switch (cleanup_phase) {
641         case 1:
642                 err = llog_close(llh);
643                 if (err)
644                         CERROR("cleanup: llog_close failed: %d\n", err);
645                 if (!rc)
646                         rc = err;
647         case 0:
648                 pop_ctxt(&saved, &ctxt->loc_exp->exp_obd->obd_lvfs_ctxt, NULL);
649         }
650         llog_ctxt_put(ctxt);
651         return rc;
652 }
653
654
655 static int llog_test_llog_init(struct obd_device *obd,
656                                struct obd_llog_group *olg,
657                                struct obd_device *tgt, int *index)
658 {
659         int rc;
660         ENTRY;
661
662         rc = llog_setup(obd, &obd->obd_olg, LLOG_TEST_ORIG_CTXT, tgt, 0, NULL,
663                         &llog_lvfs_ops);
664         RETURN(rc);
665 }
666
667 static int llog_test_llog_finish(struct obd_device *obd, int count)
668 {
669         int rc;
670         ENTRY;
671
672         rc = llog_cleanup(llog_get_context(obd, LLOG_TEST_ORIG_CTXT));
673         RETURN(rc);
674 }
675 #ifdef LPROCFS
676 static struct lprocfs_vars lprocfs_llog_test_obd_vars[] = { {0} };
677 static struct lprocfs_vars lprocfs_llog_test_module_vars[] = { {0} };
678 static void lprocfs_llog_test_init_vars(struct lprocfs_static_vars *lvars)
679 {
680     lvars->module_vars  = lprocfs_llog_test_module_vars;
681     lvars->obd_vars     = lprocfs_llog_test_obd_vars;
682 }
683 #endif
684
685 static int llog_test_cleanup(struct obd_device *obd)
686 {
687         int rc = obd_llog_finish(obd, 0);
688         if (rc)
689                 CERROR("failed to llog_test_llog_finish: %d\n", rc);
690
691         lprocfs_obd_cleanup(obd);
692
693         return rc;
694 }
695
696 static int llog_test_setup(struct obd_device *obd, struct lustre_cfg *lcfg)
697 {
698         struct lprocfs_static_vars lvars;
699         struct obd_device *tgt;
700         int rc;
701         ENTRY;
702
703         if (lcfg->lcfg_bufcount < 2) {
704                 CERROR("requires a TARGET OBD name\n");
705                 RETURN(-EINVAL);
706         }
707
708         if (lcfg->lcfg_buflens[1] < 1) {
709                 CERROR("requires a TARGET OBD name\n");
710                 RETURN(-EINVAL);
711         }
712
713         /* disk obd */
714         tgt = class_name2obd(lustre_cfg_string(lcfg, 1));
715         if (!tgt || !tgt->obd_attached || !tgt->obd_set_up) {
716                 CERROR("target device not attached or not set up (%s)\n",
717                        lustre_cfg_string(lcfg, 1));
718                 RETURN(-EINVAL);
719         }
720
721         rc = obd_llog_init(obd, NULL, tgt, NULL);
722         if (rc)
723                 RETURN(rc);
724
725         llog_test_rand = cfs_rand();
726
727         rc = llog_run_tests(obd);
728         if (rc)
729                 llog_test_cleanup(obd);
730
731         lprocfs_llog_test_init_vars(&lvars);
732         lprocfs_obd_setup(obd, lvars.obd_vars);
733
734         RETURN(rc);
735 }
736
737 static struct obd_ops llog_obd_ops = {
738         .o_owner       = THIS_MODULE,
739         .o_setup       = llog_test_setup,
740         .o_cleanup     = llog_test_cleanup,
741         .o_llog_init   = llog_test_llog_init,
742         .o_llog_finish = llog_test_llog_finish,
743 };
744
745 static int __init llog_test_init(void)
746 {
747         struct lprocfs_static_vars lvars;
748
749         lprocfs_llog_test_init_vars(&lvars);
750         return class_register_type(&llog_obd_ops, NULL,
751                                    lvars.module_vars,"llog_test", NULL);
752 }
753
754 static void __exit llog_test_exit(void)
755 {
756         class_unregister_type("llog_test");
757 }
758
759 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
760 MODULE_DESCRIPTION("llog test module");
761 MODULE_LICENSE("GPL");
762
763 module_init(llog_test_init);
764 module_exit(llog_test_exit);