diff options
author | Sabrina Dubroca <sd@queasysnail.net> | 2022-09-27 18:45:29 +0300 |
---|---|---|
committer | Steffen Klassert <steffen.klassert@secunet.com> | 2022-09-29 08:17:58 +0300 |
commit | e1e10b44cf284248fb099681f48cc723564a1cc8 (patch) | |
tree | d30f22b56dd8b3c4d8ae32baac2a099976e45e7a /net/ipv6/ipcomp6.c | |
parent | 48ff45dade87eb24a4d7ca28fd813ca2e2ebe745 (diff) | |
download | linux-e1e10b44cf284248fb099681f48cc723564a1cc8.tar.xz |
xfrm: pass extack down to xfrm_type ->init_state
Signed-off-by: Sabrina Dubroca <sd@queasysnail.net>
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
Diffstat (limited to 'net/ipv6/ipcomp6.c')
-rw-r--r-- | net/ipv6/ipcomp6.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv6/ipcomp6.c b/net/ipv6/ipcomp6.c index 15f984be3570..7e47009739e9 100644 --- a/net/ipv6/ipcomp6.c +++ b/net/ipv6/ipcomp6.c @@ -136,7 +136,8 @@ out: return err; } -static int ipcomp6_init_state(struct xfrm_state *x) +static int ipcomp6_init_state(struct xfrm_state *x, + struct netlink_ext_ack *extack) { int err = -EINVAL; |