Commit 6b11d817 authored by Joel Becker's avatar Joel Becker Committed by Mark Fasheh

ocfs2: Fix userspace ABI breakage in sysfs

The userspace ABI of ocfs2's internal cluster stack (o2cb) was broken by
commit c60b7178 "kset: convert ocfs2 to
use kset_create".  Specifically, the '/sys/o2cb' kset was moved to
'/sys/fs/o2cb'.  This breaks all ocfs2 tools and renders the
filesystem unmountable.

This fix moves '/sys/o2cb' back where it belongs.
Signed-off-by: default avatarJoel Becker <joel.becker@oracle.com>
Signed-off-by: default avatarMark Fasheh <mark.fasheh@oracle.com>
parent 8561b089
...@@ -64,7 +64,7 @@ int o2cb_sys_init(void) ...@@ -64,7 +64,7 @@ int o2cb_sys_init(void)
{ {
int ret; int ret;
o2cb_kset = kset_create_and_add("o2cb", NULL, fs_kobj); o2cb_kset = kset_create_and_add("o2cb", NULL, NULL);
if (!o2cb_kset) if (!o2cb_kset)
return -ENOMEM; return -ENOMEM;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment