2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved.
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
7 * of the GNU General Public License version 2.
10 #include <linux/init.h>
14 extern struct lm_lockops gdlm_ops
;
16 static int __init
init_lock_dlm(void)
20 error
= gfs2_register_lockproto(&gdlm_ops
);
22 printk(KERN_WARNING
"lock_dlm: can't register protocol: %d\n",
27 error
= gdlm_sysfs_init();
29 gfs2_unregister_lockproto(&gdlm_ops
);
33 error
= gdlm_plock_init();
36 gfs2_unregister_lockproto(&gdlm_ops
);
41 "Lock_DLM (built %s %s) installed\n", __DATE__
, __TIME__
);
45 static void __exit
exit_lock_dlm(void)
49 gfs2_unregister_lockproto(&gdlm_ops
);
52 module_init(init_lock_dlm
);
53 module_exit(exit_lock_dlm
);
55 MODULE_DESCRIPTION("GFS DLM Locking Module");
56 MODULE_AUTHOR("Red Hat, Inc.");
57 MODULE_LICENSE("GPL");