From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 182ED5937 for ; Fri, 3 Oct 2014 17:30:02 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga103.jf.intel.com with ESMTP; 03 Oct 2014 08:34:31 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.04,647,1406617200"; d="scan'208";a="583081370" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by orsmga001.jf.intel.com with ESMTP; 03 Oct 2014 08:36:54 -0700 Received: from sivswdev02.ir.intel.com (sivswdev02.ir.intel.com [10.237.217.46]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id s93FarQT032544; Fri, 3 Oct 2014 16:36:53 +0100 Received: from sivswdev02.ir.intel.com (localhost [127.0.0.1]) by sivswdev02.ir.intel.com with ESMTP id s93FarHA023246; Fri, 3 Oct 2014 16:36:53 +0100 Received: (from bricha3@localhost) by sivswdev02.ir.intel.com with id s93FarjB023242; Fri, 3 Oct 2014 16:36:53 +0100 From: Bruce Richardson To: dev@dpdk.org Date: Fri, 3 Oct 2014 16:36:52 +0100 Message-Id: <1412350612-23190-4-git-send-email-bruce.richardson@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1412350612-23190-1-git-send-email-bruce.richardson@intel.com> References: <1412350612-23190-1-git-send-email-bruce.richardson@intel.com> Subject: [dpdk-dev] [PATCH 3/3] mbuf: add comment for ctrl mbuf flag X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Oct 2014 15:30:03 -0000 Add in a doxygen comment for the ctrl mbuf flag definition. Signed-off-by: Bruce Richardson --- lib/librte_mbuf/rte_mbuf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_mbuf/rte_mbuf.h b/lib/librte_mbuf/rte_mbuf.h index a4487bb..8581e15 100644 --- a/lib/librte_mbuf/rte_mbuf.h +++ b/lib/librte_mbuf/rte_mbuf.h @@ -115,7 +115,7 @@ extern "C" { #define PKT_TX_IEEE1588_TMST (1ULL << 51) /**< TX IEEE1588 packet to timestamp. */ /* Use final bit of flags to indicate a control mbuf */ -#define CTRL_MBUF_FLAG (1ULL << 63) +#define CTRL_MBUF_FLAG (1ULL << 63) /**< Mbuf contains control data */ /** * Bit Mask to indicate what bits required for building TX context -- 1.9.3