From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pf0-f175.google.com (mail-pf0-f175.google.com [209.85.192.175]) by dpdk.org (Postfix) with ESMTP id 4192C7CAB for ; Fri, 1 Sep 2017 11:25:47 +0200 (CEST) Received: by mail-pf0-f175.google.com with SMTP id n73so6657356pfj.0 for ; Fri, 01 Sep 2017 02:25:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fridaylinux-org.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to:user-agent; bh=pf5UqTA1WIcdyX7e4ktN9tF7EWiULXq5wNhlMwXDHGI=; b=Mzd4uYb6n1zodf1z7GTmACQghp3gKxX+inr+LL+JXJTGtaTuWaHAaigd5i4HCDg3oE 2pP/6puk9BQA0rzA5uzhxv577l674zx56BFg4fdyVIf6BAE2wDrkykQgIYT1JmFzRXVk PViZJXBTjk8NhcWh46sPVN2La6JCwA2v7c7MSNwJKuD4o+RHwuJiTsfrduZ+m9fK7Evm vkYTYUUPvjkGeYnOtUURTLeecS/kHr019FAG2JZ6slxVlGzs+yxJSlmsLzvHFb4//vCU xa0lfi6KLAMmtHTpvRT91fIoGY4UW09oVkod62CLOONP6b09ie7g8EznniavmYI28CFf uCCA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to:user-agent; bh=pf5UqTA1WIcdyX7e4ktN9tF7EWiULXq5wNhlMwXDHGI=; b=M6hmqFk602SdloqsjkTvan9ZntmrpBwOEICWC4F+IRMdO6rGE8H7A/oamZTWDIt2m0 qfuEKainqtl1F2VMsaXhHCkJo1SwPXgP6Z+vG7+SfTiorRIB64so210vAyrAGAliOSg+ DF6OgkB6r+balQp663RUcOijxCnGaPmSpz2c0SiCerEQZx5P7QsX5DIILh9oOv+JW0u4 3Yl/C6V7cR3vWWCIe+sTh8hbwC8rmbFvEmimjdKceHzfgLtJSAAINTHbYmeLipEYLyMl PyTZO/1vau6ajXtQ8ymhQaHvgzBcbxUr17CSDcKLst61XCW636OM5e4fADPW5kLPwM6W tkxQ== X-Gm-Message-State: AHPjjUg350GBaE49LIbFwhga93THS+bexro6Ydnrm/g+iLfrJkFPV3Uu Z8gCKlYH9XI5yyKn X-Google-Smtp-Source: ADKCNb53rgAaSyYSoM2iyrTkQje3dmZt7X3sFxGPL7+ve/vOlsyGYG2iw50I96Mf9FAmc4udKUUxEw== X-Received: by 10.98.103.71 with SMTP id b68mr1534395pfc.333.1504257946580; Fri, 01 Sep 2017 02:25:46 -0700 (PDT) Received: from yliu-home ([45.63.61.64]) by smtp.gmail.com with ESMTPSA id d11sm2607830pgf.21.2017.09.01.02.25.44 (version=TLS1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 01 Sep 2017 02:25:45 -0700 (PDT) Date: Fri, 1 Sep 2017 17:25:38 +0800 From: Yuanhan Liu To: Olivier Matz Cc: dev@dpdk.org, maxime.coquelin@redhat.com, stephen@networkplumber.org, stable@dpdk.org Message-ID: <20170901092538.GU9736@yliu-home> References: <20170831134015.1383-1-olivier.matz@6wind.com> <20170831134015.1383-9-olivier.matz@6wind.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170831134015.1383-9-olivier.matz@6wind.com> User-Agent: Mutt/1.5.24 (2015-08-30) Subject: Re: [dpdk-stable] [PATCH 8/9] net/virtio: keep Rx handler whatever the Tx queue config X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Sep 2017 09:25:47 -0000 On Thu, Aug 31, 2017 at 03:40:14PM +0200, Olivier Matz wrote: > Split use_simple_rxtx into use_simple_rx and use_simple_tx, > and ensure that only use_simple_tx is updated when txq flags > forces to use the standard Tx handler. I think it's a good idea to split it. > This change is also useful for next commit (disable simple Rx > path when Rx checksum is requested). > > Cc: stable@dpdk.org But again, I don't think it's a good idea to put them (including the next patch) to stable releases. --yliu