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

Commit 37e66366 authored by Arnaldo Carvalho de Melo's avatar Arnaldo Carvalho de Melo Committed by David S. Miller
Browse files

[LLC]: Kill llc_set_pdu_hdr



We'll have skb_reset_network_header soon.

Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 98e399f8
Loading
Loading
Loading
Loading
+5 −6
Original line number Diff line number Diff line
@@ -218,11 +218,6 @@ static inline struct llc_pdu_un *llc_pdu_un_hdr(struct sk_buff *skb)
	return (struct llc_pdu_un *)skb->nh.raw;
}

static inline void *llc_set_pdu_hdr(struct sk_buff *skb, void *ptr)
{
	return skb->nh.raw = ptr;
}

/**
 *	llc_pdu_header_init - initializes pdu header
 *	@skb: input skb that header must be set into it.
@@ -237,7 +232,11 @@ static inline void llc_pdu_header_init(struct sk_buff *skb, u8 type,
				       u8 ssap, u8 dsap, u8 cr)
{
	const int hlen = type == LLC_PDU_TYPE_U ? 3 : 4;
	struct llc_pdu_un *pdu = llc_set_pdu_hdr(skb, skb_push(skb, hlen));
	struct llc_pdu_un *pdu;

	skb_push(skb, hlen);
	skb->nh.raw = skb->data;
	pdu = llc_pdu_un_hdr(skb);
	pdu->dsap = dsap;
	pdu->ssap = ssap;
	pdu->ssap |= cr;