Commit 962c8372 authored by Al Viro's avatar Al Viro Committed by David S. Miller

[SCTP]: Netfilter sctp annotations.

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 3dbe8656
...@@ -20,7 +20,7 @@ struct ip_ct_sctp ...@@ -20,7 +20,7 @@ struct ip_ct_sctp
{ {
enum sctp_conntrack state; enum sctp_conntrack state;
u_int32_t vtag[IP_CT_DIR_MAX]; __be32 vtag[IP_CT_DIR_MAX];
u_int32_t ttag[IP_CT_DIR_MAX]; u_int32_t ttag[IP_CT_DIR_MAX];
}; };
......
...@@ -71,7 +71,7 @@ match_packet(const struct sk_buff *skb, ...@@ -71,7 +71,7 @@ match_packet(const struct sk_buff *skb,
duprintf("Chunk num: %d\toffset: %d\ttype: %d\tlength: %d\tflags: %x\n", duprintf("Chunk num: %d\toffset: %d\ttype: %d\tlength: %d\tflags: %x\n",
++i, offset, sch->type, htons(sch->length), sch->flags); ++i, offset, sch->type, htons(sch->length), sch->flags);
offset += (htons(sch->length) + 3) & ~3; offset += (ntohs(sch->length) + 3) & ~3;
duprintf("skb->len: %d\toffset: %d\n", skb->len, offset); duprintf("skb->len: %d\toffset: %d\n", skb->len, offset);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment