numam-dpdk/drivers/crypto
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
..
aesni_gcm log: register with standardized names 2021-05-11 15:17:55 +02:00
aesni_mb log: register with standardized names 2021-05-11 15:17:55 +02:00
armv8 log: register with standardized names 2021-05-11 15:17:55 +02:00
bcmfs log: register with standardized names 2021-05-11 15:17:55 +02:00
caam_jr drivers: change indentation in build files 2021-04-21 14:04:09 +02:00
ccp drivers: change indentation in build files 2021-04-21 14:04:09 +02:00
dpaa2_sec crypto/dpaa2_sec: fix close and uninit functions 2021-05-05 17:16:25 +02:00
dpaa_sec crypto/dpaa_sec: affine the thread portal affinity 2021-05-05 17:14:54 +02:00
kasumi log: register with standardized names 2021-05-11 15:17:55 +02:00
mvsam log: register with standardized names 2021-05-11 15:17:55 +02:00
nitrox log: register with standardized names 2021-05-11 15:17:55 +02:00
null log: register with standardized names 2021-05-11 15:17:55 +02:00
octeontx log: register with standardized names 2021-05-11 15:17:55 +02:00
octeontx2 log: register with standardized names 2021-05-11 15:17:55 +02:00
openssl log: register with standardized names 2021-05-11 15:17:55 +02:00
qat build: fix formatting of Meson lists 2021-05-04 15:01:47 +02:00
scheduler log: register with standardized names 2021-05-11 15:17:55 +02:00
snow3g log: register with standardized names 2021-05-11 15:17:55 +02:00
virtio log: register with standardized names 2021-05-11 15:17:55 +02:00
zuc log: register with standardized names 2021-05-11 15:17:55 +02:00
meson.build drivers: clean up build lists 2021-04-21 12:37:55 +02:00