Module Name: src
Committed By: cegger
Date: Wed Dec 7 13:49:04 UTC 2011
Modified Files:
src/sys/arch/xen/xen: evtchn.c
Log Message:
build fix: add back <sys/malloc.h>. malloc(9) is still in use.
To generate a diff of this commit:
cvs rdiff -u -r1.57 -r1.58 src/sys/arch/xen/xen/evtchn.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/xen/xen/evtchn.c
diff -u src/sys/arch/xen/xen/evtchn.c:1.57 src/sys/arch/xen/xen/evtchn.c:1.58
--- src/sys/arch/xen/xen/evtchn.c:1.57 Wed Dec 7 12:31:51 2011
+++ src/sys/arch/xen/xen/evtchn.c Wed Dec 7 13:49:04 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: evtchn.c,v 1.57 2011/12/07 12:31:51 cherry Exp $ */
+/* $NetBSD: evtchn.c,v 1.58 2011/12/07 13:49:04 cegger Exp $ */
/*
* Copyright (c) 2006 Manuel Bouyer.
@@ -54,7 +54,7 @@
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: evtchn.c,v 1.57 2011/12/07 12:31:51 cherry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: evtchn.c,v 1.58 2011/12/07 13:49:04 cegger Exp $");
#include "opt_xen.h"
#include "isa.h"
@@ -66,6 +66,7 @@ __KERNEL_RCSID(0, "$NetBSD: evtchn.c,v 1
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/proc.h>
+#include <sys/malloc.h>
#include <sys/kmem.h>
#include <sys/reboot.h>
#include <sys/mutex.h>