mbox series

[00/11] Fix repeated words in comments and messages

Message ID 20220722214106.162640-1-stephen@networkplumber.org (mailing list archive)
Headers
Series Fix repeated words in comments and messages |

Message

Stephen Hemminger July 22, 2022, 9:40 p.m. UTC
  Reading netdev, noticed lots of places in Linux kernel with bad
comments being fixed.  Use similar kind of scanning to look
for repeated words in DPDK.

Stephen Hemminger (11):
  remove duplicated 'to to' in messages and comments
  remove duplicate words 'is is'
  mvnet,mvpp2: remove duplicate word
  Remove repeated word 'on on'
  fix repeated words 'in in'
  ring: fix repeated word in comment
  i40e,igc: fix duplicate word than
  bnx2x, pcap: replace only only
  distrubutor: fix repeated word in comment
  ethdev: fix repeated word in comment
  cxgbe: replace 'or or' in comment

 app/test/test_resource.c                    | 2 +-
 drivers/common/sfc_efx/base/efx_regs_mcdi.h | 2 +-
 drivers/common/sfc_efx/base/efx_types.h     | 2 +-
 drivers/common/sfc_efx/base/siena_nvram.c   | 2 +-
 drivers/event/sw/sw_evdev.c                 | 2 +-
 drivers/net/bnx2x/bnx2x.c                   | 2 +-
 drivers/net/bonding/rte_eth_bond_8023ad.h   | 2 +-
 drivers/net/cxgbe/sge.c                     | 2 +-
 drivers/net/hns3/hns3_ethdev.c              | 2 +-
 drivers/net/i40e/i40e_fdir.c                | 2 +-
 drivers/net/igc/base/igc_mac.c              | 2 +-
 drivers/net/mlx5/mlx5_flow.c                | 2 +-
 drivers/net/mvneta/mvneta_ethdev.c          | 2 +-
 drivers/net/mvpp2/mrvl_ethdev.c             | 2 +-
 drivers/net/pcap/pcap_ethdev.c              | 2 +-
 drivers/net/sfc/sfc_ef10_tx.c               | 2 +-
 drivers/net/sfc/sfc_tso.c                   | 2 +-
 examples/vm_power_manager/channel_monitor.h | 2 +-
 examples/vm_power_manager/oob_monitor.h     | 2 +-
 lib/distributor/rte_distributor.c           | 2 +-
 lib/ethdev/rte_ethdev.h                     | 2 +-
 lib/mbuf/rte_mbuf_core.h                    | 2 +-
 lib/net/rte_ether.h                         | 2 +-
 lib/pipeline/rte_swx_ctl.c                  | 2 +-
 lib/power/guest_channel.c                   | 2 +-
 lib/ring/rte_ring.c                         | 2 +-
 26 files changed, 26 insertions(+), 26 deletions(-)
  

Comments

Bruce Richardson July 25, 2022, 8:40 a.m. UTC | #1
On Fri, Jul 22, 2022 at 02:40:55PM -0700, Stephen Hemminger wrote:
> Reading netdev, noticed lots of places in Linux kernel with bad
> comments being fixed.  Use similar kind of scanning to look
> for repeated words in DPDK.
> 
> Stephen Hemminger (11):
>   remove duplicated 'to to' in messages and comments
>   remove duplicate words 'is is'
>   mvnet,mvpp2: remove duplicate word
>   Remove repeated word 'on on'
>   fix repeated words 'in in'
>   ring: fix repeated word in comment
>   i40e,igc: fix duplicate word than
>   bnx2x, pcap: replace only only
>   distrubutor: fix repeated word in comment

Typo in title

>   ethdev: fix repeated word in comment
>   cxgbe: replace 'or or' in comment
>
Nice simple cleanup. If doing a future version, perhaps have the titles and
comments consistent across patches - some of the title above are missing
the repeated word in them.

Series-acked-by: Bruce Richardson <bruce.richardson@intel.com>