From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH v3 03/16] mbuf: move packet type definitions in a new file Date: Mon, 10 Oct 2016 16:52:46 +0200 Message-ID: <2178965.8ItUXrjgAs@xps13> References: <1472481335-21226-1-git-send-email-olivier.matz@6wind.com> <1475483937-21696-1-git-send-email-olivier.matz@6wind.com> <1475483937-21696-4-git-send-email-olivier.matz@6wind.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org, cunming.liang@intel.com, john.mcnamara@intel.com, andrey.chilikin@intel.com, konstantin.ananyev@intel.com To: Olivier Matz Return-path: Received: from mail-qk0-f179.google.com (mail-qk0-f179.google.com [209.85.220.179]) by dpdk.org (Postfix) with ESMTP id 5ED7037B8 for ; Mon, 10 Oct 2016 16:52:50 +0200 (CEST) Received: by mail-qk0-f179.google.com with SMTP id o68so114977188qkf.3 for ; Mon, 10 Oct 2016 07:52:50 -0700 (PDT) In-Reply-To: <1475483937-21696-4-git-send-email-olivier.matz@6wind.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 2016-10-03 10:38, Olivier Matz: > The file rte_mbuf.h starts to be quite big, and next commits > will introduce more functions related to packet types. Let's > move them in a new file. > > Signed-off-by: Olivier Matz > --- > lib/librte_mbuf/Makefile | 2 +- > lib/librte_mbuf/rte_mbuf.h | 495 +---------------------------------- > lib/librte_mbuf/rte_mbuf_ptype.h | 552 +++++++++++++++++++++++++++++++++++++++ Why not moving packet type and other packet flags in librte_net?