search for: hdlc_type_trans

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

2004 May 30
1
Fwd: hdlc and kernel 2.4.26
...ernel team at the same time, it wasn't possible > with external drivers). > > For this kernel change (2.4.22->2.4.26) it might be sufficient to > find and change line(s) looking like this one: > skb->protocol = htons(ETH_P_HDLC); > into: > skb->protocol = hdlc_type_trans(skb, dev); > > It depends on the hardware driver, though. > -- > Krzysztof Halasa, B*FH > >
2018 Jun 07
0
[PATCH v2 1/2] compiler-gcc.h: add gnu_inline to all inline declarations
...h @@ -77 +77 @@ static inline struct hdlc_device* dev_to_hdlc(struct net_device *dev) -static __inline__ void debug_frame(const struct sk_buff *skb) +static inline void debug_frame(const struct sk_buff *skb) @@ -104 +104 @@ int detach_hdlc_protocol(struct net_device *dev); -static __inline__ __be16 hdlc_type_trans(struct sk_buff *skb, +static inline __be16 hdlc_type_trans(struct sk_buff *skb, diff --git a/include/linux/inetdevice.h b/include/linux/inetdevice.h index e16fe7d44a71..6c381934b335 100644 --- a/include/linux/inetdevice.h +++ b/include/linux/inetdevice.h @@ -185 +185 @@ struct in_ifaddr *inet_looku...
2020 Oct 17
10
[RFC] treewide: cleanup unreachable breaks
...b902b424..4e9cc83b615a 100644 --- a/drivers/net/wan/lmc/lmc_proto.c +++ b/drivers/net/wan/lmc/lmc_proto.c @@ -87,21 +87,17 @@ void lmc_proto_close(lmc_softc_t *sc) __be16 lmc_proto_type(lmc_softc_t *sc, struct sk_buff *skb) /*FOLD00*/ { switch(sc->if_type){ case LMC_PPP: return hdlc_type_trans(skb, sc->lmc_device); - break; case LMC_NET: return htons(ETH_P_802_2); - break; case LMC_RAW: /* Packet type for skbuff kind of useless */ return htons(ETH_P_802_2); - break; default: printk(KERN_WARNING "%s: No protocol set for t...
2020 Oct 17
10
[RFC] treewide: cleanup unreachable breaks
...b902b424..4e9cc83b615a 100644 --- a/drivers/net/wan/lmc/lmc_proto.c +++ b/drivers/net/wan/lmc/lmc_proto.c @@ -87,21 +87,17 @@ void lmc_proto_close(lmc_softc_t *sc) __be16 lmc_proto_type(lmc_softc_t *sc, struct sk_buff *skb) /*FOLD00*/ { switch(sc->if_type){ case LMC_PPP: return hdlc_type_trans(skb, sc->lmc_device); - break; case LMC_NET: return htons(ETH_P_802_2); - break; case LMC_RAW: /* Packet type for skbuff kind of useless */ return htons(ETH_P_802_2); - break; default: printk(KERN_WARNING "%s: No protocol set for t...