Commit 157b1a23 authored by Thomas Gleixner's avatar Thomas Gleixner

kgdb: Do not access xtime directly

The xtime cleanup missed the kgdb access to xtime. Fix it.
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 47916be4
...@@ -2440,6 +2440,7 @@ static void kdb_sysinfo(struct sysinfo *val) ...@@ -2440,6 +2440,7 @@ static void kdb_sysinfo(struct sysinfo *val)
*/ */
static int kdb_summary(int argc, const char **argv) static int kdb_summary(int argc, const char **argv)
{ {
struct timespec now;
struct kdb_tm tm; struct kdb_tm tm;
struct sysinfo val; struct sysinfo val;
...@@ -2454,7 +2455,8 @@ static int kdb_summary(int argc, const char **argv) ...@@ -2454,7 +2455,8 @@ static int kdb_summary(int argc, const char **argv)
kdb_printf("domainname %s\n", init_uts_ns.name.domainname); kdb_printf("domainname %s\n", init_uts_ns.name.domainname);
kdb_printf("ccversion %s\n", __stringify(CCVERSION)); kdb_printf("ccversion %s\n", __stringify(CCVERSION));
kdb_gmtime(&xtime, &tm); now = __current_kernel_time();
kdb_gmtime(&now, &tm);
kdb_printf("date %04d-%02d-%02d %02d:%02d:%02d " kdb_printf("date %04d-%02d-%02d %02d:%02d:%02d "
"tz_minuteswest %d\n", "tz_minuteswest %d\n",
1900+tm.tm_year, tm.tm_mon+1, tm.tm_mday, 1900+tm.tm_year, tm.tm_mon+1, tm.tm_mday,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment