aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/siphash.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--include/linux/siphash.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/siphash.h b/include/linux/siphash.h
index 0cda61855d90..cce8a9acc76c 100644
--- a/include/linux/siphash.h
+++ b/include/linux/siphash.h
@@ -21,6 +21,8 @@ typedef struct {
u64 key[2];
} siphash_key_t;
+#define siphash_aligned_key_t siphash_key_t __aligned(16)
+
static inline bool siphash_key_is_zero(const siphash_key_t *key)
{
return !(key->key[0] | key->key[1]);