aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/rtmutex-tester.c
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2011-02-22 15:46:25 -0500
committerThomas Gleixner <tglx@linutronix.de>2011-02-22 16:07:22 -0500
commitdbebbfbb1605f0179e7c0d900d941cc9c45de569 (patch)
tree2d671c4ce729b4b7c2ae94c684280d5d0b5f3ce6 /kernel/rtmutex-tester.c
parent48228f7b470a74b6469a250d2977a13128d8fe96 (diff)
rtmutex: tester: Remove the remaining BKL leftovers
We just leave the numbers assinged as commemoration and in case that someone was crazy enough to reimplement the test stuff out of tree. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/rtmutex-tester.c')
-rw-r--r--kernel/rtmutex-tester.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/kernel/rtmutex-tester.c b/kernel/rtmutex-tester.c
index d5b543506cbc..5c9ccd380966 100644
--- a/kernel/rtmutex-tester.c
+++ b/kernel/rtmutex-tester.c
@@ -44,9 +44,8 @@ enum test_opcodes {
44 RTTEST_LOCKINTNOWAIT, /* 6 Lock interruptible no wait in wakeup, data = lockindex */ 44 RTTEST_LOCKINTNOWAIT, /* 6 Lock interruptible no wait in wakeup, data = lockindex */
45 RTTEST_LOCKCONT, /* 7 Continue locking after the wakeup delay */ 45 RTTEST_LOCKCONT, /* 7 Continue locking after the wakeup delay */
46 RTTEST_UNLOCK, /* 8 Unlock, data = lockindex */ 46 RTTEST_UNLOCK, /* 8 Unlock, data = lockindex */
47 RTTEST_LOCKBKL, /* 9 Was: Lock BKL */ 47 /* 9, 10 - reserved for BKL commemoration */
48 RTTEST_UNLOCKBKL, /* 10 Was: Unlock BKL */ 48 RTTEST_SIGNAL = 11, /* 11 Signal other test thread, data = thread id */
49 RTTEST_SIGNAL, /* 11 Signal other test thread, data = thread id */
50 RTTEST_RESETEVENT = 98, /* 98 Reset event counter */ 49 RTTEST_RESETEVENT = 98, /* 98 Reset event counter */
51 RTTEST_RESET = 99, /* 99 Reset all pending operations */ 50 RTTEST_RESET = 99, /* 99 Reset all pending operations */
52}; 51};