diff options
-rw-r--r-- | crypto/scatterwalk.c | 22 | ||||
-rw-r--r-- | crypto/scatterwalk.h | 3 |
2 files changed, 25 insertions, 0 deletions
diff --git a/crypto/scatterwalk.c b/crypto/scatterwalk.c index 81afd1790a1d..e93a8f6f35d4 100644 --- a/crypto/scatterwalk.c +++ b/crypto/scatterwalk.c | |||
@@ -107,3 +107,25 @@ void scatterwalk_copychunks(void *buf, struct scatter_walk *walk, | |||
107 | } | 107 | } |
108 | } | 108 | } |
109 | EXPORT_SYMBOL_GPL(scatterwalk_copychunks); | 109 | EXPORT_SYMBOL_GPL(scatterwalk_copychunks); |
110 | |||
111 | void scatterwalk_map_and_copy(void *buf, struct scatterlist *sg, | ||
112 | unsigned int start, unsigned int nbytes, int out) | ||
113 | { | ||
114 | struct scatter_walk walk; | ||
115 | unsigned int offset = 0; | ||
116 | |||
117 | for (;;) { | ||
118 | scatterwalk_start(&walk, sg); | ||
119 | |||
120 | if (start < offset + sg->length) | ||
121 | break; | ||
122 | |||
123 | offset += sg->length; | ||
124 | sg = sg_next(sg); | ||
125 | } | ||
126 | |||
127 | scatterwalk_advance(&walk, start - offset); | ||
128 | scatterwalk_copychunks(buf, &walk, nbytes, out); | ||
129 | scatterwalk_done(&walk, out, 0); | ||
130 | } | ||
131 | EXPORT_SYMBOL_GPL(scatterwalk_map_and_copy); | ||
diff --git a/crypto/scatterwalk.h b/crypto/scatterwalk.h index f1592cc2d0f4..500a220ad908 100644 --- a/crypto/scatterwalk.h +++ b/crypto/scatterwalk.h | |||
@@ -74,4 +74,7 @@ void scatterwalk_copychunks(void *buf, struct scatter_walk *walk, | |||
74 | void *scatterwalk_map(struct scatter_walk *walk, int out); | 74 | void *scatterwalk_map(struct scatter_walk *walk, int out); |
75 | void scatterwalk_done(struct scatter_walk *walk, int out, int more); | 75 | void scatterwalk_done(struct scatter_walk *walk, int out, int more); |
76 | 76 | ||
77 | void scatterwalk_map_and_copy(void *buf, struct scatterlist *sg, | ||
78 | unsigned int start, unsigned int nbytes, int out); | ||
79 | |||
77 | #endif /* _CRYPTO_SCATTERWALK_H */ | 80 | #endif /* _CRYPTO_SCATTERWALK_H */ |