dect
/
linux-2.6
Archived
13
0
Fork 0

ocfs2: Fix masklog breakage

Some of the sysfs changes inadvertantly broke the simple runtime debug log
filtering employed in ocfs2. Fix this by properly exporting the masklog
category filter names.

Signed-off-by: Tiger Yang <tiger.yang@oracle.com>
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
This commit is contained in:
Tiger Yang 2007-06-04 10:31:08 +08:00 committed by Mark Fasheh
parent 5ecd3100e6
commit 59be7dc97b
1 changed files with 1 additions and 2 deletions

View File

@ -144,8 +144,7 @@ static struct kobj_type mlog_ktype = {
};
static struct kset mlog_kset = {
.kobj = {.name = "logmask"},
.ktype = &mlog_ktype
.kobj = {.name = "logmask", .ktype = &mlog_ktype},
};
int mlog_sys_init(struct kset *o2cb_subsys)