vmm_ipi.h revision 256281
10Sstevel@tonic-gate/*-
20Sstevel@tonic-gate * Copyright (c) 2011 NetApp, Inc.
30Sstevel@tonic-gate * All rights reserved.
411767SAnurag.Maskey@Sun.COM *
50Sstevel@tonic-gate * Redistribution and use in source and binary forms, with or without
60Sstevel@tonic-gate * modification, are permitted provided that the following conditions
70Sstevel@tonic-gate * are met:
80Sstevel@tonic-gate * 1. Redistributions of source code must retain the above copyright
90Sstevel@tonic-gate *    notice, this list of conditions and the following disclaimer.
1011262SRajagopal.Andra@Sun.COM * 2. Redistributions in binary form must reproduce the above copyright
1111262SRajagopal.Andra@Sun.COM *    notice, this list of conditions and the following disclaimer in the
120Sstevel@tonic-gate *    documentation and/or other materials provided with the distribution.
130Sstevel@tonic-gate *
140Sstevel@tonic-gate * THIS SOFTWARE IS PROVIDED BY NETAPP, INC ``AS IS'' AND
150Sstevel@tonic-gate * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
160Sstevel@tonic-gate * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
170Sstevel@tonic-gate * ARE DISCLAIMED.  IN NO EVENT SHALL NETAPP, INC OR CONTRIBUTORS BE LIABLE
180Sstevel@tonic-gate * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
190Sstevel@tonic-gate * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
200Sstevel@tonic-gate * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
210Sstevel@tonic-gate * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
220Sstevel@tonic-gate * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
230Sstevel@tonic-gate * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
240Sstevel@tonic-gate * SUCH DAMAGE.
250Sstevel@tonic-gate *
260Sstevel@tonic-gate * $FreeBSD: stable/10/sys/amd64/vmm/vmm_ipi.h 245678 2013-01-20 03:42:49Z neel $
270Sstevel@tonic-gate */
280Sstevel@tonic-gate
290Sstevel@tonic-gate#ifndef _VMM_IPI_H_
300Sstevel@tonic-gate#define _VMM_IPI_H_
310Sstevel@tonic-gate
320Sstevel@tonic-gatestruct vm;
330Sstevel@tonic-gate
340Sstevel@tonic-gateextern int vmm_ipinum;
350Sstevel@tonic-gate
360Sstevel@tonic-gatevoid	vmm_ipi_init(void);
370Sstevel@tonic-gatevoid	vmm_ipi_cleanup(void);
380Sstevel@tonic-gate
390Sstevel@tonic-gate#endif
400Sstevel@tonic-gate