Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Linux/arch/powerpc/platforms/powernv/   (Open Source Betriebssystem Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 1 kB image not shown  

Quelle  opal-kmsg.c   Sprache: C

 
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * kmsg dumper that ensures the OPAL console fully flushes panic messages
 *
 * Author: Russell Currey <ruscur@russell.cc>
 *
 * Copyright 2015 IBM Corporation.
 */


#include <linux/kmsg_dump.h>

#include <asm/opal.h>
#include <asm/opal-api.h>

/*
 * Console output is controlled by OPAL firmware.  The kernel regularly calls
 * OPAL_POLL_EVENTS, which flushes some console output.  In a panic state,
 * however, the kernel no longer calls OPAL_POLL_EVENTS and the panic message
 * may not be completely printed.  This function does not actually dump the
 * message, it just ensures that OPAL completely flushes the console buffer.
 */

static void kmsg_dump_opal_console_flush(struct kmsg_dumper *dumper,
         struct kmsg_dump_detail *detail)
{
 /*
 * Outside of a panic context the pollers will continue to run,
 * so we don't need to do any special flushing.
 */

 if (detail->reason != KMSG_DUMP_PANIC)
  return;

 opal_flush_console(0);
}

static struct kmsg_dumper opal_kmsg_dumper = {
 .dump = kmsg_dump_opal_console_flush
};

void __init opal_kmsg_init(void)
{
 int rc;

 /* Add our dumper to the list */
 rc = kmsg_dump_register(&opal_kmsg_dumper);
 if (rc != 0)
  pr_err("opal: kmsg_dump_register failed; returned %d\n", rc);
}

Messung V0.5
C=94 H=86 G=89

¤ Dauer der Verarbeitung: 0.19 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

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.