[PATCH] dm thin: make const array descs static

From: Colin Ian King
Date: Tue Oct 18 2022 - 11:48:22 EST


Don't populate the read-only const array ramp_base on the stack but
instead make it static. Add in a const to clean up checkpatch warning
too since the data and the pointer are const. Also makes the object
code a little smaller.

Signed-off-by: Colin Ian King <colin.i.king@xxxxxxxxx>
---
drivers/md/dm-thin.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/md/dm-thin.c b/drivers/md/dm-thin.c
index e76c96c760a9..d228177fdf35 100644
--- a/drivers/md/dm-thin.c
+++ b/drivers/md/dm-thin.c
@@ -293,7 +293,7 @@ static enum pool_mode get_pool_mode(struct pool *pool)

static void notify_of_pool_mode_change(struct pool *pool)
{
- const char *descs[] = {
+ static const char * const descs[] = {
"write",
"out-of-data-space",
"read-only",
--
2.37.3