From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-oi0-f67.google.com (mail-oi0-f67.google.com [209.85.218.67]) by dpdk.org (Postfix) with ESMTP id 843A31B964 for ; Thu, 10 May 2018 08:24:59 +0200 (CEST) Received: by mail-oi0-f67.google.com with SMTP id k5-v6so858325oiw.0 for ; Wed, 09 May 2018 23:24:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=5azzix8dwssjCRTxGakMM0+sABbAB9nLn4Sg4XPiEbk=; b=Ow9zwViI/FFQHkR+1WXkClVznudnendxpYcjyD4163hO3IYPsnjzPfkSNZXx/FNfzR Wqm+VDfdXkmLi3+dn0SJCHCi3NWR46mnV2zvn0VIUPw/sQ0fXGikyq3OzC71YkN4bGBA 479n8SBbWECci5G4C7Ae9B1ka6eRm5RoK7A6YBPXEZaWl2cMNl5ZfIkAPYL0g7RM0gjI jZjiRA4Fu/zp/xwQNKll6DXo61K2g/n5GiisjcuJJH8Yq8Kuv5Ckpwv7mtfPUL3Sift2 WxTLFa4dNTsJVYSu0g6+23QvtOF43hZrbXDc8eVRqflh7bhTYeveEgf4PuQ0DgChMR9T 6UwQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=5azzix8dwssjCRTxGakMM0+sABbAB9nLn4Sg4XPiEbk=; b=uPlgecxvHF+ano74/mshgH5qekP81sm6LHnnWtp/RnGGfEAsXMDXlL4mbDpcgIUfMe 0bbgHFYNPkHpEgbsFY6+0WelYiAH9VCXLL1cA08p3ufylaR/UmEi5oAHRLW07wA7pAZh 7GVi8cOZZTtq1k08JGo6Vzij3WbMc8Q1KjvPGIm+NEOEDgG6Qc5lPg95XHXR0Fq3Hlu+ 5vrqd+9H9/dKX7ezGdiqL+faK+s6YtOGCA99lmdFJrrbnTcjWsttvCUr9b/WG9j23xLA 4J5k3897Y+hH0DzwxIJHmQqylH+YFZqhGa/qn+NZqFyJQaEix8lgvP4dYpPmem+t9giW IbIw== X-Gm-Message-State: ALKqPwfxnv82tGmFCZ07frsmo7pEz2u8YLtOth5tQrszj3xo1meLZohW oAe7vukojd/bEyKv+0T3zu6iPOv7BrEnP4DUf7xwy3F3 X-Google-Smtp-Source: AB8JxZqbJdTNPcCT10tKliJ0GHV4sPQWyiR2O8Qr59dG3HkAwXWR9q1d8h5PJa8XVMrGnbEBknGZPNfQe3F0LtctCK8= X-Received: by 2002:aca:3c07:: with SMTP id j7-v6mr73556oia.128.1525933498623; Wed, 09 May 2018 23:24:58 -0700 (PDT) MIME-Version: 1.0 Received: by 10.74.146.137 with HTTP; Wed, 9 May 2018 23:24:58 -0700 (PDT) In-Reply-To: <20180510042232.13924-1-qi.z.zhang@intel.com> References: <20180510042232.13924-1-qi.z.zhang@intel.com> From: Tonghao Zhang Date: Thu, 10 May 2018 14:24:58 +0800 Message-ID: To: Qi Zhang Cc: john.mcnamara@intel.com, dev@dpdk.org Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH v2] doc: update release notes. X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 May 2018 06:24:59 -0000 On Thu, May 10, 2018 at 12:22 PM, Qi Zhang wrote: > Add updates for runtime queue setup. > > Signed-off-by: Qi Zhang > --- > > v2: > - fix typo. > > doc/guides/rel_notes/release_18_05.rst | 7 ++++++- > 1 file changed, 6 insertions(+), 1 deletion(-) > > diff --git a/doc/guides/rel_notes/release_18_05.rst b/doc/guides/rel_notes/release_18_05.rst > index 718734852..589649121 100644 > --- a/doc/guides/rel_notes/release_18_05.rst > +++ b/doc/guides/rel_notes/release_18_05.rst > @@ -183,7 +183,6 @@ New Features > stats/xstats on shared memory from secondary process, and also pdump packets on > those virtual devices. > > - > API Changes > ----------- > > @@ -322,6 +321,12 @@ API Changes > * ``rte_flow_create()`` API count action now requires the ``struct rte_flow_action_count``. > * ``rte_flow_query()`` API parameter changed from action type to action structure. > > +* ethdev: runtime queue setup: > + * ``rte_eth_rx_queue_setup`` and ``rte_eth_rx_queue_setup`` can be called after I guess that one of rte_eth_rx_queue_setup -> rte_eth_tx_queue_setup > + ``rte_eth_dev_start`` if device support runtime queue setup. Device driver can > + expose this capability through ``rte_eth_dev_info_get``. A Rx or Tx queue be > + setup at runtime need to be started explicitly by ``rte_eth_dev_rx_queue_start`` > + or ``rte_eth_dev_tx_queue_start``. > > ABI Changes > ----------- > -- > 2.13.6 >