From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id A2E3BA0032; Mon, 11 Jul 2022 16:52:35 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 27E7A42B81; Mon, 11 Jul 2022 16:52:19 +0200 (CEST) Received: from mail-qv1-f51.google.com (mail-qv1-f51.google.com [209.85.219.51]) by mails.dpdk.org (Postfix) with ESMTP id 529B64280B for ; Mon, 11 Jul 2022 16:52:18 +0200 (CEST) Received: by mail-qv1-f51.google.com with SMTP id v5so518867qvq.8 for ; Mon, 11 Jul 2022 07:52:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=PidszHGD2YPG5YGjGk3PvfwrWvGApQEnyl/RFtiRMTE=; b=MU0WeVDgH/v6N+LeNkxLaz2HeLmpREPuUVuZN3Q/7APj841KsLZBgxPcKcSWXwuI0u wNnsGoyobtprYZ2BDbHRDFmSvyMlW+jY2TiGys7TFZPeZ8eOJP96jL4GtG00WJ2RflqO y3ypcXo5PRIH8NfrKiXQ9YmnY85q9Lakka7Dg6FTnBH1PofhiaO2UvWS65Zt/Dtl2oI0 f/UuQx8ClGixFovp8CN+oKWFzGZTmdzpv2jQd8BQcVSEO5hOFixNlI33WlGNQVB+D61J ev3acLZcDO2BorS0lp+7Rkt37Lap8l/wyB3rrYU0/OFwmJDhdn3bOFb50qGhGjgT8cam DOyw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=PidszHGD2YPG5YGjGk3PvfwrWvGApQEnyl/RFtiRMTE=; b=Dd8PEA34I+BGm9aLTtXCSjgLWMp42LVZpcqMfRYSXcKF4azgpgmER93drhhVLDNdTV 05Qe5xTYqE0PQVQEHFJojGpQ4tqUmy6IjvEPOIZ6vyYGNa7NuTspEytXhc1nc3crMy9r ZZc1FK1PGQxGxo2YvLK/5JId3xmCEYcuhLZfWdktOavXIpblsU7MdA22xl/CnW89wHkC 2OqBiuen+JLS/vPcrXMy1OCCV05qmfxuPOxb+ES/bqRcATIDYE7LEeKlr57FJ7VYrGqT odbmlal1H1m9JkuRbNXzvxAXFhONwSULWiMGUrgJ2HjwXM5enQ9SY+dQtFdjV9uz0WAd 7Q4w== X-Gm-Message-State: AJIora9ypBNszObMNfI6dOZM7+JVtTRWUvCimbX7ZV81tXbIDnaoDRZ9 CJW9FuB0GrCRAhyhFUGUT/XklZulnfkotSrAVNo= X-Google-Smtp-Source: AGRyM1sUq5Umqr1rhZOT2gopAWzeOIBfAecZygtZ5pt4uphtkR50JQnOLjwGGu2U5sWUawVnjq4jj1rWxQfZmWny4G4= X-Received: by 2002:a05:6214:d0f:b0:472:f446:4322 with SMTP id 15-20020a0562140d0f00b00472f4464322mr14112506qvh.0.1657551137715; Mon, 11 Jul 2022 07:52:17 -0700 (PDT) MIME-Version: 1.0 References: <20220624090951.4833-1-pbhagavatula@marvell.com> In-Reply-To: <20220624090951.4833-1-pbhagavatula@marvell.com> From: Jerin Jacob Date: Mon, 11 Jul 2022 20:21:51 +0530 Message-ID: Subject: Re: [PATCH] doc: announce change in event vector structure To: Pavan Nikhilesh Cc: Jerin Jacob , Ray Kinsella , dpdk-dev Content-Type: text/plain; charset="UTF-8" X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On Fri, Jun 24, 2022 at 2:42 PM wrote: > > From: Pavan Nikhilesh > > The field `*u64s` in the structure `rte_event_vector` will > be replaced with `u64s`. > > Signed-off-by: Pavan Nikhilesh Acked-by: Jerin Jacob > --- > doc/guides/rel_notes/deprecation.rst | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst > index a3c4f4ac09..6b50ec4865 100644 > --- a/doc/guides/rel_notes/deprecation.rst > +++ b/doc/guides/rel_notes/deprecation.rst > @@ -128,3 +128,6 @@ Deprecation Notices > > * eventdev: The function pointer declaration ``eventdev_stop_flush_t`` will be > renamed to ``rte_eventdev_stop_flush_t`` in DPDK 22.11. > + > +* eventdev: The element ``*u64s`` in the structure ``rte_event_vector`` is > + deprecated and will be replaced with ``u64s`` in DPDK 22.11. > -- > 2.25.1 >