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 814BC3AEF28; Wed, 13 May 2026 08:39:47 +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=1778661598; cv=none; b=UM5QwoU6Jjugy8OGemYHEGnshea0ND1qw3/MYtoJq0WE3y88GAul53nHLwlJICc3C9B+tfRBQkTYNrwJ+27KqtAxjuueZHgVF4+bA2/l8rAE6850OEzuYNT+QV+gWWYd+Hy6Z2BzGYqv+vw17CuXPRbKmIwcI0ti/cv9xqIfknI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778661598; c=relaxed/simple; bh=+BbKBOX2t0FdE6+88/W7Gl14m0aoT0zlTYLRZkUxTDQ=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=ccdoYN8NO+QP+dKEj89liZE4LLw7T6n2QSwupjFhaVmDhYRahbgkMEEckJNCQufxYH1T+JVek2+HWv5835hsJpcCWBAL3ROQyL1qVdbAsKJzeda4M19qZdOXv8EnooXyG2KhelGh9OEGiu/9B4p4ZMtcbfAECZg6cSCs6j/BfkI= 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 9330B68C4E; Wed, 13 May 2026 10:39:37 +0200 (CEST) Date: Wed, 13 May 2026 10:39:37 +0200 From: Christoph Hellwig To: Pavel Begunkov Cc: Jens Axboe , Keith Busch , Christoph Hellwig , Sagi Grimberg , Alexander Viro , Christian Brauner , Andrew Morton , Sumit Semwal , Christian =?iso-8859-1?Q?K=F6nig?= , 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, Nitesh Shetty , Kanchan Joshi , Anuj Gupta , Tushar Gohad , William Power , Phil Cayton , Jason Gunthorpe Subject: Re: [PATCH v3 04/10] block: introduce dma map backed bio type Message-ID: <20260513083937.GD6461@lst.de> References: <646ecd6fde8d9e146cb051efb514deb27ce3883e.1777475843.git.asml.silence@gmail.com> Precedence: bulk X-Mailing-List: io-uring@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: <646ecd6fde8d9e146cb051efb514deb27ce3883e.1777475843.git.asml.silence@gmail.com> User-Agent: Mutt/1.5.17 (2007-11-01) > + union { > + struct bio_vec *bi_io_vec; > + /* Driver specific dma map, present only with BIO_DMABUF_MAP */ > + struct io_dmabuf_map *dmabuf_map; > + }; ... and please add the bi_ prefix we're using for all (well except for one oddity) fields in struct bio.