From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from verein.lst.de (verein.lst.de [213.95.11.211]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id CB4663BF677; Wed, 29 Jul 2026 07:10:56 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=213.95.11.211 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1785309058; cv=none; b=PQBqU4YeCgEgnrnOZW++Jg1HQHbJX61PqweN/mK/IfqA3wlOHpz7rQ4qUUCIMmytjMGhl6zixmgQJ3F+BUZuTvgPI4ajKZUB0hX5judFPNTWc+L4f/Bire0WRGf+y8mqJ5ESbzFj+HGVkX4dzVjs/LI8pBi4nR4A4fSISvtBcWU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1785309058; c=relaxed/simple; bh=WVZDQkhUnu9duG3GjcIsETE7tFgsSaQLorUhvqWmBNg=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=RhKhMt9jQuA5nGYWULvHVnGEgZf3Qlmaf11PTPKU8RXdrQiX5Dur1ByertYah+whhjKyXlVV938BplNOvt7LUW1Vfr+VrNhYTBPpxpHlQjSAngGiAe00bu0sc1ggc5hGhdGTVUkRKhSMm3ONjWeb3/tnExkkahO5rODWIo4O4nY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lst.de; spf=pass smtp.mailfrom=lst.de; arc=none smtp.client-ip=213.95.11.211 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lst.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=lst.de Received: by verein.lst.de (Postfix, from userid 2407) id 4BC6668BEB; Wed, 29 Jul 2026 09:10:49 +0200 (CEST) Date: Wed, 29 Jul 2026 09:10:48 +0200 From: Christoph Hellwig To: Pavel Begunkov Cc: Jens Axboe , Keith Busch , Christoph Hellwig , Sagi Grimberg , linux-block@vger.kernel.org, linux-kernel@vger.kernel.org, linux-nvme@lists.infradead.org, linux-fsdevel@vger.kernel.org, io-uring@vger.kernel.org, linux-media@vger.kernel.org, dri-devel@lists.freedesktop.org, linaro-mm-sig@lists.linaro.org, Alexander Viro , Christian Brauner , Andrew Morton , Sumit Semwal , Christian =?iso-8859-1?Q?K=F6nig?= , Nitesh Shetty , Kanchan Joshi , Anuj Gupta , Tushar Gohad , William Power , Phil Cayton , Jason Gunthorpe , Damien Le Moal , Alasdair Kergon , Mike Snitzer , Mikulas Patocka , Benjamin Marzinski , Vishal Verma , David Sterba , Ilya Dryomov , dm-devel@lists.linux.dev, nvdimm@lists.linux.dev, linux-btrfs@vger.kernel.org, ceph-devel@vger.kernel.org Subject: Re: [PATCH v4 08/14] nvme-pci: implement dma_token backed requests Message-ID: <20260729071048.GH9534@lst.de> References: <19e5c945ea8114320c10f7951d19197d48b59249.1785274111.git.asml.silence@gmail.com> Precedence: bulk X-Mailing-List: linux-fsdevel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <19e5c945ea8114320c10f7951d19197d48b59249.1785274111.git.asml.silence@gmail.com> User-Agent: Mutt/1.5.17 (2007-11-01) > +static int nvme_init_dma_buf_io_ctx(struct block_device *bdev, > + struct dma_buf_io_ctx *ctx) Please stick to two-tab indents for function declaration continuation for the nvme code to keep the code easy to maintain. > +#if defined(CONFIG_DMA_SHARED_BUFFER) This should be good old #ifdef. Same in a few other places over the series. Modulo these minor nits the patch looks good.