2018-07-12 14:56:34 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2015-07-22 14:14:34 +00:00
|
|
|
From: Peter Jones <pjones@redhat.com>
|
|
|
|
Date: Sun, 28 Jun 2015 13:09:58 -0400
|
2018-07-10 19:08:14 +00:00
|
|
|
Subject: [PATCH] Add grub_qdprintf() - grub_dprintf() without the file+line
|
|
|
|
number.
|
2015-07-22 14:14:34 +00:00
|
|
|
|
|
|
|
This just makes copy+paste of our debug loading info easier.
|
|
|
|
|
|
|
|
Signed-off-by: Peter Jones <pjones@redhat.com>
|
|
|
|
---
|
|
|
|
grub-core/kern/misc.c | 18 ++++++++++++++++++
|
|
|
|
include/grub/misc.h | 2 ++
|
|
|
|
2 files changed, 20 insertions(+)
|
|
|
|
|
|
|
|
diff --git a/grub-core/kern/misc.c b/grub-core/kern/misc.c
|
2018-04-03 17:41:24 +00:00
|
|
|
index 5c2d2039d0b..0e89c483d5e 100644
|
2015-07-22 14:14:34 +00:00
|
|
|
--- a/grub-core/kern/misc.c
|
|
|
|
+++ b/grub-core/kern/misc.c
|
2018-04-03 17:41:24 +00:00
|
|
|
@@ -190,6 +190,24 @@ grub_real_dprintf (const char *file, const int line, const char *condition,
|
2015-07-22 14:14:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+void
|
|
|
|
+grub_qdprintf (const char *condition, const char *fmt, ...)
|
|
|
|
+{
|
|
|
|
+ va_list args;
|
|
|
|
+ const char *debug = grub_env_get ("debug");
|
|
|
|
+
|
|
|
|
+ if (! debug)
|
|
|
|
+ return;
|
|
|
|
+
|
|
|
|
+ if (grub_strword (debug, "all") || grub_strword (debug, condition))
|
|
|
|
+ {
|
|
|
|
+ va_start (args, fmt);
|
|
|
|
+ grub_vprintf (fmt, args);
|
|
|
|
+ va_end (args);
|
|
|
|
+ grub_refresh ();
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
#define PREALLOC_SIZE 255
|
|
|
|
|
|
|
|
int
|
|
|
|
diff --git a/include/grub/misc.h b/include/grub/misc.h
|
2019-08-15 06:01:31 +00:00
|
|
|
index 4a4f485a5f6..960097fbd06 100644
|
2015-07-22 14:14:34 +00:00
|
|
|
--- a/include/grub/misc.h
|
|
|
|
+++ b/include/grub/misc.h
|
2018-04-03 17:41:24 +00:00
|
|
|
@@ -372,6 +372,8 @@ void EXPORT_FUNC(grub_real_dprintf) (const char *file,
|
2015-07-22 14:14:34 +00:00
|
|
|
const int line,
|
|
|
|
const char *condition,
|
|
|
|
const char *fmt, ...) __attribute__ ((format (GNU_PRINTF, 4, 5)));
|
|
|
|
+void EXPORT_FUNC(grub_qdprintf) (const char *condition,
|
|
|
|
+ const char *fmt, ...) __attribute__ ((format (GNU_PRINTF, 2, 3)));
|
|
|
|
int EXPORT_FUNC(grub_vprintf) (const char *fmt, va_list args);
|
|
|
|
int EXPORT_FUNC(grub_snprintf) (char *str, grub_size_t n, const char *fmt, ...)
|
|
|
|
__attribute__ ((format (GNU_PRINTF, 3, 4)));
|