From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 8F39EA04B0; Fri, 14 Aug 2020 13:00:58 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 97CCC1C0C3; Fri, 14 Aug 2020 13:00:57 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id C36BC1C023 for ; Fri, 14 Aug 2020 13:00:55 +0200 (CEST) IronPort-SDR: WAQiH+4fcyPCbGQU4Z102ms8mB/33ce5JBLanR1opExYOyulp8Or48rq7cDvy6h2e9pST9U+JU 4LDDFTg37j/g== X-IronPort-AV: E=McAfee;i="6000,8403,9712"; a="151800631" X-IronPort-AV: E=Sophos;i="5.76,312,1592895600"; d="scan'208";a="151800631" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Aug 2020 04:00:54 -0700 IronPort-SDR: ELpNxku0rWDK1lIOGvlJ5QEvr2ItrF/ZxzkO9uBT7ofjQmQ+EIqepmC8/SPiVBnIWa3SnhHjJC ilbn8mBKuUyA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,312,1592895600"; d="scan'208";a="470553376" Received: from silpixa00399126.ir.intel.com ([10.237.222.56]) by orsmga005.jf.intel.com with ESMTP; 14 Aug 2020 04:00:53 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson Date: Fri, 14 Aug 2020 12:00:41 +0100 Message-Id: <20200814110045.217724-1-bruce.richardson@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH 0/4] fixes for example app builds X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" While helping prepare some patches for converting the DPDK examples to build using pkg-config, a number of errors and warnings were encountered in the example app builds. These patches fix those issues. Bruce Richardson (4): power: make guest channel headers public examples/vm_power_manager: fix string truncation warning examples/mp_server: fix snprintf overflow examples/mp_server: clear string truncation warning .../multi_process/client_server_mp/mp_server/main.c | 2 +- .../multi_process/client_server_mp/shared/common.h | 2 +- examples/vm_power_manager/channel_manager.c | 11 ++++++++--- examples/vm_power_manager/channel_monitor.c | 1 - examples/vm_power_manager/channel_monitor.h | 2 +- examples/vm_power_manager/guest_cli/main.c | 1 + .../vm_power_manager/guest_cli/vm_power_cli_guest.c | 2 +- .../vm_power_manager/guest_cli/vm_power_cli_guest.h | 2 +- examples/vm_power_manager/vm_power_cli.c | 1 - lib/librte_power/guest_channel.c | 3 +-- lib/librte_power/meson.build | 4 +++- lib/librte_power/power_kvm_vm.c | 3 +-- ...hannel_commands.h => rte_power_channel_commands.h} | 0 .../{guest_channel.h => rte_power_guest_channel.h} | 2 +- 14 files changed, 20 insertions(+), 16 deletions(-) rename lib/librte_power/{channel_commands.h => rte_power_channel_commands.h} (100%) rename lib/librte_power/{guest_channel.h => rte_power_guest_channel.h} (98%) -- 2.25.1