summaryrefslogtreecommitdiffstats
path: root/collectors/proc.plugin/proc_mdstat.c
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-05-08 16:27:08 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-05-08 16:27:08 +0000
commit81581f9719bc56f01d5aa08952671d65fda9867a (patch)
tree0f5c6b6138bf169c23c9d24b1fc0a3521385cb18 /collectors/proc.plugin/proc_mdstat.c
parentReleasing debian version 1.38.1-1. (diff)
downloadnetdata-81581f9719bc56f01d5aa08952671d65fda9867a.tar.xz
netdata-81581f9719bc56f01d5aa08952671d65fda9867a.zip
Merging upstream version 1.39.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'collectors/proc.plugin/proc_mdstat.c')
-rw-r--r--collectors/proc.plugin/proc_mdstat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/collectors/proc.plugin/proc_mdstat.c b/collectors/proc.plugin/proc_mdstat.c
index d6e87fd2d..c3d1793cb 100644
--- a/collectors/proc.plugin/proc_mdstat.c
+++ b/collectors/proc.plugin/proc_mdstat.c
@@ -231,8 +231,8 @@ int do_proc_mdstat(int update_every, usec_t dt)
continue;
}
- raid->inuse_disks = str2ull(str_inuse);
- raid->total_disks = str2ull(str_total);
+ raid->inuse_disks = str2ull(str_inuse, NULL);
+ raid->total_disks = str2ull(str_total, NULL);
raid->failed_disks = raid->total_disks - raid->inuse_disks;
}
@@ -300,7 +300,7 @@ int do_proc_mdstat(int update_every, usec_t dt)
word += 6; // skip leading "speed="
if (likely(s > word))
- raid->speed = str2ull(word);
+ raid->speed = str2ull(word, NULL);
}
}