summaryrefslogtreecommitdiffstats
path: root/crypto-backtrace-fix.patch
diff options
context:
space:
mode:
Diffstat (limited to 'crypto-backtrace-fix.patch')
-rw-r--r--crypto-backtrace-fix.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/crypto-backtrace-fix.patch b/crypto-backtrace-fix.patch
deleted file mode 100644
index 808516dc..00000000
--- a/crypto-backtrace-fix.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Bugzilla: 1038472
-Upstream-status: test fix for 3.13 issue
-
-diff --git a/include/crypto/scatterwalk.h b/include/crypto/scatterwalk.h
-index 64ebede..6a626a5 100644
---- a/include/crypto/scatterwalk.h
-+++ b/include/crypto/scatterwalk.h
-@@ -44,7 +44,7 @@ static inline struct scatterlist *scatterwalk_sg_next(struct scatterlist *sg)
- if (sg_is_last(sg))
- return NULL;
-
-- return (++sg)->length ? sg : (void *)sg_page(sg);
-+ return (++sg)->length ? sg : sg_chain_ptr(sg);
- }
-
- static inline void scatterwalk_crypto_chain(struct scatterlist *head,