slub: move slabinfo.c to tools/slub/slabinfo.c
authorChristoph Lameter <cl@linux.com>
Thu, 21 Oct 2010 18:01:56 +0000 (13:01 -0500)
committerPekka Enberg <penberg@kernel.org>
Sat, 6 Nov 2010 07:04:32 +0000 (09:04 +0200)
We now have a tools directory for these things.

Reviewed-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Acked-by: David Rientjes <rientjes@google.com>
Signed-off-by: Christoph Lameter <cl@linux.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
tools/slub/slabinfo.c [moved from Documentation/vm/slabinfo.c with 99% similarity]

similarity index 99%
rename from Documentation/vm/slabinfo.c
rename to tools/slub/slabinfo.c
index 92e729f..516551c 100644 (file)
@@ -607,7 +607,7 @@ static int debug_opt_scan(char *opt)
        }
 
        for ( ; *opt; opt++)
-               switch (*opt) {
+               switch (*opt) {
                case 'F' : case 'f':
                        if (sanity)
                                return 0;
@@ -1127,7 +1127,7 @@ static void read_slab_dir(void)
                                continue;
                switch (de->d_type) {
                   case DT_LNK:
-                       alias->name = strdup(de->d_name);
+                       alias->name = strdup(de->d_name);
                        count = readlink(de->d_name, buffer, sizeof(buffer));
 
                        if (count < 0)
@@ -1143,7 +1143,7 @@ static void read_slab_dir(void)
                   case DT_DIR:
                        if (chdir(de->d_name))
                                fatal("Unable to access slab %s\n", slab->name);
-                       slab->name = strdup(de->d_name);
+                       slab->name = strdup(de->d_name);
                        slab->alias = 0;
                        slab->refs = 0;
                        slab->aliases = get_obj("aliases");