xref: /netbsd-src/sys/arch/xen/include/balloon.h (revision c971211b4711ccd1707ea6d470bff84e02ac67c4)
1*c971211bScherry /* $NetBSD: balloon.h,v 1.1 2010/07/06 15:00:09 cherry Exp $ */
2*c971211bScherry 
3*c971211bScherry /*-
4*c971211bScherry  * Copyright (c) 2010 The NetBSD Foundation, Inc.
5*c971211bScherry  * All rights reserved.
6*c971211bScherry  *
7*c971211bScherry  * This code is derived from software contributed to The NetBSD Foundation
8*c971211bScherry  * by Cherry G. Mathew <cherry@zyx.in>
9*c971211bScherry  *
10*c971211bScherry  * Redistribution and use in source and binary forms, with or without
11*c971211bScherry  * modification, are permitted provided that the following conditions
12*c971211bScherry  * are met:
13*c971211bScherry  * 1. Redistributions of source code must retain the above copyright
14*c971211bScherry  *    notice, this list of conditions and the following disclaimer.
15*c971211bScherry  * 2. Redistributions in binary form must reproduce the above copyright
16*c971211bScherry  *    notice, this list of conditions and the following disclaimer in the
17*c971211bScherry  *    documentation and/or other materials provided with the distribution.
18*c971211bScherry  *
19*c971211bScherry  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20*c971211bScherry  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21*c971211bScherry  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22*c971211bScherry  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23*c971211bScherry  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24*c971211bScherry  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25*c971211bScherry  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26*c971211bScherry  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27*c971211bScherry  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28*c971211bScherry  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29*c971211bScherry  * POSSIBILITY OF SUCH DAMAGE.
30*c971211bScherry  */
31*c971211bScherry 
32*c971211bScherry #ifndef _XEN_BALLOON_H
33*c971211bScherry #define _XEN_BALLOON_H
34*c971211bScherry 
35*c971211bScherry void balloon_xenbus_setup(void);
36*c971211bScherry 
37*c971211bScherry #endif /* _XEN_BALLOON_H */
38