Fix some -fno-common fallout.

This commit is contained in:
matt 2012-07-28 02:08:50 +00:00
parent 681a8bcc0b
commit efbf8fe2cd
2 changed files with 7 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: shutdown_xenbus.h,v 1.4 2011/09/20 00:12:24 jym Exp $ */
/* $NetBSD: shutdown_xenbus.h,v 1.5 2012/07/28 02:08:50 matt Exp $ */
/*-
* Copyright (c)2006 YAMAMOTO Takashi,
@ -30,7 +30,7 @@
#define _XEN_SHUTDOWN_XENBUS_H_
/* Whether dom0 ordered a suspend (true) or not (false) */
bool xen_suspend_allow;
extern bool xen_suspend_allow;
void shutdown_xenbus_setup(void);

View File

@ -1,4 +1,4 @@
/* $NetBSD: xen_machdep.c,v 1.12 2012/07/22 19:30:19 jym Exp $ */
/* $NetBSD: xen_machdep.c,v 1.13 2012/07/28 02:08:51 matt Exp $ */
/*
* Copyright (c) 2006 Manuel Bouyer.
@ -53,7 +53,7 @@
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: xen_machdep.c,v 1.12 2012/07/22 19:30:19 jym Exp $");
__KERNEL_RCSID(0, "$NetBSD: xen_machdep.c,v 1.13 2012/07/28 02:08:51 matt Exp $");
#include "opt_xen.h"
@ -76,7 +76,9 @@ __KERNEL_RCSID(0, "$NetBSD: xen_machdep.c,v 1.12 2012/07/22 19:30:19 jym Exp $")
u_int tsc_get_timecount(struct timecounter *);
uint64_t tsc_freq; /* XXX */
bool xen_suspend_allow;
extern uint64_t tsc_freq; /* XXX */
static int sysctl_xen_suspend(SYSCTLFN_ARGS);
static void xen_suspend_domain(void);