summaryrefslogtreecommitdiffstats
path: root/crypto/scatterwalk.c
diff options
context:
space:
mode:
authorJens Axboe2007-05-09 08:58:32 +0200
committerJens Axboe2007-10-16 11:07:09 +0200
commitab83407e9ee35a4972457aa487be6a7a21afd715 (patch)
tree9429b3019046226083c85dd9867304aca1b0ca08 /crypto/scatterwalk.c
parentpktcdvd: don't rely on bio_init() preserving bio->bi_destructor (diff)
downloadkernel-qcow2-linux-ab83407e9ee35a4972457aa487be6a7a21afd715.tar.gz
kernel-qcow2-linux-ab83407e9ee35a4972457aa487be6a7a21afd715.tar.xz
kernel-qcow2-linux-ab83407e9ee35a4972457aa487be6a7a21afd715.zip
crypto: don't pollute the global namespace with sg_next()
It's a subsystem function, prefix it as such. Acked-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'crypto/scatterwalk.c')
-rw-r--r--crypto/scatterwalk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/scatterwalk.c b/crypto/scatterwalk.c
index 3052f6507f53..d6852c33cfb7 100644
--- a/crypto/scatterwalk.c
+++ b/crypto/scatterwalk.c
@@ -62,7 +62,7 @@ static void scatterwalk_pagedone(struct scatter_walk *walk, int out,
walk->offset += PAGE_SIZE - 1;
walk->offset &= PAGE_MASK;
if (walk->offset >= walk->sg->offset + walk->sg->length)
- scatterwalk_start(walk, sg_next(walk->sg));
+ scatterwalk_start(walk, scatterwalk_sg_next(walk->sg));
}
}