mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-07-22 02:17:36 -04:00
xfrm: remove redundant assignments
These assignments are overwritten within the same function further down commite8961c50ee("xfrm: Refactor migration setup during the cloning process") x->props.family = m->new_family; Which actually moved it in the commite03c3bba35("xfrm: Fix xfrm migrate issues when address family changes") And the initial commit80c9abaabf("[XFRM]: Extension for dynamic update of endpoint address(es)") added x->props.saddr = orig->props.saddr; and memcpy(&xc->props.saddr, &m->new_saddr, sizeof(xc->props.saddr)); Reviewed-by: Sabrina Dubroca <sd@queasysnail.net> Signed-off-by: Antony Antony <antony.antony@secunet.com> Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
This commit is contained in:
committed by
Steffen Klassert
parent
41c4d3b26f
commit
440bf355d3
@@ -1980,8 +1980,6 @@ static struct xfrm_state *xfrm_state_clone_and_setup(struct xfrm_state *orig,
|
||||
x->props.mode = orig->props.mode;
|
||||
x->props.replay_window = orig->props.replay_window;
|
||||
x->props.reqid = orig->props.reqid;
|
||||
x->props.family = orig->props.family;
|
||||
x->props.saddr = orig->props.saddr;
|
||||
|
||||
if (orig->aalg) {
|
||||
x->aalg = xfrm_algo_auth_clone(orig->aalg);
|
||||
|
||||
Reference in New Issue
Block a user