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:
parent
5ecd3100e6
commit
59be7dc97b
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue