Hi, > > Sure, the contents of the link sta (link_sta_info or > ieee80211_link_sta) needs to be definitely revisited. > This RFC was to mainly conclude on the approach of splitting the > sta_info, ieee80211_sta structs > and how we access the link sta related info within them. I'll relook > into the contents and add any > link related info to link structs in next version and we can review > that part again if any more info > requires to be moved. OK, that's fair. > > > + lsinfo = kzalloc(sizeof(*lsinfo), gfp); > > > + if (!lsinfo) > > > + goto free; > > > + > > > + lsta = kzalloc(sizeof(*lsta), gfp); > > > + if (!lsta) > > > + goto free; > > > > I did start wondering if we wouldn't want to move struct > > link_sta_info to > > mac80211.h as well, though I'm not sure what else we'd have to move, > > and not > > have to allocate all of these separately? > I didn’t get this point correctly, Do you mean to merge link_sta_info > and ieee80211_link_sta structs > so as to avoid these two allocs? Yes, kind of, I meant different things later as my thinking evolved over the course of writing the email :) > > Though if we follow them through pointers, we can still allocate > > them in the > > same memory chunk (just add the sizes). > Do you mean something like, > lsinfo = kzalloc(sizeof(*lsinfo) + sizeof(*lsta), gfp); > lsta = (u8 *)lsinfo + sizeof(*lsinfo); > > This seems fine I guess and helps to do away with the second > kzalloc(). Can we go with this? Need to be careful with alignment there, but otherwise yes? > > Not sure we need to optimise anything here though. > > > > Or maybe in addition or instead we should allocate an *array* of > > links? > > But of course only however many we actually need, regardless of > > which ones > > are actually active. > The array of link pointers are already allocated as part of struct > ieee80211_sta and struct sta_info, right? > Did I misunderstood? Correct. I meant that we should probably know how many links we need up front, so we could allocate n_links * (sizeof(*lsinfo) + sizeof(*lsta)) kind of. But then again that might be more complicated? We might be allocating a lot of these - so maybe it'd be worthwile to get a kmem cache? But we can also do that later. > This 'deflink' approach looks very neat, Thanks. I'll update in next > version. :) > > > Yes, this change would be part of MLO support changes. Makes sense, so let's just update the commit message for now. > Thanks, johannes