summaryrefslogtreecommitdiffstats
path: root/kernel/futex.c
diff options
context:
space:
mode:
authorkbuild test robot2015-07-20 19:40:45 +0200
committerThomas Gleixner2015-07-20 21:43:54 +0200
commit5d285a7f35b55c8fba346306ad3eb174c4f7eab1 (patch)
tree120aa16eebe1823ca95372f68f541a979b65419f /kernel/futex.c
parentrtmutex: Delete scriptable tester (diff)
downloadkernel-qcow2-linux-5d285a7f35b55c8fba346306ad3eb174c4f7eab1.tar.gz
kernel-qcow2-linux-5d285a7f35b55c8fba346306ad3eb174c4f7eab1.tar.xz
kernel-qcow2-linux-5d285a7f35b55c8fba346306ad3eb174c4f7eab1.zip
futex: Make should_fail_futex() static
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com> Cc: kbuild-all@01.org Cc: tipbuild@zytor.com Cc: Davidlohr Bueso <dave@stgolabs.net> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Darren Hart <darren@dvhart.com> Cc: Oleg Nesterov <oleg@redhat.com> Cc: Brian Silverman <bsilver16384@gmail.com> Cc: Andy Lutomirski <luto@amacapital.net> Cc: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/futex.c')
-rw-r--r--kernel/futex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/futex.c b/kernel/futex.c
index 6ea31bb703c9..6e443efc65f4 100644
--- a/kernel/futex.c
+++ b/kernel/futex.c
@@ -279,7 +279,7 @@ static int __init setup_fail_futex(char *str)
}
__setup("fail_futex=", setup_fail_futex);
-bool should_fail_futex(bool fshared)
+static bool should_fail_futex(bool fshared)
{
if (fail_futex.ignore_private && !fshared)
return false;