mirror of
https://github.com/torvalds/linux.git
synced 2026-05-30 10:04:04 +02:00
xfrm: call xdo_dev_state_delete during state update
When we update an SA, we construct a new state and call xdo_dev_state_add, but never insert it. The existing state is updated, then we immediately destroy the new state. Since we haven't added it, we don't go through the standard state delete code, and we're skipping removing it from the device (but xdo_dev_state_free will get called when we destroy the temporary state). This is similar to commitc5d4d7d831("xfrm: Fix deletion of offloaded SAs on failure."). Fixes:d77e38e612("xfrm: Add an IPsec hardware offloading API") Signed-off-by: Sabrina Dubroca <sd@queasysnail.net> Reviewed-by: Simon Horman <horms@kernel.org> Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
This commit is contained in:
parent
b57defcf8f
commit
7d2fc41f91
|
|
@ -2264,6 +2264,7 @@ int xfrm_state_update(struct xfrm_state *x)
|
|||
|
||||
err = 0;
|
||||
x->km.state = XFRM_STATE_DEAD;
|
||||
xfrm_dev_state_delete(x);
|
||||
__xfrm_state_put(x);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user