mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
ipv6: Fix types of ip6_update_pmtu().
The mtu should be a __be32, not the mark. Reported-by: Neal Cardwell <ncardwell@google.com> Signed-off-by: David S. Miller <davem@davemloft.net> Change-Id: Ie321dcc3652921f8f28491d39c8262268aeb22bc
This commit is contained in:
parent
9ce6cd5eab
commit
e80824b3dd
1 changed files with 2 additions and 2 deletions
|
@ -1093,8 +1093,8 @@ static void ip6_rt_update_pmtu(struct dst_entry *dst, u32 mtu)
|
|||
}
|
||||
}
|
||||
|
||||
void ip6_update_pmtu(struct sk_buff *skb, struct net *net, u32 mtu,
|
||||
int oif, __be32 mark)
|
||||
void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu,
|
||||
int oif, u32 mark)
|
||||
{
|
||||
const struct ipv6hdr *iph = (struct ipv6hdr *) skb->data;
|
||||
struct dst_entry *dst;
|
||||
|
|
Loading…
Reference in a new issue