On Tue, Jul 23, 2024 at 01:11:46AM +0530, Veerendranath Jakkam wrote: > Individual MLO links connection status not copied to > EVENT_CONNECT_RESULT data while processing the connect response > information in cfg80211_connect_done(). Due to this failed links also > indicated with success status in EVENT_CONNECT_RESULT. > > To fix this, copy the individual MLO links status to > EVENT_CONNECT_RESULT data. Does this need a Fixes: tag then? > > Signed-off-by: Veerendranath Jakkam <quic_vjakkam@xxxxxxxxxxx> > --- > net/wireless/sme.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/net/wireless/sme.c b/net/wireless/sme.c > index e419aa8c4a5a..d9d7bf8bb5c1 100644 > --- a/net/wireless/sme.c > +++ b/net/wireless/sme.c > @@ -1045,6 +1045,7 @@ void cfg80211_connect_done(struct net_device *dev, > cfg80211_hold_bss( > bss_from_pub(params->links[link].bss)); > ev->cr.links[link].bss = params->links[link].bss; > + ev->cr.links[link].status = params->links[link].status; > > if (params->links[link].addr) { > ev->cr.links[link].addr = next; > -- > 2.34.1 >