[PATCH] TRIVIAL: rwhron@earthlink.net: remove space in cache names

From: Rusty Russell (rusty@rustcorp.com.au)
Date: Mon Jun 03 2002 - 01:12:02 EST


rwhron@earthlink.net: remove space in _proc_slabinfo cache_name:
  Most /proc/slabinfo cache_names are in the format:
  cache_name. There are a couple with spaces in the
  name, which is inconsistent and requires a special case
  when scripting.
  
  Changes "fasync cache" and "file lock cache" to have
  the usual underscore.
  
  Tested on 2.5.18. Applies to 2.4.19-pre8 with offset.
  

--- trivial-2.5.20/fs/fcntl.c.orig Mon Jun 3 15:25:18 2002
+++ trivial-2.5.20/fs/fcntl.c Mon Jun 3 15:25:18 2002
@@ -551,7 +551,7 @@
 
 static int __init fasync_init(void)
 {
- fasync_cache = kmem_cache_create("fasync cache",
+ fasync_cache = kmem_cache_create("fasync_cache",
                 sizeof(struct fasync_struct), 0, 0, NULL, NULL);
         if (!fasync_cache)
                 panic("cannot create fasync slab cache");
--- trivial-2.5.20/fs/locks.c.orig Mon Jun 3 15:25:18 2002
+++ trivial-2.5.20/fs/locks.c Mon Jun 3 15:25:18 2002
@@ -1940,7 +1940,7 @@
 
 static int __init filelock_init(void)
 {
- filelock_cache = kmem_cache_create("file lock cache",
+ filelock_cache = kmem_cache_create("file_lock_cache",
                         sizeof(struct file_lock), 0, 0, init_once, NULL);
         if (!filelock_cache)
                 panic("cannot create file lock slab cache");

--
  Anyone who quotes me in their sig is an idiot. -- Rusty Russell.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Fri Jun 07 2002 - 22:00:14 EST