diff options
author | Sebastian Andrzej Siewior <bigeasy@linutronix.de> | 2011-11-23 14:53:17 -0500 |
---|---|---|
committer | Nicholas Bellinger <nab@linux-iscsi.org> | 2011-12-14 06:27:23 -0500 |
commit | 90c161b643d9531d271110876a14e68b49172d8a (patch) | |
tree | 2427163f641294c15e1fc881993994f0ebe26d8b /drivers/target/target_core_iblock.c | |
parent | 1880807adb21d741f08b747956c90bf4a6f95fbf (diff) |
target: use \n as a separator for configuration
The command
| echo rd_pages=32768 > ramdisk/control
Does not work because it writes "rd_pages=32768\n" and the parser which
matches for "rd_pages=%d" does not recognize it due to the \n. One way
of fixing this would be using "echo -n" instead.
This patch adds \n to the list of separators so we don't have to use the
-n argument which I find is more convinient.
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Diffstat (limited to 'drivers/target/target_core_iblock.c')
-rw-r--r-- | drivers/target/target_core_iblock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/target/target_core_iblock.c b/drivers/target/target_core_iblock.c index feebbfe6cbd0..3c1a7aa658a2 100644 --- a/drivers/target/target_core_iblock.c +++ b/drivers/target/target_core_iblock.c | |||
@@ -390,7 +390,7 @@ static ssize_t iblock_set_configfs_dev_params(struct se_hba *hba, | |||
390 | 390 | ||
391 | orig = opts; | 391 | orig = opts; |
392 | 392 | ||
393 | while ((ptr = strsep(&opts, ",")) != NULL) { | 393 | while ((ptr = strsep(&opts, ",\n")) != NULL) { |
394 | if (!*ptr) | 394 | if (!*ptr) |
395 | continue; | 395 | continue; |
396 | 396 | ||