diff options
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/crypto.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/crypto.h b/include/linux/crypto.h index 85f73c381913..40a6330abc8d 100644 --- a/include/linux/crypto.h +++ b/include/linux/crypto.h | |||
@@ -35,6 +35,8 @@ | |||
35 | #define CRYPTO_ALG_TYPE_COMPRESS 0x00000004 | 35 | #define CRYPTO_ALG_TYPE_COMPRESS 0x00000004 |
36 | 36 | ||
37 | #define CRYPTO_ALG_LARVAL 0x00000010 | 37 | #define CRYPTO_ALG_LARVAL 0x00000010 |
38 | #define CRYPTO_ALG_DEAD 0x00000020 | ||
39 | #define CRYPTO_ALG_DYING 0x00000040 | ||
38 | 40 | ||
39 | /* | 41 | /* |
40 | * Transform masks and values (for crt_flags). | 42 | * Transform masks and values (for crt_flags). |
@@ -145,6 +147,8 @@ struct compress_alg { | |||
145 | 147 | ||
146 | struct crypto_alg { | 148 | struct crypto_alg { |
147 | struct list_head cra_list; | 149 | struct list_head cra_list; |
150 | struct list_head cra_users; | ||
151 | |||
148 | u32 cra_flags; | 152 | u32 cra_flags; |
149 | unsigned int cra_blocksize; | 153 | unsigned int cra_blocksize; |
150 | unsigned int cra_ctxsize; | 154 | unsigned int cra_ctxsize; |