diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-06-09 06:44:16 +0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-06-09 06:44:16 +0400 |
commit | 845a2fdcbd5bc5b9f652201ee95c825827a1d521 (patch) | |
tree | c7dec1efdb7900c4e10331fbab2add44ade5e1bc /fs/ocfs2/cluster/masklog.c | |
parent | 81d84a94be8085475c3585596e52b06ccbedd922 (diff) | |
parent | eeb47d1234af1a9267836f680a8e114b2e88d0dc (diff) | |
download | linux-845a2fdcbd5bc5b9f652201ee95c825827a1d521.tar.xz |
Merge branch 'upstream-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mfasheh/ocfs2
* 'upstream-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mfasheh/ocfs2:
ocfs2: Fix invalid assertion during write on 64k pages
ocfs2: Fix masklog breakage
Diffstat (limited to 'fs/ocfs2/cluster/masklog.c')
-rw-r--r-- | fs/ocfs2/cluster/masklog.c | 3 |
1 files changed, 1 insertions, 2 deletions
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) |