diff options
author | Hugh Dickins <hughd@google.com> | 2011-08-03 16:21:21 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-08-03 14:25:23 -1000 |
commit | 41ffe5d5ceef7f7ff2ff18e320d88ca6d629efaf (patch) | |
tree | 66ce800fb7911ed037aa574f46729646ce485d0b /init | |
parent | 285b2c4fdd69ea73b4762785d8c6be83b6c074a6 (diff) | |
download | op-kernel-dev-41ffe5d5ceef7f7ff2ff18e320d88ca6d629efaf.zip op-kernel-dev-41ffe5d5ceef7f7ff2ff18e320d88ca6d629efaf.tar.gz |
tmpfs: miscellaneous trivial cleanups
While it's at its least, make a number of boring nitpicky cleanups to
shmem.c, mostly for consistency of variable naming. Things like "swap"
instead of "entry", "pgoff_t index" instead of "unsigned long idx".
And since everything else here is prefixed "shmem_", better change
init_tmpfs() to shmem_init().
Signed-off-by: Hugh Dickins <hughd@google.com>
Acked-by: Rik van Riel <riel@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'init')
-rw-r--r-- | init/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init/main.c b/init/main.c index d7211fa..1952d37 100644 --- a/init/main.c +++ b/init/main.c @@ -715,7 +715,7 @@ static void __init do_basic_setup(void) { cpuset_init_smp(); usermodehelper_init(); - init_tmpfs(); + shmem_init(); driver_init(); init_irq_proc(); do_ctors(); |