]> git.karo-electronics.de Git - linux-beck.git/commitdiff
net: Change x86_64 add32_with_carry to allow memory operand
authorTom Herbert <therbert@google.com>
Fri, 2 May 2014 23:28:40 +0000 (16:28 -0700)
committerDavid S. Miller <davem@davemloft.net>
Mon, 5 May 2014 19:26:29 +0000 (15:26 -0400)
Note add32_with_carry(a, b) is suboptimal, as it forces
a and b in registers.

b could be a memory or a register operand.

Signed-off-by: Tom Herbert <therbert@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
arch/x86/include/asm/checksum_64.h

index 3581761bd86c22a48b1f9e18acbce1ea0e5217a9..cd00e17744914c5b2e1d7d16da887a2809ebb5b5 100644 (file)
@@ -184,7 +184,7 @@ static inline unsigned add32_with_carry(unsigned a, unsigned b)
        asm("addl %2,%0\n\t"
            "adcl $0,%0"
            : "=r" (a)
-           : "0" (a), "r" (b));
+           : "0" (a), "rm" (b));
        return a;
 }