xfrm: free not used XFRM_ESP_NO_TRAILER flag
After removal of Innova IPsec support from mlx5 driver, the last user of this XFRM_ESP_NO_TRAILER was gone too. This means that we can safely remove it as no other hardware is capable (or need) to remove ESP trailer. Reviewed-by: Raed Salem <raeds@nvidia.com> Signed-off-by: Leon Romanovsky <leonro@nvidia.com> Acked-by: David S. Miller <davem@davemloft.net> Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
This commit is contained in:
committed by
Steffen Klassert
parent
949dfdcf34
commit
b01a277a05
@ -705,7 +705,6 @@ static int esp_output(struct xfrm_state *x, struct sk_buff *skb)
|
||||
static inline int esp_remove_trailer(struct sk_buff *skb)
|
||||
{
|
||||
struct xfrm_state *x = xfrm_input_state(skb);
|
||||
struct xfrm_offload *xo = xfrm_offload(skb);
|
||||
struct crypto_aead *aead = x->data;
|
||||
int alen, hlen, elen;
|
||||
int padlen, trimlen;
|
||||
@ -717,11 +716,6 @@ static inline int esp_remove_trailer(struct sk_buff *skb)
|
||||
hlen = sizeof(struct ip_esp_hdr) + crypto_aead_ivsize(aead);
|
||||
elen = skb->len - hlen;
|
||||
|
||||
if (xo && (xo->flags & XFRM_ESP_NO_TRAILER)) {
|
||||
ret = xo->proto;
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (skb_copy_bits(skb, skb->len - alen - 2, nexthdr, 2))
|
||||
BUG();
|
||||
|
||||
|
Reference in New Issue
Block a user