include/asm-x86/checksum_64.h: checkpatch cleanups - formatting only
Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
@@ -21,13 +21,11 @@
|
|||||||
*/
|
*/
|
||||||
static inline __sum16 csum_fold(__wsum sum)
|
static inline __sum16 csum_fold(__wsum sum)
|
||||||
{
|
{
|
||||||
__asm__(
|
asm(" addl %1,%0\n"
|
||||||
" addl %1,%0\n"
|
|
||||||
" adcl $0xffff,%0"
|
" adcl $0xffff,%0"
|
||||||
: "=r" (sum)
|
: "=r" (sum)
|
||||||
: "r" ((__force u32)sum << 16),
|
: "r" ((__force u32)sum << 16),
|
||||||
"0" ((__force u32)sum & 0xffff0000)
|
"0" ((__force u32)sum & 0xffff0000));
|
||||||
);
|
|
||||||
return (__force __sum16)(~(__force u32)sum >> 16);
|
return (__force __sum16)(~(__force u32)sum >> 16);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -48,7 +46,7 @@ static inline __sum16 ip_fast_csum(const void *iph, unsigned int ihl)
|
|||||||
{
|
{
|
||||||
unsigned int sum;
|
unsigned int sum;
|
||||||
|
|
||||||
asm( " movl (%1), %0\n"
|
asm(" movl (%1), %0\n"
|
||||||
" subl $4, %2\n"
|
" subl $4, %2\n"
|
||||||
" jbe 2f\n"
|
" jbe 2f\n"
|
||||||
" addl 4(%1), %0\n"
|
" addl 4(%1), %0\n"
|
||||||
@@ -111,11 +109,11 @@ csum_tcpudp_nofold(__be32 saddr, __be32 daddr, unsigned short len,
|
|||||||
* Returns the 16bit pseudo header checksum the input data already
|
* Returns the 16bit pseudo header checksum the input data already
|
||||||
* complemented and ready to be filled in.
|
* complemented and ready to be filled in.
|
||||||
*/
|
*/
|
||||||
static inline __sum16
|
static inline __sum16 csum_tcpudp_magic(__be32 saddr, __be32 daddr,
|
||||||
csum_tcpudp_magic(__be32 saddr, __be32 daddr,
|
unsigned short len,
|
||||||
unsigned short len, unsigned short proto, __wsum sum)
|
unsigned short proto, __wsum sum)
|
||||||
{
|
{
|
||||||
return csum_fold(csum_tcpudp_nofold(saddr,daddr,len,proto,sum));
|
return csum_fold(csum_tcpudp_nofold(saddr, daddr, len, proto, sum));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -136,8 +134,7 @@ extern __wsum csum_partial(const void *buff, int len, __wsum sum);
|
|||||||
|
|
||||||
/* Do not call this directly. Use the wrappers below */
|
/* Do not call this directly. Use the wrappers below */
|
||||||
extern __wsum csum_partial_copy_generic(const void *src, const void *dst,
|
extern __wsum csum_partial_copy_generic(const void *src, const void *dst,
|
||||||
int len,
|
int len, __wsum sum,
|
||||||
__wsum sum,
|
|
||||||
int *src_err_ptr, int *dst_err_ptr);
|
int *src_err_ptr, int *dst_err_ptr);
|
||||||
|
|
||||||
|
|
||||||
@@ -145,8 +142,8 @@ extern __wsum csum_partial_copy_from_user(const void __user *src, void *dst,
|
|||||||
int len, __wsum isum, int *errp);
|
int len, __wsum isum, int *errp);
|
||||||
extern __wsum csum_partial_copy_to_user(const void *src, void __user *dst,
|
extern __wsum csum_partial_copy_to_user(const void *src, void __user *dst,
|
||||||
int len, __wsum isum, int *errp);
|
int len, __wsum isum, int *errp);
|
||||||
extern __wsum csum_partial_copy_nocheck(const void *src, void *dst, int len,
|
extern __wsum csum_partial_copy_nocheck(const void *src, void *dst,
|
||||||
__wsum sum);
|
int len, __wsum sum);
|
||||||
|
|
||||||
/* Old names. To be removed. */
|
/* Old names. To be removed. */
|
||||||
#define csum_and_copy_to_user csum_partial_copy_to_user
|
#define csum_and_copy_to_user csum_partial_copy_to_user
|
||||||
@@ -192,4 +189,3 @@ static inline unsigned add32_with_carry(unsigned a, unsigned b)
|
|||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user