Commit 65cb4657 authored by Herbert Xu's avatar Herbert Xu

tipc: Remove completion function scaffolding

This patch removes the temporary scaffolding now that the comletion
function signature has been converted.
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 6002e20d
...@@ -267,10 +267,10 @@ static int tipc_aead_encrypt(struct tipc_aead *aead, struct sk_buff *skb, ...@@ -267,10 +267,10 @@ static int tipc_aead_encrypt(struct tipc_aead *aead, struct sk_buff *skb,
struct tipc_bearer *b, struct tipc_bearer *b,
struct tipc_media_addr *dst, struct tipc_media_addr *dst,
struct tipc_node *__dnode); struct tipc_node *__dnode);
static void tipc_aead_encrypt_done(crypto_completion_data_t *data, int err); static void tipc_aead_encrypt_done(void *data, int err);
static int tipc_aead_decrypt(struct net *net, struct tipc_aead *aead, static int tipc_aead_decrypt(struct net *net, struct tipc_aead *aead,
struct sk_buff *skb, struct tipc_bearer *b); struct sk_buff *skb, struct tipc_bearer *b);
static void tipc_aead_decrypt_done(crypto_completion_data_t *data, int err); static void tipc_aead_decrypt_done(void *data, int err);
static inline int tipc_ehdr_size(struct tipc_ehdr *ehdr); static inline int tipc_ehdr_size(struct tipc_ehdr *ehdr);
static int tipc_ehdr_build(struct net *net, struct tipc_aead *aead, static int tipc_ehdr_build(struct net *net, struct tipc_aead *aead,
u8 tx_key, struct sk_buff *skb, u8 tx_key, struct sk_buff *skb,
...@@ -830,9 +830,9 @@ static int tipc_aead_encrypt(struct tipc_aead *aead, struct sk_buff *skb, ...@@ -830,9 +830,9 @@ static int tipc_aead_encrypt(struct tipc_aead *aead, struct sk_buff *skb,
return rc; return rc;
} }
static void tipc_aead_encrypt_done(crypto_completion_data_t *data, int err) static void tipc_aead_encrypt_done(void *data, int err)
{ {
struct sk_buff *skb = crypto_get_completion_data(data); struct sk_buff *skb = data;
struct tipc_crypto_tx_ctx *tx_ctx = TIPC_SKB_CB(skb)->crypto_ctx; struct tipc_crypto_tx_ctx *tx_ctx = TIPC_SKB_CB(skb)->crypto_ctx;
struct tipc_bearer *b = tx_ctx->bearer; struct tipc_bearer *b = tx_ctx->bearer;
struct tipc_aead *aead = tx_ctx->aead; struct tipc_aead *aead = tx_ctx->aead;
...@@ -954,9 +954,9 @@ static int tipc_aead_decrypt(struct net *net, struct tipc_aead *aead, ...@@ -954,9 +954,9 @@ static int tipc_aead_decrypt(struct net *net, struct tipc_aead *aead,
return rc; return rc;
} }
static void tipc_aead_decrypt_done(crypto_completion_data_t *data, int err) static void tipc_aead_decrypt_done(void *data, int err)
{ {
struct sk_buff *skb = crypto_get_completion_data(data); struct sk_buff *skb = data;
struct tipc_crypto_rx_ctx *rx_ctx = TIPC_SKB_CB(skb)->crypto_ctx; struct tipc_crypto_rx_ctx *rx_ctx = TIPC_SKB_CB(skb)->crypto_ctx;
struct tipc_bearer *b = rx_ctx->bearer; struct tipc_bearer *b = rx_ctx->bearer;
struct tipc_aead *aead = rx_ctx->aead; struct tipc_aead *aead = rx_ctx->aead;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment