net: ipv6: Remove completion function scaffolding

This patch removes the temporary scaffolding now that the comletion
function signature has been converted.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
Herbert Xu
2023-02-06 18:22:40 +08:00
parent fd5dabf764
commit 6002e20dd0
2 changed files with 12 additions and 12 deletions
+4 -4
View File
@@ -281,12 +281,12 @@ static int ipv6_clear_mutable_options(struct ipv6hdr *iph, int len, int dir)
return 0;
}
static void ah6_output_done(crypto_completion_data_t *data, int err)
static void ah6_output_done(void *data, int err)
{
int extlen;
u8 *iph_base;
u8 *icv;
struct sk_buff *skb = crypto_get_completion_data(data);
struct sk_buff *skb = data;
struct xfrm_state *x = skb_dst(skb)->xfrm;
struct ah_data *ahp = x->data;
struct ipv6hdr *top_iph = ipv6_hdr(skb);
@@ -451,12 +451,12 @@ out:
return err;
}
static void ah6_input_done(crypto_completion_data_t *data, int err)
static void ah6_input_done(void *data, int err)
{
u8 *auth_data;
u8 *icv;
u8 *work_iph;
struct sk_buff *skb = crypto_get_completion_data(data);
struct sk_buff *skb = data;
struct xfrm_state *x = xfrm_input_state(skb);
struct ah_data *ahp = x->data;
struct ip_auth_hdr *ah = ip_auth_hdr(skb);