Skip to content

Commit

Permalink
[CRYPTO] scatterwalk: Use generic scatterlist chaining
Browse files Browse the repository at this point in the history
This patch converts the crypto scatterwalk code to use the generic
scatterlist chaining rather the version specific to crypto.

Signed-off-by: Herbert Xu <[email protected]>
  • Loading branch information
herbertx committed Jan 10, 2008
1 parent 102d49d commit 468577a
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 9 deletions.
3 changes: 1 addition & 2 deletions crypto/digest.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
#include <linux/scatterlist.h>

#include "internal.h"
#include "scatterwalk.h"

static int init(struct hash_desc *desc)
{
Expand Down Expand Up @@ -77,7 +76,7 @@ static int update2(struct hash_desc *desc,

if (!nbytes)
break;
sg = scatterwalk_sg_next(sg);
sg = sg_next(sg);
}

return 0;
Expand Down
2 changes: 1 addition & 1 deletion crypto/hmac.c
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ static int hmac_digest(struct hash_desc *pdesc, struct scatterlist *sg,

sg_init_table(sg1, 2);
sg_set_buf(sg1, ipad, bs);
sg_set_page(&sg1[1], (void *) sg, 0, 0);
sg_chain(sg1, 2, sg);

sg_init_table(sg2, 1);
sg_set_buf(sg2, opad, bs + ds);
Expand Down
2 changes: 1 addition & 1 deletion crypto/scatterwalk.c
Original file line number Diff line number Diff line change
Expand Up @@ -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, scatterwalk_sg_next(walk->sg));
scatterwalk_start(walk, sg_next(walk->sg));
}
}

Expand Down
5 changes: 0 additions & 5 deletions crypto/scatterwalk.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,6 @@

#include "internal.h"

static inline struct scatterlist *scatterwalk_sg_next(struct scatterlist *sg)
{
return (++sg)->length ? sg : (void *) sg_page(sg);
}

static inline unsigned long scatterwalk_samebuf(struct scatter_walk *walk_in,
struct scatter_walk *walk_out)
{
Expand Down

0 comments on commit 468577a

Please sign in to comment.