search for: __sum16

Displaying 4 results from an estimated 4 matches for "__sum16".

Did you mean: __s16
2011 Nov 06
3
sys/types.h -> linux/types.h and __aligned_u64
...include/sys/types.h /* Keeps linux/types.h from getting included elsewhere */ #define _LINUX_TYPES_H not defining __aligned_u64 like the kernel's include/linux/types.h does. Adding: --- a/klibc/usr/include/sys/types.h +++ b/klibc/usr/include/sys/types.h @@ -100,6 +100,10 @@ typedef uint16_t __sum16; typedef uint32_t __sum32; typedef uint64_t __sum64; +#define __aligned_u64 __u64 __attribute__((aligned(8))) +#define __aligned_be64 __be64 __attribute__((aligned(8))) +#define __aligned_le64 __le64 __attribute__((aligned(8))) + /* * Some headers seem to require this... */ seems to fix th...
2012 May 15
5
[PATCH 0/5] resubmitting pending patches
Hi, I?ve gone through the mailing list archives and hereby want to resubmit my pending patches. Most are independent of each other, except the m68k patch which will only be complete if sigsuspend is also fixed. (It can be applied before that, though.) http://www.zytor.com/pipermail/klibc/2012-January/003173.html [PATCH] fix m68k support Resubmitted here as 0005. While there was a question from
2011 Dec 04
0
[GIT PULL] klibc minor fixes
...e kernel's include/linux/types.h does. Signed-off-by: maximilian attems <max at stro.at> diff --git a/usr/include/sys/types.h b/usr/include/sys/types.h index 6780ed1..3a4c738 100644 --- a/usr/include/sys/types.h +++ b/usr/include/sys/types.h @@ -100,6 +100,10 @@ typedef uint16_t __sum16; typedef uint32_t __sum32; typedef uint64_t __sum64; +#define __aligned_u64 __u64 __attribute__((aligned(8))) +#define __aligned_be64 __be64 __attribute__((aligned(8))) +#define __aligned_le64 __le64 __attribute__((aligned(8))) + /* * Some headers seem to require this... */ commit 731d82c...
2018 Jun 07
0
[PATCH v2 1/2] compiler-gcc.h: add gnu_inline to all inline declarations
...truct sock *sk) diff --git a/include/net/ip6_checksum.h b/include/net/ip6_checksum.h index cca840584c88..27567477dcc6 100644 --- a/include/net/ip6_checksum.h +++ b/include/net/ip6_checksum.h @@ -58 +58 @@ static inline __wsum ip6_gro_compute_pseudo(struct sk_buff *skb, int proto) -static __inline__ __sum16 tcp_v6_check(int len, +static inline __sum16 tcp_v6_check(int len, diff --git a/include/net/ipx.h b/include/net/ipx.h index baf090390998..cf89ef92a5f7 100644 --- a/include/net/ipx.h +++ b/include/net/ipx.h @@ -50 +50 @@ extern int sysctl_ipx_pprop_broadcasting; -static __inline__ struct ipxhdr *ipx...