diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2008-11-26 09:01:26 -0500 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2009-01-05 02:39:13 -0500 |
commit | 2e204703a1161e9bae38ba0d3d0df04a679e6f4f (patch) | |
tree | 502c1851fafb35d32ed99d7dff37cf390410f496 /fs/gfs2/sys.c | |
parent | 2bfb6449b7a1f29a2a63e1d869103b5811c3b69f (diff) |
GFS2: Remove ancient, unused code
Remove code that used to have something to do with initrd
but has been unused for a long time.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/sys.c')
-rw-r--r-- | fs/gfs2/sys.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/fs/gfs2/sys.c b/fs/gfs2/sys.c index 298bcb6c2713..26c1fa777a95 100644 --- a/fs/gfs2/sys.c +++ b/fs/gfs2/sys.c | |||
@@ -26,9 +26,6 @@ | |||
26 | #include "quota.h" | 26 | #include "quota.h" |
27 | #include "util.h" | 27 | #include "util.h" |
28 | 28 | ||
29 | char *gfs2_sys_margs; | ||
30 | spinlock_t gfs2_sys_margs_lock; | ||
31 | |||
32 | static ssize_t id_show(struct gfs2_sbd *sdp, char *buf) | 29 | static ssize_t id_show(struct gfs2_sbd *sdp, char *buf) |
33 | { | 30 | { |
34 | return snprintf(buf, PAGE_SIZE, "%u:%u\n", | 31 | return snprintf(buf, PAGE_SIZE, "%u:%u\n", |
@@ -477,8 +474,6 @@ static struct kset_uevent_ops gfs2_uevent_ops = { | |||
477 | 474 | ||
478 | int gfs2_sys_init(void) | 475 | int gfs2_sys_init(void) |
479 | { | 476 | { |
480 | gfs2_sys_margs = NULL; | ||
481 | spin_lock_init(&gfs2_sys_margs_lock); | ||
482 | gfs2_kset = kset_create_and_add("gfs2", &gfs2_uevent_ops, fs_kobj); | 477 | gfs2_kset = kset_create_and_add("gfs2", &gfs2_uevent_ops, fs_kobj); |
483 | if (!gfs2_kset) | 478 | if (!gfs2_kset) |
484 | return -ENOMEM; | 479 | return -ENOMEM; |
@@ -487,7 +482,6 @@ int gfs2_sys_init(void) | |||
487 | 482 | ||
488 | void gfs2_sys_uninit(void) | 483 | void gfs2_sys_uninit(void) |
489 | { | 484 | { |
490 | kfree(gfs2_sys_margs); | ||
491 | kset_unregister(gfs2_kset); | 485 | kset_unregister(gfs2_kset); |
492 | } | 486 | } |
493 | 487 | ||