ocfs2: Correct merge of 52f7c21
(Move /sys/o2cb to /sys/fs/o2cb)
Commit 52f7c21b61
was intended to move
/sys/o2cb to /sys/fs/o2cb, providing /sys/o2cb as a symlink for
backwards compatibility. However, the merge apparently added the
symlink but failed to move the directory, resulting in a duplicate
filename error. It's a one-line change that was missing.
Signed-off-by: Joel Becker <joel.becker@oracle.com>
Acked-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Mark Fasheh <mfasheh@suse.com>
This commit is contained in:
parent
08acd4f8af
commit
9d80f7539a
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ int o2cb_sys_init(void)
|
|||
{
|
||||
int ret;
|
||||
|
||||
o2cb_kset = kset_create_and_add("o2cb", NULL, NULL);
|
||||
o2cb_kset = kset_create_and_add("o2cb", NULL, fs_kobj);
|
||||
if (!o2cb_kset)
|
||||
return -ENOMEM;
|
||||
|
||||
|
|
Loading…
Reference in a new issue