diff mbox

dm-mpath: use DM_MAPIO_SUBMITTED instead of 0 in process_queued_bios

Message ID 20180310021855.2707-1-shhuiw@foxmail.com (mailing list archive)
State Accepted, archived
Delegated to: Mike Snitzer
Headers show

Commit Message

Shenghui Wang March 10, 2018, 2:18 a.m. UTC
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@foxmail.com>
---
 drivers/md/dm-mpath.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

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);