[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20200820181158.GA19658@moon.secunet.de>
Date: Thu, 20 Aug 2020 20:11:58 +0200
From: Antony Antony <antony.antony@...unet.com>
To: Steffen Klassert <steffen.klassert@...unet.com>,
<netdev@...r.kernel.org>, Herbert Xu <herbert@...dor.apana.org.au>
CC: Antony Antony <antony@...nome.org>
Subject: [PATCH 1/3] xfrm: clone XFRMA_SET_MARK during xfrm_do_migrate
XFRMA_SET_MARK and XFRMA_SET_MARK_MASK was not cloned from the old
to the new. Migrate these two attributes during XFRMA_MSG_MIGRATE
Signed-off-by: Antony Antony <antony.antony@...unet.com>
---
net/xfrm/xfrm_state.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/net/xfrm/xfrm_state.c b/net/xfrm/xfrm_state.c
index 69520ad3d83b..3a000f289dcd 100644
--- a/net/xfrm/xfrm_state.c
+++ b/net/xfrm/xfrm_state.c
@@ -1510,6 +1510,7 @@ static struct xfrm_state *xfrm_state_clone(struct xfrm_state *orig,
}
memcpy(&x->mark, &orig->mark, sizeof(x->mark));
+ memcpy(&x->props.smark, &orig->props.smark, sizeof(x->props.smark));
if (xfrm_init_state(x) < 0)
goto error;
--
2.20.1
Powered by blists - more mailing lists