From nobody Thu Nov 28 02:56:48 2024 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) (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 AB5971DD860 for ; Fri, 4 Oct 2024 15:30:43 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=170.10.129.124 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728055846; cv=none; b=m9zv1VkFG3Slbm9RUUgnB0Vgk1F/rn2NBHYkEP1+NP3W9Pz0Wlo+t6y9Uop9ujgnV+y3+yzzZSSMJwg6Qi/gWyuNQ0uJZaWBxMrKpy4f3hqkPT4PEXotKJzbetNtaaUsdDEn1sw2fM23Mgf4/ElrzZcW3pcMSNu1YC6hcif0ZwE= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728055846; c=relaxed/simple; bh=crHaYagkgo6VoCxFYlW3iJ5g8SOMwNWskhvJG8xhac0=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=G0b7ELjhqBfzE5Ob5Qwrsxpi5fdRqXcqKfpMBYRW6KcO3FH3/D2n11wETobq/ZRdVCArJJ3ndBCJ8jnDSqt1N43VjPIyEtYxXwGGMd1E14C1UyufbSh6AvxYvKigISsBA8LxwWtGjsQh4PDXTGEMr/jd8odc+QzTWTmB5HzvCC4= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=redhat.com; spf=pass smtp.mailfrom=redhat.com; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b=dZukQM+h; arc=none smtp.client-ip=170.10.129.124 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=redhat.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="dZukQM+h" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1728055842; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=nJxNMvGZJj5t/DTE3o+ykBUvxddJVXwreZIV/z+vrk8=; b=dZukQM+hVWDAd+prFllzIZqNiMdG0c+Sjgdhxozw+sGAA54mmGV3Fh+fw9isu5RnSGBcuN 5H1Bju+jQQbNr6Ix0RIAQnFnWlruUXBpX1Nkeu2dmNT8TmsEPbGl195HyGxaZyZvOh1lRj /OmSTBktEYlHzrI09Qn1M11S9pvAVf8= Received: from mx-prod-mc-01.mail-002.prod.us-west-2.aws.redhat.com (ec2-54-186-198-63.us-west-2.compute.amazonaws.com [54.186.198.63]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-455-iFZrV0BxOQKw7QLmB50IOw-1; Fri, 04 Oct 2024 11:30:39 -0400 X-MC-Unique: iFZrV0BxOQKw7QLmB50IOw-1 Received: from mx-prod-int-05.mail-002.prod.us-west-2.aws.redhat.com (mx-prod-int-05.mail-002.prod.us-west-2.aws.redhat.com [10.30.177.17]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mx-prod-mc-01.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTPS id B8BCE1944CCA; Fri, 4 Oct 2024 15:30:37 +0000 (UTC) Received: from localhost (unknown [10.72.116.24]) by mx-prod-int-05.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTP id 4D0491955E93; Fri, 4 Oct 2024 15:30:35 +0000 (UTC) From: Ming Lei To: Jens Axboe Cc: Alexander Viro , linux-block@vger.kernel.org, linux-kernel@vger.kernel.org, Ming Lei , David Howells Subject: [PATCH] lib/iov_iter.c: extract virt-contiguous pages in iov_iter_extract_bvec_pages Date: Fri, 4 Oct 2024 23:30:25 +0800 Message-ID: <20241004153025.1867858-1-ming.lei@redhat.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Scanned-By: MIMEDefang 3.0 on 10.30.177.17 Content-Type: text/plain; charset="utf-8" All iov_iter_bvec() users only want to extract virt-contiguous pages from iov_iter_extract_pages() instead physical-contiguous pages. Change iov_iter_extract_bvec_pages() to extract virt-contiguous pages via bvec helper. This way can fill much more pages one time, instead of (often)one page from iov_iter_extract_pages() each time. Cc: David Howells Signed-off-by: Ming Lei --- include/linux/bvec.h | 6 ++++++ lib/iov_iter.c | 47 +++++++++++++++++++++++--------------------- 2 files changed, 31 insertions(+), 22 deletions(-) diff --git a/include/linux/bvec.h b/include/linux/bvec.h index f41c7f0ef91e..98e1a4ad09e0 100644 --- a/include/linux/bvec.h +++ b/include/linux/bvec.h @@ -184,6 +184,12 @@ static inline void bvec_iter_advance_single(const stru= ct bio_vec *bv, ((bvl =3D bvec_iter_bvec((bio_vec), (iter))), 1); \ bvec_iter_advance_single((bio_vec), &(iter), (bvl).bv_len)) =20 +#define for_each_bvec_max(bvl, bio_vec, iter, start, nr_bvecs) \ + for (iter =3D (start); \ + (iter).bi_size && iter.bi_idx < nr_bvecs && \ + ((bvl =3D bvec_iter_bvec((bio_vec), (iter))), 1); \ + bvec_iter_advance_single((bio_vec), &(iter), (bvl).bv_len)) + /* for iterating one bio from start to end */ #define BVEC_ITER_ALL_INIT (struct bvec_iter) \ { \ diff --git a/lib/iov_iter.c b/lib/iov_iter.c index 97003155bfac..6e00f6da5259 100644 --- a/lib/iov_iter.c +++ b/lib/iov_iter.c @@ -1677,8 +1677,8 @@ static ssize_t iov_iter_extract_xarray_pages(struct i= ov_iter *i, } =20 /* - * Extract a list of contiguous pages from an ITER_BVEC iterator. This do= es - * not get references on the pages, nor does it get a pin on them. + * Extract a list of virtually contiguous pages from an ITER_BVEC iterator. + * This does not get references on the pages, nor does it get a pin on the= m. */ static ssize_t iov_iter_extract_bvec_pages(struct iov_iter *i, struct page ***pages, size_t maxsize, @@ -1686,35 +1686,38 @@ static ssize_t iov_iter_extract_bvec_pages(struct i= ov_iter *i, iov_iter_extraction_t extraction_flags, size_t *offset0) { - struct page **p, *page; - size_t skip =3D i->iov_offset, offset, size; - int k; + size_t skip =3D i->iov_offset, size =3D 0; + struct bvec_iter bi; + struct bio_vec bv; + int k =3D 0; =20 - for (;;) { - if (i->nr_segs =3D=3D 0) - return 0; - size =3D min(maxsize, i->bvec->bv_len - skip); - if (size) - break; + if (i->nr_segs =3D=3D 0) + return 0; + + if (i->iov_offset =3D=3D i->bvec->bv_len) { i->iov_offset =3D 0; i->nr_segs--; i->bvec++; skip =3D 0; } + bi.bi_size =3D maxsize + skip; + bi.bi_bvec_done =3D skip; =20 - skip +=3D i->bvec->bv_offset; - page =3D i->bvec->bv_page + skip / PAGE_SIZE; - offset =3D skip % PAGE_SIZE; - *offset0 =3D offset; + maxpages =3D want_pages_array(pages, maxsize, skip, maxpages); =20 - maxpages =3D want_pages_array(pages, size, offset, maxpages); - if (!maxpages) - return -ENOMEM; - p =3D *pages; - for (k =3D 0; k < maxpages; k++) - p[k] =3D page + k; + for_each_bvec_max(bv, i->bvec, bi, bi, i->nr_segs) { + if (k >=3D maxpages) + break; + if (!k) + *offset0 =3D bv.bv_offset; + else if (bv.bv_offset) + break; + (*pages)[k++] =3D bv.bv_page; + size +=3D bv.bv_len; + if (bv.bv_offset + bv.bv_len !=3D PAGE_SIZE) + break; + } =20 - size =3D min_t(size_t, size, maxpages * PAGE_SIZE - offset); iov_iter_advance(i, size); return size; } --=20 2.46.0