From: Chuck Ebbert <76306.1226@compuserve.com>
To: linux-kernel <linux-kernel@vger.kernel.org>
Cc: Andi Kleen <ak@suse.de>, Andrew Morton <akpm@osdl.org>,
Linus Torvalds <torvalds@osdl.org>, Ingo Molnar <mingo@elte.hu>
Subject: [patch] i386: make bitops safe
Date: Mon, 27 Feb 2006 16:57:55 -0500 [thread overview]
Message-ID: <200602271700_MC3-1-B969-F4A5@compuserve.com> (raw)
Make i386 bitops safe. Currently they can be fooled, even on
uniprocessor, by code that uses regions of the bitmap before
invoking the bitop. The least costly way to make them safe
is to add a memory clobber and tag all of them as volatile.
Signed-off-by: Chuck Ebbert <76306.1226@compuserve.com>
---
include/asm-i386/bitops.h | 56 ++++++++++++++++++++++++++++++----------------
1 files changed, 37 insertions(+), 19 deletions(-)
--- 2.6.16-rc4-32b.orig/include/asm-i386/bitops.h
+++ 2.6.16-rc4-32b/include/asm-i386/bitops.h
@@ -44,7 +44,8 @@ static inline void set_bit(int nr, volat
__asm__ __volatile__( LOCK_PREFIX
"btsl %1,%0"
:"+m" (ADDR)
- :"Ir" (nr));
+ :"Ir" (nr)
+ :"memory");
}
/**
@@ -58,10 +59,11 @@ static inline void set_bit(int nr, volat
*/
static inline void __set_bit(int nr, volatile unsigned long * addr)
{
- __asm__(
+ __asm__ __volatile__(
"btsl %1,%0"
:"+m" (ADDR)
- :"Ir" (nr));
+ :"Ir" (nr)
+ :"memory");
}
/**
@@ -79,7 +81,8 @@ static inline void clear_bit(int nr, vol
__asm__ __volatile__( LOCK_PREFIX
"btrl %1,%0"
:"+m" (ADDR)
- :"Ir" (nr));
+ :"Ir" (nr)
+ :"memory");
}
static inline void __clear_bit(int nr, volatile unsigned long * addr)
@@ -87,7 +90,8 @@ static inline void __clear_bit(int nr, v
__asm__ __volatile__(
"btrl %1,%0"
:"+m" (ADDR)
- :"Ir" (nr));
+ :"Ir" (nr)
+ :"memory");
}
#define smp_mb__before_clear_bit() barrier()
#define smp_mb__after_clear_bit() barrier()
@@ -106,7 +110,8 @@ static inline void __change_bit(int nr,
__asm__ __volatile__(
"btcl %1,%0"
:"+m" (ADDR)
- :"Ir" (nr));
+ :"Ir" (nr)
+ :"memory");
}
/**
@@ -124,7 +129,8 @@ static inline void change_bit(int nr, vo
__asm__ __volatile__( LOCK_PREFIX
"btcl %1,%0"
:"+m" (ADDR)
- :"Ir" (nr));
+ :"Ir" (nr)
+ :"memory");
}
/**
@@ -143,7 +149,8 @@ static inline int test_and_set_bit(int n
__asm__ __volatile__( LOCK_PREFIX
"btsl %2,%1\n\tsbbl %0,%0"
:"=r" (oldbit),"+m" (ADDR)
- :"Ir" (nr) : "memory");
+ :"Ir" (nr)
+ :"memory");
return oldbit;
}
@@ -160,10 +167,11 @@ static inline int __test_and_set_bit(int
{
int oldbit;
- __asm__(
+ __asm__ __volatile__(
"btsl %2,%1\n\tsbbl %0,%0"
:"=r" (oldbit),"+m" (ADDR)
- :"Ir" (nr));
+ :"Ir" (nr)
+ :"memory");
return oldbit;
}
@@ -183,7 +191,8 @@ static inline int test_and_clear_bit(int
__asm__ __volatile__( LOCK_PREFIX
"btrl %2,%1\n\tsbbl %0,%0"
:"=r" (oldbit),"+m" (ADDR)
- :"Ir" (nr) : "memory");
+ :"Ir" (nr)
+ :"memory");
return oldbit;
}
@@ -200,10 +209,11 @@ static inline int __test_and_clear_bit(i
{
int oldbit;
- __asm__(
+ __asm__ __volatile__(
"btrl %2,%1\n\tsbbl %0,%0"
:"=r" (oldbit),"+m" (ADDR)
- :"Ir" (nr));
+ :"Ir" (nr)
+ :"memory");
return oldbit;
}
@@ -215,7 +225,8 @@ static inline int __test_and_change_bit(
__asm__ __volatile__(
"btcl %2,%1\n\tsbbl %0,%0"
:"=r" (oldbit),"+m" (ADDR)
- :"Ir" (nr) : "memory");
+ :"Ir" (nr)
+ :"memory");
return oldbit;
}
@@ -234,7 +245,8 @@ static inline int test_and_change_bit(in
__asm__ __volatile__( LOCK_PREFIX
"btcl %2,%1\n\tsbbl %0,%0"
:"=r" (oldbit),"+m" (ADDR)
- :"Ir" (nr) : "memory");
+ :"Ir" (nr)
+ :"memory");
return oldbit;
}
@@ -259,7 +271,8 @@ static inline int variable_test_bit(int
__asm__ __volatile__(
"btl %2,%1\n\tsbbl %0,%0"
:"=r" (oldbit)
- :"m" (ADDR),"Ir" (nr));
+ :"m" (ADDR),"Ir" (nr)
+ :"memory");
return oldbit;
}
@@ -298,7 +311,8 @@ static inline int find_first_zero_bit(co
"shll $3,%%edi\n\t"
"addl %%edi,%%edx"
:"=d" (res), "=&c" (d0), "=&D" (d1), "=&a" (d2)
- :"1" ((size + 31) >> 5), "2" (addr), "b" (addr) : "memory");
+ :"1" ((size + 31) >> 5), "2" (addr), "b" (addr)
+ :"memory");
return res;
}
@@ -405,7 +419,9 @@ static inline int ffs(int x)
__asm__("bsfl %1,%0\n\t"
"jnz 1f\n\t"
"movl $-1,%0\n"
- "1:" : "=r" (r) : "rm" (x));
+ "1:"
+ : "=r" (r)
+ : "rm" (x));
return r+1;
}
@@ -422,7 +438,9 @@ static inline int fls(int x)
__asm__("bsrl %1,%0\n\t"
"jnz 1f\n\t"
"movl $-1,%0\n"
- "1:" : "=r" (r) : "rm" (x));
+ "1:"
+ : "=r" (r)
+ : "rm" (x));
return r+1;
}
--
Chuck
"Equations are the Devil's sentences." --Stephen Colbert
next reply other threads:[~2006-02-27 22:00 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-02-27 21:57 Chuck Ebbert [this message]
2006-02-27 23:06 ` Linus Torvalds
2006-02-27 23:47 ` Andi Kleen
2006-02-28 0:54 ` Richard Henderson
2006-02-28 1:24 ` Andi Kleen
2006-02-28 6:04 Chuck Ebbert
2006-02-28 21:25 ` Richard Henderson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200602271700_MC3-1-B969-F4A5@compuserve.com \
--to=76306.1226@compuserve.com \
--cc=ak@suse.de \
--cc=akpm@osdl.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=torvalds@osdl.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®