[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1626347136-19740-1-git-send-email-zhenguo6858@gmail.com>
Date: Thu, 15 Jul 2021 19:05:36 +0800
From: Zhenguo Zhao <zhenguo6858@...il.com>
To: zhenguo6858@...il.com, keescook@...omium.org, anton@...msg.org,
ccross@...roid.com, tony.luck@...el.com
Cc: linux-kernel@...r.kernel.org
Subject: [PATCH] pstore/zone: Remove redundant check for total size
From: Zhenguo Zhao <Zhenguo.Zhao1@...soc.com>
The macro check_size contains size check for total size.
Signed-off-by: Zhenguo Zhao <Zhenguo.Zhao1@...soc.com>
---
fs/pstore/zone.c | 4 ----
1 file changed, 4 deletions(-)
diff --git a/fs/pstore/zone.c b/fs/pstore/zone.c
index 7c8f8fe..93a770c 100644
--- a/fs/pstore/zone.c
+++ b/fs/pstore/zone.c
@@ -1295,10 +1295,6 @@ int register_pstore_zone(struct pstore_zone_info *info)
int err = -EINVAL;
struct psz_context *cxt = &pstore_zone_cxt;
- if (info->total_size < 4096) {
- pr_warn("total_size must be >= 4096\n");
- return -EINVAL;
- }
if (info->total_size > SZ_128M) {
pr_warn("capping size to 128MiB\n");
info->total_size = SZ_128M;
--
1.9.1
Powered by blists - more mailing lists