1. 05 Oct, 2021 8 commits
  2. 04 Oct, 2021 24 commits
  3. 03 Oct, 2021 6 commits
  4. 02 Oct, 2021 2 commits
    • M Chetan Kumar's avatar
      net: wwan: iosm: correct devlink extra params · b8aa1654
      M Chetan Kumar authored
      1. Removed driver specific extra params like download_region,
         address & region_count. The required information is passed
         as part of flash API.
      2. IOSM Devlink documentation updated to reflect the same.
      Signed-off-by: default avatarM Chetan Kumar <m.chetan.kumar@linux.intel.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      b8aa1654
    • David S. Miller's avatar
      Merge branch 'hw_addr_set' · e9637775
      David S. Miller authored
      Jakub Kicinski says:
      
      ====================
      Use netdev->dev_addr write helpers (part 1)
      
      Commit 406f42fa ("net-next: When a bond have a massive amount
      of VLANs...") introduced a rbtree for faster Ethernet address look
      up. To maintain netdev->dev_addr in this tree we need to make all
      the writes to it got through appropriate helpers.
      
      This is the first installment of predictably tedious conversion.
      It tackles:
      
        memcpy(netdev->dev_addr, something, ETH_ADDR)
      
      and
      
        ether_addr_copy(netdev->dev_addr, something)
      
      replacing both with eth_hw_addr_set().
      
      The first 7 patches are done entirely by sparse.
      Next 4 were semi-manual because the sparse conversion
      resulted in errors.
      ====================
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      e9637775