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 80222A328D for ; Tue, 22 Oct 2019 11:33:07 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id D71E91BE95; Tue, 22 Oct 2019 11:33:05 +0200 (CEST) Received: from us-smtp-1.mimecast.com (us-smtp-delivery-1.mimecast.com [207.211.31.120]) by dpdk.org (Postfix) with ESMTP id E3BA81BE82 for ; Tue, 22 Oct 2019 11:33:03 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1571736783; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=5+JqaHle6o7aAm40mMLXRDUl/y+/7hMpTRiD7S4TWnc=; b=EVJU8M5ZnHjRim9HiBCJt0FW7BKwTT5PrY0sjkqY03NToNHNjmz/3RpmXLLM950zCNxyHH 73WKpuFc4+mcz0iWBJDET6EswwBK6fcby7yHx+dmB4ANTCR0mZ/+rmr7jnFAzek/HgH8TU KUXz/jQ3Kehv37fAQOVt9MRiWTqDr0s= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-169-Ph8ZY9WsOzKjdJEHh3Q38g-1; Tue, 22 Oct 2019 05:33:00 -0400 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 12E511005509; Tue, 22 Oct 2019 09:32:59 +0000 (UTC) Received: from dmarchan.remote.csb (ovpn-204-129.brq.redhat.com [10.40.204.129]) by smtp.corp.redhat.com (Postfix) with ESMTP id 964CD601AF; Tue, 22 Oct 2019 09:32:57 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: stephen@networkplumber.org, anatoly.burakov@intel.com, thomas@monjalon.net Date: Tue, 22 Oct 2019 11:32:33 +0200 Message-Id: <1571736761-32134-1-git-send-email-david.marchand@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-MC-Unique: Ph8ZY9WsOzKjdJEHh3Q38g-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset=WINDOWS-1252 Content-Transfer-Encoding: quoted-printable Subject: [dpdk-dev] [PATCH 0/8] EAL and PCI ABI changes for 19.11 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" Let's prepare for the ABI freeze. The first patches are about changes that had been announced before (with a patch from Stephen that I took as it is ready as is from my pov). The malloc_heap structure from the memory subsystem can be hidden. The PCI library had some forgotten deprecated APIs that are removed with this series. Finally, rte_logs could be hidden, but I am not that confortable about doing it right away: I added an accessor to rte_logs.file, but I am fine with dropping the last patch and wait for actually hiding this in the next ABI break. Comments? --=20 David Marchand David Marchand (7): eal: remove deprecated CPU flags check function eal: remove deprecated malloc virt2phys function mem: hide internal heap header net/bonding: use non deprecated PCI API pci: remove deprecated functions log: add log stream accessor log: hide internal log structure Stephen Hemminger (1): eal: make lcore config private app/test-pmd/testpmd.c | 1 - doc/guides/rel_notes/deprecation.rst | 17 ------- doc/guides/rel_notes/release_19_11.rst | 14 +++++ drivers/common/qat/qat_logs.c | 3 +- drivers/common/qat/qat_logs.h | 3 +- drivers/net/bonding/rte_eth_bond_args.c | 5 +- lib/librte_eal/common/Makefile | 2 +- lib/librte_eal/common/eal_common_cpuflags.c | 11 ---- lib/librte_eal/common/eal_common_launch.c | 2 + lib/librte_eal/common/eal_common_log.c | 59 ++++++++++++++----= ---- lib/librte_eal/common/eal_memcfg.h | 3 +- lib/librte_eal/common/eal_private.h | 25 +++++++++ .../common/include/generic/rte_cpuflags.h | 9 ---- lib/librte_eal/common/include/rte_lcore.h | 24 --------- lib/librte_eal/common/include/rte_log.h | 33 ++++++------ lib/librte_eal/common/include/rte_malloc.h | 7 --- lib/librte_eal/common/include/rte_malloc_heap.h | 35 ------------- lib/librte_eal/common/malloc_heap.h | 25 ++++++++- lib/librte_eal/common/meson.build | 1 - lib/librte_eal/common/rte_service.c | 2 + lib/librte_eal/rte_eal_version.map | 6 +-- lib/librte_eal/windows/eal/eal_thread.c | 1 + lib/librte_pci/rte_pci.c | 19 ------- lib/librte_pci/rte_pci.h | 47 ----------------- lib/librte_pci/rte_pci_version.map | 3 -- 25 files changed, 132 insertions(+), 225 deletions(-) delete mode 100644 lib/librte_eal/common/include/rte_malloc_heap.h --=20 1.8.3.1