public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Florian Weimer <fweimer@redhat.com>
To: libc-alpha@sourceware.org
Subject: [PATCH 1/2] elf: Wire up _dl_diagnostics_cpu_kernel
Date: Fri, 08 Sep 2023 22:09:50 +0200	[thread overview]
Message-ID: <4a77d6294e0023338a8115fad9a3d549c47cae87.1694203757.git.fweimer@redhat.com> (raw)

Some diagnostics information can only be retrieved in an OS-specific
manner.  This function does nothing at present.
---
 elf/Makefile                    |  1 +
 elf/dl-diagnostics-cpu-kernel.c | 24 ++++++++++++++++++++++++
 elf/dl-diagnostics.c            |  1 +
 elf/dl-diagnostics.h            |  4 ++++
 4 files changed, 30 insertions(+)
 create mode 100644 elf/dl-diagnostics-cpu-kernel.c

diff --git a/elf/Makefile b/elf/Makefile
index 9176cbf1e3..bcf85950d0 100644
--- a/elf/Makefile
+++ b/elf/Makefile
@@ -127,6 +127,7 @@ rtld-routines = \
   dl-compat \
   dl-diagnostics \
   dl-diagnostics-cpu \
+  dl-diagnostics-cpu-kernel \
   dl-diagnostics-kernel \
   dl-environ \
   dl-hwcaps \
diff --git a/elf/dl-diagnostics-cpu-kernel.c b/elf/dl-diagnostics-cpu-kernel.c
new file mode 100644
index 0000000000..f3251c5b79
--- /dev/null
+++ b/elf/dl-diagnostics-cpu-kernel.c
@@ -0,0 +1,24 @@
+/* Print CPU/kernel diagnostics data in ld.so.  Stub version.
+   Copyright (C) 2023 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <https://www.gnu.org/licenses/>.  */
+
+#include <dl-diagnostics.h>
+
+void
+_dl_diagnostics_cpu_kernel (void)
+{
+}
diff --git a/elf/dl-diagnostics.c b/elf/dl-diagnostics.c
index d742cf0a99..48db1ac07b 100644
--- a/elf/dl-diagnostics.c
+++ b/elf/dl-diagnostics.c
@@ -255,6 +255,7 @@ _dl_print_diagnostics (char **environ)
 
   _dl_diagnostics_kernel ();
   _dl_diagnostics_cpu ();
+  _dl_diagnostics_cpu_kernel ();
 
   _exit (EXIT_SUCCESS);
 }
diff --git a/elf/dl-diagnostics.h b/elf/dl-diagnostics.h
index 8099b90951..5eda01b5e1 100644
--- a/elf/dl-diagnostics.h
+++ b/elf/dl-diagnostics.h
@@ -43,4 +43,8 @@ void _dl_diagnostics_kernel (void) attribute_hidden;
    _dl_print_diagnostics.  */
 void _dl_diagnostics_cpu (void) attribute_hidden;
 
+/* Print diagnostics data for the CPU(s), in a kernel-secific fashion.
+   Called from _dl_print_diagnostics.  */
+void _dl_diagnostics_cpu_kernel (void) attribute_hidden;
+
 #endif /* _DL_DIAGNOSTICS_H */

base-commit: 53df2ce6885da3d0e89e87dca7b095622296014f
-- 
2.41.0



             reply	other threads:[~2023-09-08 20:09 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-08 20:09 Florian Weimer [this message]
2023-09-08 20:10 ` [PATCH 2/2] x86: Add generic CPUID data dumper to ld.so --list-diagnostics Florian Weimer
2023-09-10 19:56   ` Noah Goldstein
2023-09-11  4:24     ` Florian Weimer
2023-09-11 16:16       ` Noah Goldstein
2023-09-11 16:25         ` Florian Weimer
2023-09-11 16:28           ` Noah Goldstein
2023-09-11 16:31             ` Noah Goldstein
2023-09-11 17:48             ` Florian Weimer
2023-09-11 18:35               ` Noah Goldstein
2023-09-11 16:08   ` Adhemerval Zanella Netto
2023-09-11 16:19     ` Florian Weimer
2023-09-11 16:41       ` Adhemerval Zanella Netto
2024-02-09 19:08 [PATCH 0/2] Enhanced x86 CPU diagnostics Florian Weimer
2024-02-09 19:08 ` [PATCH 1/2] elf: Wire up _dl_diagnostics_cpu_kernel Florian Weimer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4a77d6294e0023338a8115fad9a3d549c47cae87.1694203757.git.fweimer@redhat.com \
    --to=fweimer@redhat.com \
    --cc=libc-alpha@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).