From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 3C3753D0A4; Tue, 19 Dec 2023 22:46:29 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="YsuAeCkX" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3310DC433C8; Tue, 19 Dec 2023 22:46:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1703025989; bh=O0mz1d6CfvE4M7idrChoO3qGfbbAh4mTX5BLUbu5/j4=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=YsuAeCkX0LroZ2rLYjVjMQdkk1LCqISsETOdiYRzCEtHC7Z+tm2dIZeR1KotnLnMS XZ3WOEhtY92JUYQkw19IPVHXgpWKaR2yao8XIjc13tAmKjBcnV1qQGxwQKunel53PU s20LoIO/5zDqY9zX8B88uex3VzBuZG4nt7JB192ioEgBSTJ6gaLdJ+9A6sWLeFeZu3 sDw1MF3qOkMb8KTzsLE+Jso66sb0kU1b9akzCwtcDjgiyrC+LS/HqJ5laupkrpYxRm dtnpQGlJJOExjL5qyUJwpN/XYfIB2i2lCKu2KdAggQa9UtlWP4ELJGQ22I3GkVDl1Z jRnpT2Zg04bzA== Date: Tue, 19 Dec 2023 15:46:26 -0700 From: Eric Biggers To: Hongyu Jin Cc: agk@redhat.com, snitzer@kernel.org, mpatocka@redhat.com, axboe@kernel.dk, zhiguo.niu@unisoc.com, ke.wang@unisoc.com, yibin.ding@unisoc.com, hongyu.jin@unisoc.com, linux-kernel@vger.kernel.org, dm-devel@lists.linux.dev, linux-block@vger.kernel.org Subject: Re: [PATCH v5 RESEND 3/5] dm-bufio: Support I/O priority Message-ID: <20231219224626.GB38652@quark.localdomain> References: <20231218012746.24442-1-hongyu.jin.cn@gmail.com> <20231218012746.24442-4-hongyu.jin.cn@gmail.com> Precedence: bulk X-Mailing-List: linux-block@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: <20231218012746.24442-4-hongyu.jin.cn@gmail.com> On Mon, Dec 18, 2023 at 09:27:44AM +0800, Hongyu Jin wrote: > From: Hongyu Jin > > Add I/O priority parameter for dm_bufio_read() and > dm_bufio_prefetch(). Needs an explanation for why this is useful. - Eric