1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2007 Jens Axboe <jens.axboe@oracle.com>
5 * Scatterlist handling helpers.
7 #include <linux/export.h>
8 #include <linux/slab.h>
9 #include <linux/scatterlist.h>
10 #include <linux/highmem.h>
11 #include <linux/kmemleak.h>
14 * sg_next - return the next scatterlist entry in a list
15 * @sg: The current sg entry
18 * Usually the next entry will be @sg@ + 1, but if this sg element is part
19 * of a chained scatterlist, it could jump to the start of a new
23 struct scatterlist *sg_next(struct scatterlist *sg)
29 if (unlikely(sg_is_chain(sg)))
30 sg = sg_chain_ptr(sg);
34 EXPORT_SYMBOL(sg_next);
37 * sg_nents - return total count of entries in scatterlist
38 * @sg: The scatterlist
41 * Allows to know how many entries are in sg, taking into account
45 int sg_nents(struct scatterlist *sg)
48 for (nents = 0; sg; sg = sg_next(sg))
52 EXPORT_SYMBOL(sg_nents);
55 * sg_nents_for_len - return total count of entries in scatterlist
56 * needed to satisfy the supplied length
57 * @sg: The scatterlist
58 * @len: The total required length
61 * Determines the number of entries in sg that are required to meet
62 * the supplied length, taking into account chaining as well
65 * the number of sg entries needed, negative error on failure
68 int sg_nents_for_len(struct scatterlist *sg, u64 len)
76 for (nents = 0, total = 0; sg; sg = sg_next(sg)) {
85 EXPORT_SYMBOL(sg_nents_for_len);
88 * sg_last - return the last scatterlist entry in a list
89 * @sgl: First entry in the scatterlist
90 * @nents: Number of entries in the scatterlist
93 * Should only be used casually, it (currently) scans the entire list
94 * to get the last entry.
96 * Note that the @sgl@ pointer passed in need not be the first one,
97 * the important bit is that @nents@ denotes the number of entries that
101 struct scatterlist *sg_last(struct scatterlist *sgl, unsigned int nents)
103 struct scatterlist *sg, *ret = NULL;
106 for_each_sg(sgl, sg, nents, i)
109 BUG_ON(!sg_is_last(ret));
112 EXPORT_SYMBOL(sg_last);
115 * sg_init_table - Initialize SG table
117 * @nents: Number of entries in table
120 * If this is part of a chained sg table, sg_mark_end() should be
121 * used only on the last table part.
124 void sg_init_table(struct scatterlist *sgl, unsigned int nents)
126 memset(sgl, 0, sizeof(*sgl) * nents);
127 sg_init_marker(sgl, nents);
129 EXPORT_SYMBOL(sg_init_table);
132 * sg_init_one - Initialize a single entry sg list
134 * @buf: Virtual address for IO
138 void sg_init_one(struct scatterlist *sg, const void *buf, unsigned int buflen)
140 sg_init_table(sg, 1);
141 sg_set_buf(sg, buf, buflen);
143 EXPORT_SYMBOL(sg_init_one);
146 * The default behaviour of sg_alloc_table() is to use these kmalloc/kfree
149 static struct scatterlist *sg_kmalloc(unsigned int nents, gfp_t gfp_mask)
151 if (nents == SG_MAX_SINGLE_ALLOC) {
153 * Kmemleak doesn't track page allocations as they are not
154 * commonly used (in a raw form) for kernel data structures.
155 * As we chain together a list of pages and then a normal
156 * kmalloc (tracked by kmemleak), in order to for that last
157 * allocation not to become decoupled (and thus a
158 * false-positive) we need to inform kmemleak of all the
159 * intermediate allocations.
161 void *ptr = (void *) __get_free_page(gfp_mask);
162 kmemleak_alloc(ptr, PAGE_SIZE, 1, gfp_mask);
165 return kmalloc_array(nents, sizeof(struct scatterlist),
169 static void sg_kfree(struct scatterlist *sg, unsigned int nents)
171 if (nents == SG_MAX_SINGLE_ALLOC) {
173 free_page((unsigned long) sg);
179 * __sg_free_table - Free a previously mapped sg table
180 * @table: The sg table header to use
181 * @max_ents: The maximum number of entries per single scatterlist
182 * @nents_first_chunk: Number of entries int the (preallocated) first
183 * scatterlist chunk, 0 means no such preallocated first chunk
184 * @free_fn: Free function
185 * @num_ents: Number of entries in the table
188 * Free an sg table previously allocated and setup with
189 * __sg_alloc_table(). The @max_ents value must be identical to
190 * that previously used with __sg_alloc_table().
193 void __sg_free_table(struct sg_table *table, unsigned int max_ents,
194 unsigned int nents_first_chunk, sg_free_fn *free_fn,
195 unsigned int num_ents)
197 struct scatterlist *sgl, *next;
198 unsigned curr_max_ents = nents_first_chunk ?: max_ents;
200 if (unlikely(!table->sgl))
205 unsigned int alloc_size = num_ents;
206 unsigned int sg_size;
209 * If we have more than max_ents segments left,
210 * then assign 'next' to the sg table after the current one.
211 * sg_size is then one less than alloc size, since the last
212 * element is the chain pointer.
214 if (alloc_size > curr_max_ents) {
215 next = sg_chain_ptr(&sgl[curr_max_ents - 1]);
216 alloc_size = curr_max_ents;
217 sg_size = alloc_size - 1;
219 sg_size = alloc_size;
224 if (nents_first_chunk)
225 nents_first_chunk = 0;
227 free_fn(sgl, alloc_size);
229 curr_max_ents = max_ents;
234 EXPORT_SYMBOL(__sg_free_table);
237 * sg_free_append_table - Free a previously allocated append sg table.
238 * @table: The mapped sg append table header
241 void sg_free_append_table(struct sg_append_table *table)
243 __sg_free_table(&table->sgt, SG_MAX_SINGLE_ALLOC, 0, sg_kfree,
246 EXPORT_SYMBOL(sg_free_append_table);
250 * sg_free_table - Free a previously allocated sg table
251 * @table: The mapped sg table header
254 void sg_free_table(struct sg_table *table)
256 __sg_free_table(table, SG_MAX_SINGLE_ALLOC, 0, sg_kfree,
259 EXPORT_SYMBOL(sg_free_table);
262 * __sg_alloc_table - Allocate and initialize an sg table with given allocator
263 * @table: The sg table header to use
264 * @nents: Number of entries in sg list
265 * @max_ents: The maximum number of entries the allocator returns per call
266 * @nents_first_chunk: Number of entries int the (preallocated) first
267 * scatterlist chunk, 0 means no such preallocated chunk provided by user
268 * @gfp_mask: GFP allocation mask
269 * @alloc_fn: Allocator to use
272 * This function returns a @table @nents long. The allocator is
273 * defined to return scatterlist chunks of maximum size @max_ents.
274 * Thus if @nents is bigger than @max_ents, the scatterlists will be
275 * chained in units of @max_ents.
278 * If this function returns non-0 (eg failure), the caller must call
279 * __sg_free_table() to cleanup any leftover allocations.
282 int __sg_alloc_table(struct sg_table *table, unsigned int nents,
283 unsigned int max_ents, struct scatterlist *first_chunk,
284 unsigned int nents_first_chunk, gfp_t gfp_mask,
285 sg_alloc_fn *alloc_fn)
287 struct scatterlist *sg, *prv;
289 unsigned curr_max_ents = nents_first_chunk ?: max_ents;
290 unsigned prv_max_ents;
292 memset(table, 0, sizeof(*table));
296 #ifdef CONFIG_ARCH_NO_SG_CHAIN
297 if (WARN_ON_ONCE(nents > max_ents))
304 unsigned int sg_size, alloc_size = left;
306 if (alloc_size > curr_max_ents) {
307 alloc_size = curr_max_ents;
308 sg_size = alloc_size - 1;
310 sg_size = alloc_size;
318 sg = alloc_fn(alloc_size, gfp_mask);
322 * Adjust entry count to reflect that the last
323 * entry of the previous table won't be used for
324 * linkage. Without this, sg_kfree() may get
328 table->nents = ++table->orig_nents;
333 sg_init_table(sg, alloc_size);
334 table->nents = table->orig_nents += sg_size;
337 * If this is the first mapping, assign the sg table header.
338 * If this is not the first mapping, chain previous part.
341 sg_chain(prv, prv_max_ents, sg);
346 * If no more entries after this one, mark the end
349 sg_mark_end(&sg[sg_size - 1]);
352 prv_max_ents = curr_max_ents;
353 curr_max_ents = max_ents;
358 EXPORT_SYMBOL(__sg_alloc_table);
361 * sg_alloc_table - Allocate and initialize an sg table
362 * @table: The sg table header to use
363 * @nents: Number of entries in sg list
364 * @gfp_mask: GFP allocation mask
367 * Allocate and initialize an sg table. If @nents@ is larger than
368 * SG_MAX_SINGLE_ALLOC a chained sg table will be setup.
371 int sg_alloc_table(struct sg_table *table, unsigned int nents, gfp_t gfp_mask)
375 ret = __sg_alloc_table(table, nents, SG_MAX_SINGLE_ALLOC,
376 NULL, 0, gfp_mask, sg_kmalloc);
378 sg_free_table(table);
381 EXPORT_SYMBOL(sg_alloc_table);
383 static struct scatterlist *get_next_sg(struct sg_append_table *table,
384 struct scatterlist *cur,
385 unsigned long needed_sges,
388 struct scatterlist *new_sg, *next_sg;
389 unsigned int alloc_size;
392 next_sg = sg_next(cur);
393 /* Check if last entry should be keeped for chainning */
394 if (!sg_is_last(next_sg) || needed_sges == 1)
398 alloc_size = min_t(unsigned long, needed_sges, SG_MAX_SINGLE_ALLOC);
399 new_sg = sg_kmalloc(alloc_size, gfp_mask);
401 return ERR_PTR(-ENOMEM);
402 sg_init_table(new_sg, alloc_size);
404 table->total_nents += alloc_size - 1;
405 __sg_chain(next_sg, new_sg);
407 table->sgt.sgl = new_sg;
408 table->total_nents = alloc_size;
413 static bool pages_are_mergeable(struct page *a, struct page *b)
415 if (page_to_pfn(a) != page_to_pfn(b) + 1)
417 if (!zone_device_pages_have_same_pgmap(a, b))
423 * sg_alloc_append_table_from_pages - Allocate and initialize an append sg
424 * table from an array of pages
425 * @sgt_append: The sg append table to use
426 * @pages: Pointer to an array of page pointers
427 * @n_pages: Number of pages in the pages array
428 * @offset: Offset from start of the first page to the start of a buffer
429 * @size: Number of valid bytes in the buffer (after offset)
430 * @max_segment: Maximum size of a scatterlist element in bytes
431 * @left_pages: Left pages caller have to set after this call
432 * @gfp_mask: GFP allocation mask
435 * In the first call it allocate and initialize an sg table from a list of
436 * pages, else reuse the scatterlist from sgt_append. Contiguous ranges of
437 * the pages are squashed into a single scatterlist entry up to the maximum
438 * size specified in @max_segment. A user may provide an offset at a start
439 * and a size of valid data in a buffer specified by the page array. The
440 * returned sg table is released by sg_free_append_table
443 * 0 on success, negative error on failure
446 * If this function returns non-0 (eg failure), the caller must call
447 * sg_free_append_table() to cleanup any leftover allocations.
449 * In the fist call, sgt_append must by initialized.
451 int sg_alloc_append_table_from_pages(struct sg_append_table *sgt_append,
452 struct page **pages, unsigned int n_pages, unsigned int offset,
453 unsigned long size, unsigned int max_segment,
454 unsigned int left_pages, gfp_t gfp_mask)
456 unsigned int chunks, cur_page, seg_len, i, prv_len = 0;
457 unsigned int added_nents = 0;
458 struct scatterlist *s = sgt_append->prv;
459 struct page *last_pg;
462 * The algorithm below requires max_segment to be aligned to PAGE_SIZE
463 * otherwise it can overshoot.
465 max_segment = ALIGN_DOWN(max_segment, PAGE_SIZE);
466 if (WARN_ON(max_segment < PAGE_SIZE))
469 if (IS_ENABLED(CONFIG_ARCH_NO_SG_CHAIN) && sgt_append->prv)
472 if (sgt_append->prv) {
473 unsigned long next_pfn = (page_to_phys(sg_page(sgt_append->prv)) +
474 sgt_append->prv->offset + sgt_append->prv->length) / PAGE_SIZE;
479 /* Merge contiguous pages into the last SG */
480 prv_len = sgt_append->prv->length;
481 if (page_to_pfn(pages[0]) == next_pfn) {
482 last_pg = pfn_to_page(next_pfn - 1);
483 while (n_pages && pages_are_mergeable(pages[0], last_pg)) {
484 if (sgt_append->prv->length + PAGE_SIZE > max_segment)
486 sgt_append->prv->length += PAGE_SIZE;
496 /* compute number of contiguous chunks */
499 for (i = 1; i < n_pages; i++) {
500 seg_len += PAGE_SIZE;
501 if (seg_len >= max_segment ||
502 !pages_are_mergeable(pages[i], pages[i - 1])) {
508 /* merging chunks and putting them into the scatterlist */
510 for (i = 0; i < chunks; i++) {
511 unsigned int j, chunk_size;
513 /* look for the end of the current chunk */
515 for (j = cur_page + 1; j < n_pages; j++) {
516 seg_len += PAGE_SIZE;
517 if (seg_len >= max_segment ||
518 !pages_are_mergeable(pages[j], pages[j - 1]))
522 /* Pass how many chunks might be left */
523 s = get_next_sg(sgt_append, s, chunks - i + left_pages,
527 * Adjust entry length to be as before function was
531 sgt_append->prv->length = prv_len;
534 chunk_size = ((j - cur_page) << PAGE_SHIFT) - offset;
535 sg_set_page(s, pages[cur_page],
536 min_t(unsigned long, size, chunk_size), offset);
542 sgt_append->sgt.nents += added_nents;
543 sgt_append->sgt.orig_nents = sgt_append->sgt.nents;
550 EXPORT_SYMBOL(sg_alloc_append_table_from_pages);
553 * sg_alloc_table_from_pages_segment - Allocate and initialize an sg table from
554 * an array of pages and given maximum
556 * @sgt: The sg table header to use
557 * @pages: Pointer to an array of page pointers
558 * @n_pages: Number of pages in the pages array
559 * @offset: Offset from start of the first page to the start of a buffer
560 * @size: Number of valid bytes in the buffer (after offset)
561 * @max_segment: Maximum size of a scatterlist element in bytes
562 * @gfp_mask: GFP allocation mask
565 * Allocate and initialize an sg table from a list of pages. Contiguous
566 * ranges of the pages are squashed into a single scatterlist node up to the
567 * maximum size specified in @max_segment. A user may provide an offset at a
568 * start and a size of valid data in a buffer specified by the page array.
570 * The returned sg table is released by sg_free_table.
573 * 0 on success, negative error on failure
575 int sg_alloc_table_from_pages_segment(struct sg_table *sgt, struct page **pages,
576 unsigned int n_pages, unsigned int offset,
577 unsigned long size, unsigned int max_segment,
580 struct sg_append_table append = {};
583 err = sg_alloc_append_table_from_pages(&append, pages, n_pages, offset,
584 size, max_segment, 0, gfp_mask);
586 sg_free_append_table(&append);
589 memcpy(sgt, &append.sgt, sizeof(*sgt));
590 WARN_ON(append.total_nents != sgt->orig_nents);
593 EXPORT_SYMBOL(sg_alloc_table_from_pages_segment);
595 #ifdef CONFIG_SGL_ALLOC
598 * sgl_alloc_order - allocate a scatterlist and its pages
599 * @length: Length in bytes of the scatterlist. Must be at least one
600 * @order: Second argument for alloc_pages()
601 * @chainable: Whether or not to allocate an extra element in the scatterlist
602 * for scatterlist chaining purposes
603 * @gfp: Memory allocation flags
604 * @nent_p: [out] Number of entries in the scatterlist that have pages
606 * Returns: A pointer to an initialized scatterlist or %NULL upon failure.
608 struct scatterlist *sgl_alloc_order(unsigned long long length,
609 unsigned int order, bool chainable,
610 gfp_t gfp, unsigned int *nent_p)
612 struct scatterlist *sgl, *sg;
614 unsigned int nent, nalloc;
617 nent = round_up(length, PAGE_SIZE << order) >> (PAGE_SHIFT + order);
618 /* Check for integer overflow */
619 if (length > (nent << (PAGE_SHIFT + order)))
623 /* Check for integer overflow */
624 if (nalloc + 1 < nalloc)
628 sgl = kmalloc_array(nalloc, sizeof(struct scatterlist),
633 sg_init_table(sgl, nalloc);
636 elem_len = min_t(u64, length, PAGE_SIZE << order);
637 page = alloc_pages(gfp, order);
639 sgl_free_order(sgl, order);
643 sg_set_page(sg, page, elem_len, 0);
647 WARN_ONCE(length, "length = %lld\n", length);
652 EXPORT_SYMBOL(sgl_alloc_order);
655 * sgl_alloc - allocate a scatterlist and its pages
656 * @length: Length in bytes of the scatterlist
657 * @gfp: Memory allocation flags
658 * @nent_p: [out] Number of entries in the scatterlist
660 * Returns: A pointer to an initialized scatterlist or %NULL upon failure.
662 struct scatterlist *sgl_alloc(unsigned long long length, gfp_t gfp,
663 unsigned int *nent_p)
665 return sgl_alloc_order(length, 0, false, gfp, nent_p);
667 EXPORT_SYMBOL(sgl_alloc);
670 * sgl_free_n_order - free a scatterlist and its pages
671 * @sgl: Scatterlist with one or more elements
672 * @nents: Maximum number of elements to free
673 * @order: Second argument for __free_pages()
676 * - If several scatterlists have been chained and each chain element is
677 * freed separately then it's essential to set nents correctly to avoid that a
678 * page would get freed twice.
679 * - All pages in a chained scatterlist can be freed at once by setting @nents
682 void sgl_free_n_order(struct scatterlist *sgl, int nents, int order)
684 struct scatterlist *sg;
688 for_each_sg(sgl, sg, nents, i) {
693 __free_pages(page, order);
697 EXPORT_SYMBOL(sgl_free_n_order);
700 * sgl_free_order - free a scatterlist and its pages
701 * @sgl: Scatterlist with one or more elements
702 * @order: Second argument for __free_pages()
704 void sgl_free_order(struct scatterlist *sgl, int order)
706 sgl_free_n_order(sgl, INT_MAX, order);
708 EXPORT_SYMBOL(sgl_free_order);
711 * sgl_free - free a scatterlist and its pages
712 * @sgl: Scatterlist with one or more elements
714 void sgl_free(struct scatterlist *sgl)
716 sgl_free_order(sgl, 0);
718 EXPORT_SYMBOL(sgl_free);
720 #endif /* CONFIG_SGL_ALLOC */
722 void __sg_page_iter_start(struct sg_page_iter *piter,
723 struct scatterlist *sglist, unsigned int nents,
724 unsigned long pgoffset)
726 piter->__pg_advance = 0;
727 piter->__nents = nents;
730 piter->sg_pgoffset = pgoffset;
732 EXPORT_SYMBOL(__sg_page_iter_start);
734 static int sg_page_count(struct scatterlist *sg)
736 return PAGE_ALIGN(sg->offset + sg->length) >> PAGE_SHIFT;
739 bool __sg_page_iter_next(struct sg_page_iter *piter)
741 if (!piter->__nents || !piter->sg)
744 piter->sg_pgoffset += piter->__pg_advance;
745 piter->__pg_advance = 1;
747 while (piter->sg_pgoffset >= sg_page_count(piter->sg)) {
748 piter->sg_pgoffset -= sg_page_count(piter->sg);
749 piter->sg = sg_next(piter->sg);
750 if (!--piter->__nents || !piter->sg)
756 EXPORT_SYMBOL(__sg_page_iter_next);
758 static int sg_dma_page_count(struct scatterlist *sg)
760 return PAGE_ALIGN(sg->offset + sg_dma_len(sg)) >> PAGE_SHIFT;
763 bool __sg_page_iter_dma_next(struct sg_dma_page_iter *dma_iter)
765 struct sg_page_iter *piter = &dma_iter->base;
767 if (!piter->__nents || !piter->sg)
770 piter->sg_pgoffset += piter->__pg_advance;
771 piter->__pg_advance = 1;
773 while (piter->sg_pgoffset >= sg_dma_page_count(piter->sg)) {
774 piter->sg_pgoffset -= sg_dma_page_count(piter->sg);
775 piter->sg = sg_next(piter->sg);
776 if (!--piter->__nents || !piter->sg)
782 EXPORT_SYMBOL(__sg_page_iter_dma_next);
785 * sg_miter_start - start mapping iteration over a sg list
786 * @miter: sg mapping iter to be started
787 * @sgl: sg list to iterate over
788 * @nents: number of sg entries
791 * Starts mapping iterator @miter.
796 void sg_miter_start(struct sg_mapping_iter *miter, struct scatterlist *sgl,
797 unsigned int nents, unsigned int flags)
799 memset(miter, 0, sizeof(struct sg_mapping_iter));
801 __sg_page_iter_start(&miter->piter, sgl, nents, 0);
802 WARN_ON(!(flags & (SG_MITER_TO_SG | SG_MITER_FROM_SG)));
803 miter->__flags = flags;
805 EXPORT_SYMBOL(sg_miter_start);
807 static bool sg_miter_get_next_page(struct sg_mapping_iter *miter)
809 if (!miter->__remaining) {
810 struct scatterlist *sg;
812 if (!__sg_page_iter_next(&miter->piter))
815 sg = miter->piter.sg;
817 miter->__offset = miter->piter.sg_pgoffset ? 0 : sg->offset;
818 miter->piter.sg_pgoffset += miter->__offset >> PAGE_SHIFT;
819 miter->__offset &= PAGE_SIZE - 1;
820 miter->__remaining = sg->offset + sg->length -
821 (miter->piter.sg_pgoffset << PAGE_SHIFT) -
823 miter->__remaining = min_t(unsigned long, miter->__remaining,
824 PAGE_SIZE - miter->__offset);
831 * sg_miter_skip - reposition mapping iterator
832 * @miter: sg mapping iter to be skipped
833 * @offset: number of bytes to plus the current location
836 * Sets the offset of @miter to its current location plus @offset bytes.
837 * If mapping iterator @miter has been proceeded by sg_miter_next(), this
844 * true if @miter contains the valid mapping. false if end of sg
847 bool sg_miter_skip(struct sg_mapping_iter *miter, off_t offset)
849 sg_miter_stop(miter);
854 if (!sg_miter_get_next_page(miter))
857 consumed = min_t(off_t, offset, miter->__remaining);
858 miter->__offset += consumed;
859 miter->__remaining -= consumed;
865 EXPORT_SYMBOL(sg_miter_skip);
868 * sg_miter_next - proceed mapping iterator to the next mapping
869 * @miter: sg mapping iter to proceed
872 * Proceeds @miter to the next mapping. @miter should have been started
873 * using sg_miter_start(). On successful return, @miter->page,
874 * @miter->addr and @miter->length point to the current mapping.
877 * May sleep if !SG_MITER_ATOMIC.
880 * true if @miter contains the next mapping. false if end of sg
883 bool sg_miter_next(struct sg_mapping_iter *miter)
885 sg_miter_stop(miter);
888 * Get to the next page if necessary.
889 * __remaining, __offset is adjusted by sg_miter_stop
891 if (!sg_miter_get_next_page(miter))
894 miter->page = sg_page_iter_page(&miter->piter);
895 miter->consumed = miter->length = miter->__remaining;
897 if (miter->__flags & SG_MITER_ATOMIC)
898 miter->addr = kmap_atomic(miter->page) + miter->__offset;
900 miter->addr = kmap(miter->page) + miter->__offset;
904 EXPORT_SYMBOL(sg_miter_next);
907 * sg_miter_stop - stop mapping iteration
908 * @miter: sg mapping iter to be stopped
911 * Stops mapping iterator @miter. @miter should have been started
912 * using sg_miter_start(). A stopped iteration can be resumed by
913 * calling sg_miter_next() on it. This is useful when resources (kmap)
914 * need to be released during iteration.
917 * Don't care otherwise.
919 void sg_miter_stop(struct sg_mapping_iter *miter)
921 WARN_ON(miter->consumed > miter->length);
923 /* drop resources from the last iteration */
925 miter->__offset += miter->consumed;
926 miter->__remaining -= miter->consumed;
928 if (miter->__flags & SG_MITER_TO_SG)
929 flush_dcache_page(miter->page);
931 if (miter->__flags & SG_MITER_ATOMIC) {
932 WARN_ON_ONCE(!pagefault_disabled());
933 kunmap_atomic(miter->addr);
943 EXPORT_SYMBOL(sg_miter_stop);
946 * sg_copy_buffer - Copy data between a linear buffer and an SG list
948 * @nents: Number of SG entries
949 * @buf: Where to copy from
950 * @buflen: The number of bytes to copy
951 * @skip: Number of bytes to skip before copying
952 * @to_buffer: transfer direction (true == from an sg list to a
953 * buffer, false == from a buffer to an sg list)
955 * Returns the number of copied bytes.
958 size_t sg_copy_buffer(struct scatterlist *sgl, unsigned int nents, void *buf,
959 size_t buflen, off_t skip, bool to_buffer)
961 unsigned int offset = 0;
962 struct sg_mapping_iter miter;
963 unsigned int sg_flags = SG_MITER_ATOMIC;
966 sg_flags |= SG_MITER_FROM_SG;
968 sg_flags |= SG_MITER_TO_SG;
970 sg_miter_start(&miter, sgl, nents, sg_flags);
972 if (!sg_miter_skip(&miter, skip))
975 while ((offset < buflen) && sg_miter_next(&miter)) {
978 len = min(miter.length, buflen - offset);
981 memcpy(buf + offset, miter.addr, len);
983 memcpy(miter.addr, buf + offset, len);
988 sg_miter_stop(&miter);
992 EXPORT_SYMBOL(sg_copy_buffer);
995 * sg_copy_from_buffer - Copy from a linear buffer to an SG list
997 * @nents: Number of SG entries
998 * @buf: Where to copy from
999 * @buflen: The number of bytes to copy
1001 * Returns the number of copied bytes.
1004 size_t sg_copy_from_buffer(struct scatterlist *sgl, unsigned int nents,
1005 const void *buf, size_t buflen)
1007 return sg_copy_buffer(sgl, nents, (void *)buf, buflen, 0, false);
1009 EXPORT_SYMBOL(sg_copy_from_buffer);
1012 * sg_copy_to_buffer - Copy from an SG list to a linear buffer
1014 * @nents: Number of SG entries
1015 * @buf: Where to copy to
1016 * @buflen: The number of bytes to copy
1018 * Returns the number of copied bytes.
1021 size_t sg_copy_to_buffer(struct scatterlist *sgl, unsigned int nents,
1022 void *buf, size_t buflen)
1024 return sg_copy_buffer(sgl, nents, buf, buflen, 0, true);
1026 EXPORT_SYMBOL(sg_copy_to_buffer);
1029 * sg_pcopy_from_buffer - Copy from a linear buffer to an SG list
1031 * @nents: Number of SG entries
1032 * @buf: Where to copy from
1033 * @buflen: The number of bytes to copy
1034 * @skip: Number of bytes to skip before copying
1036 * Returns the number of copied bytes.
1039 size_t sg_pcopy_from_buffer(struct scatterlist *sgl, unsigned int nents,
1040 const void *buf, size_t buflen, off_t skip)
1042 return sg_copy_buffer(sgl, nents, (void *)buf, buflen, skip, false);
1044 EXPORT_SYMBOL(sg_pcopy_from_buffer);
1047 * sg_pcopy_to_buffer - Copy from an SG list to a linear buffer
1049 * @nents: Number of SG entries
1050 * @buf: Where to copy to
1051 * @buflen: The number of bytes to copy
1052 * @skip: Number of bytes to skip before copying
1054 * Returns the number of copied bytes.
1057 size_t sg_pcopy_to_buffer(struct scatterlist *sgl, unsigned int nents,
1058 void *buf, size_t buflen, off_t skip)
1060 return sg_copy_buffer(sgl, nents, buf, buflen, skip, true);
1062 EXPORT_SYMBOL(sg_pcopy_to_buffer);
1065 * sg_zero_buffer - Zero-out a part of a SG list
1067 * @nents: Number of SG entries
1068 * @buflen: The number of bytes to zero out
1069 * @skip: Number of bytes to skip before zeroing
1071 * Returns the number of bytes zeroed.
1073 size_t sg_zero_buffer(struct scatterlist *sgl, unsigned int nents,
1074 size_t buflen, off_t skip)
1076 unsigned int offset = 0;
1077 struct sg_mapping_iter miter;
1078 unsigned int sg_flags = SG_MITER_ATOMIC | SG_MITER_TO_SG;
1080 sg_miter_start(&miter, sgl, nents, sg_flags);
1082 if (!sg_miter_skip(&miter, skip))
1085 while (offset < buflen && sg_miter_next(&miter)) {
1088 len = min(miter.length, buflen - offset);
1089 memset(miter.addr, 0, len);
1094 sg_miter_stop(&miter);
1097 EXPORT_SYMBOL(sg_zero_buffer);