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 C0D388E80 for ; Tue, 3 Nov 2015 21:06:37 +0100 (CET) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga103.jf.intel.com with ESMTP; 03 Nov 2015 12:06:36 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,239,1444719600"; d="scan'208";a="810965975" Received: from irsmsx105.ger.corp.intel.com ([163.33.3.28]) by orsmga001.jf.intel.com with ESMTP; 03 Nov 2015 12:06:36 -0800 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.138]) by irsmsx105.ger.corp.intel.com ([169.254.7.75]) with mapi id 14.03.0248.002; Tue, 3 Nov 2015 20:06:35 +0000 From: "De Lara Guarch, Pablo" To: "Mrzyglod, DanielX T" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v3 6/7] example: PTP client slave minimal implementation Thread-Index: AQHRFldo345q4ztvvkKqn1gfi06lAJ6KuR0Q Date: Tue, 3 Nov 2015 20:06:34 +0000 Message-ID: References: <1443799208-9408-1-git-send-email-danielx.t.mrzyglod@intel.com> <1446568728-12220-1-git-send-email-danielx.t.mrzyglod@intel.com> <1446568728-12220-7-git-send-email-danielx.t.mrzyglod@intel.com> In-Reply-To: <1446568728-12220-7-git-send-email-danielx.t.mrzyglod@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [163.33.239.182] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v3 6/7] example: PTP client slave minimal implementation 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: Tue, 03 Nov 2015 20:06:38 -0000 Hi Daniel, > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Daniel Mrzyglod > Sent: Tuesday, November 03, 2015 4:39 PM > To: dev@dpdk.org > Subject: [dpdk-dev] [PATCH v3 6/7] example: PTP client slave minimal > implementation >=20 > Add a sample application that acts as a PTP slave using the > DPDK ieee1588 functions. >=20 > Signed-off-by: Daniel Mrzyglod > --- > MAINTAINERS | 3 + > doc/guides/rel_notes/release_2_2.rst | 5 + > examples/Makefile | 1 + > examples/ptpclient/Makefile | 56 +++ > examples/ptpclient/ptpclient.c | 779 > +++++++++++++++++++++++++++++++++++ > 5 files changed, 844 insertions(+) > create mode 100644 examples/ptpclient/Makefile > create mode 100644 examples/ptpclient/ptpclient.c >=20 > diff --git a/MAINTAINERS b/MAINTAINERS > index c8be5d2..0638665 100644 > --- a/MAINTAINERS > +++ b/MAINTAINERS > @@ -520,3 +520,6 @@ F: examples/tep_termination/ > F: examples/vmdq/ > F: examples/vmdq_dcb/ > F: doc/guides/sample_app_ug/vmdq_dcb_forwarding.rst > + > +M: Daniel Mrzyglod > +F: examples/ptpclient > diff --git a/doc/guides/rel_notes/release_2_2.rst > b/doc/guides/rel_notes/release_2_2.rst > index 09fd642..c32338c 100644 > --- a/doc/guides/rel_notes/release_2_2.rst > +++ b/doc/guides/rel_notes/release_2_2.rst > @@ -141,6 +141,11 @@ Libraries > Examples > ~~~~~~~~ >=20 > +* **ptpclient: simple PTP slave client.** > + > + Add a sample application that acts as a PTP slave using the > + DPDK ieee1588 functions. > + >=20 You have added this in a wrong place in release notes, under Resolved issue= s. Could you move it to the correct place in the document? Thanks, Pablo