Fri Jan 2 10:45:26 2009 UTC ()
printf needs IPL_HIGH


(pooka)
diff -r1.12 -r1.13 src/sys/rump/include/machine/intr.h

cvs diff -r1.12 -r1.13 src/sys/rump/include/machine/intr.h (expand / switch to unified diff)

--- src/sys/rump/include/machine/intr.h 2008/11/26 15:04:02 1.12
+++ src/sys/rump/include/machine/intr.h 2009/01/02 10:45:26 1.13
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1/* $NetBSD: intr.h,v 1.12 2008/11/26 15:04:02 pooka Exp $ */ 1/* $NetBSD: intr.h,v 1.13 2009/01/02 10:45:26 pooka Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2007 Antti Kantee. All Rights Reserved. 4 * Copyright (c) 2007 Antti Kantee. All Rights Reserved.
5 * 5 *
6 * Development of this software was supported by Google Summer of Code. 6 * Development of this software was supported by Google Summer of Code.
7 * 7 *
8 * Redistribution and use in source and binary forms, with or without 8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions 9 * modification, are permitted provided that the following conditions
10 * are met: 10 * are met:
11 * 1. Redistributions of source code must retain the above copyright 11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer. 12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright 13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the 14 * notice, this list of conditions and the following disclaimer in the
@@ -44,15 +44,16 @@ void rump_splx(int); @@ -44,15 +44,16 @@ void rump_splx(int);
44#define splsoftclock() rump_splfoo() 44#define splsoftclock() rump_splfoo()
45#define splhigh() rump_splfoo() 45#define splhigh() rump_splfoo()
46#define splsched() rump_splfoo() 46#define splsched() rump_splfoo()
47#define splvm() rump_splfoo() 47#define splvm() rump_splfoo()
48#define splx(x) rump_splx(x) 48#define splx(x) rump_splx(x)
49#define spl0() ((void)0) 49#define spl0() ((void)0)
50 50
51#define IPL_NONE 0 51#define IPL_NONE 0
52#define IPL_SOFTBIO 0 52#define IPL_SOFTBIO 0
53#define IPL_SOFTCLOCK 0 53#define IPL_SOFTCLOCK 0
54#define IPL_SOFTNET 0 54#define IPL_SOFTNET 0
55#define IPL_SCHED 0 55#define IPL_SCHED 0
56#define IPL_VM 0 56#define IPL_VM 0
 57#define IPL_HIGH 0
57 58
58#endif /* _SYS_RUMP_INTR_H_ */ 59#endif /* _SYS_RUMP_INTR_H_ */