aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMaxim Levitsky <maximlevitsky@gmail.com>2012-09-27 06:45:28 -0400
committerJens Axboe <axboe@kernel.dk>2012-09-27 06:45:28 -0400
commit2e484610296b25f0a04b516bc144a00731d1d845 (patch)
treed45467ec0b7c2446652e685b270427183471a5ad /lib
parentc2b1ad800b66f62105a7fd250604d72e07202e66 (diff)
scatterlist: add sg_nents
Useful helper to know the number of entries in scatterlist. Signed-off-by: Maxim Levitsky <maximlevitsky@gmail.com> Cc: Alex Dubov <oakad@yahoo.com> Acked-by: Tejun Heo <tj@kernel.org> Cc: Jens Axboe <axboe@kernel.dk> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'lib')
-rw-r--r--lib/scatterlist.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/scatterlist.c b/lib/scatterlist.c
index fadae774a20c..1bf60efb5e02 100644
--- a/lib/scatterlist.c
+++ b/lib/scatterlist.c
@@ -39,6 +39,28 @@ struct scatterlist *sg_next(struct scatterlist *sg)
39EXPORT_SYMBOL(sg_next); 39EXPORT_SYMBOL(sg_next);
40 40
41/** 41/**
42 * sg_nents - return total count of entries in scatterlist
43 * @sg: The scatterlist
44 *
45 * Description:
46 * Allows to know how many entries are in sg, taking into acount
47 * chaining as well
48 *
49 **/
50int sg_nents(struct scatterlist *sg)
51{
52 int nents = 0;
53 while (sg) {
54 nents++;
55 sg = sg_next(sg);
56 }
57
58 return nents;
59}
60EXPORT_SYMBOL(sg_nents);
61
62
63/**
42 * sg_last - return the last scatterlist entry in a list 64 * sg_last - return the last scatterlist entry in a list
43 * @sgl: First entry in the scatterlist 65 * @sgl: First entry in the scatterlist
44 * @nents: Number of entries in the scatterlist 66 * @nents: Number of entries in the scatterlist