From 0869b668dd664403d6aca1cdfa97971128ec7f05 Mon Sep 17 00:00:00 2001 From: GUO Zihua Date: Fri, 2 Feb 2024 08:06:34 +0000 Subject: [PATCH] crypto: kabi: Removed unnecessary KABI reservation hulk inclusion category: bugfix bugzilla: https://gitee.com/openeuler/kernel/issues/I90IIQ -------------------------------- Remove KABI reservation for crypto_rng as it contains only one member and is very unlikely to have new members. Fixes: 16257e430641 ("crypto: kabi: KABI reservation for crypto") Signed-off-by: GUO Zihua --- include/crypto/rng.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/crypto/rng.h b/include/crypto/rng.h index 9f6c4c880277..c4f85ccda081 100644 --- a/include/crypto/rng.h +++ b/include/crypto/rng.h @@ -76,8 +76,6 @@ struct rng_alg { }; struct crypto_rng { - KABI_RESERVE(1) - KABI_RESERVE(2) struct crypto_tfm base; }; -- Gitee