summaryrefslogtreecommitdiffstats
path: root/drivers/staging/lustre
diff options
context:
space:
mode:
authorAmir Shehata <amir.shehata@intel.com>2016-04-27 21:37:11 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-04-28 21:53:18 -0700
commitc4ab96e7ca43461dc535b0d22fd578e2c0a16aab (patch)
tree67b66bfd51d6fe20e00a2104d3d426dbaa4a0bdf /drivers/staging/lustre
parentb828b9cac7479b2fd38a6c47143abf281e487e7d (diff)
downloadop-kernel-dev-c4ab96e7ca43461dc535b0d22fd578e2c0a16aab.zip
op-kernel-dev-c4ab96e7ca43461dc535b0d22fd578e2c0a16aab.tar.gz
staging: lustre: obd: add newline for dumped config record
The function class_config_parse_rec() parses the llog record and places it into a buffer to be returned. That buffer needs to end with a newline which is currently missing. Signed-off-by: Amir Shehata <amir.shehata@intel.com> Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-2149 Reviewed-on: http://review.whamcloud.com/4254 Reviewed-by: Alex Zhuravlev <alexey.zhuravlev@intel.com> Reviewed-by: Andreas Dilger <andreas.dilger@intel.com> Signed-off-by: James Simmons <jsimmons@infradead.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/lustre')
-rw-r--r--drivers/staging/lustre/lustre/obdclass/obd_config.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/lustre/lustre/obdclass/obd_config.c b/drivers/staging/lustre/lustre/obdclass/obd_config.c
index 0afbc01..a3a2abc 100644
--- a/drivers/staging/lustre/lustre/obdclass/obd_config.c
+++ b/drivers/staging/lustre/lustre/obdclass/obd_config.c
@@ -1349,6 +1349,7 @@ static int class_config_parse_rec(struct llog_rec_hdr *rec, char *buf,
lustre_cfg_string(lcfg, i));
}
}
+ ptr += snprintf(ptr, end - ptr, "\n");
/* return consumed bytes */
rc = ptr - buf;
return rc;
OpenPOWER on IntegriCloud