xref: /openbmc/linux/lib/scatterlist.c (revision 0945e569)
10db9299fSJens Axboe /*
20db9299fSJens Axboe  * Copyright (C) 2007 Jens Axboe <jens.axboe@oracle.com>
30db9299fSJens Axboe  *
40db9299fSJens Axboe  * Scatterlist handling helpers.
50db9299fSJens Axboe  *
60db9299fSJens Axboe  * This source code is licensed under the GNU General Public License,
70db9299fSJens Axboe  * Version 2. See the file COPYING for more details.
80db9299fSJens Axboe  */
98bc3bcc9SPaul Gortmaker #include <linux/export.h>
105a0e3ad6STejun Heo #include <linux/slab.h>
110db9299fSJens Axboe #include <linux/scatterlist.h>
12b1adaf65SFUJITA Tomonori #include <linux/highmem.h>
13b94de9bbSChris Wilson #include <linux/kmemleak.h>
140db9299fSJens Axboe 
150db9299fSJens Axboe /**
160db9299fSJens Axboe  * sg_next - return the next scatterlist entry in a list
170db9299fSJens Axboe  * @sg:		The current sg entry
180db9299fSJens Axboe  *
190db9299fSJens Axboe  * Description:
200db9299fSJens Axboe  *   Usually the next entry will be @sg@ + 1, but if this sg element is part
210db9299fSJens Axboe  *   of a chained scatterlist, it could jump to the start of a new
220db9299fSJens Axboe  *   scatterlist array.
230db9299fSJens Axboe  *
240db9299fSJens Axboe  **/
250db9299fSJens Axboe struct scatterlist *sg_next(struct scatterlist *sg)
260db9299fSJens Axboe {
270db9299fSJens Axboe #ifdef CONFIG_DEBUG_SG
280db9299fSJens Axboe 	BUG_ON(sg->sg_magic != SG_MAGIC);
290db9299fSJens Axboe #endif
300db9299fSJens Axboe 	if (sg_is_last(sg))
310db9299fSJens Axboe 		return NULL;
320db9299fSJens Axboe 
330db9299fSJens Axboe 	sg++;
340db9299fSJens Axboe 	if (unlikely(sg_is_chain(sg)))
350db9299fSJens Axboe 		sg = sg_chain_ptr(sg);
360db9299fSJens Axboe 
370db9299fSJens Axboe 	return sg;
380db9299fSJens Axboe }
390db9299fSJens Axboe EXPORT_SYMBOL(sg_next);
400db9299fSJens Axboe 
410db9299fSJens Axboe /**
422e484610SMaxim Levitsky  * sg_nents - return total count of entries in scatterlist
432e484610SMaxim Levitsky  * @sg:		The scatterlist
442e484610SMaxim Levitsky  *
452e484610SMaxim Levitsky  * Description:
462e484610SMaxim Levitsky  * Allows to know how many entries are in sg, taking into acount
472e484610SMaxim Levitsky  * chaining as well
482e484610SMaxim Levitsky  *
492e484610SMaxim Levitsky  **/
502e484610SMaxim Levitsky int sg_nents(struct scatterlist *sg)
512e484610SMaxim Levitsky {
52232f1b51SMaxim Levitsky 	int nents;
53232f1b51SMaxim Levitsky 	for (nents = 0; sg; sg = sg_next(sg))
542e484610SMaxim Levitsky 		nents++;
552e484610SMaxim Levitsky 	return nents;
562e484610SMaxim Levitsky }
572e484610SMaxim Levitsky EXPORT_SYMBOL(sg_nents);
582e484610SMaxim Levitsky 
59cfaed10dSTom Lendacky /**
60cfaed10dSTom Lendacky  * sg_nents_for_len - return total count of entries in scatterlist
61cfaed10dSTom Lendacky  *                    needed to satisfy the supplied length
62cfaed10dSTom Lendacky  * @sg:		The scatterlist
63cfaed10dSTom Lendacky  * @len:	The total required length
64cfaed10dSTom Lendacky  *
65cfaed10dSTom Lendacky  * Description:
66cfaed10dSTom Lendacky  * Determines the number of entries in sg that are required to meet
67cfaed10dSTom Lendacky  * the supplied length, taking into acount chaining as well
68cfaed10dSTom Lendacky  *
69cfaed10dSTom Lendacky  * Returns:
70cfaed10dSTom Lendacky  *   the number of sg entries needed, negative error on failure
71cfaed10dSTom Lendacky  *
72cfaed10dSTom Lendacky  **/
73cfaed10dSTom Lendacky int sg_nents_for_len(struct scatterlist *sg, u64 len)
74cfaed10dSTom Lendacky {
75cfaed10dSTom Lendacky 	int nents;
76cfaed10dSTom Lendacky 	u64 total;
77cfaed10dSTom Lendacky 
78cfaed10dSTom Lendacky 	if (!len)
79cfaed10dSTom Lendacky 		return 0;
80cfaed10dSTom Lendacky 
81cfaed10dSTom Lendacky 	for (nents = 0, total = 0; sg; sg = sg_next(sg)) {
82cfaed10dSTom Lendacky 		nents++;
83cfaed10dSTom Lendacky 		total += sg->length;
84cfaed10dSTom Lendacky 		if (total >= len)
85cfaed10dSTom Lendacky 			return nents;
86cfaed10dSTom Lendacky 	}
87cfaed10dSTom Lendacky 
88cfaed10dSTom Lendacky 	return -EINVAL;
89cfaed10dSTom Lendacky }
90cfaed10dSTom Lendacky EXPORT_SYMBOL(sg_nents_for_len);
912e484610SMaxim Levitsky 
922e484610SMaxim Levitsky /**
930db9299fSJens Axboe  * sg_last - return the last scatterlist entry in a list
940db9299fSJens Axboe  * @sgl:	First entry in the scatterlist
950db9299fSJens Axboe  * @nents:	Number of entries in the scatterlist
960db9299fSJens Axboe  *
970db9299fSJens Axboe  * Description:
980db9299fSJens Axboe  *   Should only be used casually, it (currently) scans the entire list
990db9299fSJens Axboe  *   to get the last entry.
1000db9299fSJens Axboe  *
1010db9299fSJens Axboe  *   Note that the @sgl@ pointer passed in need not be the first one,
1020db9299fSJens Axboe  *   the important bit is that @nents@ denotes the number of entries that
1030db9299fSJens Axboe  *   exist from @sgl@.
1040db9299fSJens Axboe  *
1050db9299fSJens Axboe  **/
1060db9299fSJens Axboe struct scatterlist *sg_last(struct scatterlist *sgl, unsigned int nents)
1070db9299fSJens Axboe {
1080db9299fSJens Axboe 	struct scatterlist *sg, *ret = NULL;
1090db9299fSJens Axboe 	unsigned int i;
1100db9299fSJens Axboe 
1110db9299fSJens Axboe 	for_each_sg(sgl, sg, nents, i)
1120db9299fSJens Axboe 		ret = sg;
1130db9299fSJens Axboe 
1140db9299fSJens Axboe #ifdef CONFIG_DEBUG_SG
1150db9299fSJens Axboe 	BUG_ON(sgl[0].sg_magic != SG_MAGIC);
1160db9299fSJens Axboe 	BUG_ON(!sg_is_last(ret));
1170db9299fSJens Axboe #endif
1180db9299fSJens Axboe 	return ret;
1190db9299fSJens Axboe }
1200db9299fSJens Axboe EXPORT_SYMBOL(sg_last);
1210db9299fSJens Axboe 
1220db9299fSJens Axboe /**
1230db9299fSJens Axboe  * sg_init_table - Initialize SG table
1240db9299fSJens Axboe  * @sgl:	   The SG table
1250db9299fSJens Axboe  * @nents:	   Number of entries in table
1260db9299fSJens Axboe  *
1270db9299fSJens Axboe  * Notes:
1280db9299fSJens Axboe  *   If this is part of a chained sg table, sg_mark_end() should be
1290db9299fSJens Axboe  *   used only on the last table part.
1300db9299fSJens Axboe  *
1310db9299fSJens Axboe  **/
1320db9299fSJens Axboe void sg_init_table(struct scatterlist *sgl, unsigned int nents)
1330db9299fSJens Axboe {
1340db9299fSJens Axboe 	memset(sgl, 0, sizeof(*sgl) * nents);
1350db9299fSJens Axboe #ifdef CONFIG_DEBUG_SG
1360db9299fSJens Axboe 	{
1370db9299fSJens Axboe 		unsigned int i;
1380db9299fSJens Axboe 		for (i = 0; i < nents; i++)
1390db9299fSJens Axboe 			sgl[i].sg_magic = SG_MAGIC;
1400db9299fSJens Axboe 	}
1410db9299fSJens Axboe #endif
1420db9299fSJens Axboe 	sg_mark_end(&sgl[nents - 1]);
1430db9299fSJens Axboe }
1440db9299fSJens Axboe EXPORT_SYMBOL(sg_init_table);
1450db9299fSJens Axboe 
1460db9299fSJens Axboe /**
1470db9299fSJens Axboe  * sg_init_one - Initialize a single entry sg list
1480db9299fSJens Axboe  * @sg:		 SG entry
1490db9299fSJens Axboe  * @buf:	 Virtual address for IO
1500db9299fSJens Axboe  * @buflen:	 IO length
1510db9299fSJens Axboe  *
1520db9299fSJens Axboe  **/
1530db9299fSJens Axboe void sg_init_one(struct scatterlist *sg, const void *buf, unsigned int buflen)
1540db9299fSJens Axboe {
1550db9299fSJens Axboe 	sg_init_table(sg, 1);
1560db9299fSJens Axboe 	sg_set_buf(sg, buf, buflen);
1570db9299fSJens Axboe }
1580db9299fSJens Axboe EXPORT_SYMBOL(sg_init_one);
1590db9299fSJens Axboe 
1600db9299fSJens Axboe /*
1610db9299fSJens Axboe  * The default behaviour of sg_alloc_table() is to use these kmalloc/kfree
1620db9299fSJens Axboe  * helpers.
1630db9299fSJens Axboe  */
1640db9299fSJens Axboe static struct scatterlist *sg_kmalloc(unsigned int nents, gfp_t gfp_mask)
1650db9299fSJens Axboe {
166b94de9bbSChris Wilson 	if (nents == SG_MAX_SINGLE_ALLOC) {
167b94de9bbSChris Wilson 		/*
168b94de9bbSChris Wilson 		 * Kmemleak doesn't track page allocations as they are not
169b94de9bbSChris Wilson 		 * commonly used (in a raw form) for kernel data structures.
170b94de9bbSChris Wilson 		 * As we chain together a list of pages and then a normal
171b94de9bbSChris Wilson 		 * kmalloc (tracked by kmemleak), in order to for that last
172b94de9bbSChris Wilson 		 * allocation not to become decoupled (and thus a
173b94de9bbSChris Wilson 		 * false-positive) we need to inform kmemleak of all the
174b94de9bbSChris Wilson 		 * intermediate allocations.
175b94de9bbSChris Wilson 		 */
176b94de9bbSChris Wilson 		void *ptr = (void *) __get_free_page(gfp_mask);
177b94de9bbSChris Wilson 		kmemleak_alloc(ptr, PAGE_SIZE, 1, gfp_mask);
178b94de9bbSChris Wilson 		return ptr;
179b94de9bbSChris Wilson 	} else
1800db9299fSJens Axboe 		return kmalloc(nents * sizeof(struct scatterlist), gfp_mask);
1810db9299fSJens Axboe }
1820db9299fSJens Axboe 
1830db9299fSJens Axboe static void sg_kfree(struct scatterlist *sg, unsigned int nents)
1840db9299fSJens Axboe {
185b94de9bbSChris Wilson 	if (nents == SG_MAX_SINGLE_ALLOC) {
186b94de9bbSChris Wilson 		kmemleak_free(sg);
1870db9299fSJens Axboe 		free_page((unsigned long) sg);
188b94de9bbSChris Wilson 	} else
1890db9299fSJens Axboe 		kfree(sg);
1900db9299fSJens Axboe }
1910db9299fSJens Axboe 
1920db9299fSJens Axboe /**
1930db9299fSJens Axboe  * __sg_free_table - Free a previously mapped sg table
1940db9299fSJens Axboe  * @table:	The sg table header to use
1957cedb1f1SJames Bottomley  * @max_ents:	The maximum number of entries per single scatterlist
196c53c6d6aSChristoph Hellwig  * @skip_first_chunk: don't free the (preallocated) first scatterlist chunk
1970db9299fSJens Axboe  * @free_fn:	Free function
1980db9299fSJens Axboe  *
1990db9299fSJens Axboe  *  Description:
2007cedb1f1SJames Bottomley  *    Free an sg table previously allocated and setup with
2017cedb1f1SJames Bottomley  *    __sg_alloc_table().  The @max_ents value must be identical to
2027cedb1f1SJames Bottomley  *    that previously used with __sg_alloc_table().
2030db9299fSJens Axboe  *
2040db9299fSJens Axboe  **/
2057cedb1f1SJames Bottomley void __sg_free_table(struct sg_table *table, unsigned int max_ents,
206c53c6d6aSChristoph Hellwig 		     bool skip_first_chunk, sg_free_fn *free_fn)
2070db9299fSJens Axboe {
2080db9299fSJens Axboe 	struct scatterlist *sgl, *next;
2090db9299fSJens Axboe 
2100db9299fSJens Axboe 	if (unlikely(!table->sgl))
2110db9299fSJens Axboe 		return;
2120db9299fSJens Axboe 
2130db9299fSJens Axboe 	sgl = table->sgl;
2140db9299fSJens Axboe 	while (table->orig_nents) {
2150db9299fSJens Axboe 		unsigned int alloc_size = table->orig_nents;
2160db9299fSJens Axboe 		unsigned int sg_size;
2170db9299fSJens Axboe 
2180db9299fSJens Axboe 		/*
2197cedb1f1SJames Bottomley 		 * If we have more than max_ents segments left,
2200db9299fSJens Axboe 		 * then assign 'next' to the sg table after the current one.
2210db9299fSJens Axboe 		 * sg_size is then one less than alloc size, since the last
2220db9299fSJens Axboe 		 * element is the chain pointer.
2230db9299fSJens Axboe 		 */
2247cedb1f1SJames Bottomley 		if (alloc_size > max_ents) {
2257cedb1f1SJames Bottomley 			next = sg_chain_ptr(&sgl[max_ents - 1]);
2267cedb1f1SJames Bottomley 			alloc_size = max_ents;
2270db9299fSJens Axboe 			sg_size = alloc_size - 1;
2280db9299fSJens Axboe 		} else {
2290db9299fSJens Axboe 			sg_size = alloc_size;
2300db9299fSJens Axboe 			next = NULL;
2310db9299fSJens Axboe 		}
2320db9299fSJens Axboe 
2330db9299fSJens Axboe 		table->orig_nents -= sg_size;
234c21e59d8STony Battersby 		if (skip_first_chunk)
235c53c6d6aSChristoph Hellwig 			skip_first_chunk = false;
236c21e59d8STony Battersby 		else
237c21e59d8STony Battersby 			free_fn(sgl, alloc_size);
2380db9299fSJens Axboe 		sgl = next;
2390db9299fSJens Axboe 	}
2400db9299fSJens Axboe 
2410db9299fSJens Axboe 	table->sgl = NULL;
2420db9299fSJens Axboe }
2430db9299fSJens Axboe EXPORT_SYMBOL(__sg_free_table);
2440db9299fSJens Axboe 
2450db9299fSJens Axboe /**
2460db9299fSJens Axboe  * sg_free_table - Free a previously allocated sg table
2470db9299fSJens Axboe  * @table:	The mapped sg table header
2480db9299fSJens Axboe  *
2490db9299fSJens Axboe  **/
2500db9299fSJens Axboe void sg_free_table(struct sg_table *table)
2510db9299fSJens Axboe {
252c53c6d6aSChristoph Hellwig 	__sg_free_table(table, SG_MAX_SINGLE_ALLOC, false, sg_kfree);
2530db9299fSJens Axboe }
2540db9299fSJens Axboe EXPORT_SYMBOL(sg_free_table);
2550db9299fSJens Axboe 
2560db9299fSJens Axboe /**
2570db9299fSJens Axboe  * __sg_alloc_table - Allocate and initialize an sg table with given allocator
2580db9299fSJens Axboe  * @table:	The sg table header to use
2590db9299fSJens Axboe  * @nents:	Number of entries in sg list
2607cedb1f1SJames Bottomley  * @max_ents:	The maximum number of entries the allocator returns per call
2610db9299fSJens Axboe  * @gfp_mask:	GFP allocation mask
2620db9299fSJens Axboe  * @alloc_fn:	Allocator to use
2630db9299fSJens Axboe  *
2647cedb1f1SJames Bottomley  * Description:
2657cedb1f1SJames Bottomley  *   This function returns a @table @nents long. The allocator is
2667cedb1f1SJames Bottomley  *   defined to return scatterlist chunks of maximum size @max_ents.
2677cedb1f1SJames Bottomley  *   Thus if @nents is bigger than @max_ents, the scatterlists will be
2687cedb1f1SJames Bottomley  *   chained in units of @max_ents.
2697cedb1f1SJames Bottomley  *
2700db9299fSJens Axboe  * Notes:
2710db9299fSJens Axboe  *   If this function returns non-0 (eg failure), the caller must call
2720db9299fSJens Axboe  *   __sg_free_table() to cleanup any leftover allocations.
2730db9299fSJens Axboe  *
2740db9299fSJens Axboe  **/
2757cedb1f1SJames Bottomley int __sg_alloc_table(struct sg_table *table, unsigned int nents,
276c53c6d6aSChristoph Hellwig 		     unsigned int max_ents, struct scatterlist *first_chunk,
277c53c6d6aSChristoph Hellwig 		     gfp_t gfp_mask, sg_alloc_fn *alloc_fn)
2780db9299fSJens Axboe {
2790db9299fSJens Axboe 	struct scatterlist *sg, *prv;
2800db9299fSJens Axboe 	unsigned int left;
2810db9299fSJens Axboe 
28227daabd9SDan Carpenter 	memset(table, 0, sizeof(*table));
28327daabd9SDan Carpenter 
28427daabd9SDan Carpenter 	if (nents == 0)
28527daabd9SDan Carpenter 		return -EINVAL;
286308c09f1SLaura Abbott #ifndef CONFIG_ARCH_HAS_SG_CHAIN
2876fd59a83SNick Bowler 	if (WARN_ON_ONCE(nents > max_ents))
2886fd59a83SNick Bowler 		return -EINVAL;
2890db9299fSJens Axboe #endif
2900db9299fSJens Axboe 
2910db9299fSJens Axboe 	left = nents;
2920db9299fSJens Axboe 	prv = NULL;
2930db9299fSJens Axboe 	do {
2940db9299fSJens Axboe 		unsigned int sg_size, alloc_size = left;
2950db9299fSJens Axboe 
2967cedb1f1SJames Bottomley 		if (alloc_size > max_ents) {
2977cedb1f1SJames Bottomley 			alloc_size = max_ents;
2980db9299fSJens Axboe 			sg_size = alloc_size - 1;
2990db9299fSJens Axboe 		} else
3000db9299fSJens Axboe 			sg_size = alloc_size;
3010db9299fSJens Axboe 
3020db9299fSJens Axboe 		left -= sg_size;
3030db9299fSJens Axboe 
304c53c6d6aSChristoph Hellwig 		if (first_chunk) {
305c53c6d6aSChristoph Hellwig 			sg = first_chunk;
306c53c6d6aSChristoph Hellwig 			first_chunk = NULL;
307c53c6d6aSChristoph Hellwig 		} else {
3080db9299fSJens Axboe 			sg = alloc_fn(alloc_size, gfp_mask);
309c53c6d6aSChristoph Hellwig 		}
310edce6820SJeffrey Carlyle 		if (unlikely(!sg)) {
311edce6820SJeffrey Carlyle 			/*
312edce6820SJeffrey Carlyle 			 * Adjust entry count to reflect that the last
313edce6820SJeffrey Carlyle 			 * entry of the previous table won't be used for
314edce6820SJeffrey Carlyle 			 * linkage.  Without this, sg_kfree() may get
315edce6820SJeffrey Carlyle 			 * confused.
316edce6820SJeffrey Carlyle 			 */
317edce6820SJeffrey Carlyle 			if (prv)
318edce6820SJeffrey Carlyle 				table->nents = ++table->orig_nents;
319edce6820SJeffrey Carlyle 
3200db9299fSJens Axboe  			return -ENOMEM;
321edce6820SJeffrey Carlyle 		}
3220db9299fSJens Axboe 
3230db9299fSJens Axboe 		sg_init_table(sg, alloc_size);
3240db9299fSJens Axboe 		table->nents = table->orig_nents += sg_size;
3250db9299fSJens Axboe 
3260db9299fSJens Axboe 		/*
3270db9299fSJens Axboe 		 * If this is the first mapping, assign the sg table header.
3280db9299fSJens Axboe 		 * If this is not the first mapping, chain previous part.
3290db9299fSJens Axboe 		 */
3300db9299fSJens Axboe 		if (prv)
3317cedb1f1SJames Bottomley 			sg_chain(prv, max_ents, sg);
3320db9299fSJens Axboe 		else
3330db9299fSJens Axboe 			table->sgl = sg;
3340db9299fSJens Axboe 
3350db9299fSJens Axboe 		/*
3360db9299fSJens Axboe 		 * If no more entries after this one, mark the end
3370db9299fSJens Axboe 		 */
3380db9299fSJens Axboe 		if (!left)
3390db9299fSJens Axboe 			sg_mark_end(&sg[sg_size - 1]);
3400db9299fSJens Axboe 
3410db9299fSJens Axboe 		prv = sg;
3420db9299fSJens Axboe 	} while (left);
3430db9299fSJens Axboe 
3440db9299fSJens Axboe 	return 0;
3450db9299fSJens Axboe }
3460db9299fSJens Axboe EXPORT_SYMBOL(__sg_alloc_table);
3470db9299fSJens Axboe 
3480db9299fSJens Axboe /**
3490db9299fSJens Axboe  * sg_alloc_table - Allocate and initialize an sg table
3500db9299fSJens Axboe  * @table:	The sg table header to use
3510db9299fSJens Axboe  * @nents:	Number of entries in sg list
3520db9299fSJens Axboe  * @gfp_mask:	GFP allocation mask
3530db9299fSJens Axboe  *
3540db9299fSJens Axboe  *  Description:
3550db9299fSJens Axboe  *    Allocate and initialize an sg table. If @nents@ is larger than
3560db9299fSJens Axboe  *    SG_MAX_SINGLE_ALLOC a chained sg table will be setup.
3570db9299fSJens Axboe  *
3580db9299fSJens Axboe  **/
3590db9299fSJens Axboe int sg_alloc_table(struct sg_table *table, unsigned int nents, gfp_t gfp_mask)
3600db9299fSJens Axboe {
3610db9299fSJens Axboe 	int ret;
3620db9299fSJens Axboe 
3637cedb1f1SJames Bottomley 	ret = __sg_alloc_table(table, nents, SG_MAX_SINGLE_ALLOC,
364c53c6d6aSChristoph Hellwig 			       NULL, gfp_mask, sg_kmalloc);
3650db9299fSJens Axboe 	if (unlikely(ret))
366c53c6d6aSChristoph Hellwig 		__sg_free_table(table, SG_MAX_SINGLE_ALLOC, false, sg_kfree);
3670db9299fSJens Axboe 
3680db9299fSJens Axboe 	return ret;
3690db9299fSJens Axboe }
3700db9299fSJens Axboe EXPORT_SYMBOL(sg_alloc_table);
371b1adaf65SFUJITA Tomonori 
372b1adaf65SFUJITA Tomonori /**
373efc42bc9STomasz Stanislawski  * sg_alloc_table_from_pages - Allocate and initialize an sg table from
374efc42bc9STomasz Stanislawski  *			       an array of pages
375efc42bc9STomasz Stanislawski  * @sgt:	The sg table header to use
376efc42bc9STomasz Stanislawski  * @pages:	Pointer to an array of page pointers
377efc42bc9STomasz Stanislawski  * @n_pages:	Number of pages in the pages array
378efc42bc9STomasz Stanislawski  * @offset:     Offset from start of the first page to the start of a buffer
379efc42bc9STomasz Stanislawski  * @size:       Number of valid bytes in the buffer (after offset)
380efc42bc9STomasz Stanislawski  * @gfp_mask:	GFP allocation mask
381efc42bc9STomasz Stanislawski  *
382efc42bc9STomasz Stanislawski  *  Description:
383efc42bc9STomasz Stanislawski  *    Allocate and initialize an sg table from a list of pages. Contiguous
384efc42bc9STomasz Stanislawski  *    ranges of the pages are squashed into a single scatterlist node. A user
385efc42bc9STomasz Stanislawski  *    may provide an offset at a start and a size of valid data in a buffer
386efc42bc9STomasz Stanislawski  *    specified by the page array. The returned sg table is released by
387efc42bc9STomasz Stanislawski  *    sg_free_table.
388efc42bc9STomasz Stanislawski  *
389efc42bc9STomasz Stanislawski  * Returns:
390efc42bc9STomasz Stanislawski  *   0 on success, negative error on failure
391efc42bc9STomasz Stanislawski  */
392efc42bc9STomasz Stanislawski int sg_alloc_table_from_pages(struct sg_table *sgt,
393efc42bc9STomasz Stanislawski 	struct page **pages, unsigned int n_pages,
394efc42bc9STomasz Stanislawski 	unsigned long offset, unsigned long size,
395efc42bc9STomasz Stanislawski 	gfp_t gfp_mask)
396efc42bc9STomasz Stanislawski {
397efc42bc9STomasz Stanislawski 	unsigned int chunks;
398efc42bc9STomasz Stanislawski 	unsigned int i;
399efc42bc9STomasz Stanislawski 	unsigned int cur_page;
400efc42bc9STomasz Stanislawski 	int ret;
401efc42bc9STomasz Stanislawski 	struct scatterlist *s;
402efc42bc9STomasz Stanislawski 
403efc42bc9STomasz Stanislawski 	/* compute number of contiguous chunks */
404efc42bc9STomasz Stanislawski 	chunks = 1;
405efc42bc9STomasz Stanislawski 	for (i = 1; i < n_pages; ++i)
406efc42bc9STomasz Stanislawski 		if (page_to_pfn(pages[i]) != page_to_pfn(pages[i - 1]) + 1)
407efc42bc9STomasz Stanislawski 			++chunks;
408efc42bc9STomasz Stanislawski 
409efc42bc9STomasz Stanislawski 	ret = sg_alloc_table(sgt, chunks, gfp_mask);
410efc42bc9STomasz Stanislawski 	if (unlikely(ret))
411efc42bc9STomasz Stanislawski 		return ret;
412efc42bc9STomasz Stanislawski 
413efc42bc9STomasz Stanislawski 	/* merging chunks and putting them into the scatterlist */
414efc42bc9STomasz Stanislawski 	cur_page = 0;
415efc42bc9STomasz Stanislawski 	for_each_sg(sgt->sgl, s, sgt->orig_nents, i) {
416efc42bc9STomasz Stanislawski 		unsigned long chunk_size;
417efc42bc9STomasz Stanislawski 		unsigned int j;
418efc42bc9STomasz Stanislawski 
419efc42bc9STomasz Stanislawski 		/* look for the end of the current chunk */
420efc42bc9STomasz Stanislawski 		for (j = cur_page + 1; j < n_pages; ++j)
421efc42bc9STomasz Stanislawski 			if (page_to_pfn(pages[j]) !=
422efc42bc9STomasz Stanislawski 			    page_to_pfn(pages[j - 1]) + 1)
423efc42bc9STomasz Stanislawski 				break;
424efc42bc9STomasz Stanislawski 
425efc42bc9STomasz Stanislawski 		chunk_size = ((j - cur_page) << PAGE_SHIFT) - offset;
426efc42bc9STomasz Stanislawski 		sg_set_page(s, pages[cur_page], min(size, chunk_size), offset);
427efc42bc9STomasz Stanislawski 		size -= chunk_size;
428efc42bc9STomasz Stanislawski 		offset = 0;
429efc42bc9STomasz Stanislawski 		cur_page = j;
430efc42bc9STomasz Stanislawski 	}
431efc42bc9STomasz Stanislawski 
432efc42bc9STomasz Stanislawski 	return 0;
433efc42bc9STomasz Stanislawski }
434efc42bc9STomasz Stanislawski EXPORT_SYMBOL(sg_alloc_table_from_pages);
435efc42bc9STomasz Stanislawski 
436a321e91bSImre Deak void __sg_page_iter_start(struct sg_page_iter *piter,
437a321e91bSImre Deak 			  struct scatterlist *sglist, unsigned int nents,
438a321e91bSImre Deak 			  unsigned long pgoffset)
439a321e91bSImre Deak {
440a321e91bSImre Deak 	piter->__pg_advance = 0;
441a321e91bSImre Deak 	piter->__nents = nents;
442a321e91bSImre Deak 
443a321e91bSImre Deak 	piter->sg = sglist;
444a321e91bSImre Deak 	piter->sg_pgoffset = pgoffset;
445a321e91bSImre Deak }
446a321e91bSImre Deak EXPORT_SYMBOL(__sg_page_iter_start);
447a321e91bSImre Deak 
448a321e91bSImre Deak static int sg_page_count(struct scatterlist *sg)
449a321e91bSImre Deak {
450a321e91bSImre Deak 	return PAGE_ALIGN(sg->offset + sg->length) >> PAGE_SHIFT;
451a321e91bSImre Deak }
452a321e91bSImre Deak 
453a321e91bSImre Deak bool __sg_page_iter_next(struct sg_page_iter *piter)
454a321e91bSImre Deak {
455a321e91bSImre Deak 	if (!piter->__nents || !piter->sg)
456a321e91bSImre Deak 		return false;
457a321e91bSImre Deak 
458a321e91bSImre Deak 	piter->sg_pgoffset += piter->__pg_advance;
459a321e91bSImre Deak 	piter->__pg_advance = 1;
460a321e91bSImre Deak 
461a321e91bSImre Deak 	while (piter->sg_pgoffset >= sg_page_count(piter->sg)) {
462a321e91bSImre Deak 		piter->sg_pgoffset -= sg_page_count(piter->sg);
463a321e91bSImre Deak 		piter->sg = sg_next(piter->sg);
464a321e91bSImre Deak 		if (!--piter->__nents || !piter->sg)
465a321e91bSImre Deak 			return false;
466a321e91bSImre Deak 	}
467a321e91bSImre Deak 
468a321e91bSImre Deak 	return true;
469a321e91bSImre Deak }
470a321e91bSImre Deak EXPORT_SYMBOL(__sg_page_iter_next);
471a321e91bSImre Deak 
472efc42bc9STomasz Stanislawski /**
473137d3edbSTejun Heo  * sg_miter_start - start mapping iteration over a sg list
474137d3edbSTejun Heo  * @miter: sg mapping iter to be started
475137d3edbSTejun Heo  * @sgl: sg list to iterate over
476137d3edbSTejun Heo  * @nents: number of sg entries
477137d3edbSTejun Heo  *
478137d3edbSTejun Heo  * Description:
479137d3edbSTejun Heo  *   Starts mapping iterator @miter.
480137d3edbSTejun Heo  *
481137d3edbSTejun Heo  * Context:
482137d3edbSTejun Heo  *   Don't care.
483137d3edbSTejun Heo  */
484137d3edbSTejun Heo void sg_miter_start(struct sg_mapping_iter *miter, struct scatterlist *sgl,
485137d3edbSTejun Heo 		    unsigned int nents, unsigned int flags)
486137d3edbSTejun Heo {
487137d3edbSTejun Heo 	memset(miter, 0, sizeof(struct sg_mapping_iter));
488137d3edbSTejun Heo 
4894225fc85SImre Deak 	__sg_page_iter_start(&miter->piter, sgl, nents, 0);
4906de7e356SSebastian Andrzej Siewior 	WARN_ON(!(flags & (SG_MITER_TO_SG | SG_MITER_FROM_SG)));
491137d3edbSTejun Heo 	miter->__flags = flags;
492137d3edbSTejun Heo }
493137d3edbSTejun Heo EXPORT_SYMBOL(sg_miter_start);
494137d3edbSTejun Heo 
49511052004SAkinobu Mita static bool sg_miter_get_next_page(struct sg_mapping_iter *miter)
49611052004SAkinobu Mita {
49711052004SAkinobu Mita 	if (!miter->__remaining) {
49811052004SAkinobu Mita 		struct scatterlist *sg;
49911052004SAkinobu Mita 		unsigned long pgoffset;
50011052004SAkinobu Mita 
50111052004SAkinobu Mita 		if (!__sg_page_iter_next(&miter->piter))
50211052004SAkinobu Mita 			return false;
50311052004SAkinobu Mita 
50411052004SAkinobu Mita 		sg = miter->piter.sg;
50511052004SAkinobu Mita 		pgoffset = miter->piter.sg_pgoffset;
50611052004SAkinobu Mita 
50711052004SAkinobu Mita 		miter->__offset = pgoffset ? 0 : sg->offset;
50811052004SAkinobu Mita 		miter->__remaining = sg->offset + sg->length -
50911052004SAkinobu Mita 				(pgoffset << PAGE_SHIFT) - miter->__offset;
51011052004SAkinobu Mita 		miter->__remaining = min_t(unsigned long, miter->__remaining,
51111052004SAkinobu Mita 					   PAGE_SIZE - miter->__offset);
51211052004SAkinobu Mita 	}
51311052004SAkinobu Mita 
51411052004SAkinobu Mita 	return true;
51511052004SAkinobu Mita }
51611052004SAkinobu Mita 
517137d3edbSTejun Heo /**
518df642ceaSAkinobu Mita  * sg_miter_skip - reposition mapping iterator
519df642ceaSAkinobu Mita  * @miter: sg mapping iter to be skipped
520df642ceaSAkinobu Mita  * @offset: number of bytes to plus the current location
521df642ceaSAkinobu Mita  *
522df642ceaSAkinobu Mita  * Description:
523df642ceaSAkinobu Mita  *   Sets the offset of @miter to its current location plus @offset bytes.
524df642ceaSAkinobu Mita  *   If mapping iterator @miter has been proceeded by sg_miter_next(), this
525df642ceaSAkinobu Mita  *   stops @miter.
526df642ceaSAkinobu Mita  *
527df642ceaSAkinobu Mita  * Context:
528df642ceaSAkinobu Mita  *   Don't care if @miter is stopped, or not proceeded yet.
529df642ceaSAkinobu Mita  *   Otherwise, preemption disabled if the SG_MITER_ATOMIC is set.
530df642ceaSAkinobu Mita  *
531df642ceaSAkinobu Mita  * Returns:
532df642ceaSAkinobu Mita  *   true if @miter contains the valid mapping.  false if end of sg
533df642ceaSAkinobu Mita  *   list is reached.
534df642ceaSAkinobu Mita  */
5350d6077f8SMing Lei bool sg_miter_skip(struct sg_mapping_iter *miter, off_t offset)
536df642ceaSAkinobu Mita {
537df642ceaSAkinobu Mita 	sg_miter_stop(miter);
538df642ceaSAkinobu Mita 
539df642ceaSAkinobu Mita 	while (offset) {
540df642ceaSAkinobu Mita 		off_t consumed;
541df642ceaSAkinobu Mita 
542df642ceaSAkinobu Mita 		if (!sg_miter_get_next_page(miter))
543df642ceaSAkinobu Mita 			return false;
544df642ceaSAkinobu Mita 
545df642ceaSAkinobu Mita 		consumed = min_t(off_t, offset, miter->__remaining);
546df642ceaSAkinobu Mita 		miter->__offset += consumed;
547df642ceaSAkinobu Mita 		miter->__remaining -= consumed;
548df642ceaSAkinobu Mita 		offset -= consumed;
549df642ceaSAkinobu Mita 	}
550df642ceaSAkinobu Mita 
551df642ceaSAkinobu Mita 	return true;
552df642ceaSAkinobu Mita }
5530d6077f8SMing Lei EXPORT_SYMBOL(sg_miter_skip);
554df642ceaSAkinobu Mita 
555df642ceaSAkinobu Mita /**
556137d3edbSTejun Heo  * sg_miter_next - proceed mapping iterator to the next mapping
557137d3edbSTejun Heo  * @miter: sg mapping iter to proceed
558137d3edbSTejun Heo  *
559137d3edbSTejun Heo  * Description:
5608290e2d2STejun Heo  *   Proceeds @miter to the next mapping.  @miter should have been started
5618290e2d2STejun Heo  *   using sg_miter_start().  On successful return, @miter->page,
5628290e2d2STejun Heo  *   @miter->addr and @miter->length point to the current mapping.
563137d3edbSTejun Heo  *
564137d3edbSTejun Heo  * Context:
5658290e2d2STejun Heo  *   Preemption disabled if SG_MITER_ATOMIC.  Preemption must stay disabled
5668290e2d2STejun Heo  *   till @miter is stopped.  May sleep if !SG_MITER_ATOMIC.
567137d3edbSTejun Heo  *
568137d3edbSTejun Heo  * Returns:
569137d3edbSTejun Heo  *   true if @miter contains the next mapping.  false if end of sg
570137d3edbSTejun Heo  *   list is reached.
571137d3edbSTejun Heo  */
572137d3edbSTejun Heo bool sg_miter_next(struct sg_mapping_iter *miter)
573137d3edbSTejun Heo {
574137d3edbSTejun Heo 	sg_miter_stop(miter);
575137d3edbSTejun Heo 
5764225fc85SImre Deak 	/*
5774225fc85SImre Deak 	 * Get to the next page if necessary.
5784225fc85SImre Deak 	 * __remaining, __offset is adjusted by sg_miter_stop
5794225fc85SImre Deak 	 */
58011052004SAkinobu Mita 	if (!sg_miter_get_next_page(miter))
58123c560a9STejun Heo 		return false;
5824225fc85SImre Deak 
5832db76d7cSImre Deak 	miter->page = sg_page_iter_page(&miter->piter);
5844225fc85SImre Deak 	miter->consumed = miter->length = miter->__remaining;
585137d3edbSTejun Heo 
586137d3edbSTejun Heo 	if (miter->__flags & SG_MITER_ATOMIC)
5874225fc85SImre Deak 		miter->addr = kmap_atomic(miter->page) + miter->__offset;
588137d3edbSTejun Heo 	else
5894225fc85SImre Deak 		miter->addr = kmap(miter->page) + miter->__offset;
590137d3edbSTejun Heo 
591137d3edbSTejun Heo 	return true;
592137d3edbSTejun Heo }
593137d3edbSTejun Heo EXPORT_SYMBOL(sg_miter_next);
594137d3edbSTejun Heo 
595137d3edbSTejun Heo /**
596137d3edbSTejun Heo  * sg_miter_stop - stop mapping iteration
597137d3edbSTejun Heo  * @miter: sg mapping iter to be stopped
598137d3edbSTejun Heo  *
599137d3edbSTejun Heo  * Description:
600137d3edbSTejun Heo  *   Stops mapping iterator @miter.  @miter should have been started
6014ba6a2b2SMasahiro Yamada  *   using sg_miter_start().  A stopped iteration can be resumed by
6024ba6a2b2SMasahiro Yamada  *   calling sg_miter_next() on it.  This is useful when resources (kmap)
6034ba6a2b2SMasahiro Yamada  *   need to be released during iteration.
604137d3edbSTejun Heo  *
605137d3edbSTejun Heo  * Context:
6068290e2d2STejun Heo  *   Preemption disabled if the SG_MITER_ATOMIC is set.  Don't care
6078290e2d2STejun Heo  *   otherwise.
608137d3edbSTejun Heo  */
609137d3edbSTejun Heo void sg_miter_stop(struct sg_mapping_iter *miter)
610137d3edbSTejun Heo {
611137d3edbSTejun Heo 	WARN_ON(miter->consumed > miter->length);
612137d3edbSTejun Heo 
613137d3edbSTejun Heo 	/* drop resources from the last iteration */
614137d3edbSTejun Heo 	if (miter->addr) {
615137d3edbSTejun Heo 		miter->__offset += miter->consumed;
6164225fc85SImre Deak 		miter->__remaining -= miter->consumed;
617137d3edbSTejun Heo 
6183d77b50cSMing Lei 		if ((miter->__flags & SG_MITER_TO_SG) &&
6193d77b50cSMing Lei 		    !PageSlab(miter->page))
6206de7e356SSebastian Andrzej Siewior 			flush_kernel_dcache_page(miter->page);
6216de7e356SSebastian Andrzej Siewior 
622137d3edbSTejun Heo 		if (miter->__flags & SG_MITER_ATOMIC) {
6238290e2d2STejun Heo 			WARN_ON_ONCE(preemptible());
624c3eede8eSCong Wang 			kunmap_atomic(miter->addr);
625137d3edbSTejun Heo 		} else
626f652c521SArjan van de Ven 			kunmap(miter->page);
627137d3edbSTejun Heo 
628137d3edbSTejun Heo 		miter->page = NULL;
629137d3edbSTejun Heo 		miter->addr = NULL;
630137d3edbSTejun Heo 		miter->length = 0;
631137d3edbSTejun Heo 		miter->consumed = 0;
632137d3edbSTejun Heo 	}
633137d3edbSTejun Heo }
634137d3edbSTejun Heo EXPORT_SYMBOL(sg_miter_stop);
635137d3edbSTejun Heo 
636137d3edbSTejun Heo /**
637b1adaf65SFUJITA Tomonori  * sg_copy_buffer - Copy data between a linear buffer and an SG list
638b1adaf65SFUJITA Tomonori  * @sgl:		 The SG list
639b1adaf65SFUJITA Tomonori  * @nents:		 Number of SG entries
640b1adaf65SFUJITA Tomonori  * @buf:		 Where to copy from
641b1adaf65SFUJITA Tomonori  * @buflen:		 The number of bytes to copy
642df642ceaSAkinobu Mita  * @skip:		 Number of bytes to skip before copying
643df642ceaSAkinobu Mita  * @to_buffer:		 transfer direction (true == from an sg list to a
644df642ceaSAkinobu Mita  *			 buffer, false == from a buffer to an sg list
645b1adaf65SFUJITA Tomonori  *
646b1adaf65SFUJITA Tomonori  * Returns the number of copied bytes.
647b1adaf65SFUJITA Tomonori  *
648b1adaf65SFUJITA Tomonori  **/
649386ecb12SDave Gordon size_t sg_copy_buffer(struct scatterlist *sgl, unsigned int nents, void *buf,
650386ecb12SDave Gordon 		      size_t buflen, off_t skip, bool to_buffer)
651b1adaf65SFUJITA Tomonori {
652137d3edbSTejun Heo 	unsigned int offset = 0;
653137d3edbSTejun Heo 	struct sg_mapping_iter miter;
6546de7e356SSebastian Andrzej Siewior 	unsigned int sg_flags = SG_MITER_ATOMIC;
655b1adaf65SFUJITA Tomonori 
6566de7e356SSebastian Andrzej Siewior 	if (to_buffer)
6576de7e356SSebastian Andrzej Siewior 		sg_flags |= SG_MITER_FROM_SG;
6586de7e356SSebastian Andrzej Siewior 	else
6596de7e356SSebastian Andrzej Siewior 		sg_flags |= SG_MITER_TO_SG;
6606de7e356SSebastian Andrzej Siewior 
6616de7e356SSebastian Andrzej Siewior 	sg_miter_start(&miter, sgl, nents, sg_flags);
662b1adaf65SFUJITA Tomonori 
663df642ceaSAkinobu Mita 	if (!sg_miter_skip(&miter, skip))
664df642ceaSAkinobu Mita 		return false;
665df642ceaSAkinobu Mita 
6661d5210efSGilad Ben-Yossef 	while ((offset < buflen) && sg_miter_next(&miter)) {
667137d3edbSTejun Heo 		unsigned int len;
668b1adaf65SFUJITA Tomonori 
669137d3edbSTejun Heo 		len = min(miter.length, buflen - offset);
670b1adaf65SFUJITA Tomonori 
671b1adaf65SFUJITA Tomonori 		if (to_buffer)
672137d3edbSTejun Heo 			memcpy(buf + offset, miter.addr, len);
6736de7e356SSebastian Andrzej Siewior 		else
674137d3edbSTejun Heo 			memcpy(miter.addr, buf + offset, len);
675b1adaf65SFUJITA Tomonori 
676137d3edbSTejun Heo 		offset += len;
677b1adaf65SFUJITA Tomonori 	}
678b1adaf65SFUJITA Tomonori 
679137d3edbSTejun Heo 	sg_miter_stop(&miter);
680b1adaf65SFUJITA Tomonori 
681137d3edbSTejun Heo 	return offset;
682b1adaf65SFUJITA Tomonori }
683386ecb12SDave Gordon EXPORT_SYMBOL(sg_copy_buffer);
684b1adaf65SFUJITA Tomonori 
685b1adaf65SFUJITA Tomonori /**
686b1adaf65SFUJITA Tomonori  * sg_copy_from_buffer - Copy from a linear buffer to an SG list
687b1adaf65SFUJITA Tomonori  * @sgl:		 The SG list
688b1adaf65SFUJITA Tomonori  * @nents:		 Number of SG entries
689b1adaf65SFUJITA Tomonori  * @buf:		 Where to copy from
690b1adaf65SFUJITA Tomonori  * @buflen:		 The number of bytes to copy
691b1adaf65SFUJITA Tomonori  *
692b1adaf65SFUJITA Tomonori  * Returns the number of copied bytes.
693b1adaf65SFUJITA Tomonori  *
694b1adaf65SFUJITA Tomonori  **/
695b1adaf65SFUJITA Tomonori size_t sg_copy_from_buffer(struct scatterlist *sgl, unsigned int nents,
6962a1bf8f9SDave Gordon 			   const void *buf, size_t buflen)
697b1adaf65SFUJITA Tomonori {
6982a1bf8f9SDave Gordon 	return sg_copy_buffer(sgl, nents, (void *)buf, buflen, 0, false);
699b1adaf65SFUJITA Tomonori }
700b1adaf65SFUJITA Tomonori EXPORT_SYMBOL(sg_copy_from_buffer);
701b1adaf65SFUJITA Tomonori 
702b1adaf65SFUJITA Tomonori /**
703b1adaf65SFUJITA Tomonori  * sg_copy_to_buffer - Copy from an SG list to a linear buffer
704b1adaf65SFUJITA Tomonori  * @sgl:		 The SG list
705b1adaf65SFUJITA Tomonori  * @nents:		 Number of SG entries
706b1adaf65SFUJITA Tomonori  * @buf:		 Where to copy to
707b1adaf65SFUJITA Tomonori  * @buflen:		 The number of bytes to copy
708b1adaf65SFUJITA Tomonori  *
709b1adaf65SFUJITA Tomonori  * Returns the number of copied bytes.
710b1adaf65SFUJITA Tomonori  *
711b1adaf65SFUJITA Tomonori  **/
712b1adaf65SFUJITA Tomonori size_t sg_copy_to_buffer(struct scatterlist *sgl, unsigned int nents,
713b1adaf65SFUJITA Tomonori 			 void *buf, size_t buflen)
714b1adaf65SFUJITA Tomonori {
715df642ceaSAkinobu Mita 	return sg_copy_buffer(sgl, nents, buf, buflen, 0, true);
716b1adaf65SFUJITA Tomonori }
717b1adaf65SFUJITA Tomonori EXPORT_SYMBOL(sg_copy_to_buffer);
718df642ceaSAkinobu Mita 
719df642ceaSAkinobu Mita /**
720df642ceaSAkinobu Mita  * sg_pcopy_from_buffer - Copy from a linear buffer to an SG list
721df642ceaSAkinobu Mita  * @sgl:		 The SG list
722df642ceaSAkinobu Mita  * @nents:		 Number of SG entries
723df642ceaSAkinobu Mita  * @buf:		 Where to copy from
724df642ceaSAkinobu Mita  * @buflen:		 The number of bytes to copy
7254dc7daf8SDave Gordon  * @skip:		 Number of bytes to skip before copying
726df642ceaSAkinobu Mita  *
727df642ceaSAkinobu Mita  * Returns the number of copied bytes.
728df642ceaSAkinobu Mita  *
729df642ceaSAkinobu Mita  **/
730df642ceaSAkinobu Mita size_t sg_pcopy_from_buffer(struct scatterlist *sgl, unsigned int nents,
7312a1bf8f9SDave Gordon 			    const void *buf, size_t buflen, off_t skip)
732df642ceaSAkinobu Mita {
7332a1bf8f9SDave Gordon 	return sg_copy_buffer(sgl, nents, (void *)buf, buflen, skip, false);
734df642ceaSAkinobu Mita }
735df642ceaSAkinobu Mita EXPORT_SYMBOL(sg_pcopy_from_buffer);
736df642ceaSAkinobu Mita 
737df642ceaSAkinobu Mita /**
738df642ceaSAkinobu Mita  * sg_pcopy_to_buffer - Copy from an SG list to a linear buffer
739df642ceaSAkinobu Mita  * @sgl:		 The SG list
740df642ceaSAkinobu Mita  * @nents:		 Number of SG entries
741df642ceaSAkinobu Mita  * @buf:		 Where to copy to
742df642ceaSAkinobu Mita  * @buflen:		 The number of bytes to copy
7434dc7daf8SDave Gordon  * @skip:		 Number of bytes to skip before copying
744df642ceaSAkinobu Mita  *
745df642ceaSAkinobu Mita  * Returns the number of copied bytes.
746df642ceaSAkinobu Mita  *
747df642ceaSAkinobu Mita  **/
748df642ceaSAkinobu Mita size_t sg_pcopy_to_buffer(struct scatterlist *sgl, unsigned int nents,
749df642ceaSAkinobu Mita 			  void *buf, size_t buflen, off_t skip)
750df642ceaSAkinobu Mita {
751df642ceaSAkinobu Mita 	return sg_copy_buffer(sgl, nents, buf, buflen, skip, true);
752df642ceaSAkinobu Mita }
753df642ceaSAkinobu Mita EXPORT_SYMBOL(sg_pcopy_to_buffer);
7540945e569SJohannes Thumshirn 
7550945e569SJohannes Thumshirn /**
7560945e569SJohannes Thumshirn  * sg_zero_buffer - Zero-out a part of a SG list
7570945e569SJohannes Thumshirn  * @sgl:		 The SG list
7580945e569SJohannes Thumshirn  * @nents:		 Number of SG entries
7590945e569SJohannes Thumshirn  * @buflen:		 The number of bytes to zero out
7600945e569SJohannes Thumshirn  * @skip:		 Number of bytes to skip before zeroing
7610945e569SJohannes Thumshirn  *
7620945e569SJohannes Thumshirn  * Returns the number of bytes zeroed.
7630945e569SJohannes Thumshirn  **/
7640945e569SJohannes Thumshirn size_t sg_zero_buffer(struct scatterlist *sgl, unsigned int nents,
7650945e569SJohannes Thumshirn 		       size_t buflen, off_t skip)
7660945e569SJohannes Thumshirn {
7670945e569SJohannes Thumshirn 	unsigned int offset = 0;
7680945e569SJohannes Thumshirn 	struct sg_mapping_iter miter;
7690945e569SJohannes Thumshirn 	unsigned int sg_flags = SG_MITER_ATOMIC | SG_MITER_TO_SG;
7700945e569SJohannes Thumshirn 
7710945e569SJohannes Thumshirn 	sg_miter_start(&miter, sgl, nents, sg_flags);
7720945e569SJohannes Thumshirn 
7730945e569SJohannes Thumshirn 	if (!sg_miter_skip(&miter, skip))
7740945e569SJohannes Thumshirn 		return false;
7750945e569SJohannes Thumshirn 
7760945e569SJohannes Thumshirn 	while (offset < buflen && sg_miter_next(&miter)) {
7770945e569SJohannes Thumshirn 		unsigned int len;
7780945e569SJohannes Thumshirn 
7790945e569SJohannes Thumshirn 		len = min(miter.length, buflen - offset);
7800945e569SJohannes Thumshirn 		memset(miter.addr, 0, len);
7810945e569SJohannes Thumshirn 
7820945e569SJohannes Thumshirn 		offset += len;
7830945e569SJohannes Thumshirn 	}
7840945e569SJohannes Thumshirn 
7850945e569SJohannes Thumshirn 	sg_miter_stop(&miter);
7860945e569SJohannes Thumshirn 	return offset;
7870945e569SJohannes Thumshirn }
7880945e569SJohannes Thumshirn EXPORT_SYMBOL(sg_zero_buffer);
789