]> granicus.if.org Git - procps-ng/commitdiff
library: some minor miscellaeous improvements, 3rd gen
authorJim Warner <james.warner@comcast.net>
Wed, 13 Jul 2016 05:00:00 +0000 (00:00 -0500)
committerCraig Small <csmall@enc.com.au>
Sat, 16 Jul 2016 22:49:48 +0000 (08:49 +1000)
A collection of miscellaneous code and comment tweaks.

[ such changes will stop when desk checking ends too ]

Signed-off-by: Jim Warner <james.warner@comcast.net>
proc/meminfo.c
proc/pids.c
proc/slabinfo.c
proc/stat.c
proc/vmstat.c

index 0a7b40551d7f69d635224962a5405c03ba6bf53a..a00d8b221a72fb1071fb2e177651929c8ad59acf 100644 (file)
@@ -574,6 +574,7 @@ static int read_meminfo_failed (
     buf[size] = '\0';
 
     head = buf;
+
     for (;;) {
         static ENTRY e;      // just to keep coverity off our backs (e.data)
         ENTRY *ep;
@@ -595,7 +596,6 @@ static int read_meminfo_failed (
         tail = strchr(head, '\n');
         if (!tail)
             break;
-
         head = tail + 1;
     }
 
@@ -628,10 +628,10 @@ static int read_meminfo_failed (
         mHr(derived_swap_used) = mHr(SwapTotal) - mHr(SwapFree);
 
     // let's not distort the deltas the first time thru ...
-    if (!info->meminfo_was_read)
+    if (!info->meminfo_was_read) {
         memcpy(&info->hist.old, &info->hist.new, sizeof(struct meminfo_data));
-    info->meminfo_was_read = 1;
-
+        info->meminfo_was_read = 1;
+    }
     return 0;
  #undef mHr
 } // end: read_meminfo_failed
@@ -710,7 +710,8 @@ static struct stacks_extent *stacks_alloc (
  * The initial refcount is 1, and needs to be decremented
  * to release the resources of the structure.
  *
- * Returns: a pointer to a new meminfo struct
+ * Returns: < 0 on failure, 0 on success along with
+ *          a pointer to a new context struct
  */
 PROCPS_EXPORT int procps_meminfo_new (
         struct procps_meminfo **info)
index 0881c66d4fe6f472d55a1815ab654d6ec7215a0c..a9e730a412578b7bb8fe27138312915061f8c7ba 100644 (file)
@@ -1117,7 +1117,8 @@ static int stacks_fetch (
  *
  * @info: location of returned new structure
  *
- * Returns: 0 on success <0 on failure
+ * Returns: < 0 on failure, 0 on success along with
+ *          a pointer to a new context struct
  */
 PROCPS_EXPORT int procps_pids_new (
         struct procps_pidsinfo **info,
index 85f03c57325250b5af9da3d94171cbe714f5c9fc..88f86faa3e0057c0498f6a1f0c39f429410ed571 100644 (file)
@@ -491,10 +491,10 @@ static int read_slabinfo_failed (
     else
         return -ERANGE;
 
-    if (!info->slabinfo_was_read)
+    if (!info->slabinfo_was_read) {
         memcpy(&info->hist.old, &info->hist.new, sizeof(struct slabs_summ));
-    info->slabinfo_was_read = 1;
-
+        info->slabinfo_was_read = 1;
+    }
     return retval;
 } // end: read_slabinfo_failed
 
@@ -773,7 +773,8 @@ static int stacks_reconfig_maybe (
  *
  * @info: location of returned new structure
  *
- * Returns: 0 on success <0 on failure
+ * Returns: < 0 on failure, 0 on success along with
+ *          a pointer to a new context struct
  */
 PROCPS_EXPORT int procps_slabinfo_new (
         struct procps_slabinfo **info)
index f0437fa6d0edb95911331fdcb978d3df1695f349..a696a66533dfbf77d61784aeeefc75b798343153 100644 (file)
@@ -577,10 +577,10 @@ reap_em_again:
     info->sys_hist.new.procs_running = llnum;
 
     // let's not distort the deltas the first time thru ...
-    if (!info->stat_was_read)
+    if (!info->stat_was_read) {
         memcpy(&info->sys_hist.old, &info->sys_hist.new, sizeof(struct stat_data));
-
-    info->stat_was_read = 1;
+        info->stat_was_read = 1;
+    }
     return 0;
 } // end: read_stat_failed
 
@@ -769,7 +769,8 @@ static struct stat_stack *update_single_stack (
  * The initial refcount is 1, and needs to be decremented
  * to release the resources of the structure.
  *
- * Returns: a new stat info container
+ * Returns: < 0 on failure, 0 on success along with
+ *          a pointer to a new context struct
  */
 PROCPS_EXPORT int procps_stat_new (
         struct procps_statinfo **info)
index 7d0012e8b93d1b3c67bc7e7744c06ea34e8a8866..c0c8603d9d5e295c2514e9f1cf7f2af9bd907d83 100644 (file)
@@ -999,6 +999,7 @@ static int read_vmstat_failed (
     buf[size] = '\0';
 
     head = buf;
+
     for (;;) {
         static ENTRY e;      // just to keep coverity off our backs (e.data)
         ENTRY *ep;
@@ -1020,15 +1021,14 @@ static int read_vmstat_failed (
         tail = strchr(head, '\n');
         if (!tail)
             break;
-
         head = tail + 1;
     }
 
     // let's not distort the deltas the first time thru ...
-    if (!info->vmstat_was_read)
+    if (!info->vmstat_was_read) {
         memcpy(&info->hist.old, &info->hist.new, sizeof(struct vmstat_data));
-    info->vmstat_was_read = 1;
-
+        info->vmstat_was_read = 1;
+    }
     return 0;
 } // end: read_vmstat_failed
 
@@ -1106,7 +1106,8 @@ static struct stacks_extent *stacks_alloc (
  * The initial refcount is 1, and needs to be decremented
  * to release the resources of the structure.
  *
- * Returns: a pointer to a new vmstatinfo struct
+ * Returns: < 0 on failure, 0 on success along with
+ *          a pointer to a new context struct
  */
 PROCPS_EXPORT int procps_vmstat_new (
         struct procps_vmstat **info)