Received: by 2002:a25:8b12:0:0:0:0:0 with SMTP id i18csp411442ybl; Wed, 21 Aug 2019 22:07:50 -0700 (PDT) X-Google-Smtp-Source: APXvYqxPAoDHXWG0j3jvhGwfkWWybmUz9ELeWAHl2dJ8mUXrKFuFKNOAPC3eRnKUZUrvlMS3+Za0 X-Received: by 2002:a63:6146:: with SMTP id v67mr33510817pgb.271.1566450470452; Wed, 21 Aug 2019 22:07:50 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1566450470; cv=none; d=google.com; s=arc-20160816; b=jGgtpO9yxR+YtmRY5MbPSEjlvRxx2C/WY6AX22VwzLMeDrtmLxaI8UiBMbkvPIgFkg 0XMY8g+IK9TKvNwe8m4caYjf2JDmW3iZuFrc44jozQ4Rx2CjaqTV9E0oFlOwvTguJPsv 5hr5vBeajMWopq4IoFdq4j+bLg8MUP03nrBMxUkpEw2eW+NeaUR7BUH8l9fVaU64khS1 Uhst4tGv25wkPAOHenYd9xpRQNLQEKob20+bz2UWaKZNcWGUkCVjD63G8qV33A4HfPo4 jRzeMLFclITUt92zkBO1wbOXzNRSQFK/2THPHEddBHWL/eOKdER0UEkBi/1qetc94gtY c0Lw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=+ZSewZqtjgadrVp2FuTItBmWp/Ji1YS7EarPtyr1joo=; b=V9krgc3KQiyLGXFsiJGpR15E6vtB0oaOxN7sXyjKQ71K6sk1X76oDtlciWK9aLfJGy CYNfHDVGH5WUz6FmQ8BFE8gGZDtmTLc+B7F92QLgJGrW67CzQCarO5Dx2hYth8WrIsGl 2KmnzXnL0y12sTTT/fcO3skgFBSHopL0rIDd/1Swa0W8GefBXIMShHtWOPKOD6FQRkSS BdNXYHkDqcRWzMEyYMn9aK6oL4j6Lv81FhfiSavnKqQQjq8Cr5kLnC/kKuXusw4y49Wj us4693D0p1Ef1DqTNXVM4k1aO12LqRmtI2hHW3zpFzGAG8oU1mPpgfflKxO0Cu1nIC2J rXKg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id 18si15800574pgf.457.2019.08.21.22.07.35; Wed, 21 Aug 2019 22:07:50 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729050AbfHVA2X (ORCPT + 99 others); Wed, 21 Aug 2019 20:28:23 -0400 Received: from verein.lst.de ([213.95.11.211]:42082 "EHLO verein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726693AbfHVA2X (ORCPT ); Wed, 21 Aug 2019 20:28:23 -0400 Received: by verein.lst.de (Postfix, from userid 2407) id 149D468BFE; Thu, 22 Aug 2019 02:28:18 +0200 (CEST) Date: Thu, 22 Aug 2019 02:28:18 +0200 From: Christoph Hellwig To: Benjamin Herrenschmidt Cc: linux-nvme@lists.infradead.org, Sagi Grimberg , Jens Axboe , Keith Busch , Christoph Hellwig , linux-kernel@vger.kernel.org, Paul Pawlowski Subject: Re: [PATCH v4 2/4] nvme-pci: Add support for variable IO SQ element size Message-ID: <20190822002818.GA10391@lst.de> References: <20190807075122.6247-1-benh@kernel.crashing.org> <20190807075122.6247-3-benh@kernel.crashing.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190807075122.6247-3-benh@kernel.crashing.org> User-Agent: Mutt/1.5.17 (2007-11-01) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Aug 07, 2019 at 05:51:20PM +1000, Benjamin Herrenschmidt wrote: > +#define NVME_NVM_ADMSQES 6 > #define NVME_NVM_IOSQES 6 > #define NVME_NVM_IOCQES 4 The NVM in the two defines here stands for the NVM command set, so this should just be named NVME_ADM_SQES or so. But except for this the patch looks good: Reviewed-by: Christoph Hellwig So maybe Sagi can just fix this up in the tree.