summaryrefslogtreecommitdiffstats
path: root/target/linux/generic/patches-2.6.35/260-crypto_optional_tests.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-04-17 18:32:21 +0000
committerFelix Fietkau <nbd@openwrt.org>2011-04-17 18:32:21 +0000
commit5a0df036b0c176df9f61fe45c625951c779c59c2 (patch)
treeea61ce65d37cefa8c76025d53028842fcef84e28 /target/linux/generic/patches-2.6.35/260-crypto_optional_tests.patch
parenta621c3c24a8050f305262903e78a26261a49e3d0 (diff)
downloadmaster-31e0f0ae-5a0df036b0c176df9f61fe45c625951c779c59c2.tar.gz
master-31e0f0ae-5a0df036b0c176df9f61fe45c625951c779c59c2.tar.bz2
master-31e0f0ae-5a0df036b0c176df9f61fe45c625951c779c59c2.zip
Remove 2.6.35. It's not used anymore.
Signed-off-by: Jochen Friedrich <jochen@scram.de> SVN-Revision: 26704
Diffstat (limited to 'target/linux/generic/patches-2.6.35/260-crypto_optional_tests.patch')
-rw-r--r--target/linux/generic/patches-2.6.35/260-crypto_optional_tests.patch64
1 files changed, 0 insertions, 64 deletions
diff --git a/target/linux/generic/patches-2.6.35/260-crypto_optional_tests.patch b/target/linux/generic/patches-2.6.35/260-crypto_optional_tests.patch
deleted file mode 100644
index 9273a0f554..0000000000
--- a/target/linux/generic/patches-2.6.35/260-crypto_optional_tests.patch
+++ /dev/null
@@ -1,64 +0,0 @@
---- a/crypto/Kconfig
-+++ b/crypto/Kconfig
-@@ -104,6 +104,10 @@ config CRYPTO_MANAGER_TESTS
- Run cryptomanager's tests for the new crypto algorithms being
- registered.
-
-+config CRYPTO_MANAGER_NO_TESTS
-+ bool "Disable internal testsuite to save space"
-+ depends on CRYPTO_MANAGER
-+
- config CRYPTO_GF128MUL
- tristate "GF(2^128) multiplication functions (EXPERIMENTAL)"
- depends on EXPERIMENTAL
---- a/crypto/testmgr.c
-+++ b/crypto/testmgr.c
-@@ -58,6 +58,8 @@ int alg_test(const char *driver, const c
- #define ENCRYPT 1
- #define DECRYPT 0
-
-+#ifndef CONFIG_CRYPTO_MANAGER_NO_TESTS
-+
- struct tcrypt_result {
- struct completion completion;
- int err;
-@@ -2484,8 +2486,11 @@ static int alg_find_test(const char *alg
- return -1;
- }
-
-+#endif /* CONFIG_CRYPTO_MANAGER_NO_TESTS */
-+
- int alg_test(const char *driver, const char *alg, u32 type, u32 mask)
- {
-+#ifndef CONFIG_CRYPTO_MANAGER_NO_TESTS
- int i;
- int j;
- int rc;
-@@ -2540,6 +2545,9 @@ notest:
- return 0;
- non_fips_alg:
- return -EINVAL;
-+#else /* CONFIG_CRYPTO_MANAGER_NO_TESTS */
-+ return 0;
-+#endif /* CONFIG_CRYPTO_MANAGER_NO_TESTS */
- }
-
- #endif /* CONFIG_CRYPTO_MANAGER_TESTS */
---- a/crypto/testmgr.h
-+++ b/crypto/testmgr.h
-@@ -20,6 +20,8 @@
-
- #include <crypto/compress.h>
-
-+#ifndef CONFIG_CRYPTO_MANAGER_NO_TESTS
-+
- #define MAX_DIGEST_SIZE 64
- #define MAX_TAP 8
-
-@@ -9608,4 +9610,6 @@ static struct hash_testvec crc32c_tv_tem
- },
- };
-
-+#endif /* CONFIG_CRYPTO_MANAGER_NO_TESTS */
-+
- #endif /* _CRYPTO_TESTMGR_H */