diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2007-11-01 11:29:06 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-01-24 23:40:16 -0500 |
commit | 081248de0a0288a0ce4e1447a07ccf56aa4fae01 (patch) | |
tree | 2a45ac7ad26aa8f8edb9e72ac8be461be82d0271 | |
parent | 27c3a314d55b810f3b51902d1d815c714a7afbd2 (diff) |
kset: move /sys/slab to /sys/kernel/slab
/sys/kernel is where these things should go.
Also updated the documentation and tool that used this directory.
Cc: Kay Sievers <kay.sievers@vrfy.org>
Acked-by: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | Documentation/vm/slabinfo.c | 2 | ||||
-rw-r--r-- | Documentation/vm/slub.txt | 2 | ||||
-rw-r--r-- | mm/slub.c | 3 |
3 files changed, 4 insertions, 3 deletions
diff --git a/Documentation/vm/slabinfo.c b/Documentation/vm/slabinfo.c index 7047696c47a1..488c1f31b992 100644 --- a/Documentation/vm/slabinfo.c +++ b/Documentation/vm/slabinfo.c | |||
@@ -1021,7 +1021,7 @@ void read_slab_dir(void) | |||
1021 | char *t; | 1021 | char *t; |
1022 | int count; | 1022 | int count; |
1023 | 1023 | ||
1024 | if (chdir("/sys/slab")) | 1024 | if (chdir("/sys/kernel/slab")) |
1025 | fatal("SYSFS support for SLUB not active\n"); | 1025 | fatal("SYSFS support for SLUB not active\n"); |
1026 | 1026 | ||
1027 | dir = opendir("."); | 1027 | dir = opendir("."); |
diff --git a/Documentation/vm/slub.txt b/Documentation/vm/slub.txt index d17f324db9f5..dcf8bcf846d6 100644 --- a/Documentation/vm/slub.txt +++ b/Documentation/vm/slub.txt | |||
@@ -63,7 +63,7 @@ In case you forgot to enable debugging on the kernel command line: It is | |||
63 | possible to enable debugging manually when the kernel is up. Look at the | 63 | possible to enable debugging manually when the kernel is up. Look at the |
64 | contents of: | 64 | contents of: |
65 | 65 | ||
66 | /sys/slab/<slab name>/ | 66 | /sys/kernel/slab/<slab name>/ |
67 | 67 | ||
68 | Look at the writable files. Writing 1 to them will enable the | 68 | Look at the writable files. Writing 1 to them will enable the |
69 | corresponding debug option. All options can be set on a slab that does | 69 | corresponding debug option. All options can be set on a slab that does |
@@ -4091,7 +4091,8 @@ static int __init slab_sysfs_init(void) | |||
4091 | struct kmem_cache *s; | 4091 | struct kmem_cache *s; |
4092 | int err; | 4092 | int err; |
4093 | 4093 | ||
4094 | slab_kset = kset_create_and_add("slab", &slab_uevent_ops, NULL); | 4094 | slab_kset = kset_create_and_add("slab", &slab_uevent_ops, |
4095 | &kernel_kset->kobj); | ||
4095 | if (!slab_kset) { | 4096 | if (!slab_kset) { |
4096 | printk(KERN_ERR "Cannot register slab subsystem.\n"); | 4097 | printk(KERN_ERR "Cannot register slab subsystem.\n"); |
4097 | return -ENOSYS; | 4098 | return -ENOSYS; |