lkml.org 
[lkml]   [2016]   [Aug]   [8]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    /
    SubjectRe: [PATCH 1/2] mac80211/wlcore: Add ieee80211_hw variable to get_expected_throughput
    From
    Date
    On Sun, 2016-08-07 at 13:42 +0000, Altshul, Maxim wrote:
    > Hi Johaness,
    > I have prepared a patch for the issue and it is waiting for me to
    > send it, but I feel that maybe I have not explained the previous
    > issue well enough or I did not understand your request fully.
    > I would like to clarify about the previous patch (the one that you
    > applied) again:
    >
    > a. The bug occurred because I have added a member called wl to the
    > structure wl_sta, but it turned to be NULL when the function
    > drv_get_expected_throughput was called.

    Right.

    > b. This member was NULL because it was initialized in the wrong place
    > (sta_add instead of update_sta_state), and thus the regression has
    > failed. 

    Ah. So you *do* in fact implement the sta_state op (op_sta_state)
    instead of the sta_add op, which I thought you were using and which was
    causing the error. Perhaps sta_add came from being originally called
    through mac80211's sta_add op.

    So in essence, in this particular case it ended up being just a driver
    bug because it was initializing the pointer in the wrong place, and I
    agree that the fix in mac80211 to pass the hw pointer like everywhere
    else makes perfect sense.

    > c. Even so, wl_sta itself was not NULL at any point.

    Right.

    > d. This is why I have created two patches:
    > First patch (the one that you have applied) made it easy for the
    > driver to access hw->priv (the problematic access to hw->priv was the
    > reason I added wl to wl_sta in the first place, which was a mistake).
    > Second patch reverted the addition of wl member to wl_sta.

    Right.
     
    > 2. From what I have seen, other ops that take ieee80211_sta as a
    > parameter do not check for sta->uploaded, which is why it feels a
    > little odd to do it in drv_get_expected_throughput and nowhere else.

    I think most of them have a different protection; perhaps some are
    lacking it?

     * set_tim: can only be called when the station is associated
     * set_key: likewise, iirc, though perhaps userspace can mess up?
     * update_tkip_key: must have a key and traffic
     * sta_notify: powersave - must be associated
     * sta_pre_rcu_remove: only pre removal etc.
     * sta_rc_update: looks partially problematic through RX action frame, 
                      if a peer messes up and sends one ... oops
     * TDLS ones look fine, I think

    So I *think* that most are OK - RC update might be an issue.

    get_expected_throughput is unique in that it can be called from
    userspace at any time after the station is added, and that happened in
    the case that John had (called immediately after ADD_STA notification,
    afaict)

    johannes

    \
     
     \ /
      Last update: 2016-08-08 08:41    [W:4.008 / U:0.220 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site