Deleted Added
full compact
xenstore.c (250081) xenstore.c (251767)
1/******************************************************************************
2 * xenstore.c
3 *
4 * Low-level kernel interface to the XenStore.
5 *
6 * Copyright (C) 2005 Rusty Russell, IBM Corporation
7 * Copyright (C) 2009,2010 Spectra Logic Corporation
8 *

--- 16 unchanged lines hidden (view full) ---

25 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
28 * IN THE SOFTWARE.
29 */
30
31
32#include <sys/cdefs.h>
1/******************************************************************************
2 * xenstore.c
3 *
4 * Low-level kernel interface to the XenStore.
5 *
6 * Copyright (C) 2005 Rusty Russell, IBM Corporation
7 * Copyright (C) 2009,2010 Spectra Logic Corporation
8 *

--- 16 unchanged lines hidden (view full) ---

25 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
28 * IN THE SOFTWARE.
29 */
30
31
32#include <sys/cdefs.h>
33__FBSDID("$FreeBSD: head/sys/xen/xenstore/xenstore.c 250081 2013-04-29 23:08:13Z gibbs $");
33__FBSDID("$FreeBSD: head/sys/xen/xenstore/xenstore.c 251767 2013-06-14 23:43:44Z gibbs $");
34
35#include <sys/param.h>
36#include <sys/bus.h>
37#include <sys/kernel.h>
38#include <sys/lock.h>
39#include <sys/module.h>
40#include <sys/mutex.h>
41#include <sys/sx.h>

--- 11 unchanged lines hidden (view full) ---

53#include <machine/stdarg.h>
54
55#include <xen/evtchn.h>
56#include <xen/gnttab.h>
57#include <xen/hypervisor.h>
58#include <xen/xen_intr.h>
59
60#include <xen/interface/hvm/params.h>
34
35#include <sys/param.h>
36#include <sys/bus.h>
37#include <sys/kernel.h>
38#include <sys/lock.h>
39#include <sys/module.h>
40#include <sys/mutex.h>
41#include <sys/sx.h>

--- 11 unchanged lines hidden (view full) ---

53#include <machine/stdarg.h>
54
55#include <xen/evtchn.h>
56#include <xen/gnttab.h>
57#include <xen/hypervisor.h>
58#include <xen/xen_intr.h>
59
60#include <xen/interface/hvm/params.h>
61#include <xen/hvm.h>
61
62#include <xen/xenstore/xenstorevar.h>
63#include <xen/xenstore/xenstore_internal.h>
64
65#include <vm/vm.h>
66#include <vm/pmap.h>
67
68/**

--- 1594 unchanged lines hidden ---
62
63#include <xen/xenstore/xenstorevar.h>
64#include <xen/xenstore/xenstore_internal.h>
65
66#include <vm/vm.h>
67#include <vm/pmap.h>
68
69/**

--- 1594 unchanged lines hidden ---