1. 19 3月, 2021 1 次提交
  2. 29 1月, 2021 3 次提交
  3. 08 1月, 2021 3 次提交
    • J
      s390/qeth: fix L2 header access in qeth_l3_osa_features_check() · f9c48453
      Julian Wiedmann 提交于
      ip_finish_output_gso() may call .ndo_features_check() even before the
      skb has a L2 header. This conflicts with qeth_get_ip_version()'s attempt
      to inspect the L2 header via vlan_eth_hdr().
      
      Switch to vlan_get_protocol(), as already used further down in the
      common qeth_features_check() path.
      
      Fixes: f13ade19 ("s390/qeth: run non-offload L3 traffic over common xmit path")
      Signed-off-by: NJulian Wiedmann <jwi@linux.ibm.com>
      Signed-off-by: NJakub Kicinski <kuba@kernel.org>
      f9c48453
    • J
      s390/qeth: fix locking for discipline setup / removal · b41b554c
      Julian Wiedmann 提交于
      Due to insufficient locking, qeth_core_set_online() and
      qeth_dev_layer2_store() can run in parallel, both attempting to load &
      setup the discipline (and stepping on each other toes along the way).
      A similar race can also occur between qeth_core_remove_device() and
      qeth_dev_layer2_store().
      
      Access to .discipline is meant to be protected by the discipline_mutex,
      so add/expand the locking in qeth_core_remove_device() and
      qeth_core_set_online().
      Adjust the locking in qeth_l*_remove_device() accordingly, as it's now
      handled by the callers in a consistent manner.
      
      Based on an initial patch by Ursula Braun.
      
      Fixes: 9dc48ccc ("qeth: serialize sysfs-triggered device configurations")
      Signed-off-by: NJulian Wiedmann <jwi@linux.ibm.com>
      Reviewed-by: NAlexandra Winter <wintera@linux.ibm.com>
      Signed-off-by: NJakub Kicinski <kuba@kernel.org>
      b41b554c
    • J
      s390/qeth: fix deadlock during recovery · 0b9902c1
      Julian Wiedmann 提交于
      When qeth_dev_layer2_store() - holding the discipline_mutex - waits
      inside qeth_l*_remove_device() for a qeth_do_reset() thread to complete,
      we can hit a deadlock if qeth_do_reset() concurrently calls
      qeth_set_online() and thus tries to aquire the discipline_mutex.
      
      Move the discipline_mutex locking outside of qeth_set_online() and
      qeth_set_offline(), and turn the discipline into a parameter so that
      callers understand the dependency.
      
      To fix the deadlock, we can now relax the locking:
      As already established, qeth_l*_remove_device() waits for
      qeth_do_reset() to complete. So qeth_do_reset() itself is under no risk
      of having card->discipline ripped out while it's running, and thus
      doesn't need to take the discipline_mutex.
      
      Fixes: 9dc48ccc ("qeth: serialize sysfs-triggered device configurations")
      Signed-off-by: NJulian Wiedmann <jwi@linux.ibm.com>
      Reviewed-by: NAlexandra Winter <wintera@linux.ibm.com>
      Signed-off-by: NJakub Kicinski <kuba@kernel.org>
      0b9902c1
  4. 07 12月, 2020 1 次提交
    • J
      s390/qeth: use dev->groups for common sysfs attributes · 0b8da811
      Julian Wiedmann 提交于
      All qeth devices have a minimum set of sysfs attributes, and non-OSN
      devices share a group of additional attributes. Depending on whether
      the device is forced to use a specific discipline, the device_type then
      specifies further attributes.
      
      Shift the common attributes into dev->groups, so that the device_type
      only contains the discipline-specific attributes. This avoids exposing
      the common attributes to the disciplines, and nicely cleans up our
      sysfs code.
      
      While replacing the qeth_l*_*_device_attributes() helpers, switch from
      sysfs_*_groups() to the more generic device_*_groups().
      Signed-off-by: NJulian Wiedmann <jwi@linux.ibm.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      0b8da811
  5. 19 11月, 2020 1 次提交
  6. 03 10月, 2020 5 次提交
  7. 24 9月, 2020 7 次提交
  8. 11 9月, 2020 1 次提交
  9. 27 8月, 2020 1 次提交
  10. 24 8月, 2020 1 次提交
  11. 01 8月, 2020 1 次提交
    • J
      s390/qeth: integrate RX refill worker with NAPI · 7c94a882
      Julian Wiedmann 提交于
      Running a RX refill outside of NAPI context is inherently racy, even
      though the worker is only started for an entirely idle RX ring.
      >From the moment that the worker has replenished parts of the RX ring,
      the HW can use those RX buffers, raise an IRQ and cause our NAPI code to
      run concurrently to the RX refill worker.
      
      Instead let the worker schedule our NAPI instance, and refill the RX
      ring from there. Keeping accurate count of how many buffers still need
      to be refilled also removes some quirky arithmetic from the low-level
      code.
      
      Fixes: b3332930 ("qeth: add support for af_iucv HiperSockets transport")
      Signed-off-by: NJulian Wiedmann <jwi@linux.ibm.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      7c94a882
  12. 15 7月, 2020 2 次提交
  13. 07 5月, 2020 2 次提交
  14. 30 3月, 2020 1 次提交
  15. 26 3月, 2020 1 次提交
    • J
      s390/qeth: simplify L3 dev_id logic · 8ec1e247
      Julian Wiedmann 提交于
      The logic that deals with errors from qeth_l3_get_unique_id() is quite
      complex: it sets card->unique_id to 0xfffe, additionally flags it as
      UNIQUE_ID_NOT_BY_CARD and later takes this flag as cue to not propagate
      card->unique_id to dev->dev_id. With dev->dev_id thus holding 0,
      addrconf_ifid_eui48() applies its default behaviour.
      
      Get rid of all the special bit masks, and just return the old uid in
      case of an error. For the vast majority of cases this will be 0 (and so
      we still get the desired default behaviour) - with the rare exception
      where qeth_l3_get_unique_id() might have been called earlier but the
      initialization then failed at a later point.
      Signed-off-by: NJulian Wiedmann <jwi@linux.ibm.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      8ec1e247
  16. 19 3月, 2020 2 次提交
  17. 11 3月, 2020 1 次提交
  18. 28 2月, 2020 3 次提交
  19. 26 1月, 2020 3 次提交