library: fix upper bounds enum delimiter, <VMSTAT> api
Oops, the PROCPS_VMSTAT_logical_end enum reflected the source state before all those DELTA enum's were added. [ plus add a couple of overlooked #undef directives, ] [ and whack an unneeded stacks_alloc assignment too! ] Signed-off-by: Jim Warner <james.warner@comcast.net>
This commit is contained in:
parent
b700d91f84
commit
8650518b5a
@ -952,7 +952,7 @@ static struct {
|
|||||||
|
|
||||||
/* please note,
|
/* please note,
|
||||||
* this enum MUST be 1 greater than the highest value of any enum */
|
* this enum MUST be 1 greater than the highest value of any enum */
|
||||||
enum vmstat_item PROCPS_VMSTAT_logical_end = PROCPS_VMSTAT_ZONE_RECLAIM_FAILED + 1;
|
enum vmstat_item PROCPS_VMSTAT_logical_end = PROCPS_VMSTAT_DELTA_ZONE_RECLAIM_FAILED + 1;
|
||||||
|
|
||||||
#undef setNAME
|
#undef setNAME
|
||||||
#undef setDECL
|
#undef setDECL
|
||||||
@ -962,6 +962,8 @@ enum vmstat_item PROCPS_VMSTAT_logical_end = PROCPS_VMSTAT_ZONE_RECLAIM_FAILED +
|
|||||||
#undef getDECL
|
#undef getDECL
|
||||||
#undef REG_get
|
#undef REG_get
|
||||||
#undef HST_get
|
#undef HST_get
|
||||||
|
#undef RS
|
||||||
|
#undef RG
|
||||||
|
|
||||||
|
|
||||||
// ___ Private Functions ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
// ___ Private Functions ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||
@ -1472,7 +1474,7 @@ PROCPS_EXPORT struct vmstat_stack *procps_vmstat_select (
|
|||||||
extents_free_all(info);
|
extents_free_all(info);
|
||||||
}
|
}
|
||||||
if (!info->extents
|
if (!info->extents
|
||||||
&& !(info->extents = stacks_alloc(info, 1)))
|
&& !(stacks_alloc(info, 1)))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if (info->dirty_stacks)
|
if (info->dirty_stacks)
|
||||||
|
Loading…
Reference in New Issue
Block a user