From 64201f10598b53b2218176eefc4d3888028dcb7b Mon Sep 17 00:00:00 2001 From: Stephen Hemminger Date: Fri, 14 Aug 2020 10:45:14 -0700 Subject: [PATCH] eal/linux: change udev debug message The debug message was poorly worded and did not include the part that would be useful. I.e it never said what was being ignored. Change it to print the message so that if udev changes format or other subsystems need to be added then the necessary information will be in the debug log. Fixes: 0d0f478d0483 ("eal/linux: add uevent parse and process") Signed-off-by: Stephen Hemminger Acked-by: Jeff Guo --- lib/librte_eal/linux/eal_dev.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/librte_eal/linux/eal_dev.c b/lib/librte_eal/linux/eal_dev.c index 83c9cd6607..83b6068264 100644 --- a/lib/librte_eal/linux/eal_dev.c +++ b/lib/librte_eal/linux/eal_dev.c @@ -234,8 +234,7 @@ dev_uev_handler(__rte_unused void *param) ret = dev_uev_parse(buf, &uevent, EAL_UEV_MSG_LEN); if (ret < 0) { - RTE_LOG(DEBUG, EAL, "It is not an valid event " - "that need to be handle.\n"); + RTE_LOG(DEBUG, EAL, "Ignoring uevent '%s'\n", buf); return; } -- 2.20.1