vmm_ipi.h revision 266339
14887Schin/*-
24887Schin * Copyright (c) 2011 NetApp, Inc.
34887Schin * All rights reserved.
44887Schin *
54887Schin * Redistribution and use in source and binary forms, with or without
64887Schin * modification, are permitted provided that the following conditions
74887Schin * are met:
84887Schin * 1. Redistributions of source code must retain the above copyright
94887Schin *    notice, this list of conditions and the following disclaimer.
104887Schin * 2. Redistributions in binary form must reproduce the above copyright
114887Schin *    notice, this list of conditions and the following disclaimer in the
124887Schin *    documentation and/or other materials provided with the distribution.
134887Schin *
144887Schin * THIS SOFTWARE IS PROVIDED BY NETAPP, INC ``AS IS'' AND
154887Schin * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
164887Schin * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
174887Schin * ARE DISCLAIMED.  IN NO EVENT SHALL NETAPP, INC OR CONTRIBUTORS BE LIABLE
184887Schin * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
194887Schin * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
204887Schin * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
218462SApril.Chin@Sun.COM * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
224887Schin * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
238462SApril.Chin@Sun.COM * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
244887Schin * SUCH DAMAGE.
254887Schin *
264887Schin * $FreeBSD: stable/10/sys/amd64/vmm/vmm_ipi.h 266339 2014-05-17 19:11:08Z jhb $
274887Schin */
284887Schin
294887Schin#ifndef _VMM_IPI_H_
304887Schin#define _VMM_IPI_H_
31
32int	vmm_ipi_alloc(void);
33void	vmm_ipi_free(int num);
34
35#endif
36