Previous Topic: 02018: LPA Fixed Frames Exceeds Max

Next Topic: 02020: Private Fixed Frames Exceeds Max

02019: LSQA Fixed Frames Exceeds Max



FILE: Paging Activity File
SAS FILE NAME: DAYS.SCPPAG01
SOURCE LOCATION: prefix.MICS.USER.SOURCE(DYRMFEXC)

SEVERITY: Critical             (SEVERITY='C')
MANAGEMENT AREA: Performance   (MGMTAREA='PERFORMANCE')

PURPOSE:  Identifies type of excess fixed frames.

RATIONALE:  When real memory shortages occur, they often
result from excess fixed frames.  This exception identifies
when the number of fixed frames in LSQA is the cause of real
memory shortages.

DEFINITION:  This exception is raised when the number of
frames of real memory fixed in LSQA exceeds the installation-
defined maximum.

EXCEPTION STATEMENTS:  The SAS statements identifying the
exception situation and describing the condition are stored
in the source member named in SOURCE LOCATION and are
described below:

**  02019 LSQA FIXED FRAMES EXCEEDS MAX
*;
IF PAGMXLS GT fixed-frames
 THEN DO;
  EXCCODE='02019'; SEVERITY='C'; MGMTAREA='PERFORMANCE';
  EXCDESC1='LSQA FIXED FRAMES EXCEEDS MAX ';
  EXCDESC2='FIXED FRAMES=' !! PUT(PAGMXLS,6.);
  LINK HIT;
END;

THRESHOLD MODIFICATION:  The user should modify the
fixed-frames value according to the following conventions:

fixed-frames - The maximum number of fixed frames is
specified.  A threshold frame count of 275 would appear as:

PAGMXLS GT 275