From: Tiger Yang Date: Mon, 4 Jun 2007 02:31:08 +0000 (+0800) Subject: ocfs2: Fix masklog breakage X-Git-Tag: v2.6.22-rc5~57^2~1 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=59be7dc97bacc0fd8e22f0be6e2aebb5c9b4ff47;p=karo-tx-linux.git 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 Signed-off-by: Mark Fasheh --- diff --git a/fs/ocfs2/cluster/masklog.c b/fs/ocfs2/cluster/masklog.c index a93620ce4aca..2b205f5d5790 100644 --- a/fs/ocfs2/cluster/masklog.c +++ b/fs/ocfs2/cluster/masklog.c @@ -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)