/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2008 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/*
* Support routines for managing state related to memory modules.
*/
#include <cmd_mem.h>
#include <cmd_dimm.h>
#include <cmd_bank.h>
#include <cmd.h>
#ifdef sun4u
#include <cmd_dp.h>
#endif
#ifdef sun4v
#include <cmd_branch.h>
#endif
#include <errno.h>
#include <strings.h>
#include <ctype.h>
#include <fcntl.h>
#include <unistd.h>
const char *
{
if (nvlist_lookup_pairs(fmri, 0,
return (NULL);
return (unum);
}
char *
{
return (nm);
}
char *
{
return (nm);
}
char *
{
return (nm);
}
void
{
unum));
}
void
{
char *c;
/*
* Prior to Niagara-2, every bank had to have at least two dimms; it
* was therefore impossible for the retirestat of a bank to ever have
* the same name (strcmp() == 0) as that of a dimm.
*
* Niagara-2 and VF, in "single channel mode" , retrieve an entire
* cache line from a single dimm. We therefore use a different
* prefix to name the bank retirestat vs. the dimm retirestat,
* or else the DE will abort trying to register a duplicate stat name
* with fmd.
*/
"retirements for %s", unum);
/*
* Sanitize the name of the statistic -- standard unums won't get
* by fmd's validity checker.
*/
*c = '_';
}
}
int
{
if (npages == 0) {
return (0);
}
if (cmd.cmd_thresh_abs_sysmem != 0) {
} else {
/* threshold is in thousandths of a percent */
}
}
nvlist_t *
{
return (NULL);
return (NULL);
}
}
return (fmri);
}
nvlist_t *
{
int fd;
return (NULL);
for (;;) {
break;
return (NULL);
}
}
return (fmri);
}
void
{
}
void
{
/* It's not persisted, so just remove it */
}
void
{
return;
}
}
}
void
{
#ifdef sun4v
#endif
}
void
{
#ifdef sun4v
#endif
}