#ifndef _NET_IPCOMP_H #define _NET_IPCOMP_H #include #define IPCOMP_SCRATCH_SIZE 65400 struct crypto_comp; struct ipcomp_data { u16 threshold; struct crypto_comp * __percpu *tfms; }; struct ip_comp_hdr; struct sk_buff; struct xfrm_state; int ipcomp_input(struct xfrm_state *x, struct sk_buff *skb); int ipcomp_output(struct xfrm_state *x, struct sk_buff *skb); void ipcomp_destroy(struct xfrm_state *x); int ipcomp_init_state(struct xfrm_state *x); static inline struct ip_comp_hdr *ip_comp_hdr(const struct sk_buff *skb) { return (struct ip_comp_hdr *)skb_transport_header(skb); } #endif class='logo' rowspan='2'>cgit logo index : net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorHarini Katakam <harini.katakam@xilinx.com>2016-08-05 10:31:58 +0530
committerDavid S. Miller <davem@davemloft.net>2016-08-06 20:53:06 -0400
commitc518189567eaf42b2ec50a4d982484c8e38799f8 (patch)
tree68c43c76a8e38d9c9f04297e89742d3221c45886 /Documentation
parentca25ebe550688e697764c76b06f406d9ea4b7d02 (diff)
net: macb: Correct CAPS mask
USRIO and JUMBO CAPS have the same mask. Fix the same. Fixes: ce721a702197 ("net: ethernet: cadence-macb: Add disabled usrio caps") Cc: stable@vger.kernel.org # v4.5+ Signed-off-by: Harini Katakam <harinik@xilinx.com> Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'Documentation')