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 7AC8E1A2A27; Wed, 5 Jun 2024 12:03:26 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1717589006; cv=none; b=sv9lxbXPuqKa4e2l1iL9F+S6foE9R+KVOWAY0yqT9LL1ib8P3RFsDvrvmRNE7mHsWGzvN+0EFa4VsvBS/ipjjDY5LQsbVmmoiHAxEAw1/l9/UQfcJrgCbeKLFLznQHbbSNPvDaoqxGjnn6dwDEeHiz5SjMD2EhwjmWS76bmWT20= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1717589006; c=relaxed/simple; bh=EpcOa/PoeA1uayk+/SDygq1AbB+riunm58LMI5D8cdI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=luCTX4NWzg8y3Zr9D347jJJcRNJnauIN2QssL+kuwkX0FOFYJd5WWPqxFdTrTMHFC/YIsTC4XCIzrwiV3oaE5GSeZxwTePNEXIY4lVzJ2EL2ZiHpgzD5e/61RjYD2c/jIBi/HteuY1vKr0M8ORRT7JTGmQs9avI9iX0MmlzpQac= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=LcbyPvQ7; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="LcbyPvQ7" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 68248C32786; Wed, 5 Jun 2024 12:03:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1717589006; bh=EpcOa/PoeA1uayk+/SDygq1AbB+riunm58LMI5D8cdI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=LcbyPvQ7xPMJtEA3kBkYVqzqWWSWzzHTsDemRUN1Us44Y0DnGHkkhl7r6mLs390S2 aetz+leXNIPgOFiHezj9O4ty0HzUEJVx9Y7m8eiiB6DAO+mRIJHhpdcfIXWy9ZdWkC ammf9Fa5pTuLyvNK8edSI6/SWrRi7LL4fRvJe248VQspGI4BQcsmBQr1nkS1rXNGIb hcZcvS8PLw/4gZDR0md7ntzdjw3ajE6A16F42qyaN0zOgVvhaJFw3NDWvXUxo5VbDt PU74VBEoXHpP28Rnfll3OLdthQzIc4oxy0i25dNUawNyF8/GLy1zEV5rqPe20hnrpk X6dsx2q/PuQlg== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Kundan Kumar , Christoph Hellwig , Sagi Grimberg , Keith Busch , Sasha Levin , linux-nvme@lists.infradead.org Subject: [PATCH AUTOSEL 6.8 04/18] nvme: adjust multiples of NVME_CTRL_PAGE_SIZE in offset Date: Wed, 5 Jun 2024 08:02:54 -0400 Message-ID: <20240605120319.2966627-4-sashal@kernel.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240605120319.2966627-1-sashal@kernel.org> References: <20240605120319.2966627-1-sashal@kernel.org> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore X-stable-base: Linux 6.8.12 Content-Transfer-Encoding: 8bit From: Kundan Kumar [ Upstream commit 1bd293fcf3af84674e82ed022c049491f3768840 ] bio_vec start offset may be relatively large particularly when large folio gets added to the bio. A bigger offset will result in avoiding the single-segment mapping optimization and end up using expensive mempool_alloc further. Rather than using absolute value, adjust bv_offset by NVME_CTRL_PAGE_SIZE while checking if segment can be fitted into one/two PRP entries. Suggested-by: Christoph Hellwig Signed-off-by: Kundan Kumar Reviewed-by: Sagi Grimberg Reviewed-by: Christoph Hellwig Signed-off-by: Keith Busch Signed-off-by: Sasha Levin --- drivers/nvme/host/pci.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c index 710043086dffa..102a9fb0c65ff 100644 --- a/drivers/nvme/host/pci.c +++ b/drivers/nvme/host/pci.c @@ -778,7 +778,8 @@ static blk_status_t nvme_map_data(struct nvme_dev *dev, struct request *req, struct bio_vec bv = req_bvec(req); if (!is_pci_p2pdma_page(bv.bv_page)) { - if (bv.bv_offset + bv.bv_len <= NVME_CTRL_PAGE_SIZE * 2) + if ((bv.bv_offset & (NVME_CTRL_PAGE_SIZE - 1)) + + bv.bv_len <= NVME_CTRL_PAGE_SIZE * 2) return nvme_setup_prp_simple(dev, req, &cmnd->rw, &bv); -- 2.43.0