Whamcloud - gitweb
Land b_orphan on HEAD (20040130_1601)
[fs/lustre-release.git] / lustre / obdclass / llog_test.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2003 Cluster File Systems, Inc.
5  *   Author: Phil Schwan <phil@clusterfs.com>
6  *
7  *   This file is part of Lustre, http://www.lustre.org/
8  *
9  *   Lustre is free software; you can redistribute it and/or
10  *   modify it under the terms of version 2 of the GNU General Public
11  *   License as published by the Free Software Foundation.
12  *
13  *   Lustre is distributed in the hope that it will be useful,
14  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *   GNU General Public License for more details.
17  *
18  *   You should have received a copy of the GNU General Public License
19  *   along with Lustre; if not, write to the Free Software
20  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  *
22  * A kernel module which tests the llog API from the OBD setup function.
23  */
24
25 #ifndef EXPORT_SYMTAB
26 # define EXPORT_SYMTAB
27 #endif
28 #define DEBUG_SUBSYSTEM S_CLASS
29
30 #include <linux/module.h>
31 #include <linux/init.h>
32
33 #include <linux/obd_class.h>
34 #include <linux/lustre_log.h>
35 #include <linux/lustre_mds.h> /* for LUSTRE_MDC_NAME */
36
37 static int llog_test_rand;
38 static struct obd_uuid uuid = { .uuid = "test_uuid" };
39 static struct llog_logid cat_logid;
40
41 struct llog_mini_rec {
42         struct llog_rec_hdr     lmr_hdr;
43         struct llog_rec_tail    lmr_tail;
44 } __attribute__((packed));
45
46 static int verify_handle(char *test, struct llog_handle *llh, int num_recs)
47 {
48         int i;
49         int last_idx = 0;
50         int active_recs = 0;
51
52         for (i = 0; i < LLOG_BITMAP_BYTES * 8; i++) {
53                 if (ext2_test_bit(i, llh->lgh_hdr->llh_bitmap)) {
54                         last_idx = i;
55                         active_recs++;
56                 }
57         }
58
59         if (active_recs != num_recs) {
60                 CERROR("%s: expected %d active recs after write, found %d\n",
61                        test, num_recs, active_recs);
62                 RETURN(-ERANGE);
63         }
64
65         if (le32_to_cpu(llh->lgh_hdr->llh_count) != num_recs) {
66                 CERROR("%s: handle->count is %d, expected %d after write\n",
67                        test, le32_to_cpu(llh->lgh_hdr->llh_count), num_recs);
68                 RETURN(-ERANGE);
69         }
70
71         if (llh->lgh_last_idx < last_idx) {
72                 CERROR("%s: handle->last_idx is %d, expected %d after write\n",
73                        test, llh->lgh_last_idx, last_idx);
74                 RETURN(-ERANGE);
75         }
76
77         RETURN(0);
78 }
79
80 /* Test named-log create/open, close */
81 static int llog_test_1(struct obd_device *obd, char *name)
82 {
83         struct llog_handle *llh;
84         struct llog_ctxt *ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
85         int rc;
86         int rc2;
87         ENTRY;
88
89         CWARN("1a: create a log with name: %s\n", name);
90         LASSERT(ctxt);
91
92         rc = llog_create(ctxt, &llh, NULL, name);
93         if (rc) {
94                 CERROR("1a: llog_create with name %s failed: %d\n", name, rc);
95                 RETURN(rc);
96         }
97         llog_init_handle(llh, LLOG_F_IS_PLAIN, &uuid);
98
99         if ((rc = verify_handle("1", llh, 1)))
100                 GOTO(out, rc);
101
102  out:
103         CWARN("1b: close newly-created log\n");
104         rc2 = llog_close(llh);
105         if (rc2) {
106                 CERROR("1b: close log %s failed: %d\n", name, rc2);
107                 if (rc == 0)
108                         rc = rc2;
109         }
110         RETURN(rc);
111 }
112
113 /* Test named-log reopen; returns opened log on success */
114 static int llog_test_2(struct obd_device *obd, char *name,
115                        struct llog_handle **llh)
116 {
117         struct llog_handle *loghandle;
118         struct llog_logid logid;
119         int rc;
120         struct llog_ctxt *ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
121         ENTRY;
122
123         CWARN("2a: re-open a log with name: %s\n", name);
124         rc = llog_create(ctxt, llh, NULL, name);
125         if (rc) {
126                 CERROR("2a: re-open log with name %s failed: %d\n", name, rc);
127                 RETURN(rc);
128         }
129         llog_init_handle(*llh, LLOG_F_IS_PLAIN, &uuid);
130
131         if ((rc = verify_handle("2", *llh, 1)))
132                 RETURN(rc);
133
134         CWARN("2b: create a log without specified NAME & LOGID\n");
135         rc = llog_create(ctxt, &loghandle, NULL, NULL);
136         if (rc) {
137                 CERROR("2b: create log failed\n");
138                 RETURN(rc);
139         }
140         llog_init_handle(loghandle, LLOG_F_IS_PLAIN, &uuid);
141         logid = loghandle->lgh_id;
142         llog_close(loghandle);
143
144         CWARN("2b: re-open the log by LOGID\n");
145         rc = llog_create(ctxt, &loghandle, &logid, NULL);
146         if (rc) {
147                 CERROR("2b: re-open log by LOGID failed\n");
148                 RETURN(rc);
149         }
150         llog_init_handle(loghandle, LLOG_F_IS_PLAIN, &uuid);
151
152         CWARN("2b: destroy this log\n");
153         rc = llog_destroy(loghandle);
154         if (rc) {
155                 CERROR("2b: destroy log failed\n");
156                 RETURN(rc);
157         }
158         llog_free_handle(loghandle);
159
160         RETURN(rc);
161 }
162
163 /* Test record writing, single and in bulk */
164 static int llog_test_3(struct obd_device *obd, struct llog_handle *llh)
165 {
166         struct llog_create_rec lcr;
167         int rc, i;
168         int num_recs = 1;       /* 1 for the header */
169         ENTRY;
170
171         lcr.lcr_hdr.lrh_len = lcr.lcr_tail.lrt_len = cpu_to_le32(sizeof(lcr));
172         lcr.lcr_hdr.lrh_type = cpu_to_le32(OST_SZ_REC);
173
174         CWARN("3a: write one create_rec\n");
175         rc = llog_write_rec(llh,  &lcr.lcr_hdr, NULL, 0, NULL, -1);
176         num_recs++;
177         if (rc) {
178                 CERROR("3a: write one log record failed: %d\n", rc);
179                 RETURN(rc);
180         }
181
182         if ((rc = verify_handle("3a", llh, num_recs)))
183                 RETURN(rc);
184
185         CWARN("3b: write 10 cfg log records with 8 bytes bufs\n");
186         for (i = 0; i < 10; i++) {
187                 struct llog_rec_hdr hdr;
188                 char buf[8];
189                 hdr.lrh_len = cpu_to_le32(8);
190                 hdr.lrh_type = cpu_to_le32(OBD_CFG_REC);
191                 memset(buf, 0, sizeof buf);
192                 rc = llog_write_rec(llh, &hdr, NULL, 0, buf, -1);
193                 if (rc) {
194                         CERROR("3b: write 10 records failed at #%d: %d\n",
195                                i + 1, rc);
196                         RETURN(rc);
197                 }
198                 num_recs++;
199                 if ((rc = verify_handle("3c", llh, num_recs)))
200                         RETURN(rc);
201         }
202
203         if ((rc = verify_handle("3b", llh, num_recs)))
204                 RETURN(rc);
205
206         CWARN("3c: write 1000 more log records\n");
207         for (i = 0; i < 1000; i++) {
208                 rc = llog_write_rec(llh, &lcr.lcr_hdr, NULL, 0, NULL, -1);
209                 if (rc) {
210                         CERROR("3c: write 1000 records failed at #%d: %d\n",
211                                i + 1, rc);
212                         RETURN(rc);
213                 }
214                 num_recs++;
215                 if ((rc = verify_handle("3b", llh, num_recs)))
216                         RETURN(rc);
217         }
218
219         if ((rc = verify_handle("3c", llh, num_recs)))
220                 RETURN(rc);
221
222         RETURN(rc);
223 }
224
225 /* Test catalogue additions */
226 static int llog_test_4(struct obd_device *obd)
227 {
228         struct llog_handle *cath;
229         char name[10];
230         int rc, i, buflen;
231         struct llog_mini_rec lmr;
232         struct llog_cookie cookie;
233         struct llog_ctxt *ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
234         int num_recs = 0;
235         char *buf;
236         struct llog_rec_hdr rec;
237
238         ENTRY;
239
240         lmr.lmr_hdr.lrh_len = lmr.lmr_tail.lrt_len =
241                 cpu_to_le32(LLOG_MIN_REC_SIZE);
242         lmr.lmr_hdr.lrh_type = cpu_to_le32(0xf00f00);
243
244         sprintf(name, "%x", llog_test_rand+1);
245         CWARN("4a: create a catalog log with name: %s\n", name);
246         rc = llog_create(ctxt, &cath, NULL, name);
247         if (rc) {
248                 CERROR("1a: llog_create with name %s failed: %d\n", name, rc);
249                 GOTO(out, rc);
250         }
251         llog_init_handle(cath, LLOG_F_IS_CAT, &uuid);
252         num_recs++;
253         cat_logid = cath->lgh_id;
254
255         CWARN("4b: write 1 record into the catalog\n");
256         rc = llog_cat_add_rec(cath, &lmr.lmr_hdr, &cookie, NULL);
257         if (rc != 1) {
258                 CERROR("4b: write 1 catalog record failed at: %d\n", rc);
259                 GOTO(out, rc);
260         }
261         num_recs++;
262         if ((rc = verify_handle("4b", cath, 2)))
263                 RETURN(rc);
264
265         if ((rc = verify_handle("4b", cath->u.chd.chd_current_log, num_recs)))
266                 RETURN(rc);
267
268         CWARN("4c: cancel 1 log record\n");
269         rc = llog_cat_cancel_records(cath, 1, &cookie);
270         if (rc) {
271                 CERROR("4c: cancel 1 catalog based record failed: %d\n", rc);
272                 GOTO(out, rc);
273         }
274         num_recs--;
275
276         if ((rc = verify_handle("4c", cath->u.chd.chd_current_log, num_recs)))
277                 RETURN(rc);
278
279         CWARN("4d: write 40,000 more log records\n");
280         for (i = 0; i < 40000; i++) {
281                 rc = llog_cat_add_rec(cath, &lmr.lmr_hdr, NULL, NULL);
282                 if (rc) {
283                         CERROR("4d: write 40000 records failed at #%d: %d\n",
284                                i + 1, rc);
285                         GOTO(out, rc);
286                 }
287                 num_recs++;
288         }
289
290         CWARN("4e: add 5 large records, one record per block\n");
291         buflen = LLOG_CHUNK_SIZE - sizeof(struct llog_rec_hdr)
292                         - sizeof(struct llog_rec_tail);
293         OBD_ALLOC(buf, buflen);
294         if (buf == NULL)
295                 GOTO(out, rc = -ENOMEM);
296         for (i = 0; i < 5; i++) {
297                 rec.lrh_len = cpu_to_le32(buflen);
298                 rec.lrh_type = cpu_to_le32(OBD_CFG_REC);
299                 rc = llog_cat_add_rec(cath, &rec, NULL, buf);
300                 if (rc) {
301                         CERROR("4e: write 5 records failed at #%d: %d\n",
302                                i + 1, rc);
303                         OBD_FREE(buf, buflen);
304                         GOTO(out, rc);
305                 }
306                 num_recs++;
307         }
308         OBD_FREE(buf, buflen);
309
310  out:
311         CWARN("4f: put newly-created catalog\n");
312         rc = llog_cat_put(cath);
313         if (rc)
314                 CERROR("1b: close log %s failed: %d\n", name, rc);
315         RETURN(rc);
316 }
317
318 static int cat_print_cb(struct llog_handle *llh, struct llog_rec_hdr *rec,
319                         void *data)
320 {
321         struct llog_logid_rec *lir = (struct llog_logid_rec *)rec;
322
323         if (le32_to_cpu(rec->lrh_type) != LLOG_LOGID_MAGIC) {
324                 CERROR("invalid record in catalog\n");
325                 RETURN(-EINVAL);
326         }
327
328         CWARN("seeing record at index %d - "LPX64":%x in log "LPX64"\n",
329                le32_to_cpu(rec->lrh_index), lir->lid_id.lgl_oid,
330                lir->lid_id.lgl_ogen, llh->lgh_id.lgl_oid);
331         RETURN(0);
332 }
333
334 static int plain_print_cb(struct llog_handle *llh, struct llog_rec_hdr *rec,
335                           void *data)
336 {
337         if (!(le32_to_cpu(llh->lgh_hdr->llh_flags) & LLOG_F_IS_PLAIN)) {
338                 CERROR("log is not plain\n");
339                 RETURN(-EINVAL);
340         }
341
342         CWARN("seeing record at index %d in log "LPX64"\n",
343                le32_to_cpu(rec->lrh_index), llh->lgh_id.lgl_oid);
344         RETURN(0);
345 }
346
347 static int llog_cancel_rec_cb(struct llog_handle *llh, struct llog_rec_hdr *rec,
348                               void *data)
349 {
350         struct llog_cookie cookie;
351         static int i = 0;
352
353         if (!(le32_to_cpu(llh->lgh_hdr->llh_flags) & LLOG_F_IS_PLAIN)) {
354                 CERROR("log is not plain\n");
355                 RETURN(-EINVAL);
356         }
357
358         cookie.lgc_lgl = llh->lgh_id;
359         cookie.lgc_index = le32_to_cpu(rec->lrh_index);
360
361         llog_cat_cancel_records(llh->u.phd.phd_cat_handle, 1, &cookie);
362         i++;
363         if (i == 40000)
364                 RETURN(-4711);
365         RETURN(0);
366 }
367
368
369
370 /* Test log and catalogue processing */
371 static int llog_test_5(struct obd_device *obd)
372 {
373         struct llog_handle *llh = NULL;
374         char name[10];
375         int rc;
376         struct llog_mini_rec lmr;
377         struct llog_ctxt *ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
378
379         ENTRY;
380
381         lmr.lmr_hdr.lrh_len = lmr.lmr_tail.lrt_len =
382                 cpu_to_le32(LLOG_MIN_REC_SIZE);
383         lmr.lmr_hdr.lrh_type = cpu_to_le32(0xf00f00);
384
385         CWARN("5a: re-open catalog by id\n");
386         rc = llog_create(ctxt, &llh, &cat_logid, NULL);
387         if (rc) {
388                 CERROR("5a: llog_create with logid failed: %d\n", rc);
389                 GOTO(out, rc);
390         }
391         llog_init_handle(llh, LLOG_F_IS_CAT, &uuid);
392
393         CWARN("5b: print the catalog entries.. we expect 2\n");
394         rc = llog_process(llh, (llog_cb_t)cat_print_cb, "test 5", NULL);
395         if (rc) {
396                 CERROR("5b: process with cat_print_cb failed: %d\n", rc);
397                 GOTO(out, rc);
398         }
399
400         CWARN("5c: Cancel 40000 records, see one log zapped\n");
401         rc = llog_cat_process(llh, llog_cancel_rec_cb, "foobar");
402         if (rc != -4711) {
403                 CERROR("5c: process with cat_cancel_cb failed: %d\n", rc);
404                 GOTO(out, rc);
405         }
406
407         CWARN("5d: add 1 record to the log with many canceled empty pages\n");
408         rc = llog_cat_add_rec(llh, &lmr.lmr_hdr, NULL, NULL);
409         if (rc) {
410                 CERROR("5d: add record to the log with many canceled empty\
411                        pages failed\n");
412                 GOTO(out, rc);
413         }
414
415         CWARN("5b: print the catalog entries.. we expect 1\n");
416         rc = llog_process(llh, (llog_cb_t)cat_print_cb, "test 5", NULL);
417         if (rc) {
418                 CERROR("5b: process with cat_print_cb failed: %d\n", rc);
419                 GOTO(out, rc);
420         }
421
422         CWARN("5e: print plain log entries.. expect 6\n");
423         rc = llog_cat_process(llh, plain_print_cb, "foobar");
424         if (rc) {
425                 CERROR("5e: process with plain_print_cb failed: %d\n", rc);
426                 GOTO(out, rc);
427         }
428
429  out:
430         CWARN("5: close re-opened catalog\n");
431         if (llh)
432                 rc = llog_cat_put(llh);
433         if (rc)
434                 CERROR("1b: close log %s failed: %d\n", name, rc);
435         RETURN(rc);
436 }
437
438 /* Test client api; open log by name and process */
439 static int llog_test_6(struct obd_device *obd, char *name)
440 {
441         struct obd_device *mdc_obd;
442         struct llog_ctxt *ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
443         struct obd_uuid *mds_uuid = &ctxt->loc_exp->exp_obd->obd_uuid;
444         struct lustre_handle exph = {0, };
445         struct obd_export *exp;
446         struct obd_uuid uuid = {"LLOG_TEST6_UUID"};
447         struct llog_handle *llh = NULL;
448         struct llog_ctxt *nctxt;
449         int rc;
450
451         CWARN("6a: re-open log %s using client API\n", name);
452         mdc_obd = class_find_client_obd(mds_uuid, LUSTRE_MDC_NAME, NULL);
453         if (mdc_obd == NULL) {
454                 CERROR("6: no MDC devices connected to %s found.\n",
455                        mds_uuid->uuid);
456                 RETURN(-ENOENT);
457         }
458
459         rc = obd_connect(&exph, mdc_obd, &uuid);
460         if (rc) {
461                 CERROR("6: failed to connect to MDC: %s\n", mdc_obd->obd_name);
462                 RETURN(rc);
463         }
464         exp = class_conn2export(&exph);
465
466         nctxt = llog_get_context(mdc_obd, LLOG_CONFIG_REPL_CTXT);
467         rc = llog_create(nctxt, &llh, NULL, name);
468         if (rc) {
469                 CERROR("6: llog_create failed %d\n", rc);
470                 RETURN(rc);
471         }
472
473         rc = llog_init_handle(llh, LLOG_F_IS_PLAIN, NULL);
474         if (rc) {
475                 CERROR("6: llog_init_handle failed %d\n", rc);
476                 GOTO(parse_out, rc);
477         }
478
479         rc = llog_process(llh, (llog_cb_t)plain_print_cb, NULL, NULL);
480         if (rc)
481                 CERROR("6: llog_process failed %d\n", rc);
482
483 parse_out:
484         rc = llog_close(llh);
485         if (rc) {
486                 CERROR("6: llog_close failed: rc = %d\n", rc);
487         }
488
489         rc = obd_disconnect(exp, 0);
490
491         RETURN(rc);
492 }
493
494 /* -------------------------------------------------------------------------
495  * Tests above, boring obd functions below
496  * ------------------------------------------------------------------------- */
497 static int llog_run_tests(struct obd_device *obd)
498 {
499         struct llog_handle *llh;
500         struct obd_run_ctxt saved;
501         struct llog_ctxt *ctxt = llog_get_context(obd, LLOG_TEST_ORIG_CTXT);
502         int rc, err, cleanup_phase = 0;
503         char name[10];
504         ENTRY;
505
506         sprintf(name, "%x", llog_test_rand);
507         push_ctxt(&saved, &ctxt->loc_exp->exp_obd->obd_ctxt, NULL);
508
509         rc = llog_test_1(obd, name);
510         if (rc)
511                 GOTO(cleanup, rc);
512
513         rc = llog_test_2(obd, name, &llh);
514         if (rc)
515                 GOTO(cleanup, rc);
516         cleanup_phase = 1; /* close llh */
517
518         rc = llog_test_3(obd, llh);
519         if (rc)
520                 GOTO(cleanup, rc);
521
522         rc = llog_test_4(obd);
523         if (rc)
524                 GOTO(cleanup, rc);
525
526         rc = llog_test_5(obd);
527         if (rc)
528                 GOTO(cleanup, rc);
529
530         rc = llog_test_6(obd, name);
531         if (rc)
532                 GOTO(cleanup, rc);
533
534  cleanup:
535         switch (cleanup_phase) {
536         case 1:
537                 err = llog_close(llh);
538                 if (err)
539                         CERROR("cleanup: llog_close failed: %d\n", err);
540                 if (!rc)
541                         rc = err;
542         case 0:
543                 pop_ctxt(&saved, &ctxt->loc_exp->exp_obd->obd_ctxt, NULL);
544         }
545
546         return rc;
547 }
548
549
550 static int llog_test_llog_init(struct obd_device *obd, struct obd_device *tgt,
551                                int count, struct llog_logid *logid)
552 {
553         int rc;
554         ENTRY;
555
556         rc = llog_setup(obd, LLOG_TEST_ORIG_CTXT, tgt, 0, NULL, &llog_lvfs_ops);
557         RETURN(rc);
558 }
559
560 static int llog_test_llog_finish(struct obd_device *obd, int count)
561 {
562         int rc;
563         ENTRY;
564
565         rc = llog_cleanup(llog_get_context(obd, LLOG_TEST_ORIG_CTXT));
566         RETURN(rc);
567 }
568
569 static int llog_test_cleanup(struct obd_device *obd, int flags)
570 {
571         int rc = obd_llog_finish(obd, 0);
572         if (rc)
573                 CERROR("failed to llog_test_llog_finish: %d\n", rc);
574
575         return rc;
576 }
577
578 static int llog_test_setup(struct obd_device *obd, obd_count len, void *buf)
579 {
580         struct lustre_cfg *lcfg = buf;
581         struct obd_device *tgt;
582         int rc;
583         ENTRY;
584
585         if (lcfg->lcfg_inllen1 < 1) {
586                 CERROR("requires a TARGET OBD name\n");
587                 RETURN(-EINVAL);
588         }
589
590         tgt = class_name2obd(lcfg->lcfg_inlbuf1);
591         if (!tgt || !tgt->obd_attached || !tgt->obd_set_up) {
592                 CERROR("target device not attached or not set up (%s)\n",
593                        lcfg->lcfg_inlbuf1);
594                 RETURN(-EINVAL);
595         }
596
597         rc = obd_llog_init(obd, tgt, 0, NULL);
598         if (rc)
599                 RETURN(rc);
600
601         llog_test_rand = ll_insecure_random_int();
602
603         rc = llog_run_tests(obd);
604         if (rc)
605                 llog_test_cleanup(obd, 0);
606         RETURN(rc);
607 }
608
609 static struct lprocfs_vars lprocfs_ost_obd_vars[] = { {0} };
610 static struct lprocfs_vars lprocfs_ost_module_vars[] = { {0} };
611 LPROCFS_INIT_VARS(ost, lprocfs_ost_module_vars, lprocfs_ost_obd_vars)
612
613 static int llog_test_attach(struct obd_device *dev, obd_count len, void *data)
614 {
615         struct lprocfs_static_vars lvars;
616
617         lprocfs_init_vars(ost, &lvars);
618         return lprocfs_obd_attach(dev, lvars.obd_vars);
619 }
620
621 static int llog_test_detach(struct obd_device *dev)
622 {
623         return lprocfs_obd_detach(dev);
624 }
625
626 static struct obd_ops llog_obd_ops = {
627         o_owner:       THIS_MODULE,
628         o_attach:      llog_test_attach,
629         o_detach:      llog_test_detach,
630         o_setup:       llog_test_setup,
631         o_cleanup:     llog_test_cleanup,
632         o_llog_init:   llog_test_llog_init,
633         o_llog_finish: llog_test_llog_finish,
634
635 };
636
637 static struct lprocfs_vars lprocfs_obd_vars[] = { {0} };
638 static struct lprocfs_vars lprocfs_module_vars[] = { {0} };
639 LPROCFS_INIT_VARS(llog_test, lprocfs_module_vars, lprocfs_obd_vars)
640
641 static int __init llog_test_init(void)
642 {
643         struct lprocfs_static_vars lvars;
644
645         lprocfs_init_vars(llog_test, &lvars);
646         return class_register_type(&llog_obd_ops,lvars.module_vars,"llog_test");
647 }
648
649 static void __exit llog_test_exit(void)
650 {
651         class_unregister_type("llog_test");
652 }
653
654 MODULE_AUTHOR("Cluster File Systems, Inc. <info@clusterfs.com>");
655 MODULE_DESCRIPTION("llog test module");
656 MODULE_LICENSE("GPL");
657
658 module_init(llog_test_init);
659 module_exit(llog_test_exit);