virtio: fix newline under debug mode
authorJianfeng Tan <jianfeng.tan@intel.com>
Tue, 19 Apr 2016 05:22:37 +0000 (05:22 +0000)
committerYuanhan Liu <yuanhan.liu@linux.intel.com>
Tue, 10 May 2016 17:52:01 +0000 (10:52 -0700)
commite908312704278148b0b3155a0093c8b96bf59e26
treee656bd3a6b110eb1e3315fa19e573c3946e422c4
parentdb340cf2ef71af231af67be8e42fd603e4bab0ac
virtio: fix newline under debug mode

Issue: output of appliations and debug info of DPDK may be mixed up
in same line when enabling below debug options of virtio:
CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_INIT
CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_TX
CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_DRIVER

This patch adds "\n" in the tail of definitions like PMD_RX_LOG,
PMD_TX_LOG, and PMD_DRV_LOG, and removes some "\n" when using these
macros.

Fixes: c1f86306a026 ("virtio: add new driver")

Signed-off-by: Jianfeng Tan <jianfeng.tan@intel.com>
Acked-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>
drivers/net/virtio/virtio_ethdev.c
drivers/net/virtio/virtio_logs.h
drivers/net/virtio/virtio_rxtx.c