Commit f6d107fb authored by Benjamin Herrenschmidt's avatar Benjamin Herrenschmidt Committed by Linus Torvalds

Give futex init a proper name

The futex init function is called init(). This is a pain in the neck
when debugging when you code dies in ... init :-)

This renames it to futex_init().
Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent ee20a0dd
...@@ -2158,7 +2158,7 @@ static struct file_system_type futex_fs_type = { ...@@ -2158,7 +2158,7 @@ static struct file_system_type futex_fs_type = {
.kill_sb = kill_anon_super, .kill_sb = kill_anon_super,
}; };
static int __init init(void) static int __init futex_init(void)
{ {
u32 curval; u32 curval;
int i; int i;
...@@ -2194,4 +2194,4 @@ static int __init init(void) ...@@ -2194,4 +2194,4 @@ static int __init init(void)
return 0; return 0;
} }
__initcall(init); __initcall(futex_init);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment