summaryrefslogtreecommitdiffstats
path: root/collectors/proc.plugin/sys_kernel_mm_ksm.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/sys_kernel_mm_ksm.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/sys_kernel_mm_ksm.c')
-rw-r--r--collectors/proc.plugin/sys_kernel_mm_ksm.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/collectors/proc.plugin/sys_kernel_mm_ksm.c b/collectors/proc.plugin/sys_kernel_mm_ksm.c
index e586d5554..45f1ac330 100644
--- a/collectors/proc.plugin/sys_kernel_mm_ksm.c
+++ b/collectors/proc.plugin/sys_kernel_mm_ksm.c
@@ -68,19 +68,19 @@ int do_sys_kernel_mm_ksm(int update_every, usec_t dt) {
ff_pages_shared = procfile_readall(ff_pages_shared);
if(unlikely(!ff_pages_shared)) return 0; // we return 0, so that we will retry to open it next time
- pages_shared = str2ull(procfile_lineword(ff_pages_shared, 0, 0));
+ pages_shared = str2ull(procfile_lineword(ff_pages_shared, 0, 0), NULL);
ff_pages_sharing = procfile_readall(ff_pages_sharing);
if(unlikely(!ff_pages_sharing)) return 0; // we return 0, so that we will retry to open it next time
- pages_sharing = str2ull(procfile_lineword(ff_pages_sharing, 0, 0));
+ pages_sharing = str2ull(procfile_lineword(ff_pages_sharing, 0, 0), NULL);
ff_pages_unshared = procfile_readall(ff_pages_unshared);
if(unlikely(!ff_pages_unshared)) return 0; // we return 0, so that we will retry to open it next time
- pages_unshared = str2ull(procfile_lineword(ff_pages_unshared, 0, 0));
+ pages_unshared = str2ull(procfile_lineword(ff_pages_unshared, 0, 0), NULL);
ff_pages_volatile = procfile_readall(ff_pages_volatile);
if(unlikely(!ff_pages_volatile)) return 0; // we return 0, so that we will retry to open it next time
- pages_volatile = str2ull(procfile_lineword(ff_pages_volatile, 0, 0));
+ pages_volatile = str2ull(procfile_lineword(ff_pages_volatile, 0, 0), NULL);
//ff_pages_to_scan = procfile_readall(ff_pages_to_scan);
//if(unlikely(!ff_pages_to_scan)) return 0; // we return 0, so that we will retry to open it next time