1. 16 Sep, 2022 18 commits
  2. 15 Sep, 2022 12 commits
  3. 13 Sep, 2022 2 commits
  4. 09 Sep, 2022 8 commits
    • Jilin Yuan's avatar
      net: openvswitch: fix repeated words in comments · 169ccf0e
      Jilin Yuan authored
      Delete the redundant word 'is'.
      Signed-off-by: default avatarJilin Yuan <yuanjilin@cdjrlc.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      169ccf0e
    • David S. Miller's avatar
      Merge branch 'net-ipa-next' · 6988c1d3
      David S. Miller authored
      Alex Elder says:
      
      ====================
      net: ipa: don't use lists for transaction state
      
      This is the last series of patches to convert the IPA code so
      integer IDs are used rather than lists to track the state of
      transactions.
      
      A first series of patches added ID fields to track the state of
      transactions:
        https://lore.kernel.org/netdev/20220831224017.377745-1-elder@linaro.org
      The second series started transitioning code to use these IDs rather
      than lists to manage state:
        https://lore.kernel.org/netdev/20220902210218.745873-1-elder@linaro.org
      
      This final series finishes the transition, to always use IDs instead
      of the lists to manage transaction state.  As a result, the list
      fields, links, and a spinlock to protect updates are no longer
      needed, so they are removed.  This permits a few other improvements
      to be implemented.
      ====================
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      6988c1d3
    • Alex Elder's avatar
      net: ipa: don't have gsi_channel_update() return a value · 019e37ea
      Alex Elder authored
      If it finds no completed transactions, gsi_channel_trans_complete()
      calls gsi_channel_update() to check hardware.  If new transactions
      have completed, gsi_channel_update() records that, then calls
      gsi_channel_trans_complete() to return the first of those found.
      This recursion won't go any further, but can be avoided if we
      have gsi_channel_update() only be responsible for updating state
      after accessing hardware.
      
      Change gsi_channel_update() so it simply checks for and handles
      new completions, without returning a value.  If it needs to call
      that function, have gsi_channel_trans_complete() determine whether
      there are new transactions available after the update.
      Signed-off-by: default avatarAlex Elder <elder@linaro.org>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      019e37ea
    • Alex Elder's avatar
      net: ipa: update channel in gsi_channel_trans_complete() · e0e3406c
      Alex Elder authored
      Have gsi_channel_trans_complete() update the known state from
      hardware rather than doing so in gsi_channel_poll_one().
      Signed-off-by: default avatarAlex Elder <elder@linaro.org>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      e0e3406c
    • Alex Elder's avatar
      net: ipa: kill all other transaction lists · d338ae28
      Alex Elder authored
      None of the transaction lists are actually needed any more, because
      transaction IDs (which have been shown to be equivalent) are used
      instead.  So we can remove all of them, as well as the spinlock
      that protects updates to them.
      
      Not requiring a lock simplifies gsi_trans_free() as well; we only
      need to check the reference count once to decide whether we've hit
      the last reference.
      
      This makes the links field in the gsi_trans structure unused, so get
      rid of that as well.
      Signed-off-by: default avatarAlex Elder <elder@linaro.org>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      d338ae28
    • Alex Elder's avatar
      net: ipa: kill the allocated transaction list · 11902b41
      Alex Elder authored
      The only place the trans_info->alloc list is used is when
      initializing it, when adding a transaction to it when allocation
      finishes, and when moving a transaction from that list to the
      committed list.
      
      We can just skip putting a transaction on the allocated list, and
      add it (rather than move it) to the committed list when it is
      committed.
      
      On additional caveat is that an allocated transaction that's
      committed without any TREs added will be immediately freed.  Because
      we aren't adding allocated transactions to a list any more, the
      list links need to be initialized to ensure they're valid at the
      time list_del() is called for the transaction.
      
      Then we can safely eliminate the allocated transaction list.
      Signed-off-by: default avatarAlex Elder <elder@linaro.org>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      11902b41
    • Alex Elder's avatar
      net: ipa: always use transaction IDs instead of lists · 0c126ec3
      Alex Elder authored
      In gsi_channel_trans_complete(), use the completed and pending IDs
      to determine whether there are any transactions in completed state.
      
      Similarly, in gsi_channel_trans_cancel_pending(), use the pending
      and committed IDs to mark pending transactions cancelled.  Rearrange
      the logic a bit there for a simpler result.
      
      This removes the only user of list_last_entry_or_null(), so get rid
      of that macro.
      
      Remove the temporary warnings added by the previous commit.
      Signed-off-by: default avatarAlex Elder <elder@linaro.org>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      0c126ec3
    • David S. Miller's avatar
      Merge branch 'felix-dsa-ethtool-stats' · 6fff9261
      David S. Miller authored
      Vladimir Oltean says:
      
      ====================
      Standardized ethtool counters for Felix DSA driver
      
      The main purpose of this change set is to add reporting of structured
      ethtool statistics counters to the felix DSA driver (see patch 11/14 for
      details), as a prerequisite for extending these counters to the
      eMAC/pMAC defined by the IEEE MAC Merge layer.
      
      Along the way, the main purpose has diverged into multiple sub-purposes
      which are also tackled:
      
      - A bug fix patch submitted to "net" has made ocelot->stats_lock a spin
        lock, which is not an issue currently (all Ocelot switches are MMIO),
        but will be an issue for Colin Foster who is working on a SPI
        controlled Ocelot switch. We restore the hardware access to port stats
        to be sleepable.
      
      - PSFP (tc-gate, tc-police) tc-flower stats on Felix use a non-converged
        procedure to access the hardware counters, although the interface is
        very similar to what is used for the port counters. Benefit from the
        logic used for the port counters, which gains us 64-bit tc-flower
        stats that are resistant to overflows.
      
      - Also export the ndo_get_stats64 method used by the ocelot switchdev
        driver to Felix, so that ifconfig sees something hardware-based as
        well (but not 100% up to date).
      
      - Create a new ocelot_stats.c file which groups everything stats-related
        together. Along with this, also move some other topic-specific code,
        like FDB and PTP, out of the main ocelot.c.
      
      - Minimize the lines of code for the stats layout definitions. These
        changes alone cause the patch set to have an overall reduction of
        lines of code in the driver, even though we are adding new
        functionality as well.
      
      Tested the port counters with lockdep and friends, with some
      garden-variety traffic (ping, iperf3) and the PSFP counters with
      tools/testing/selftests/drivers/net/ocelot/psfp.sh.
      ====================
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      6fff9261