My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <linux/module.h>
#include <linux/kernel.h>

int __init zfs_init(void) {

printk(KERN_INFO "Maybe it is when something happens :)\n");
return 0;
}

static void __exit zfs_exit(void) {

printk(KERN_INFO "Probably soon\n");
}

module_init(zfs_init);
module_exit(zfs_exit);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Pavel Vasilyev <pavel@pavlinux.ru>");



Change log

r2 by dixlor on Apr 1, 2010   Diff
Pre Alpha version of ZFS filesystem for
Linux
Go to: 
Project members, sign in to write a code review

Older revisions

All revisions of this file

File info

Size: 377 bytes, 22 lines
Powered by Google Project Hosting