[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250226080410.10433-1-sunk67188@gmail.com>
Date: Wed, 26 Feb 2025 16:04:09 +0800
From: Sun YangKai <sunk67188@...il.com>
To: nphamcs@...il.com
Cc: Sun YangKai <sunk67188@...il.com>,
Johannes Weiner <hannes@...xchg.org>,
Yosry Ahmed <yosry.ahmed@...ux.dev>,
Chengming Zhou <chengming.zhou@...ux.dev>,
Andrew Morton <akpm@...ux-foundation.org>,
linux-mm@...ck.org (open list:ZSWAP COMPRESSED SWAP CACHING),
linux-kernel@...r.kernel.org (open list)
Subject: [PATCH] [fix] mm: zswap: use ATOMIC_LONG_INIT to initialize zswap_stored_pages
This is currently the only atomic_long_t variable initialized by
ATOMIC_INIT macro found in the kernel by using
`grep -r atomic_long_t | grep ATOMIC_INIT`
Signed-off-by: Sun YangKai <sunk67188@...il.com>
---
mm/zswap.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mm/zswap.c b/mm/zswap.c
index ac9d299e7d0c..23365e76a3ce 100644
--- a/mm/zswap.c
+++ b/mm/zswap.c
@@ -43,7 +43,7 @@
* statistics
**********************************/
/* The number of compressed pages currently stored in zswap */
-atomic_long_t zswap_stored_pages = ATOMIC_INIT(0);
+atomic_long_t zswap_stored_pages = ATOMIC_LONG_INIT(0);
/*
* The statistics below are not protected from concurrent access for
--
2.48.1
Powered by blists - more mailing lists