aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/md
diff options
context:
space:
mode:
authorMike Snitzer <snitzer@kernel.org>2024-02-07 11:12:44 -0500
committerMike Snitzer <snitzer@kernel.org>2024-02-20 13:43:18 -0500
commitfbbd7a25e8b568259e2b4125714308d765e70baf (patch)
tree31680059441f185e358af20d3a87ba986ac5f130 /drivers/md
parentb196d6bd30c39548436cbc7cfd40efcf4f006dfa (diff)
downloadlinux-fbbd7a25e8b568259e2b4125714308d765e70baf.tar.gz
dm vdo: use #define for NO_CHAPTER and NO_CHAPTER_INDEX_ENTRY
Avoids unconventional use of 'static const' and enum in headers. Signed-off-by: Mike Snitzer <snitzer@kernel.org> Signed-off-by: Matthew Sakai <msakai@redhat.com>
Diffstat (limited to 'drivers/md')
-rw-r--r--drivers/md/dm-vdo/chapter-index.h6
-rw-r--r--drivers/md/dm-vdo/volume-index.h2
2 files changed, 3 insertions, 5 deletions
diff --git a/drivers/md/dm-vdo/chapter-index.h b/drivers/md/dm-vdo/chapter-index.h
index e1bc7e31a2a53f..be8bf2b675b1c7 100644
--- a/drivers/md/dm-vdo/chapter-index.h
+++ b/drivers/md/dm-vdo/chapter-index.h
@@ -18,10 +18,8 @@
* is more efficient. Both types of chapter index are implemented with a delta index.
*/
-enum {
- /* The value returned when no entry is found in the chapter index. */
- NO_CHAPTER_INDEX_ENTRY = U16_MAX,
-};
+/* The value returned when no entry is found in the chapter index. */
+#define NO_CHAPTER_INDEX_ENTRY U16_MAX
struct open_chapter_index {
const struct index_geometry *geometry;
diff --git a/drivers/md/dm-vdo/volume-index.h b/drivers/md/dm-vdo/volume-index.h
index 0f08acf29435e7..537e9947cf4a3a 100644
--- a/drivers/md/dm-vdo/volume-index.h
+++ b/drivers/md/dm-vdo/volume-index.h
@@ -26,7 +26,7 @@
* managed with volume_index_record structures.
*/
-static const u64 NO_CHAPTER = U64_MAX;
+#define NO_CHAPTER U64_MAX
struct volume_index_stats {
/* Nanoseconds spent rebalancing */