[PATCH] dm vdo: add "funnel-" filename prefix to funnel-queue based sources

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



From: Mike Snitzer <snitzer@xxxxxxxxxx>

Reviewed-by: Chung Chung <cchung@xxxxxxxxxx>
Signed-off-by: Mike Snitzer <snitzer@xxxxxxxxxx>
Signed-off-by: Matthew Sakai <msakai@xxxxxxxxxx>
---
 drivers/md/dm-vdo/dump.c                                     | 2 +-
 drivers/md/dm-vdo/flush.h                                    | 2 +-
 drivers/md/dm-vdo/{request-queue.c => funnel-requestqueue.c} | 2 +-
 drivers/md/dm-vdo/{request-queue.h => funnel-requestqueue.h} | 0
 drivers/md/dm-vdo/{work-queue.c => funnel-workqueue.c}       | 2 +-
 drivers/md/dm-vdo/{work-queue.h => funnel-workqueue.h}       | 0
 drivers/md/dm-vdo/index-session.c                            | 2 +-
 drivers/md/dm-vdo/index.c                                    | 2 +-
 drivers/md/dm-vdo/vdo.c                                      | 2 +-
 drivers/md/dm-vdo/vdo.h                                      | 2 +-
 10 files changed, 8 insertions(+), 8 deletions(-)
 rename drivers/md/dm-vdo/{request-queue.c => funnel-requestqueue.c} (99%)
 rename drivers/md/dm-vdo/{request-queue.h => funnel-requestqueue.h} (100%)
 rename drivers/md/dm-vdo/{work-queue.c => funnel-workqueue.c} (99%)
 rename drivers/md/dm-vdo/{work-queue.h => funnel-workqueue.h} (100%)

diff --git a/drivers/md/dm-vdo/dump.c b/drivers/md/dm-vdo/dump.c
index d50db3f7a14d..97b1bdfa3574 100644
--- a/drivers/md/dm-vdo/dump.c
+++ b/drivers/md/dm-vdo/dump.c
@@ -13,11 +13,11 @@
 #include "constants.h"
 #include "data-vio.h"
 #include "dedupe.h"
+#include "funnel-workqueue.h"
 #include "io-submitter.h"
 #include "logger.h"
 #include "types.h"
 #include "vdo.h"
-#include "work-queue.h"
 
 enum dump_options {
 	/* Work queues */
diff --git a/drivers/md/dm-vdo/flush.h b/drivers/md/dm-vdo/flush.h
index f36231c493c5..4d40908462bb 100644
--- a/drivers/md/dm-vdo/flush.h
+++ b/drivers/md/dm-vdo/flush.h
@@ -6,10 +6,10 @@
 #ifndef VDO_FLUSH_H
 #define VDO_FLUSH_H
 
+#include "funnel-workqueue.h"
 #include "types.h"
 #include "vio.h"
 #include "wait-queue.h"
-#include "work-queue.h"
 
 /* A marker for tracking which journal entries are affected by a flush request. */
 struct vdo_flush {
diff --git a/drivers/md/dm-vdo/request-queue.c b/drivers/md/dm-vdo/funnel-requestqueue.c
similarity index 99%
rename from drivers/md/dm-vdo/request-queue.c
rename to drivers/md/dm-vdo/funnel-requestqueue.c
index 1c60b09027a8..18ac5ee6cded 100644
--- a/drivers/md/dm-vdo/request-queue.c
+++ b/drivers/md/dm-vdo/funnel-requestqueue.c
@@ -3,7 +3,7 @@
  * Copyright 2023 Red Hat
  */
 
-#include "request-queue.h"
+#include "funnel-requestqueue.h"
 
 #include <linux/atomic.h>
 #include <linux/compiler.h>
diff --git a/drivers/md/dm-vdo/request-queue.h b/drivers/md/dm-vdo/funnel-requestqueue.h
similarity index 100%
rename from drivers/md/dm-vdo/request-queue.h
rename to drivers/md/dm-vdo/funnel-requestqueue.h
diff --git a/drivers/md/dm-vdo/work-queue.c b/drivers/md/dm-vdo/funnel-workqueue.c
similarity index 99%
rename from drivers/md/dm-vdo/work-queue.c
rename to drivers/md/dm-vdo/funnel-workqueue.c
index 6adf07fc74e1..119f813ea4cb 100644
--- a/drivers/md/dm-vdo/work-queue.c
+++ b/drivers/md/dm-vdo/funnel-workqueue.c
@@ -3,7 +3,7 @@
  * Copyright 2023 Red Hat
  */
 
-#include "work-queue.h"
+#include "funnel-workqueue.h"
 
 #include <linux/atomic.h>
 #include <linux/cache.h>
diff --git a/drivers/md/dm-vdo/work-queue.h b/drivers/md/dm-vdo/funnel-workqueue.h
similarity index 100%
rename from drivers/md/dm-vdo/work-queue.h
rename to drivers/md/dm-vdo/funnel-workqueue.h
diff --git a/drivers/md/dm-vdo/index-session.c b/drivers/md/dm-vdo/index-session.c
index 052ba093fbf1..5c14b0917c4d 100644
--- a/drivers/md/dm-vdo/index-session.c
+++ b/drivers/md/dm-vdo/index-session.c
@@ -7,11 +7,11 @@
 
 #include <linux/atomic.h>
 
+#include "funnel-requestqueue.h"
 #include "index.h"
 #include "index-layout.h"
 #include "logger.h"
 #include "memory-alloc.h"
-#include "request-queue.h"
 #include "time-utils.h"
 
 /*
diff --git a/drivers/md/dm-vdo/index.c b/drivers/md/dm-vdo/index.c
index e8859cee2b93..89ed4c0251f2 100644
--- a/drivers/md/dm-vdo/index.c
+++ b/drivers/md/dm-vdo/index.c
@@ -6,10 +6,10 @@
 
 #include "index.h"
 
+#include "funnel-requestqueue.h"
 #include "hash-utils.h"
 #include "logger.h"
 #include "memory-alloc.h"
-#include "request-queue.h"
 #include "sparse-cache.h"
 
 static const u64 NO_LAST_SAVE = U64_MAX;
diff --git a/drivers/md/dm-vdo/vdo.c b/drivers/md/dm-vdo/vdo.c
index 72cbe6921893..5089a53516f8 100644
--- a/drivers/md/dm-vdo/vdo.c
+++ b/drivers/md/dm-vdo/vdo.c
@@ -48,6 +48,7 @@
 #include "data-vio.h"
 #include "dedupe.h"
 #include "encodings.h"
+#include "funnel-workqueue.h"
 #include "io-submitter.h"
 #include "logical-zone.h"
 #include "packer.h"
@@ -58,7 +59,6 @@
 #include "statistics.h"
 #include "status-codes.h"
 #include "vio.h"
-#include "work-queue.h"
 
 
 enum { PARANOID_THREAD_CONSISTENCY_CHECKS = 0 };
diff --git a/drivers/md/dm-vdo/vdo.h b/drivers/md/dm-vdo/vdo.h
index a2caf54221c8..af540bce72da 100644
--- a/drivers/md/dm-vdo/vdo.h
+++ b/drivers/md/dm-vdo/vdo.h
@@ -16,13 +16,13 @@
 
 #include "admin-state.h"
 #include "encodings.h"
+#include "funnel-workqueue.h"
 #include "packer.h"
 #include "physical-zone.h"
 #include "statistics.h"
 #include "thread-registry.h"
 #include "types.h"
 #include "uds.h"
-#include "work-queue.h"
 
 enum notifier_state {
 	/** Notifications are allowed but not in progress */
-- 
2.40.0





[Index of Archives]     [DM Crypt]     [Fedora Desktop]     [ATA RAID]     [Fedora Marketing]     [Fedora Packaging]     [Fedora SELinux]     [Yosemite Discussion]     [KDE Users]     [Fedora Docs]

  Powered by Linux