diff options
author | Amerigo Wang <amwang@redhat.com> | 2011-05-01 21:34:16 +0800 |
---|---|---|
committer | Joel Becker <jlbec@evilplan.org> | 2011-05-23 23:37:14 -0700 |
commit | 69a60c4d177632bd56ae567dc0a082f7119b71c2 (patch) | |
tree | 8d94c8a6ad6cd7040650763b23a0396d16e440f2 /fs/ocfs2 | |
parent | e2b0c215c2bd57693af69f7a430585109c02b07f (diff) | |
download | linux-69a60c4d177632bd56ae567dc0a082f7119b71c2.tar.gz linux-69a60c4d177632bd56ae567dc0a082f7119b71c2.tar.bz2 linux-69a60c4d177632bd56ae567dc0a082f7119b71c2.zip |
ocfs2: remove the /sys/o2cb symlink
It is obsoleted since Dec 2005.
Signed-off-by: WANG Cong <amwang@redhat.com>
Signed-off-by: Joel Becker <jlbec@evilplan.org>
Diffstat (limited to 'fs/ocfs2')
-rw-r--r-- | fs/ocfs2/cluster/sys.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/fs/ocfs2/cluster/sys.c b/fs/ocfs2/cluster/sys.c index bc702dab5d1f..a4b07730b2e1 100644 --- a/fs/ocfs2/cluster/sys.c +++ b/fs/ocfs2/cluster/sys.c @@ -57,7 +57,6 @@ static struct kset *o2cb_kset; void o2cb_sys_shutdown(void) { mlog_sys_shutdown(); - sysfs_remove_link(NULL, "o2cb"); kset_unregister(o2cb_kset); } @@ -69,14 +68,6 @@ int o2cb_sys_init(void) if (!o2cb_kset) return -ENOMEM; - /* - * Create this symlink for backwards compatibility with old - * versions of ocfs2-tools which look for things in /sys/o2cb. - */ - ret = sysfs_create_link(NULL, &o2cb_kset->kobj, "o2cb"); - if (ret) - goto error; - ret = sysfs_create_group(&o2cb_kset->kobj, &o2cb_attr_group); if (ret) goto error; |