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 3F08FA034C; Mon, 9 May 2022 14:47:49 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 29A41407FF; Mon, 9 May 2022 14:47:49 +0200 (CEST) Received: from mail-io1-f54.google.com (mail-io1-f54.google.com [209.85.166.54]) by mails.dpdk.org (Postfix) with ESMTP id EE6024068F for ; Mon, 9 May 2022 14:47:46 +0200 (CEST) Received: by mail-io1-f54.google.com with SMTP id e194so15113563iof.11 for ; Mon, 09 May 2022 05:47:46 -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=Y4daSnuPsw4sGRdqssAq/35huRwTnEgLISkizDYkhbw=; b=axKxxQ8fYsjsSOWt/yzB1tLwbUDQV7WSlJh9mz7MupZUxLhsCtEtNZrWZQL2Dxol50 DXgzUF0viPBb4QprEw2WD3Vbakh57mXyLSJZCriLTm+9ctx16xcpZkZ14XgDsiCOaZAf dYCtFTLiAKlGguxk/9cgSQf21pII2R8bA3JFFOJ9k/UyIHNmwN3Hh8KrgQmB8+uk1eLG iWjwap5Zg7kkzwF1TOGBSCFieonbFIsoR1da1ExH784nKLb/zPdMcKU4rjcU5dLwuDr3 KQJ2EjgZAy2cz1NKy4XtJ7EpI3xnjFFdVOUZWHFEYGREMsD7Vh+RPqIqI7zst97YvCUs 3dxw== 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=Y4daSnuPsw4sGRdqssAq/35huRwTnEgLISkizDYkhbw=; b=qQeGnUxJCNCJDeSdCaUWYjvD1ZFUMBGf3YYcl3tM5qR57/pSswzqqd6vlYMJt/Rq3N rk5JK0G4aVr/NYy61gAEs/Vids1GsfiqoN3RQ8zAkcpnIYv0VDcnqunkujI8/9CVy0d7 hPmsCbbgC2te9G9ad5GZ5gxRFhCIqyAulM3h6H2ui5SGeOK9yt+M5lUCZY3C0IphWAkd w14TncfztNUuqzaAotAkTFihkKwgN2rjB4DNqxPIGnLY4mwi61rbfxmpxQCJ0bnj+12N z/pQ0ld9dW+oRi+Wp+liOL6ByPCm15eidG9Y6z10pM6D8aRAAO0mje6D1C3d0E58pOhL gHsQ== X-Gm-Message-State: AOAM530dGcW1fPbVZu+3SkRsH4xsjHKq25xRBHCX+IkbSd8V+UwpKWAU uLbMVGfOY1QHcGZLFtunpDGJ0vA+gypLf3Lrwi4= X-Google-Smtp-Source: ABdhPJwW50Td9oyPPLmbf6MeGGAoioVFjYlCt62xwFR6qW7PLz3r8b6OPpZqSWPIQlEwMFtxKvzHGDHpPMaVeFBi8RY= X-Received: by 2002:a05:6638:150a:b0:32b:93df:83cf with SMTP id b10-20020a056638150a00b0032b93df83cfmr7200867jat.280.1652100466289; Mon, 09 May 2022 05:47:46 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: From: Jerin Jacob Date: Mon, 9 May 2022 18:17:20 +0530 Message-ID: Subject: Re: [PATCH v2 3/6] doc: announce change in event queue conf structure To: Shijith Thotton Cc: dpdk-dev , Jerin Jacob , Pavan Nikhilesh , "Van Haaren, Harry" , =?UTF-8?Q?Mattias_R=C3=B6nnblom?= , Ray Kinsella 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 Tue, Apr 5, 2022 at 11:12 AM Shijith Thotton wrote: > > Structure rte_event_queue_conf will be extended to include fields to > support weight and affinity attribute. Once it gets added in DPDK 22.11, > eventdev internal op, queue_attr_get can be removed. > > Signed-off-by: Shijith Thotton Please remove the deprecation notice patch from this series and send it as a separate patch. > --- > 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 4e5b23c53d..04125db681 100644 > --- a/doc/guides/rel_notes/deprecation.rst > +++ b/doc/guides/rel_notes/deprecation.rst > @@ -125,3 +125,6 @@ Deprecation Notices > applications should be updated to use the ``dmadev`` library instead, > with the underlying HW-functionality being provided by the ``ioat`` or > ``idxd`` dma drivers > + > +* eventdev: New fields to represent event queue weight and affinity will be > + added to ``rte_event_queue_conf`` structure in DPDK 22.11. > -- > 2.25.1 >