Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dc35dc5a authored by Jan Engelhardt's avatar Jan Engelhardt Committed by David S. Miller
Browse files

[NETFILTER]: nf_{conntrack,nat}_proto_gre: annotate with const

parent da3f13c9
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -104,7 +104,7 @@ gre_manip_pkt(struct sk_buff *skb, unsigned int iphdroff,
{
{
	struct gre_hdr *greh;
	struct gre_hdr *greh;
	struct gre_hdr_pptp *pgreh;
	struct gre_hdr_pptp *pgreh;
	struct iphdr *iph = (struct iphdr *)(skb->data + iphdroff);
	const struct iphdr *iph = (struct iphdr *)(skb->data + iphdroff);
	unsigned int hdroff = iphdroff + iph->ihl * 4;
	unsigned int hdroff = iphdroff + iph->ihl * 4;


	/* pgreh includes two optional 32bit fields which are not required
	/* pgreh includes two optional 32bit fields which are not required
+4 −2
Original line number Original line Diff line number Diff line
@@ -161,9 +161,11 @@ static int gre_pkt_to_tuple(const struct sk_buff *skb,
			   unsigned int dataoff,
			   unsigned int dataoff,
			   struct nf_conntrack_tuple *tuple)
			   struct nf_conntrack_tuple *tuple)
{
{
	struct gre_hdr_pptp _pgrehdr, *pgrehdr;
	const struct gre_hdr_pptp *pgrehdr;
	struct gre_hdr_pptp _pgrehdr;
	__be16 srckey;
	__be16 srckey;
	struct gre_hdr _grehdr, *grehdr;
	const struct gre_hdr *grehdr;
	struct gre_hdr _grehdr;


	/* first only delinearize old RFC1701 GRE header */
	/* first only delinearize old RFC1701 GRE header */
	grehdr = skb_header_pointer(skb, dataoff, sizeof(_grehdr), &_grehdr);
	grehdr = skb_header_pointer(skb, dataoff, sizeof(_grehdr), &_grehdr);