From: Lukasz Krakowiak Date: Tue, 16 Apr 2019 10:20:39 +0000 (+0200) Subject: examples/power: remove double copy of FIFO path X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=60dea75f908942f386edd13d40f89234aa305680;p=dpdk.git examples/power: remove double copy of FIFO path Removed doubled created fifo path string for channel info. Signed-off-by: Lukasz Krakowiak Signed-off-by: Lukasz Gosiewski Acked-by: David Hunt --- diff --git a/examples/vm_power_manager/channel_manager.c b/examples/vm_power_manager/channel_manager.c index 084681747a..0f5f9e287f 100644 --- a/examples/vm_power_manager/channel_manager.c +++ b/examples/vm_power_manager/channel_manager.c @@ -362,8 +362,6 @@ setup_host_channel_info(struct channel_info **chan_info_dptr, chan_info->status = CHANNEL_MGR_CHANNEL_DISCONNECTED; chan_info->type = CHANNEL_TYPE_JSON; - fifo_path(chan_info->channel_path, sizeof(chan_info->channel_path)); - if (open_host_channel(chan_info) < 0) { RTE_LOG(ERR, CHANNEL_MANAGER, "Could not open host channel: " "'%s'\n", @@ -563,8 +561,8 @@ add_host_channel(void) "channel '%s'\n", socket_path); return 0; } - strlcpy(chan_info->channel_path, socket_path, - sizeof(chan_info->channel_path)); + rte_strlcpy(chan_info->channel_path, socket_path, UNIX_PATH_MAX); + if (setup_host_channel_info(&chan_info, 0) < 0) { rte_free(chan_info); return 0;