lkml.org 
[lkml]   [2008]   [Jul]   [6]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[RFC] [PATCH] scatterlist: add iteration helper
Iteration over a sg list is not that trivial when you take into
account that memory pages might have to be mapped before being used.
Unfortunately, that means that some parts of the kernel restrict
themselves to directly accesible memory just to not have to deal with
the mess.

This patch adds a simple iterator system that allows any code to
easily traverse an sg list and not have to deal with all the details.
The caller provided callback will be invoked once for each chunk that
can be processed in one go.

Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
---

I'd like to use this to get highmem support into sdhci for 2.6.26, so if
you could have a look at this soon I'd appreciate it.

The only wart I see is the fact that "page" needs to be given to the caller
for the dcache stuff to work. Not a biggie, but it would be nice to get
rid off.

diff --git a/include/linux/scatterlist.h b/include/linux/scatterlist.h
index 71fc813..93411a1 100644
--- a/include/linux/scatterlist.h
+++ b/include/linux/scatterlist.h
@@ -13,6 +13,12 @@ struct sg_table {
unsigned int orig_nents; /* original size of list */
};

+struct sg_iterator {
+ struct scatterlist *sg; /* current entry */
+ unsigned int nents; /* number of remaining entries */
+ unsigned int offset; /* offset within sg */
+};
+
/*
* Notes on SG table design.
*
@@ -213,6 +219,12 @@ int __sg_alloc_table(struct sg_table *, unsigned int, unsigned int, gfp_t,
sg_alloc_fn *);
int sg_alloc_table(struct sg_table *, unsigned int, gfp_t);

+typedef size_t (sg_iter_fn)(void *, size_t, struct page *, void *);
+
+void sg_iter_init(struct sg_iterator *iter, struct scatterlist *sgl,
+ unsigned int nents);
+size_t sg_iterate(struct sg_iterator *iter, sg_iter_fn *fn, void *priv);
+
size_t sg_copy_from_buffer(struct scatterlist *sgl, unsigned int nents,
void *buf, size_t buflen);
size_t sg_copy_to_buffer(struct scatterlist *sgl, unsigned int nents,
diff --git a/lib/scatterlist.c b/lib/scatterlist.c
index b80c211..ea8c3a1 100644
--- a/lib/scatterlist.c
+++ b/lib/scatterlist.c
@@ -295,6 +295,117 @@ int sg_alloc_table(struct sg_table *table, unsigned int nents, gfp_t gfp_mask)
EXPORT_SYMBOL(sg_alloc_table);

/**
+ * sg_iter_init - Initialize/reset an sg iterator structure
+ * @iter: The sg iterator structure
+ * @sgl: The sg list to iterate over
+ * @nents: Number of sg entries
+ *
+ * Description:
+ * Sets up the internal state of the sg iterator structure
+ * to the beginning of the given sg list.
+ */
+void sg_iter_init(struct sg_iterator *iter, struct scatterlist *sgl,
+ unsigned int nents)
+{
+ memset(iter, 0, sizeof(struct sg_iterator));
+
+ iter->sg = sgl;
+ iter->nents = nents;
+ iter->offset = 0;
+}
+EXPORT_SYMBOL(sg_iter_init);
+
+/**
+ * sg_iterate - Process the next chunk of the sg list
+ * @iter: The sg iterator structure
+ * @fn: Function that will process the data
+ * @priv: Private data passed on to @fn@
+ *
+ * Description:
+ * The main worker of sg list iteration. Each invokation will
+ * call @fn@ with a chunk of data that has been mapped into
+ * kernel reachable virtual memory. The function must return
+ * the number of bytes processed, which may be less than the
+ * total size of the current chunk.
+ *
+ * It is not required that @fn@ and @priv@ are identical between
+ * each invokation, allowing separate processing of different
+ * sections of the sg list.
+ *
+ * The return value is that given by @fn@, or 0 if the end of
+ * the sg list has been reached.
+ */
+size_t sg_iterate(struct sg_iterator *iter, sg_iter_fn *fn, void *priv)
+{
+ struct page *page;
+ int n;
+ size_t buflen;
+ unsigned int sg_offset, sg_remain;
+
+ void *buf;
+ size_t result;
+
+ WARN_ON(!irqs_disabled());
+
+ if (iter->nents == 0)
+ return 0;
+
+ sg_offset = iter->sg->offset + iter->offset;
+ sg_remain = iter->sg->length - iter->offset;
+
+ n = sg_offset / PAGE_SIZE;
+ page = nth_page(sg_page(iter->sg), n);
+
+ buflen = PAGE_SIZE - (sg_offset % PAGE_SIZE);
+ if (buflen > sg_remain)
+ buflen = sg_remain;
+
+ buf = kmap_atomic(page, KM_BIO_SRC_IRQ);
+ result = fn(buf, buflen, page, priv);
+ kunmap_atomic(buf, KM_BIO_SRC_IRQ);
+
+ WARN_ON(result > buflen);
+
+ iter->offset += result;
+
+ if (iter->offset == iter->sg->length) {
+ iter->nents--;
+ if (iter->nents)
+ iter->sg = sg_next(iter->sg);
+ iter->offset = 0;
+ }
+
+ return result;
+}
+EXPORT_SYMBOL(sg_iterate);
+
+struct sg_copy_state {
+ void *buf;
+ size_t offset, buflen;
+ int to_buffer;
+};
+
+static size_t sg_copy_worker(void *buf, size_t buflen,
+ struct page *page, void *priv)
+{
+ struct sg_copy_state *st = priv;
+
+ if (buflen > (st->buflen - st->offset))
+ buflen = st->buflen - st->offset;
+
+ if (st->to_buffer)
+ memcpy(st->buf + st->offset, buf, buflen);
+ else {
+ memcpy(buf, st->buf + st->offset, buflen);
+ flush_kernel_dcache_page(page);
+ }
+
+ st->offset += buflen;
+
+ return buflen;
+}
+
+/**
* sg_copy_buffer - Copy data between a linear buffer and an SG list
* @sgl: The SG list
* @nents: Number of SG entries
@@ -309,56 +420,19 @@ EXPORT_SYMBOL(sg_alloc_table);
static size_t sg_copy_buffer(struct scatterlist *sgl, unsigned int nents,
void *buf, size_t buflen, int to_buffer)
{
- struct scatterlist *sg;
- size_t buf_off = 0;
- int i;
+ struct sg_iterator iter;
+ struct sg_copy_state state;

- WARN_ON(!irqs_disabled());
+ sg_iter_init(&iter, sgl, nents);

- for_each_sg(sgl, sg, nents, i) {
- struct page *page;
- int n = 0;
- unsigned int sg_off = sg->offset;
- unsigned int sg_copy = sg->length;
-
- if (sg_copy > buflen)
- sg_copy = buflen;
- buflen -= sg_copy;
-
- while (sg_copy > 0) {
- unsigned int page_copy;
- void *p;
-
- page_copy = PAGE_SIZE - sg_off;
- if (page_copy > sg_copy)
- page_copy = sg_copy;
-
- page = nth_page(sg_page(sg), n);
- p = kmap_atomic(page, KM_BIO_SRC_IRQ);
-
- if (to_buffer)
- memcpy(buf + buf_off, p + sg_off, page_copy);
- else {
- memcpy(p + sg_off, buf + buf_off, page_copy);
- flush_kernel_dcache_page(page);
- }
-
- kunmap_atomic(p, KM_BIO_SRC_IRQ);
-
- buf_off += page_copy;
- sg_off += page_copy;
- if (sg_off == PAGE_SIZE) {
- sg_off = 0;
- n++;
- }
- sg_copy -= page_copy;
- }
+ state.buf = buf;
+ state.offset = 0;
+ state.buflen = buflen;
+ state.to_buffer = to_buffer;

- if (!buflen)
- break;
- }
+ while (sg_iterate(&iter, sg_copy_worker, &state));

- return buf_off;
+ return state.offset;
}

/**

--
-- Pierre Ossman

WARNING: This correspondence is being monitored by the
Swedish government. Make sure your server uses encryption
for SMTP traffic and consider using PGP for end-to-end
encryption.
[unhandled content-type:application/pgp-signature]
\
 
 \ /
  Last update: 2008-07-06 22:51    [W:0.029 / U:0.168 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site