[dm-devel] [PATCH] dm-mpath: use DM_MAPIO_SUBMITTED instead of 0 in process_queued_bios

Wang Sheng-Hui shhuiw at foxmail.com
Sat Mar 10 02:18:55 UTC 2018


Use the macro DM_MAPIO_SUBMITTED instead of magic number 0
in dm-mpath.c/process_queued_bios.

Signed-off-by: Wang Sheng-Hui <shhuiw at foxmail.com>
---
 drivers/md/dm-mpath.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/md/dm-mpath.c b/drivers/md/dm-mpath.c
index 7d3e572072f5..fae0b3b810d3 100644
--- a/drivers/md/dm-mpath.c
+++ b/drivers/md/dm-mpath.c
@@ -721,7 +721,7 @@ static void process_queued_bios(struct work_struct *work)
 		case DM_MAPIO_REMAPPED:
 			generic_make_request(bio);
 			break;
-		case 0:
+		case DM_MAPIO_SUBMITTED:
 			break;
 		default:
 			WARN_ONCE(true, "__multipath_map_bio() returned %d\n", r);
-- 
2.11.0






More information about the dm-devel mailing list