diff options
Diffstat (limited to 'include/crypto/scatterwalk.h')
| -rw-r--r-- | include/crypto/scatterwalk.h | 15 | 
1 files changed, 1 insertions, 14 deletions
| diff --git a/include/crypto/scatterwalk.h b/include/crypto/scatterwalk.h index 880e6be9e95e..a66c127a20ed 100644 --- a/include/crypto/scatterwalk.h +++ b/include/crypto/scatterwalk.h @@ -22,27 +22,14 @@  #include <linux/scatterlist.h>  static inline void scatterwalk_crypto_chain(struct scatterlist *head, -					    struct scatterlist *sg, -					    int chain, int num) +					    struct scatterlist *sg, int num)  { -	if (chain) { -		head->length += sg->length; -		sg = sg_next(sg); -	} -  	if (sg)  		sg_chain(head, num, sg);  	else  		sg_mark_end(head);  } -static inline unsigned long scatterwalk_samebuf(struct scatter_walk *walk_in, -						struct scatter_walk *walk_out) -{ -	return !(((sg_page(walk_in->sg) - sg_page(walk_out->sg)) << PAGE_SHIFT) + -		 (int)(walk_in->offset - walk_out->offset)); -} -  static inline unsigned int scatterwalk_pagelen(struct scatter_walk *walk)  {  	unsigned int len = walk->sg->offset + walk->sg->length - walk->offset; |