KLVSD034 SEGMENTS INUSE(inuse) MAX(max) GETS(gets) FREES(frees) Q(q) QMAX(qmax)

Explanation

This message provides additional information about a buffer pool. It follows KLVSD033.
  • inuse: The number of segments that are currently in use. This number is obtained from the simple calculation of gets minus frees at the time the display is requested.
  • max The maximum number of segments that were ever concurrently allocated to this pool. This statistic is checked and updated, if necessary, every time a segment is obtained.
  • gets The number of segment allocations performed for this pool. This number is a simple running total of get requests throughout the life of the system.
  • frees The number of segment deallocations performed for this pool. This number is a simple running total of free requests throughout the life of the system.
  • q: The number of segments currently on the free queue of segments containing available buffers. This statistic is updated every time a segment is added to or removed from the free queue.
  • qmax The maximum number of segments that were ever concurrently on the free queue of segments containing available buffers. This statistic is checked and updated, if necessary, every time a segment is added to the free queue.

System action

None.

User response

None.

Message Type

REPLY