Previous Topic: 02016: SQA Fixed Frames Exceeds Max

Next Topic: 02018: LPA Fixed Frames Exceeds Max

02017: CSA 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 CSA is the cause of real
memory shortages.

DEFINITION:  This exception is raised when the number of
frames of real memory fixed in CSA 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:

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

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

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

PAGMXC GT 100