lkml.org 
[lkml]   [2008]   [Aug]   [15]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[PATCH] Compile problems in locking-selftest.c with CONFIG_DEBUG_PREEMPT
The attached patch fixes the following compiler error in the rt-kernel
if CONFIG_DEBUG_PREEMPT is enabled.

lib/locking-selftest.c: In function 'dotest':
lib/locking-selftest.c:951: error: incompatible types in initialization
lib/locking-selftest.c:1003: error: incompatible types in assignment
Subject: Compile problems in locking-selftest.c with CONFIG_DEBUG_PREEMPT

lib/locking-selftest.c: In function ‘dotest’:
lib/locking-selftest.c:951: error: incompatible types in initialization
lib/locking-selftest.c:1003: error: incompatible types in assignment

Signed-off-by: John Kacur <jkacur at gmail dot com>

Index: linux-2.6.26.1-rt1.jk/lib/locking-selftest.c
===================================================================
--- linux-2.6.26.1-rt1.jk.orig/lib/locking-selftest.c
+++ linux-2.6.26.1-rt1.jk/lib/locking-selftest.c
@@ -948,7 +948,7 @@ static void dotest(void (*testcase_fn)(v
unsigned long saved_preempt_count = preempt_count();
int expected_failure = 0;
#if defined(CONFIG_DEBUG_PREEMPT) && defined(CONFIG_DEBUG_RT_MUTEXES)
- int saved_lock_count = current->lock_count;
+ atomic_t saved_lock_count = current->lock_count;
#endif

WARN_ON(irqs_disabled());
\
 
 \ /
  Last update: 2008-08-15 18:01    [W:0.310 / U:0.168 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site