diff options
author | Daniel Mack <github@zonque.org> | 2015-07-01 10:34:40 -0400 |
---|---|---|
committer | Daniel Mack <github@zonque.org> | 2015-07-01 10:34:40 -0400 |
commit | e15b0388654518a138400de8da6cf7c5ce5d8fad (patch) | |
tree | c2829cd8c813bca8ed9a4d935317c3ca8c20d136 | |
parent | 0b2ec8a3bfdd6118b3b4958d236ee203ad420f28 (diff) | |
parent | 4e5356169ac2ef7f22e5a101d86009f706b0ff7b (diff) |
Merge pull request #460 from xnox/bootchart-warning
bootchart: do not report warning when disk is missing model.
-rw-r--r-- | src/bootchart/svg.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/bootchart/svg.c b/src/bootchart/svg.c index 0ac1f55a91..a7ef653d5d 100644 --- a/src/bootchart/svg.c +++ b/src/bootchart/svg.c @@ -172,7 +172,7 @@ static int svg_title(FILE *of, const char *build, int pscount, double log_start, r = read_one_line_file(filename, &model); if (r < 0) - log_warning("Error reading disk model for %s: %m\n", rootbdev); + log_info("Error reading disk model for %s: %m\n", rootbdev); } /* various utsname parameters */ @@ -208,7 +208,8 @@ static int svg_title(FILE *of, const char *build, int pscount, double log_start, fprintf(of, "<text class=\"t2\" x=\"20\" y=\"50\">System: %s %s %s %s</text>\n", uts.sysname, uts.release, uts.version, uts.machine); fprintf(of, "<text class=\"t2\" x=\"20\" y=\"65\">CPU: %s</text>\n", cpu); - fprintf(of, "<text class=\"t2\" x=\"20\" y=\"80\">Disk: %s</text>\n", model); + if (model) + fprintf(of, "<text class=\"t2\" x=\"20\" y=\"80\">Disk: %s</text>\n", model); fprintf(of, "<text class=\"t2\" x=\"20\" y=\"95\">Boot options: %s</text>\n", cmdline); fprintf(of, "<text class=\"t2\" x=\"20\" y=\"110\">Build: %s</text>\n", build); fprintf(of, "<text class=\"t2\" x=\"20\" y=\"125\">Log start time: %.03fs</text>\n", log_start); |