[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[dm-devel] [PATCH]: scsi_dh: Print a warning message when ignoring arguments for hardwar handlers
- From: Chandra Seetharaman <sekharan us ibm com>
- To: Linus Torvalds <torvalds linux-foundation org>
- Cc: device-mapper development <dm-devel redhat com>, Mike Christie <mchristi redhat com>, Alasdair G Kergon <agk redhat com>
- Subject: [dm-devel] [PATCH]: scsi_dh: Print a warning message when ignoring arguments for hardwar handlers
- Date: Thu, 21 Aug 2008 23:55:37 -0700
Instead of silently ignoring the arguments specified along with the
hardware handler, print some warning message to inform the user that the
arguments are dropped.
Signed-off-by: Chandra Seetharaman <sekharan us ibm com>
---
Index: linux-2.6.27-rc3/drivers/md/dm-mpath.c
===================================================================
--- linux-2.6.27-rc3.orig/drivers/md/dm-mpath.c
+++ linux-2.6.27-rc3/drivers/md/dm-mpath.c
@@ -685,6 +685,10 @@ static int parse_hw_handler(struct arg_s
m->hw_handler_name = NULL;
return -EINVAL;
}
+
+ if (hw_argc > 1)
+ DMWARN("Ignoring arguments for hardware handler \"%s\"",
+ m->hw_handler_name);
consume(as, hw_argc - 1);
return 0;
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]