numam-dpdk/drivers/net/ionic
David Marchand eeded2044a log: register with standardized names
Let's try to enforce the convention where most drivers use a pmd. logtype
with their class reflected in it, and libraries use a lib. logtype.

Introduce two new macros:
- RTE_LOG_REGISTER_DEFAULT can be used when a single logtype is
  used in a component. It is associated to the default name provided
  by the build system,
- RTE_LOG_REGISTER_SUFFIX can be used when multiple logtypes are used,
  and then the passed name is appended to the default name,

RTE_LOG_REGISTER is left untouched for existing external users
and for components that do not comply with the convention.

There is a new Meson variable log_prefix to adapt the default name
for baseband (pmd.bb.), bus (no pmd.) and mempool (no pmd.) classes.

Note: achieved with below commands + reverted change on net/bonding +
edits on crypto/virtio, compress/mlx5, regex/mlx5

$ git grep -l RTE_LOG_REGISTER drivers/ |
  while read file; do
    pattern=${file##drivers/};
    class=${pattern%%/*};
    pattern=${pattern#$class/};
    drv=${pattern%%/*};
    case "$class" in
      baseband) pattern=pmd.bb.$drv;;
      bus) pattern=bus.$drv;;
      mempool) pattern=mempool.$drv;;
      *) pattern=pmd.$class.$drv;;
    esac
    sed -i -e 's/RTE_LOG_REGISTER(\(.*\), '$pattern',/RTE_LOG_REGISTER_DEFAULT(\1,/' $file;
    sed -i -e 's/RTE_LOG_REGISTER(\(.*\), '$pattern'\.\(.*\),/RTE_LOG_REGISTER_SUFFIX(\1, \2,/' $file;
  done

$ git grep -l RTE_LOG_REGISTER lib/ |
  while read file; do
    pattern=${file##lib/};
    pattern=lib.${pattern%%/*};
    sed -i -e 's/RTE_LOG_REGISTER(\(.*\), '$pattern',/RTE_LOG_REGISTER_DEFAULT(\1,/' $file;
    sed -i -e 's/RTE_LOG_REGISTER(\(.*\), '$pattern'\.\(.*\),/RTE_LOG_REGISTER_SUFFIX(\1, \2,/' $file;
  done

Signed-off-by: David Marchand <david.marchand@redhat.com>
Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
2021-05-11 15:17:55 +02:00
..
ionic_dev.c net/ionic: break up queue post function 2021-02-25 16:58:56 +01:00
ionic_dev.h net/ionic: break up queue post function 2021-02-25 16:58:56 +01:00
ionic_ethdev.c log: register with standardized names 2021-05-11 15:17:55 +02:00
ionic_ethdev.h net/ionic: improve link state handling 2021-01-13 18:51:58 +01:00
ionic_if.h net/ionic: update interface file 2021-01-08 16:03:04 +01:00
ionic_lif.c drivers: replace page size definitions with function 2021-03-23 08:41:05 +01:00
ionic_lif.h net/ionic: store Tx fragment limit in queue 2021-02-25 16:58:56 +01:00
ionic_logs.h
ionic_mac_api.c net/ionic: use standard boolean type 2020-03-18 10:21:42 +01:00
ionic_mac_api.h
ionic_main.c drivers: replace page size definitions with function 2021-03-23 08:41:05 +01:00
ionic_osdep.h drivers: replace page size definitions with function 2021-03-23 08:41:05 +01:00
ionic_regs.h net/ionic: remove some unused fields 2021-01-08 16:03:04 +01:00
ionic_rx_filter.c net/ionic: consolidate adminq code 2021-02-25 16:58:56 +01:00
ionic_rx_filter.h net/ionic: remove unused filter delete function 2021-02-25 16:58:56 +01:00
ionic_rxtx.c net/ionic: store Tx fragment limit in queue 2021-02-25 16:58:56 +01:00
ionic_rxtx.h
ionic.h net/ionic: consolidate adminq code 2021-02-25 16:58:56 +01:00
meson.build drivers: change indentation in build files 2021-04-21 14:04:09 +02:00
version.map build: remove library name from version map file name 2020-10-19 22:13:59 +02:00