Re: [PATCH] x86: fix inline assembly constraints

From: H. Peter Anvin
Date: Wed Oct 29 2008 - 23:55:59 EST


Jike Song wrote:
>
> Besides, by looking at the inline assembly in kernel, I found lots of
> codes like this:
>
> static inline void atomic_add(int i, atomic_t *v)
> {
> asm volatile(LOCK_PREFIX "addl %1,%0"
> : "=m" (v->counter)
> : "ir" (i), "m" (v->counter));
> }
>
>
> Yes, it works. But a little ugly.. Should this be cleaned-up with the
> following?
>
> : "+m" (v->counter)
> : "ir" (i)
>
> If you agrees, I'll send out the patch; otherwise I won't wasting your time ;-)
>

Please don't change them just to change them, if there is no actual
error. You never know when you're going to trigger a new bug in some
weird version of gcc.

-hpa
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/