mirror of
https://github.com/S3NEO/android_kernel_samsung_msm8226.git
synced 2024-11-07 03:47:13 +00:00
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>
This commit is contained in:
parent
27c3a314d5
commit
081248de0a
3 changed files with 4 additions and 3 deletions
|
@ -1021,7 +1021,7 @@ void read_slab_dir(void)
|
|||
char *t;
|
||||
int count;
|
||||
|
||||
if (chdir("/sys/slab"))
|
||||
if (chdir("/sys/kernel/slab"))
|
||||
fatal("SYSFS support for SLUB not active\n");
|
||||
|
||||
dir = opendir(".");
|
||||
|
|
|
@ -63,7 +63,7 @@ In case you forgot to enable debugging on the kernel command line: It is
|
|||
possible to enable debugging manually when the kernel is up. Look at the
|
||||
contents of:
|
||||
|
||||
/sys/slab/<slab name>/
|
||||
/sys/kernel/slab/<slab name>/
|
||||
|
||||
Look at the writable files. Writing 1 to them will enable the
|
||||
corresponding debug option. All options can be set on a slab that does
|
||||
|
|
|
@ -4091,7 +4091,8 @@ static int __init slab_sysfs_init(void)
|
|||
struct kmem_cache *s;
|
||||
int err;
|
||||
|
||||
slab_kset = kset_create_and_add("slab", &slab_uevent_ops, NULL);
|
||||
slab_kset = kset_create_and_add("slab", &slab_uevent_ops,
|
||||
&kernel_kset->kobj);
|
||||
if (!slab_kset) {
|
||||
printk(KERN_ERR "Cannot register slab subsystem.\n");
|
||||
return -ENOSYS;
|
||||
|
|
Loading…
Reference in a new issue