summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 534ebbe)
raw | patch | inline | side by side (parent: 534ebbe)
author | Marc Fournier <marc.fournier@camptocamp.com> | |
Wed, 23 Jul 2014 21:38:19 +0000 (23:38 +0200) | ||
committer | Marc Fournier <marc.fournier@camptocamp.com> | |
Wed, 23 Jul 2014 21:38:19 +0000 (23:38 +0200) |
src/zfs_arc.c | patch | blob | history |
diff --git a/src/zfs_arc.c b/src/zfs_arc.c
index c3c9cf9552f91df788b054204d034ccad00f1de0..fb61dcc8f2229f42249541c49436b4eb3cf83a46 100644 (file)
--- a/src/zfs_arc.c
+++ b/src/zfs_arc.c
#if KERNEL_LINUX
long long int *llvalues = NULL;
- char FileContents[1024 * 10];
+ char file_contents[1024 * 10];
char *fields[3];
int numfields;
ssize_t len;
return (-1);
}
- len = read_file_contents (ZOL_ARCSTATS_FILE, FileContents, sizeof(FileContents));
+ len = read_file_contents (ZOL_ARCSTATS_FILE, file_contents, sizeof(file_contents));
if (len > 1)
{
int i=0;
- char *pnl = FileContents;
+ char *pnl = file_contents;
char *pnnl;
- FileContents[len] = '\0';
+ file_contents[len] = '\0';
while (pnl != NULL)
{
llvalues = malloc(sizeof(long long int) * i);
i = 0;
- pnl = FileContents;
+ pnl = file_contents;
while (pnl != NULL)
{
pnnl = strchr(pnl, '\n');
if (pnnl != NULL)
*pnnl = '\0';
-
+
numfields = strsplit (pnl, fields, 4);
if (numfields == 3)
{
}
if (ksp != NULL)
{
-
llist_destroy (ksp);
}
#endif