1*ff225a39Spooka /*	$NetBSD: rump_x86_spl.c,v 1.2 2016/01/26 23:12:18 pooka Exp $	*/
279888a3dSpooka 
379888a3dSpooka /*
479888a3dSpooka  * Copyright (c) 2008 Antti Kantee.  All Rights Reserved.
579888a3dSpooka  *
679888a3dSpooka  * Development of this software was supported by the
779888a3dSpooka  * Finnish Cultural Foundation.
879888a3dSpooka  *
979888a3dSpooka  * Redistribution and use in source and binary forms, with or without
1079888a3dSpooka  * modification, are permitted provided that the following conditions
1179888a3dSpooka  * are met:
1279888a3dSpooka  * 1. Redistributions of source code must retain the above copyright
1379888a3dSpooka  *    notice, this list of conditions and the following disclaimer.
1479888a3dSpooka  * 2. Redistributions in binary form must reproduce the above copyright
1579888a3dSpooka  *    notice, this list of conditions and the following disclaimer in the
1679888a3dSpooka  *    documentation and/or other materials provided with the distribution.
1779888a3dSpooka  *
1879888a3dSpooka  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
1979888a3dSpooka  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
2079888a3dSpooka  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
2179888a3dSpooka  * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
2279888a3dSpooka  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2379888a3dSpooka  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
2479888a3dSpooka  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2579888a3dSpooka  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2679888a3dSpooka  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2779888a3dSpooka  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2879888a3dSpooka  * SUCH DAMAGE.
2979888a3dSpooka  */
3079888a3dSpooka 
3179888a3dSpooka #include <sys/cdefs.h>
32*ff225a39Spooka __KERNEL_RCSID(0, "$NetBSD: rump_x86_spl.c,v 1.2 2016/01/26 23:12:18 pooka Exp $");
3379888a3dSpooka 
3479888a3dSpooka #include <sys/param.h>
3579888a3dSpooka 
3679888a3dSpooka #include <machine/intr.h>
3779888a3dSpooka 
38*ff225a39Spooka #include <rump-sys/kern.h>
3979888a3dSpooka 
4079888a3dSpooka void
spllower(int s)4179888a3dSpooka spllower(int s)
4279888a3dSpooka {
4379888a3dSpooka 
4479888a3dSpooka }
4579888a3dSpooka 
4679888a3dSpooka int
splraise(int s)4779888a3dSpooka splraise(int s)
4879888a3dSpooka {
4979888a3dSpooka 
5079888a3dSpooka 	return 0;
5179888a3dSpooka }
52