/* * This function will be called after sclp_early_facilities_detect(), which gets * called from early.c code. The sclp_early_facilities_detect() function retrieves * and saves the IPL information.
*/ void __init sclp_early_get_ipl_info(struct sclp_ipl_info *info)
{
*info = sclp_ipl_info;
}
int __init sclp_early_get_core_info(struct sclp_core_info *info)
{ struct read_cpu_info_sccb *sccb; int length = test_facility(140) ? EXT_SCCB_READ_CPU : PAGE_SIZE; int rc = 0;
if (!SCLP_HAS_CPU_INFO) return -EOPNOTSUPP;
sccb = memblock_alloc_low(length, PAGE_SIZE); if (!sccb) return -ENOMEM;
/* * Turn off SCLP event notifications. Also save remote masks in the * sccb. These are sufficient to detect sclp console capabilities.
*/
sclp_early_set_event_mask(sccb, 0, 0);
sclp_early_console_detect(sccb);
}
Messung V0.5 in Prozent
¤ Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.0.13Bemerkung:
(vorverarbeitet am 2026-06-08)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.