├── .bk-to-hg ├── .gitarchive-info ├── .gitattributes ├── .gitignore ├── .hg-to-bk ├── .hgignore ├── .hgsigs ├── .hgtags ├── .rootkeys ├── .travis.yml ├── CODING_STYLE ├── CONTRIBUTING ├── COPYING ├── CREDITS ├── Config.mk ├── INSTALL ├── MAINTAINERS ├── Makefile ├── README ├── autogen.sh ├── config.guess ├── config.sub ├── config ├── Docs.mk.in ├── FreeBSD.mk ├── Linux.mk ├── MiniOS.mk ├── NetBSD.mk ├── NetBSDRump.mk ├── OpenBSD.mk ├── Paths.mk.in ├── StdGNU.mk ├── Stubdom.mk.in ├── SunOS.mk ├── Tools.mk.in ├── Toplevel.mk.in ├── arm32.mk ├── arm64.mk ├── x86_32.mk └── x86_64.mk ├── configure ├── configure.ac ├── docs ├── ChangeLog ├── INDEX ├── Makefile ├── README.colo ├── README.remus ├── README.xen-bugtool ├── configure ├── configure.ac ├── designs │ └── dmop.markdown ├── features │ ├── feature-levelling.pandoc │ ├── migration.pandoc │ ├── sched_credit.pandoc │ ├── sched_credit2.pandoc │ ├── sched_rtds.pandoc │ └── template.pandoc ├── figs │ ├── Makefile │ ├── network-basic.fig │ ├── network-bridge.fig │ └── xenlogo.eps ├── gen-html-index ├── man │ ├── xen-pci-device-reservations.pod.7 │ ├── xen-pv-channel.markdown.7 │ ├── xen-tscmode.pod.7 │ ├── xen-vbd-interface.markdown.7 │ ├── xen-vtpm.pod.7 │ ├── xen-vtpmmgr.pod.7 │ ├── xenstore-chmod.pod.1 │ ├── xenstore-ls.pod.1 │ ├── xenstore.pod.1 │ ├── xentop.pod.1 │ ├── xentrace.pod.8 │ ├── xentrace_format.pod.1 │ ├── xl-disk-configuration.pod.5 │ ├── xl-network-configuration.markdown.5 │ ├── xl-numa-placement.markdown.7 │ ├── xl.cfg.pod.5.in │ ├── xl.conf.pod.5 │ ├── xl.pod.1.in │ └── xlcpupool.cfg.pod.5 ├── misc │ ├── 9pfs.markdown │ ├── amd-ucode-container.txt │ ├── arm │ │ ├── booting.txt │ │ ├── device-tree │ │ │ ├── acpi.txt │ │ │ ├── booting.txt │ │ │ ├── guest.txt │ │ │ └── passthrough.txt │ │ ├── early-printk.txt │ │ ├── passthrough.txt │ │ └── silicon-errata.txt │ ├── block-scripts.txt │ ├── console.txt │ ├── coverage.markdown │ ├── crashdb.txt │ ├── distro_mapping.txt │ ├── dump-core-format.txt │ ├── efi.markdown │ ├── grant-tables.txt │ ├── hvm-emulated-unplug.markdown │ ├── hvmlite.markdown │ ├── kconfig-language.txt │ ├── kconfig.txt │ ├── kexec_and_kdump.txt │ ├── libxl_memory.txt │ ├── livepatch.markdown │ ├── printk-formats.txt │ ├── pv-drivers-lifecycle.markdown │ ├── pvcalls.markdown │ ├── pvh.markdown │ ├── pvrdtscp.c │ ├── qemu-backends.txt │ ├── qemu-deprivilege.txt │ ├── qemu-xen-security │ ├── status-override-table-spec.fodt │ ├── stubdom.txt │ ├── tmem-internals.html │ ├── vtd-pi.txt │ ├── vtd.txt │ ├── vtpm-platforms.txt │ ├── x86-xenpv-bootloader.markdown │ ├── xen-command-line.markdown │ ├── xen-env-table-spec.fodt │ ├── xen-error-handling.txt │ ├── xen_config.html │ ├── xenmon.txt │ ├── xenpaging.txt │ ├── xenstore-paths.markdown │ ├── xenstore-ring.txt │ ├── xenstore.txt │ ├── xl-psr.markdown │ └── xsm-flask.txt ├── specs │ ├── libxc-migration-stream.pandoc │ └── libxl-migration-stream.pandoc └── xen-headers ├── install.sh ├── m4 ├── README.source ├── ax_compare_version.m4 ├── checkpolicy.m4 ├── curses.m4 ├── depends.m4 ├── docs_tool.m4 ├── extfs.m4 ├── features.m4 ├── fetcher.m4 ├── ocaml.m4 ├── path_or_fail.m4 ├── paths.m4 ├── pkg.m4 ├── pthread.m4 ├── ptyfuncs.m4 ├── python_devel.m4 ├── python_fortify_noopt.m4 ├── python_version.m4 ├── savevar.m4 ├── set_cflags_ldflags.m4 ├── stubdom.m4 ├── subsystem.m4 ├── systemd.m4 ├── uuid.m4 └── xenstored.m4 ├── misc ├── branching-checklist.txt ├── coverity │ └── model.c └── release-checklist.txt ├── scripts ├── get_maintainer.pl ├── git-checkout.sh └── travis-build ├── stubdom ├── COPYING ├── Makefile ├── c │ ├── Makefile │ ├── main.c │ └── minios.cfg ├── caml │ ├── Makefile │ ├── hello.ml │ ├── main-caml.c │ └── minios.cfg ├── configure ├── configure.ac ├── grub.patches │ ├── 00cvs │ ├── 10graphics.diff │ ├── 11graphics-keyboard.diff │ ├── 20print_func.diff │ ├── 30savedefault.diff │ ├── 40ext3_256byte_inode.diff │ ├── 50fs_fulldisk.diff │ ├── 60ext4.diff │ ├── 61btrfs.diff │ ├── 70compiler_warnings.diff │ └── 99minios ├── grub │ ├── Makefile │ ├── boot-x86_32.S │ ├── boot-x86_64.S │ ├── config.h │ ├── kexec.c │ ├── mini-os.c │ ├── mini-os.h │ ├── minios.cfg │ └── osdep.h ├── ioemu-minios.cfg ├── libpci.config.h ├── libpci.config.mak ├── lwip.dhcp_create_request-hwaddr_len.patch ├── lwip.patch-cvs ├── newlib-chk.patch ├── newlib-stdint-size_max-fix-from-1.17.0.patch ├── newlib.patch ├── ocaml.patch ├── pciutils.patch ├── polarssl.patch ├── stubdom-dm ├── tpmemu-0.7.4.patch ├── vtpm-bufsize.patch ├── vtpm-cmake-Wextra.patch ├── vtpm-deepquote-anyloc.patch ├── vtpm-deepquote.patch ├── vtpm-locality.patch ├── vtpm-parent-sign-ek.patch ├── vtpm │ ├── COPYING │ ├── Makefile │ ├── minios.cfg │ ├── vtpm.c │ ├── vtpm.h │ ├── vtpm_cmd.c │ ├── vtpm_cmd.h │ ├── vtpm_pcrs.c │ ├── vtpm_pcrs.h │ ├── vtpmblk.c │ └── vtpmblk.h ├── vtpmmgr │ ├── Makefile │ ├── README.source │ ├── calc.pl │ ├── common_types.h │ ├── disk_crypto.c │ ├── disk_crypto.h │ ├── disk_format.h │ ├── disk_io.c │ ├── disk_io.h │ ├── disk_read.c │ ├── disk_tpm.c │ ├── disk_tpm.h │ ├── disk_write.c │ ├── endian_int.h │ ├── init.c │ ├── log.c │ ├── log.h │ ├── manage-vtpmmgr.pl │ ├── marshal.h │ ├── mgmt_authority.c │ ├── mgmt_authority.h │ ├── minios.cfg │ ├── tcg.h │ ├── tpm.c │ ├── tpm.h │ ├── tpm2.c │ ├── tpm2.h │ ├── tpm2_marshal.h │ ├── tpm2_types.h │ ├── tpmrsa.c │ ├── tpmrsa.h │ ├── uuid.h │ ├── vtpm_cmd_handler.c │ ├── vtpm_disk.c │ ├── vtpm_disk.h │ ├── vtpm_manager.h │ ├── vtpmmgr.c │ └── vtpmmgr.h └── xenstore-minios.cfg ├── tools ├── Makefile ├── Rules.mk ├── blktap2 │ ├── COPYING │ ├── Makefile │ ├── README │ ├── control │ │ ├── Makefile │ │ ├── tap-ctl-allocate.c │ │ ├── tap-ctl-attach.c │ │ ├── tap-ctl-check.c │ │ ├── tap-ctl-close.c │ │ ├── tap-ctl-create.c │ │ ├── tap-ctl-destroy.c │ │ ├── tap-ctl-detach.c │ │ ├── tap-ctl-free.c │ │ ├── tap-ctl-ipc.c │ │ ├── tap-ctl-list.c │ │ ├── tap-ctl-major.c │ │ ├── tap-ctl-open.c │ │ ├── tap-ctl-pause.c │ │ ├── tap-ctl-spawn.c │ │ ├── tap-ctl-unpause.c │ │ ├── tap-ctl.c │ │ ├── tap-ctl.h │ │ └── xenblktapctl.pc.in │ ├── drivers │ │ ├── Makefile │ │ ├── aes.c │ │ ├── aes.h │ │ ├── atomicio.c │ │ ├── blk.h │ │ ├── blk_linux.c │ │ ├── blk_netbsd.c │ │ ├── block-aio.c │ │ ├── block-cache.c │ │ ├── block-log.c │ │ ├── block-qcow.c │ │ ├── block-ram.c │ │ ├── block-remus.c │ │ ├── block-vhd.c │ │ ├── bswap.h │ │ ├── check_gcrypt │ │ ├── hashtable.c │ │ ├── hashtable.h │ │ ├── hashtable_itr.c │ │ ├── hashtable_itr.h │ │ ├── hashtable_private.h │ │ ├── hashtable_utility.c │ │ ├── hashtable_utility.h │ │ ├── img2qcow.c │ │ ├── io-optimize.c │ │ ├── io-optimize.h │ │ ├── libaio-compat.h │ │ ├── lock.c │ │ ├── lock.h │ │ ├── log.h │ │ ├── md5.c │ │ ├── md5.h │ │ ├── profile.h │ │ ├── qcow-create.c │ │ ├── qcow.h │ │ ├── qcow2raw.c │ │ ├── scheduler.c │ │ ├── scheduler.h │ │ ├── tapdisk-client.c │ │ ├── tapdisk-control.c │ │ ├── tapdisk-control.h │ │ ├── tapdisk-diff.c │ │ ├── tapdisk-disktype.c │ │ ├── tapdisk-disktype.h │ │ ├── tapdisk-driver.c │ │ ├── tapdisk-driver.h │ │ ├── tapdisk-filter.c │ │ ├── tapdisk-filter.h │ │ ├── tapdisk-image.c │ │ ├── tapdisk-image.h │ │ ├── tapdisk-interface.c │ │ ├── tapdisk-interface.h │ │ ├── tapdisk-log.c │ │ ├── tapdisk-log.h │ │ ├── tapdisk-queue.c │ │ ├── tapdisk-queue.h │ │ ├── tapdisk-ring.c │ │ ├── tapdisk-ring.h │ │ ├── tapdisk-server.c │ │ ├── tapdisk-server.h │ │ ├── tapdisk-stream.c │ │ ├── tapdisk-utils.c │ │ ├── tapdisk-utils.h │ │ ├── tapdisk-vbd.c │ │ ├── tapdisk-vbd.h │ │ ├── tapdisk.h │ │ ├── tapdisk2.c │ │ ├── td.c │ │ └── xmsnap │ ├── include │ │ ├── Makefile │ │ ├── atomicio.h │ │ ├── blktap2.h │ │ ├── blktaplib.h │ │ ├── libvhd-journal.h │ │ ├── libvhd.h │ │ ├── list.h │ │ ├── lvm-util.h │ │ ├── relative-path.h │ │ ├── tapdisk-message.h │ │ ├── vhd-util.h │ │ ├── vhd-uuid.h │ │ └── vhd.h │ ├── lvm │ │ ├── Makefile │ │ └── lvm-util.c │ └── vhd │ │ ├── Makefile │ │ ├── lib │ │ ├── Makefile │ │ ├── atomicio.c │ │ ├── libvhd-journal.c │ │ ├── libvhd.c │ │ ├── relative-path.c │ │ ├── vhd-util-check.c │ │ ├── vhd-util-coalesce.c │ │ ├── vhd-util-create.c │ │ ├── vhd-util-fill.c │ │ ├── vhd-util-modify.c │ │ ├── vhd-util-query.c │ │ ├── vhd-util-read.c │ │ ├── vhd-util-repair.c │ │ ├── vhd-util-resize.c │ │ ├── vhd-util-revert.c │ │ ├── vhd-util-scan.c │ │ ├── vhd-util-set-field.c │ │ ├── vhd-util-snapshot.c │ │ └── vhd-util-uuid.c │ │ ├── vhd-update.c │ │ └── vhd-util.c ├── config.h.in ├── configure ├── configure.ac ├── console │ ├── Makefile │ ├── client │ │ └── main.c │ ├── daemon │ │ ├── io.c │ │ ├── io.h │ │ ├── main.c │ │ ├── utils.c │ │ └── utils.h │ └── testsuite │ │ ├── Makefile │ │ ├── README │ │ ├── console-dom0.c │ │ ├── console-domU.c │ │ └── procpipe.c ├── cross-install ├── debugger │ ├── gdbsx │ │ ├── Makefile │ │ ├── README │ │ ├── Rules.mk │ │ ├── gx │ │ │ ├── Makefile │ │ │ ├── gx.h │ │ │ ├── gx_comm.c │ │ │ ├── gx_local.c │ │ │ ├── gx_main.c │ │ │ ├── gx_utils.c │ │ │ └── xg_dummy.c │ │ └── xg │ │ │ ├── Makefile │ │ │ ├── xg_main.c │ │ │ └── xg_public.h │ └── kdd │ │ ├── Makefile │ │ ├── kdd-xen.c │ │ ├── kdd.c │ │ └── kdd.h ├── examples │ ├── Makefile │ ├── README │ ├── README.incompatibilities │ ├── cpupool │ ├── vnc │ │ ├── Xservers │ │ └── Xvnc-xen │ ├── xeninfo.pl │ ├── xl.conf │ ├── xlexample.hvm │ └── xlexample.pvlinux ├── firmware │ ├── Makefile │ ├── Rules.mk │ ├── etherboot │ │ ├── Config │ │ ├── Makefile │ │ ├── README │ │ └── patches │ │ │ ├── boot_prompt_option.patch │ │ │ └── series │ ├── hvmloader │ │ ├── 32bitbios_support.c │ │ ├── Makefile │ │ ├── apic_regs.h │ │ ├── cacheattr.c │ │ ├── config-seabios.h │ │ ├── config.h │ │ ├── ctype.c │ │ ├── ctype.h │ │ ├── e820.c │ │ ├── e820.h │ │ ├── hvm_param.c │ │ ├── hvmloader.c │ │ ├── hypercall.h │ │ ├── mkhex │ │ ├── mp_tables.c │ │ ├── option_rom.h │ │ ├── optionroms.c │ │ ├── ovmf.c │ │ ├── pci.c │ │ ├── pci_regs.h │ │ ├── pir.c │ │ ├── pir_types.h │ │ ├── rombios.c │ │ ├── seabios.c │ │ ├── smbios.c │ │ ├── smbios_types.h │ │ ├── smp.c │ │ ├── tests.c │ │ ├── util.c │ │ ├── util.h │ │ ├── vnuma.c │ │ ├── vnuma.h │ │ └── xenbus.c │ ├── ovmf-makefile │ ├── rombios │ │ ├── 32bit │ │ │ ├── 32bitbios.c │ │ │ ├── Makefile │ │ │ ├── mkhex │ │ │ ├── pmm.c │ │ │ ├── rombios_compat.h │ │ │ ├── tcgbios │ │ │ │ ├── Makefile │ │ │ │ ├── tcgbios.c │ │ │ │ ├── tcgbios.h │ │ │ │ ├── tpm_drivers.c │ │ │ │ └── tpm_drivers.h │ │ │ ├── util.c │ │ │ └── util.h │ │ ├── 32bitgateway.c │ │ ├── 32bitprotos.h │ │ ├── Makefile │ │ ├── apmbios.S │ │ ├── biossums.c │ │ ├── config.h │ │ ├── e820.h │ │ ├── makesym.perl │ │ ├── rombios.c │ │ ├── rombios.h │ │ └── tcgbios.c │ ├── seabios-config │ └── vgabios │ │ ├── BUGS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── Makefile │ │ ├── Notes │ │ ├── README │ │ ├── TODO │ │ ├── biossums.c │ │ ├── clext.c │ │ ├── dataseghack │ │ ├── vbe.c │ │ ├── vbe.h │ │ ├── vbe_display_api.txt │ │ ├── vbetables-gen.c │ │ ├── vgabios.c │ │ ├── vgabios.h │ │ ├── vgafonts.h │ │ └── vgatables.h ├── flask │ ├── Makefile │ ├── policy │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── modules │ │ │ ├── all_system_role.te │ │ │ ├── dom0.te │ │ │ ├── domU.te │ │ │ ├── guest_features.te │ │ │ ├── isolated_domU.te │ │ │ ├── modules.conf │ │ │ ├── nic_dev.te │ │ │ ├── nomigrate.te │ │ │ ├── prot_domU.te │ │ │ ├── vm_role.cons │ │ │ ├── vm_role.te │ │ │ ├── xen.if │ │ │ ├── xen.te │ │ │ └── xenstore.te │ │ └── policy │ │ │ ├── access_vectors │ │ │ ├── device_contexts │ │ │ ├── global_tunables │ │ │ ├── initial_sids │ │ │ ├── mls │ │ │ ├── security_classes │ │ │ ├── support │ │ │ ├── misc_macros.spt │ │ │ └── mls_macros.spt │ │ │ └── users │ └── utils │ │ ├── Makefile │ │ ├── get-bool.c │ │ ├── getenforce.c │ │ ├── label-pci.c │ │ ├── loadpolicy.c │ │ ├── set-bool.c │ │ └── setenforce.c ├── fuzz │ ├── Makefile │ ├── README.afl │ ├── README.oss-fuzz │ ├── libelf │ │ ├── Makefile │ │ ├── afl-libelf-fuzzer.c │ │ └── libelf-fuzzer.c │ └── x86_instruction_emulator │ │ ├── Makefile │ │ ├── afl-harness.c │ │ └── fuzz-emul.c ├── golang │ ├── Makefile │ └── xenlight │ │ ├── Makefile │ │ └── xenlight.go ├── helpers │ ├── Makefile │ ├── init-dom-json.c │ ├── init-dom-json.h │ ├── init-xenstore-domain.c │ └── xen-init-dom0.c ├── hotplug │ ├── FreeBSD │ │ ├── Makefile │ │ ├── block │ │ ├── rc.d │ │ │ ├── xencommons.in │ │ │ └── xendriverdomain.in │ │ └── vif-bridge │ ├── Linux │ │ ├── Makefile │ │ ├── block │ │ ├── block-common.sh │ │ ├── block-drbd-probe │ │ ├── block-dummy │ │ ├── block-enbd │ │ ├── block-iscsi │ │ ├── block-nbd │ │ ├── block-tap │ │ ├── colo-proxy-setup │ │ ├── external-device-migrate │ │ ├── init.d │ │ │ ├── sysconfig.xencommons.in │ │ │ ├── sysconfig.xendomains.in │ │ │ ├── xen-watchdog.in │ │ │ ├── xencommons.in │ │ │ ├── xendomains.in │ │ │ └── xendriverdomain.in │ │ ├── launch-xenstore.in │ │ ├── locking.sh │ │ ├── logging.sh │ │ ├── remus-netbuf-setup │ │ ├── systemd │ │ │ ├── Makefile │ │ │ ├── proc-xen.mount.in │ │ │ ├── show_service_dependencies.sh │ │ │ ├── var-lib-xenstored.mount.in │ │ │ ├── xen-init-dom0.service.in │ │ │ ├── xen-qemu-dom0-disk-backend.service.in │ │ │ ├── xen-watchdog.service.in │ │ │ ├── xenconsoled.service.in │ │ │ ├── xendomains.service.in │ │ │ ├── xendriverdomain.service.in │ │ │ └── xenstored.service.in │ │ ├── vif-bridge │ │ ├── vif-common.sh │ │ ├── vif-nat │ │ ├── vif-openvswitch │ │ ├── vif-post.d │ │ │ └── 00-vif-local.hook │ │ ├── vif-route │ │ ├── vif-setup.in │ │ ├── vif2 │ │ ├── vscsi │ │ ├── xen-hotplug-cleanup │ │ ├── xen-hotplug-common.sh.in │ │ ├── xen-network-common.sh │ │ ├── xen-script-common.sh │ │ └── xendomains.in │ ├── Makefile │ ├── NetBSD │ │ ├── Makefile │ │ ├── block │ │ ├── rc.d │ │ │ ├── xen-watchdog │ │ │ ├── xencommons.in │ │ │ ├── xendomains │ │ │ └── xendriverdomain.in │ │ ├── vif-bridge │ │ └── vif-ip │ └── common │ │ └── Makefile ├── include │ ├── Makefile │ ├── xen-external │ │ ├── README │ │ ├── bsd-COPYRIGHT │ │ ├── bsd-queue.3 │ │ ├── bsd-sys-queue-h-seddery │ │ └── bsd-sys-queue.h │ ├── xen-foreign │ │ ├── Makefile │ │ ├── mkchecker.py │ │ ├── mkheader.py │ │ ├── reference.size │ │ └── structs.py │ ├── xen-sys │ │ ├── FreeBSD │ │ │ ├── evtchn.h │ │ │ ├── gntdev.h │ │ │ └── privcmd.h │ │ ├── Linux │ │ │ ├── evtchn.h │ │ │ ├── gntalloc.h │ │ │ ├── gntdev.h │ │ │ ├── privcmd.h │ │ │ └── xenbus_dev.h │ │ ├── MiniOS │ │ │ └── privcmd.h │ │ ├── NetBSD │ │ │ ├── evtchn.h │ │ │ └── privcmd.h │ │ ├── NetBSDRump │ │ │ ├── evtchn.h │ │ │ └── privcmd.h │ │ └── SunOS │ │ │ ├── evtchn.h │ │ │ ├── privcmd.h │ │ │ └── xenbus.h │ └── xen-tools │ │ └── libs.h ├── libacpi │ ├── COPYING │ ├── Makefile │ ├── README │ ├── acpi2_0.h │ ├── build.c │ ├── dsdt.asl │ ├── dsdt_acpi_info.asl │ ├── libacpi.h │ ├── mk_dsdt.c │ ├── ssdt_laptop_slate.asl │ ├── ssdt_pm.asl │ ├── ssdt_s3.asl │ ├── ssdt_s4.asl │ ├── ssdt_tpm.asl │ └── static_tables.c ├── libfsimage │ ├── Makefile │ ├── Rules.mk │ ├── common │ │ ├── Makefile │ │ ├── fsimage.c │ │ ├── fsimage.h │ │ ├── fsimage_grub.c │ │ ├── fsimage_grub.h │ │ ├── fsimage_plugin.c │ │ ├── fsimage_plugin.h │ │ ├── fsimage_priv.h │ │ ├── mapfile-GNU │ │ └── mapfile-SunOS │ ├── ext2fs-lib │ │ ├── Makefile │ │ └── ext2fs-lib.c │ ├── ext2fs │ │ ├── Makefile │ │ └── fsys_ext2fs.c │ ├── fat │ │ ├── Makefile │ │ ├── fat.h │ │ └── fsys_fat.c │ ├── iso9660 │ │ ├── Makefile │ │ ├── fsys_iso9660.c │ │ └── iso9660.h │ ├── reiserfs │ │ ├── Makefile │ │ └── fsys_reiserfs.c │ ├── ufs │ │ ├── Makefile │ │ ├── fsys_ufs.c │ │ └── ufs.h │ ├── xfs │ │ ├── Makefile │ │ ├── fsys_xfs.c │ │ └── xfs.h │ └── zfs │ │ ├── Makefile │ │ ├── filesys.h │ │ ├── fsi_zfs.c │ │ ├── fsi_zfs.h │ │ ├── fsys_zfs.c │ │ ├── fsys_zfs.h │ │ ├── mb_info.h │ │ ├── shared.h │ │ ├── zfs-include │ │ ├── dmu.h │ │ ├── dmu_objset.h │ │ ├── dnode.h │ │ ├── dsl_dataset.h │ │ ├── dsl_dir.h │ │ ├── sa_impl.h │ │ ├── spa.h │ │ ├── uberblock_impl.h │ │ ├── vdev_impl.h │ │ ├── zap_impl.h │ │ ├── zap_leaf.h │ │ ├── zfs.h │ │ ├── zfs_acl.h │ │ ├── zfs_znode.h │ │ ├── zil.h │ │ ├── zio.h │ │ └── zio_checksum.h │ │ ├── zfs_fletcher.c │ │ ├── zfs_lzjb.c │ │ └── zfs_sha256.c ├── libs │ ├── Makefile │ ├── call │ │ ├── Makefile │ │ ├── buffer.c │ │ ├── core.c │ │ ├── freebsd.c │ │ ├── include │ │ │ └── xencall.h │ │ ├── libxencall.map │ │ ├── linux.c │ │ ├── minios.c │ │ ├── netbsd.c │ │ ├── private.h │ │ ├── solaris.c │ │ └── xencall.pc.in │ ├── devicemodel │ │ ├── Makefile │ │ ├── compat.c │ │ ├── core.c │ │ ├── include │ │ │ └── xendevicemodel.h │ │ ├── libxendevicemodel.map │ │ ├── linux.c │ │ ├── private.h │ │ └── xendevicemodel.pc.in │ ├── evtchn │ │ ├── Makefile │ │ ├── core.c │ │ ├── freebsd.c │ │ ├── include │ │ │ └── xenevtchn.h │ │ ├── libxenevtchn.map │ │ ├── linux.c │ │ ├── minios.c │ │ ├── netbsd.c │ │ ├── private.h │ │ ├── solaris.c │ │ └── xenevtchn.pc.in │ ├── foreignmemory │ │ ├── Makefile │ │ ├── compat.c │ │ ├── core.c │ │ ├── freebsd.c │ │ ├── include │ │ │ └── xenforeignmemory.h │ │ ├── libxenforeignmemory.map │ │ ├── linux.c │ │ ├── minios.c │ │ ├── netbsd.c │ │ ├── private.h │ │ ├── solaris.c │ │ └── xenforeignmemory.pc.in │ ├── gnttab │ │ ├── Makefile │ │ ├── freebsd.c │ │ ├── gntshr_core.c │ │ ├── gntshr_unimp.c │ │ ├── gnttab_core.c │ │ ├── gnttab_unimp.c │ │ ├── include │ │ │ └── xengnttab.h │ │ ├── libxengnttab.map │ │ ├── linux.c │ │ ├── minios.c │ │ ├── private.h │ │ └── xengnttab.pc.in │ └── toollog │ │ ├── Makefile │ │ ├── include │ │ └── xentoollog.h │ │ ├── libxentoollog.map │ │ ├── xentoollog.pc.in │ │ ├── xtl_core.c │ │ └── xtl_logger_stdio.c ├── libvchan │ ├── Makefile │ ├── init.c │ ├── io.c │ ├── libxenvchan.h │ ├── node-select.c │ ├── node.c │ └── xenvchan.pc.in ├── libxc │ ├── COPYING │ ├── Makefile │ ├── include │ │ ├── xc_dom.h │ │ ├── xenctrl.h │ │ ├── xenctrl_compat.h │ │ └── xenguest.h │ ├── xc_altp2m.c │ ├── xc_arinc653.c │ ├── xc_bitops.h │ ├── xc_compression.c │ ├── xc_core.c │ ├── xc_core.h │ ├── xc_core_arm.c │ ├── xc_core_arm.h │ ├── xc_core_x86.c │ ├── xc_core_x86.h │ ├── xc_cpu_hotplug.c │ ├── xc_cpuid_x86.c │ ├── xc_cpupool.c │ ├── xc_csched.c │ ├── xc_csched2.c │ ├── xc_devicemodel_compat.c │ ├── xc_dom_arm.c │ ├── xc_dom_armzimageloader.c │ ├── xc_dom_binloader.c │ ├── xc_dom_boot.c │ ├── xc_dom_bzimageloader.c │ ├── xc_dom_compat_linux.c │ ├── xc_dom_core.c │ ├── xc_dom_decompress.h │ ├── xc_dom_decompress_lz4.c │ ├── xc_dom_decompress_unsafe.c │ ├── xc_dom_decompress_unsafe.h │ ├── xc_dom_decompress_unsafe_bzip2.c │ ├── xc_dom_decompress_unsafe_lzma.c │ ├── xc_dom_decompress_unsafe_lzo1x.c │ ├── xc_dom_decompress_unsafe_xz.c │ ├── xc_dom_elfloader.c │ ├── xc_dom_hvmloader.c │ ├── xc_dom_x86.c │ ├── xc_domain.c │ ├── xc_efi.h │ ├── xc_elf.h │ ├── xc_evtchn.c │ ├── xc_evtchn_compat.c │ ├── xc_flask.c │ ├── xc_foreign_memory.c │ ├── xc_freebsd.c │ ├── xc_gnttab.c │ ├── xc_gnttab_compat.c │ ├── xc_hcall_buf.c │ ├── xc_kexec.c │ ├── xc_linux.c │ ├── xc_mem_access.c │ ├── xc_mem_paging.c │ ├── xc_memshr.c │ ├── xc_minios.c │ ├── xc_misc.c │ ├── xc_monitor.c │ ├── xc_msr_x86.h │ ├── xc_netbsd.c │ ├── xc_nomigrate.c │ ├── xc_offline_page.c │ ├── xc_pagetab.c │ ├── xc_physdev.c │ ├── xc_pm.c │ ├── xc_private.c │ ├── xc_private.h │ ├── xc_psr.c │ ├── xc_resource.c │ ├── xc_resume.c │ ├── xc_rt.c │ ├── xc_solaris.c │ ├── xc_sr_common.c │ ├── xc_sr_common.h │ ├── xc_sr_common_x86.c │ ├── xc_sr_common_x86.h │ ├── xc_sr_common_x86_pv.c │ ├── xc_sr_common_x86_pv.h │ ├── xc_sr_restore.c │ ├── xc_sr_restore_x86_hvm.c │ ├── xc_sr_restore_x86_pv.c │ ├── xc_sr_save.c │ ├── xc_sr_save_x86_hvm.c │ ├── xc_sr_save_x86_pv.c │ ├── xc_sr_stream_format.h │ ├── xc_suspend.c │ ├── xc_tbuf.c │ ├── xc_tmem.c │ ├── xc_vm_event.c │ ├── xencontrol.pc.in │ ├── xenguest.pc.in │ ├── xg_private.c │ ├── xg_private.h │ └── xg_save_restore.h ├── libxl │ ├── CODING_STYLE │ ├── Makefile │ ├── check-libxl-api-rules │ ├── check-xl-disk-parse │ ├── check-xl-vcpupin-parse │ ├── check-xl-vcpupin-parse.data-example │ ├── check-xl-vif-parse │ ├── flexarray.c │ ├── flexarray.h │ ├── gentest.py │ ├── gentypes.py │ ├── idl.py │ ├── idl.txt │ ├── libxl.c │ ├── libxl.h │ ├── libxl_9pfs.c │ ├── libxl_aoutils.c │ ├── libxl_arch.h │ ├── libxl_arm.c │ ├── libxl_arm.h │ ├── libxl_arm_acpi.c │ ├── libxl_arm_no_acpi.c │ ├── libxl_blktap2.c │ ├── libxl_bootloader.c │ ├── libxl_checkpoint_device.c │ ├── libxl_colo.h │ ├── libxl_colo_nic.c │ ├── libxl_colo_proxy.c │ ├── libxl_colo_qdisk.c │ ├── libxl_colo_restore.c │ ├── libxl_colo_save.c │ ├── libxl_console.c │ ├── libxl_convert_callout.c │ ├── libxl_cpuid.c │ ├── libxl_cpupool.c │ ├── libxl_create.c │ ├── libxl_device.c │ ├── libxl_disk.c │ ├── libxl_dm.c │ ├── libxl_dom.c │ ├── libxl_dom_save.c │ ├── libxl_dom_suspend.c │ ├── libxl_domain.c │ ├── libxl_event.c │ ├── libxl_event.h │ ├── libxl_exec.c │ ├── libxl_flask.c │ ├── libxl_fork.c │ ├── libxl_freebsd.c │ ├── libxl_genid.c │ ├── libxl_internal.c │ ├── libxl_internal.h │ ├── libxl_json.c │ ├── libxl_json.h │ ├── libxl_libfdt_compat.c │ ├── libxl_libfdt_compat.h │ ├── libxl_linux.c │ ├── libxl_mem.c │ ├── libxl_netbsd.c │ ├── libxl_netbuffer.c │ ├── libxl_nic.c │ ├── libxl_no_colo.c │ ├── libxl_no_convert_callout.c │ ├── libxl_noblktap2.c │ ├── libxl_nocpuid.c │ ├── libxl_nonetbuffer.c │ ├── libxl_numa.c │ ├── libxl_osdeps.h │ ├── libxl_paths.c │ ├── libxl_pci.c │ ├── libxl_psr.c │ ├── libxl_qmp.c │ ├── libxl_remus.c │ ├── libxl_remus_disk_drbd.c │ ├── libxl_save_callout.c │ ├── libxl_save_helper.c │ ├── libxl_save_msgs_gen.pl │ ├── libxl_sched.c │ ├── libxl_sr_stream_format.h │ ├── libxl_stream_read.c │ ├── libxl_stream_write.c │ ├── libxl_test_fdevent.c │ ├── libxl_test_fdevent.h │ ├── libxl_test_timedereg.c │ ├── libxl_test_timedereg.h │ ├── libxl_tmem.c │ ├── libxl_types.idl │ ├── libxl_types_internal.idl │ ├── libxl_usb.c │ ├── libxl_utils.c │ ├── libxl_utils.h │ ├── libxl_uuid.c │ ├── libxl_uuid.h │ ├── libxl_vnuma.c │ ├── libxl_vtpm.c │ ├── libxl_x86.c │ ├── libxl_x86_acpi.c │ ├── libxl_x86_acpi.h │ ├── libxl_xshelp.c │ ├── libxlu_cfg.c │ ├── libxlu_cfg_i.h │ ├── libxlu_cfg_l.c │ ├── libxlu_cfg_l.h │ ├── libxlu_cfg_l.l │ ├── libxlu_cfg_y.c │ ├── libxlu_cfg_y.h │ ├── libxlu_cfg_y.y │ ├── libxlu_disk.c │ ├── libxlu_disk_i.h │ ├── libxlu_disk_l.c │ ├── libxlu_disk_l.h │ ├── libxlu_disk_l.l │ ├── libxlu_internal.h │ ├── libxlu_pci.c │ ├── libxlu_vif.c │ ├── libxlutil.h │ ├── osdeps.c │ ├── test_common.c │ ├── test_common.h │ ├── test_fdderegrace.c │ ├── test_timedereg.c │ ├── xenlight.pc.in │ └── xlutil.pc.in ├── memshr │ ├── Makefile │ ├── bidir-daemon.c │ ├── bidir-daemon.h │ ├── bidir-hash.c │ ├── bidir-hash.h │ ├── bidir-namedefs.h │ ├── interface.c │ ├── memshr-priv.h │ ├── memshr.h │ ├── shm.c │ └── shm.h ├── misc │ ├── Makefile │ ├── mkdeb │ ├── mkrpm │ ├── mktarball │ ├── xen-bugtool │ ├── xen-cpuid.c │ ├── xen-detect.c │ ├── xen-hptool.c │ ├── xen-hvmcrash.c │ ├── xen-hvmctx.c │ ├── xen-livepatch.c │ ├── xen-lowmemd.c │ ├── xen-mfndump.c │ ├── xen-ringwatch │ ├── xen-tmem-list-parse.c │ ├── xencons │ ├── xencov.c │ ├── xencov_split │ ├── xenlockprof.c │ ├── xenperf.c │ ├── xenpm.c │ ├── xenpvnetboot │ ├── xensymoops │ └── xenwatchdogd.c ├── ocaml │ ├── LICENSE │ ├── Makefile │ ├── Makefile.rules │ ├── common.make │ ├── libs │ │ ├── Makefile │ │ ├── eventchn │ │ │ ├── META.in │ │ │ ├── Makefile │ │ │ ├── xeneventchn.ml │ │ │ ├── xeneventchn.mli │ │ │ └── xeneventchn_stubs.c │ │ ├── mmap │ │ │ ├── META.in │ │ │ ├── Makefile │ │ │ ├── mmap_stubs.h │ │ │ ├── xenmmap.ml │ │ │ ├── xenmmap.mli │ │ │ └── xenmmap_stubs.c │ │ ├── xb │ │ │ ├── META.in │ │ │ ├── Makefile │ │ │ ├── op.ml │ │ │ ├── packet.ml │ │ │ ├── partial.ml │ │ │ ├── xb.ml │ │ │ ├── xb.mli │ │ │ ├── xenbus_stubs.c │ │ │ ├── xs_ring.ml │ │ │ └── xs_ring_stubs.c │ │ ├── xc │ │ │ ├── META.in │ │ │ ├── Makefile │ │ │ ├── xenctrl.ml │ │ │ ├── xenctrl.mli │ │ │ └── xenctrl_stubs.c │ │ ├── xentoollog │ │ │ ├── META.in │ │ │ ├── Makefile │ │ │ ├── caml_xentoollog.h │ │ │ ├── genlevels.py │ │ │ ├── xentoollog.ml.in │ │ │ ├── xentoollog.mli.in │ │ │ └── xentoollog_stubs.c │ │ ├── xl │ │ │ ├── META.in │ │ │ ├── Makefile │ │ │ ├── genwrap.py │ │ │ ├── xenlight.ml.in │ │ │ ├── xenlight.mli.in │ │ │ └── xenlight_stubs.c │ │ └── xs │ │ │ ├── META.in │ │ │ ├── Makefile │ │ │ ├── queueop.ml │ │ │ ├── xs.ml │ │ │ ├── xs.mli │ │ │ ├── xsraw.ml │ │ │ ├── xsraw.mli │ │ │ ├── xst.ml │ │ │ └── xst.mli │ ├── test │ │ ├── Makefile │ │ ├── dmesg.ml │ │ ├── list_domains.ml │ │ ├── raise_exception.ml │ │ ├── send_debug_keys.ml │ │ └── xtl.ml │ └── xenstored │ │ ├── Makefile │ │ ├── config.ml │ │ ├── connection.ml │ │ ├── connections.ml │ │ ├── define.ml │ │ ├── disk.ml │ │ ├── domain.ml │ │ ├── domains.ml │ │ ├── event.ml │ │ ├── history.ml │ │ ├── logging.ml │ │ ├── oxenstored.conf.in │ │ ├── packet.ml │ │ ├── parse_arg.ml │ │ ├── perms.ml │ │ ├── process.ml │ │ ├── quota.ml │ │ ├── select.ml │ │ ├── select.mli │ │ ├── select_stubs.c │ │ ├── stdext.ml │ │ ├── store.ml │ │ ├── symbol.ml │ │ ├── symbol.mli │ │ ├── syslog.ml │ │ ├── syslog.mli │ │ ├── syslog_stubs.c │ │ ├── systemd.ml │ │ ├── systemd.mli │ │ ├── systemd_stubs.c │ │ ├── transaction.ml │ │ ├── trie.ml │ │ ├── trie.mli │ │ ├── utils.ml │ │ └── xenstored.ml ├── pygrub │ ├── Makefile │ ├── README │ ├── examples │ │ ├── alpine-linux-2.3.2.extlinux │ │ ├── debian-wheezy-hvm.grub2 │ │ ├── fedora-16-with-xen.grub2 │ │ ├── fedora-19.grub2 │ │ ├── rhel-7-beta.grub2 │ │ └── ubuntu-14.04-lts.grub2 │ ├── setup.py │ └── src │ │ ├── ExtLinuxConf.py │ │ ├── GrubConf.py │ │ ├── LiloConf.py │ │ ├── __init__.py │ │ ├── fsimage │ │ └── fsimage.c │ │ └── pygrub ├── python │ ├── Makefile │ ├── README │ ├── ZPL-2.0 │ ├── install-wrap │ ├── pylintrc │ ├── scripts │ │ ├── convert-legacy-stream │ │ └── verify-stream-v2 │ ├── setup.py │ ├── test.py │ └── xen │ │ ├── __init__.py │ │ ├── lowlevel │ │ ├── __init__.py │ │ ├── xc │ │ │ └── xc.c │ │ └── xs │ │ │ └── xs.c │ │ └── migration │ │ ├── __init__.py │ │ ├── legacy.py │ │ ├── libxc.py │ │ ├── libxl.py │ │ ├── public.py │ │ ├── tests.py │ │ ├── verify.py │ │ └── xl.py ├── tests │ ├── Makefile │ ├── mce-test │ │ ├── Makefile │ │ ├── README │ │ ├── cases │ │ │ ├── srao_llc │ │ │ │ ├── dom0 │ │ │ │ │ └── cases.sh │ │ │ │ ├── guest │ │ │ │ │ └── cases.sh │ │ │ │ └── xen │ │ │ │ │ └── cases.sh │ │ │ ├── srao_mem │ │ │ │ ├── dom0 │ │ │ │ │ └── cases.sh │ │ │ │ ├── guest │ │ │ │ │ └── cases.sh │ │ │ │ └── xen │ │ │ │ │ └── cases.sh │ │ │ └── ucna_llc │ │ │ │ ├── dom0 │ │ │ │ └── cases.sh │ │ │ │ ├── guest │ │ │ │ └── cases.sh │ │ │ │ └── xen │ │ │ │ └── cases.sh │ │ ├── config │ │ │ └── setup.conf │ │ ├── lib │ │ │ └── xen-mceinj-tool.sh │ │ └── tools │ │ │ ├── Makefile │ │ │ ├── README │ │ │ └── xen-mceinj.c │ ├── mem-sharing │ │ ├── Makefile │ │ └── memshrtool.c │ ├── regression │ │ ├── Makefile │ │ ├── README │ │ └── scripts │ │ │ ├── build_python.sh │ │ │ ├── check_python_syntax.sh │ │ │ └── download_python.sh │ ├── run_tests.sh │ ├── utests │ │ └── run_all_tests.py │ ├── vhpet │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── emul.h │ │ └── main.c │ ├── x86_emulator │ │ ├── Makefile │ │ ├── blowfish.c │ │ ├── simd.c │ │ ├── test_x86_emulator.c │ │ ├── testcase.mk │ │ ├── x86_emulate.c │ │ └── x86_emulate.h │ ├── xen-access │ │ ├── Makefile │ │ └── xen-access.c │ └── xenstore │ │ ├── Makefile │ │ └── xs-test.c ├── xcutils │ ├── Makefile │ ├── lsevtchn.c │ └── readnotes.c ├── xenbackendd │ ├── Makefile │ └── xenbackendd.c ├── xenmon │ ├── COPYING │ ├── Makefile │ ├── setmask.c │ ├── xenbaked.c │ ├── xenbaked.h │ └── xenmon.py ├── xenpaging │ ├── Makefile │ ├── file_ops.c │ ├── file_ops.h │ ├── pagein.c │ ├── policy.h │ ├── policy_default.c │ ├── xenpaging.c │ └── xenpaging.h ├── xenpmd │ ├── Makefile │ └── xenpmd.c ├── xenstat │ ├── Makefile │ ├── libxenstat │ │ ├── COPYING │ │ ├── Makefile │ │ ├── bindings │ │ │ └── swig │ │ │ │ ├── perl │ │ │ │ └── .empty │ │ │ │ ├── python │ │ │ │ └── .empty │ │ │ │ └── xenstat.i │ │ ├── src │ │ │ ├── xenstat.c │ │ │ ├── xenstat.h │ │ │ ├── xenstat_freebsd.c │ │ │ ├── xenstat_linux.c │ │ │ ├── xenstat_netbsd.c │ │ │ ├── xenstat_priv.h │ │ │ ├── xenstat_qmp.c │ │ │ └── xenstat_solaris.c │ │ └── xenstat.pc.in │ └── xentop │ │ ├── Makefile │ │ ├── TODO │ │ └── xentop.c ├── xenstore │ ├── .gdbinit │ ├── COPYING │ ├── Makefile │ ├── README │ ├── TODO │ ├── hashtable.c │ ├── hashtable.h │ ├── hashtable_private.h │ ├── include │ │ ├── compat │ │ │ ├── xs.h │ │ │ └── xs_lib.h │ │ ├── xenstore.h │ │ └── xenstore_lib.h │ ├── list.h │ ├── talloc.c │ ├── talloc.h │ ├── talloc_guide.txt │ ├── tdb.c │ ├── tdb.h │ ├── utils.c │ ├── utils.h │ ├── xenstore.pc.in │ ├── xenstore_client.c │ ├── xenstore_control.c │ ├── xenstored_control.c │ ├── xenstored_control.h │ ├── xenstored_core.c │ ├── xenstored_core.h │ ├── xenstored_domain.c │ ├── xenstored_domain.h │ ├── xenstored_minios.c │ ├── xenstored_osdep.h │ ├── xenstored_posix.c │ ├── xenstored_probes.d │ ├── xenstored_solaris.c │ ├── xenstored_transaction.c │ ├── xenstored_transaction.h │ ├── xenstored_watch.c │ ├── xenstored_watch.h │ ├── xs.c │ ├── xs_lib.c │ └── xs_tdb_dump.c ├── xentrace │ ├── Makefile │ ├── analyze.h │ ├── formats │ ├── mread.c │ ├── mread.h │ ├── pv.h │ ├── setsize.c │ ├── xenalyze.c │ ├── xenctx.c │ ├── xentrace.c │ └── xentrace_format └── xl │ ├── CODING_STYLE │ ├── Makefile │ ├── bash-completion │ ├── xl.c │ ├── xl.h │ ├── xl_block.c │ ├── xl_cdrom.c │ ├── xl_cmdtable.c │ ├── xl_console.c │ ├── xl_cpupool.c │ ├── xl_flask.c │ ├── xl_info.c │ ├── xl_mem.c │ ├── xl_migrate.c │ ├── xl_misc.c │ ├── xl_nic.c │ ├── xl_parse.c │ ├── xl_parse.h │ ├── xl_pci.c │ ├── xl_psr.c │ ├── xl_saverestore.c │ ├── xl_sched.c │ ├── xl_sxp.c │ ├── xl_tmem.c │ ├── xl_usb.c │ ├── xl_utils.c │ ├── xl_utils.h │ ├── xl_vcpu.c │ ├── xl_vmcontrol.c │ └── xl_vtpm.c ├── unmodified_drivers └── linux-2.6 │ ├── Makefile │ ├── README │ ├── balloon │ ├── Kbuild │ └── Makefile │ ├── blkfront │ ├── Kbuild │ └── Makefile │ ├── compat-include │ ├── asm-generic │ │ ├── pgtable-nopmd.h │ │ └── pgtable-nopud.h │ ├── linux │ │ ├── io.h │ │ ├── mutex.h │ │ └── scatterlist.h │ └── xen │ │ └── platform-compat.h │ ├── mkbuildtree │ ├── netfront │ ├── Kbuild │ └── Makefile │ ├── overrides.mk │ ├── platform-pci │ ├── Kbuild │ ├── Makefile │ ├── evtchn.c │ ├── machine_reboot.c │ ├── panic-handler.c │ ├── platform-compat.c │ ├── platform-pci.c │ ├── platform-pci.h │ └── xen_support.c │ ├── scsifront │ ├── Kbuild │ └── Makefile │ ├── usbfront │ ├── Kbuild │ └── Makefile │ └── xenbus │ └── empty_directory ├── version.sh └── xen ├── COPYING ├── Kconfig ├── Kconfig.debug ├── Makefile ├── Rules.mk ├── arch ├── Kconfig ├── arm │ ├── Kconfig │ ├── Makefile │ ├── README.LinuxPrimitives │ ├── Rules.mk │ ├── acpi │ │ ├── Makefile │ │ ├── boot.c │ │ └── lib.c │ ├── alternative.c │ ├── arm32 │ │ ├── Makefile │ │ ├── asm-offsets.c │ │ ├── debug-8250.inc │ │ ├── debug-exynos4210.inc │ │ ├── debug-pl011.inc │ │ ├── debug-scif.inc │ │ ├── debug.S │ │ ├── domain.c │ │ ├── domctl.c │ │ ├── entry.S │ │ ├── head.S │ │ ├── insn.c │ │ ├── lib │ │ │ ├── Makefile │ │ │ ├── assembler.h │ │ │ ├── bitops.h │ │ │ ├── changebit.S │ │ │ ├── clearbit.S │ │ │ ├── copy_template.S │ │ │ ├── div64.S │ │ │ ├── findbit.S │ │ │ ├── lib1funcs.S │ │ │ ├── lshrdi3.S │ │ │ ├── memchr.S │ │ │ ├── memcpy.S │ │ │ ├── memmove.S │ │ │ ├── memset.S │ │ │ ├── memzero.S │ │ │ ├── setbit.S │ │ │ ├── strchr.S │ │ │ ├── strrchr.S │ │ │ ├── testchangebit.S │ │ │ ├── testclearbit.S │ │ │ └── testsetbit.S │ │ ├── livepatch.c │ │ ├── proc-caxx.c │ │ ├── proc-v7.S │ │ ├── smpboot.c │ │ ├── traps.c │ │ └── vfp.c │ ├── arm64 │ │ ├── Makefile │ │ ├── asm-offsets.c │ │ ├── cache.S │ │ ├── debug-8250.inc │ │ ├── debug-cadence.inc │ │ ├── debug-pl011.inc │ │ ├── debug.S │ │ ├── domain.c │ │ ├── domctl.c │ │ ├── entry.S │ │ ├── head.S │ │ ├── insn.c │ │ ├── lib │ │ │ ├── Makefile │ │ │ ├── assembler.h │ │ │ ├── bitops.S │ │ │ ├── clear_page.S │ │ │ ├── find_next_bit.c │ │ │ ├── memchr.S │ │ │ ├── memcmp.S │ │ │ ├── memcpy.S │ │ │ ├── memmove.S │ │ │ ├── memset.S │ │ │ ├── strchr.S │ │ │ ├── strcmp.S │ │ │ ├── strlen.S │ │ │ ├── strncmp.S │ │ │ ├── strnlen.S │ │ │ └── strrchr.S │ │ ├── livepatch.c │ │ ├── smpboot.c │ │ ├── traps.c │ │ └── vfp.c │ ├── bootfdt.c │ ├── configs │ │ ├── arm32_defconfig │ │ └── arm64_defconfig │ ├── cpu.c │ ├── cpuerrata.c │ ├── cpufeature.c │ ├── decode.c │ ├── decode.h │ ├── device.c │ ├── domain.c │ ├── domain_build.c │ ├── domctl.c │ ├── dtb.S │ ├── early_printk.c │ ├── efi │ │ ├── Makefile │ │ ├── efi-boot.h │ │ ├── efi-dom0.c │ │ └── runtime.h │ ├── gic-v2.c │ ├── gic-v3-its.c │ ├── gic-v3-lpi.c │ ├── gic-v3.c │ ├── gic.c │ ├── guestcopy.c │ ├── hvm.c │ ├── io.c │ ├── irq.c │ ├── kernel.c │ ├── kernel.h │ ├── livepatch.c │ ├── mem_access.c │ ├── mm.c │ ├── monitor.c │ ├── p2m.c │ ├── percpu.c │ ├── physdev.c │ ├── platform.c │ ├── platform_hypercall.c │ ├── platforms │ │ ├── Makefile │ │ ├── brcm.c │ │ ├── exynos5.c │ │ ├── midway.c │ │ ├── omap5.c │ │ ├── rcar2.c │ │ ├── seattle.c │ │ ├── sunxi.c │ │ ├── vexpress.c │ │ ├── xgene-storm.c │ │ └── xilinx-zynqmp.c │ ├── processor.c │ ├── psci.c │ ├── setup.c │ ├── shutdown.c │ ├── smc.S │ ├── smp.c │ ├── smpboot.c │ ├── sysctl.c │ ├── time.c │ ├── traps.c │ ├── vgic-v2.c │ ├── vgic-v3-its.c │ ├── vgic-v3.c │ ├── vgic.c │ ├── vm_event.c │ ├── vpsci.c │ ├── vtimer.c │ ├── vtimer.h │ ├── vuart.c │ ├── vuart.h │ └── xen.lds.S └── x86 │ ├── Kconfig │ ├── Makefile │ ├── Rules.mk │ ├── acpi │ ├── Makefile │ ├── boot.c │ ├── cpu_idle.c │ ├── cpufreq │ │ ├── Makefile │ │ ├── cpufreq.c │ │ └── powernow.c │ ├── cpuidle_menu.c │ ├── lib.c │ ├── power.c │ ├── suspend.c │ └── wakeup_prot.S │ ├── alternative.c │ ├── apic.c │ ├── bitops.c │ ├── boot │ ├── Makefile │ ├── build32.lds │ ├── build32.mk │ ├── cmdline.c │ ├── defs.h │ ├── edd.S │ ├── head.S │ ├── mem.S │ ├── mkelf32.c │ ├── reloc.c │ ├── trampoline.S │ ├── video.S │ ├── video.h │ ├── wakeup.S │ └── x86_64.S │ ├── bzimage.c │ ├── clear_page.S │ ├── compat.c │ ├── configs │ ├── x86_32_defconfig │ └── x86_64_defconfig │ ├── copy_page.S │ ├── cpu │ ├── Makefile │ ├── amd.c │ ├── centaur.c │ ├── common.c │ ├── cpu.h │ ├── intel.c │ ├── intel_cacheinfo.c │ ├── mcheck │ │ ├── Makefile │ │ ├── amd_nonfatal.c │ │ ├── barrier.c │ │ ├── barrier.h │ │ ├── mcaction.c │ │ ├── mcaction.h │ │ ├── mce-apei.c │ │ ├── mce.c │ │ ├── mce.h │ │ ├── mce_amd.c │ │ ├── mce_amd.h │ │ ├── mce_intel.c │ │ ├── mce_quirks.h │ │ ├── mctelem.c │ │ ├── mctelem.h │ │ ├── non-fatal.c │ │ ├── util.c │ │ ├── util.h │ │ ├── vmce.c │ │ ├── vmce.h │ │ └── x86_mca.h │ ├── mtrr │ │ ├── Makefile │ │ ├── generic.c │ │ ├── main.c │ │ └── mtrr.h │ ├── mwait-idle.c │ ├── vpmu.c │ ├── vpmu_amd.c │ └── vpmu_intel.c │ ├── cpuid.c │ ├── crash.c │ ├── debug.c │ ├── delay.c │ ├── dmi_scan.c │ ├── dom0_build.c │ ├── domain.c │ ├── domain_page.c │ ├── domctl.c │ ├── e820.c │ ├── efi │ ├── Makefile │ ├── buildid.ihex │ ├── check.c │ ├── efi-boot.h │ ├── mkreloc.c │ ├── relocs-dummy.S │ ├── runtime.h │ └── stub.c │ ├── extable.c │ ├── flushtlb.c │ ├── gdbstub.c │ ├── genapic │ ├── Makefile │ ├── bigsmp.c │ ├── default.c │ ├── delivery.c │ ├── probe.c │ └── x2apic.c │ ├── hpet.c │ ├── hvm │ ├── Makefile │ ├── asid.c │ ├── dm.c │ ├── dom0_build.c │ ├── emulate.c │ ├── hpet.c │ ├── hvm.c │ ├── hypercall.c │ ├── i8254.c │ ├── intercept.c │ ├── io.c │ ├── ioreq.c │ ├── irq.c │ ├── monitor.c │ ├── mtrr.c │ ├── nestedhvm.c │ ├── pmtimer.c │ ├── quirks.c │ ├── rtc.c │ ├── save.c │ ├── stdvga.c │ ├── svm │ │ ├── Makefile │ │ ├── asid.c │ │ ├── emulate.c │ │ ├── entry.S │ │ ├── intr.c │ │ ├── nestedsvm.c │ │ ├── svm.c │ │ ├── svmdebug.c │ │ └── vmcb.c │ ├── vioapic.c │ ├── viridian.c │ ├── vlapic.c │ ├── vm_event.c │ ├── vmsi.c │ ├── vmx │ │ ├── Makefile │ │ ├── entry.S │ │ ├── intr.c │ │ ├── realmode.c │ │ ├── vmcs.c │ │ ├── vmx.c │ │ └── vvmx.c │ ├── vpic.c │ └── vpt.c │ ├── hypercall.c │ ├── i387.c │ ├── i8259.c │ ├── io_apic.c │ ├── ioport_emulate.c │ ├── irq.c │ ├── livepatch.c │ ├── machine_kexec.c │ ├── microcode.c │ ├── microcode_amd.c │ ├── microcode_intel.c │ ├── mm.c │ ├── mm │ ├── Makefile │ ├── altp2m.c │ ├── guest_walk.c │ ├── hap │ │ ├── Makefile │ │ ├── guest_walk.c │ │ ├── hap.c │ │ ├── nested_ept.c │ │ ├── nested_hap.c │ │ └── private.h │ ├── mem_access.c │ ├── mem_paging.c │ ├── mem_sharing.c │ ├── mm-locks.h │ ├── p2m-ept.c │ ├── p2m-pod.c │ ├── p2m-pt.c │ ├── p2m.c │ ├── paging.c │ └── shadow │ │ ├── Makefile │ │ ├── common.c │ │ ├── multi.c │ │ ├── multi.h │ │ ├── none.c │ │ ├── private.h │ │ └── types.h │ ├── monitor.c │ ├── mpparse.c │ ├── msi.c │ ├── nmi.c │ ├── numa.c │ ├── oprofile │ ├── Makefile │ ├── backtrace.c │ ├── nmi_int.c │ ├── op_counter.h │ ├── op_model_athlon.c │ ├── op_model_p4.c │ ├── op_model_ppro.c │ ├── op_x86_model.h │ └── xenoprof.c │ ├── pci.c │ ├── percpu.c │ ├── physdev.c │ ├── platform_hypercall.c │ ├── psr.c │ ├── pv │ ├── Makefile │ ├── dom0_build.c │ ├── hypercall.c │ └── traps.c │ ├── setup.c │ ├── shutdown.c │ ├── smp.c │ ├── smpboot.c │ ├── srat.c │ ├── string.c │ ├── sysctl.c │ ├── tboot.c │ ├── time.c │ ├── trace.c │ ├── traps.c │ ├── usercopy.c │ ├── vm_event.c │ ├── x86_64 │ ├── Makefile │ ├── acpi_mmcfg.c │ ├── asm-offsets.c │ ├── compat.c │ ├── compat │ │ ├── Makefile │ │ ├── entry.S │ │ ├── mm.c │ │ └── traps.c │ ├── cpu_idle.c │ ├── cpufreq.c │ ├── domain.c │ ├── entry.S │ ├── gdbstub.c │ ├── gpr_switch.S │ ├── kexec_reloc.S │ ├── machine_kexec.c │ ├── mm.c │ ├── mmconf-fam10h.c │ ├── mmconfig-shared.c │ ├── mmconfig.h │ ├── mmconfig_64.c │ ├── pci.c │ ├── physdev.c │ ├── platform_hypercall.c │ └── traps.c │ ├── x86_emulate.c │ ├── x86_emulate │ ├── x86_emulate.c │ └── x86_emulate.h │ ├── xen.lds.S │ └── xstate.c ├── common ├── COPYING ├── Kconfig ├── Makefile ├── README.source ├── bitmap.c ├── bsearch.c ├── bunzip2.c ├── compat │ ├── domain.c │ ├── grant_table.c │ ├── kernel.c │ ├── memory.c │ ├── multicall.c │ ├── schedule.c │ ├── tmem_xen.c │ ├── xenoprof.c │ └── xlat.c ├── core_parking.c ├── cpu.c ├── cpupool.c ├── decompress.c ├── decompress.h ├── device_tree.c ├── domain.c ├── domctl.c ├── earlycpio.c ├── efi │ ├── boot.c │ ├── compat.c │ ├── efi.h │ └── runtime.c ├── event_2l.c ├── event_channel.c ├── event_fifo.c ├── gcov │ ├── Makefile │ ├── gcc_3_4.c │ ├── gcc_4_7.c │ ├── gcc_4_9.c │ ├── gcc_5.c │ ├── gcov.c │ ├── gcov.h │ └── gcov_base.c ├── gdbstub.c ├── grant_table.c ├── guestcopy.c ├── gunzip.c ├── hvm │ ├── Makefile │ └── save.c ├── inflate.c ├── irq.c ├── kernel.c ├── kexec.c ├── keyhandler.c ├── kimage.c ├── lib.c ├── libelf │ ├── COPYING │ ├── Makefile │ ├── README │ ├── libelf-dominfo.c │ ├── libelf-loader.c │ ├── libelf-private.h │ └── libelf-tools.c ├── libfdt │ ├── Makefile │ ├── Makefile.libfdt │ ├── TODO │ ├── fdt.c │ ├── fdt_empty_tree.c │ ├── fdt_ro.c │ ├── fdt_rw.c │ ├── fdt_strerror.c │ ├── fdt_sw.c │ ├── fdt_wip.c │ ├── libfdt_internal.h │ └── version.lds ├── livepatch.c ├── livepatch_elf.c ├── lz4 │ ├── decompress.c │ └── defs.h ├── lzo.c ├── mem_access.c ├── memory.c ├── monitor.c ├── multicall.c ├── notifier.c ├── page_alloc.c ├── pdx.c ├── perfc.c ├── preempt.c ├── radix-tree.c ├── random.c ├── rangeset.c ├── rbtree.c ├── rcupdate.c ├── rwlock.c ├── sched_arinc653.c ├── sched_credit.c ├── sched_credit2.c ├── sched_null.c ├── sched_rt.c ├── schedule.c ├── shutdown.c ├── smp.c ├── softirq.c ├── sort.c ├── spinlock.c ├── stop_machine.c ├── string.c ├── symbols-dummy.c ├── symbols.c ├── sysctl.c ├── tasklet.c ├── time.c ├── timer.c ├── tmem.c ├── tmem_control.c ├── tmem_xen.c ├── trace.c ├── unlz4.c ├── unlzma.c ├── unlzo.c ├── unxz.c ├── version.c ├── virtual_region.c ├── vm_event.c ├── vmap.c ├── vsprintf.c ├── wait.c ├── warning.c ├── xenoprof.c ├── xmalloc_tlsf.c └── xz │ ├── crc32.c │ ├── dec_bcj.c │ ├── dec_lzma2.c │ ├── dec_stream.c │ ├── lzma2.h │ ├── private.h │ └── stream.h ├── crypto ├── Makefile ├── README.source ├── rijndael.c └── vmac.c ├── drivers ├── Kconfig ├── Makefile ├── acpi │ ├── Kconfig │ ├── Makefile │ ├── apei │ │ ├── Makefile │ │ ├── apei-base.c │ │ ├── apei-internal.h │ │ ├── apei-io.c │ │ ├── erst.c │ │ └── hest.c │ ├── hwregs.c │ ├── numa.c │ ├── osl.c │ ├── pmstat.c │ ├── reboot.c │ ├── tables.c │ ├── tables │ │ ├── Makefile │ │ ├── tbfadt.c │ │ ├── tbinstal.c │ │ ├── tbutils.c │ │ ├── tbxface.c │ │ └── tbxfroot.c │ └── utilities │ │ ├── Makefile │ │ ├── utglobal.c │ │ └── utmisc.c ├── char │ ├── Kconfig │ ├── Makefile │ ├── arm-uart.c │ ├── cadence-uart.c │ ├── console.c │ ├── ehci-dbgp.c │ ├── exynos4210-uart.c │ ├── ns16550.c │ ├── omap-uart.c │ ├── pl011.c │ ├── scif-uart.c │ └── serial.c ├── cpufreq │ ├── Kconfig │ ├── Makefile │ ├── cpufreq.c │ ├── cpufreq_misc_governors.c │ ├── cpufreq_ondemand.c │ └── utility.c ├── passthrough │ ├── Kconfig │ ├── Makefile │ ├── amd │ │ ├── Makefile │ │ ├── iommu_acpi.c │ │ ├── iommu_cmd.c │ │ ├── iommu_detect.c │ │ ├── iommu_guest.c │ │ ├── iommu_init.c │ │ ├── iommu_intr.c │ │ ├── iommu_map.c │ │ └── pci_amd_iommu.c │ ├── arm │ │ ├── Makefile │ │ ├── iommu.c │ │ └── smmu.c │ ├── ats.h │ ├── device_tree.c │ ├── io.c │ ├── iommu.c │ ├── pci.c │ ├── vtd │ │ ├── Makefile │ │ ├── dmar.c │ │ ├── dmar.h │ │ ├── extern.h │ │ ├── intremap.c │ │ ├── iommu.c │ │ ├── iommu.h │ │ ├── qinval.c │ │ ├── quirks.c │ │ ├── utils.c │ │ ├── vtd.h │ │ └── x86 │ │ │ ├── Makefile │ │ │ ├── ats.c │ │ │ └── vtd.c │ └── x86 │ │ ├── Makefile │ │ ├── ats.c │ │ └── iommu.c ├── pci │ ├── Kconfig │ ├── Makefile │ └── pci.c └── video │ ├── Kconfig │ ├── Makefile │ ├── arm_hdlcd.c │ ├── font.h │ ├── font_8x14.c │ ├── font_8x16.c │ ├── font_8x8.c │ ├── lfb.c │ ├── lfb.h │ ├── modelines.h │ ├── vesa.c │ └── vga.c ├── include ├── Makefile ├── acpi │ ├── acconfig.h │ ├── acexcep.h │ ├── acglobal.h │ ├── achware.h │ ├── aclocal.h │ ├── acmacros.h │ ├── acnames.h │ ├── acoutput.h │ ├── acpi.h │ ├── acpiosxf.h │ ├── acpixf.h │ ├── actables.h │ ├── actbl.h │ ├── actbl1.h │ ├── actbl2.h │ ├── actbl3.h │ ├── actypes.h │ ├── acutils.h │ ├── apei.h │ ├── cpufreq │ │ ├── cpufreq.h │ │ └── processor_perf.h │ ├── pdc_intel.h │ └── platform │ │ ├── acenv.h │ │ ├── acgcc.h │ │ └── aclinux.h ├── asm-arm │ ├── acpi.h │ ├── alternative.h │ ├── altp2m.h │ ├── arm32 │ │ ├── atomic.h │ │ ├── bitops.h │ │ ├── bug.h │ │ ├── cmpxchg.h │ │ ├── flushtlb.h │ │ ├── insn.h │ │ ├── io.h │ │ ├── macros.h │ │ ├── mm.h │ │ ├── page.h │ │ ├── processor.h │ │ ├── system.h │ │ └── vfp.h │ ├── arm64 │ │ ├── atomic.h │ │ ├── bitops.h │ │ ├── brk.h │ │ ├── bug.h │ │ ├── cmpxchg.h │ │ ├── efibind.h │ │ ├── flushtlb.h │ │ ├── insn.h │ │ ├── io.h │ │ ├── mm.h │ │ ├── page.h │ │ ├── processor.h │ │ ├── system.h │ │ └── vfp.h │ ├── asm_defns.h │ ├── atomic.h │ ├── bitops.h │ ├── bug.h │ ├── byteorder.h │ ├── cache.h │ ├── cadence-uart.h │ ├── config.h │ ├── cpregs.h │ ├── cpuerrata.h │ ├── cpufeature.h │ ├── current.h │ ├── debugger.h │ ├── delay.h │ ├── desc.h │ ├── device.h │ ├── div64.h │ ├── domain.h │ ├── early_printk.h │ ├── efibind.h │ ├── elf.h │ ├── event.h │ ├── exynos4210-uart.h │ ├── flushtlb.h │ ├── gic.h │ ├── gic_v3_defs.h │ ├── gic_v3_its.h │ ├── grant_table.h │ ├── guest_access.h │ ├── hardirq.h │ ├── hypercall.h │ ├── init.h │ ├── insn.h │ ├── io.h │ ├── iocap.h │ ├── iommu.h │ ├── irq.h │ ├── livepatch.h │ ├── macros.h │ ├── mem_access.h │ ├── mm.h │ ├── mmio.h │ ├── monitor.h │ ├── nmi.h │ ├── numa.h │ ├── p2m.h │ ├── page.h │ ├── paging.h │ ├── pci.h │ ├── percpu.h │ ├── perfc.h │ ├── perfc_defn.h │ ├── pl011-uart.h │ ├── platform.h │ ├── platforms │ │ ├── exynos5.h │ │ ├── midway.h │ │ ├── omap5.h │ │ └── vexpress.h │ ├── processor.h │ ├── procinfo.h │ ├── psci.h │ ├── random.h │ ├── regs.h │ ├── scif-uart.h │ ├── setup.h │ ├── smp.h │ ├── softirq.h │ ├── spinlock.h │ ├── string.h │ ├── sysregs.h │ ├── system.h │ ├── time.h │ ├── trace.h │ ├── types.h │ ├── vfp.h │ ├── vgic-emul.h │ ├── vgic.h │ ├── vm_event.h │ ├── vreg.h │ └── xenoprof.h ├── asm-x86 │ ├── acpi.h │ ├── alternative.h │ ├── altp2m.h │ ├── amd-iommu.h │ ├── amd.h │ ├── apic.h │ ├── apicdef.h │ ├── asm_defns.h │ ├── atomic.h │ ├── bitops.h │ ├── bug.h │ ├── byteorder.h │ ├── bzimage.h │ ├── cache.h │ ├── compat.h │ ├── config.h │ ├── cpufeature.h │ ├── cpufeatures.h │ ├── cpufeatureset.h │ ├── cpuid.h │ ├── cpuidle.h │ ├── current.h │ ├── debugger.h │ ├── debugreg.h │ ├── delay.h │ ├── desc.h │ ├── device.h │ ├── div64.h │ ├── dom0_build.h │ ├── domain.h │ ├── e820.h │ ├── edd.h │ ├── efibind.h │ ├── elf.h │ ├── event.h │ ├── fixmap.h │ ├── flushtlb.h │ ├── genapic.h │ ├── grant_table.h │ ├── guest_access.h │ ├── guest_pt.h │ ├── hap.h │ ├── hardirq.h │ ├── hpet.h │ ├── hvm │ │ ├── asid.h │ │ ├── cacheattr.h │ │ ├── domain.h │ │ ├── emulate.h │ │ ├── guest_access.h │ │ ├── hvm.h │ │ ├── io.h │ │ ├── ioreq.h │ │ ├── irq.h │ │ ├── monitor.h │ │ ├── nestedhvm.h │ │ ├── support.h │ │ ├── svm │ │ │ ├── amd-iommu-defs.h │ │ │ ├── amd-iommu-proto.h │ │ │ ├── asid.h │ │ │ ├── emulate.h │ │ │ ├── intr.h │ │ │ ├── nestedsvm.h │ │ │ ├── svm.h │ │ │ ├── svmdebug.h │ │ │ └── vmcb.h │ │ ├── trace.h │ │ ├── vcpu.h │ │ ├── vioapic.h │ │ ├── viridian.h │ │ ├── vlapic.h │ │ ├── vm_event.h │ │ ├── vmx │ │ │ ├── vmcs.h │ │ │ ├── vmx.h │ │ │ └── vvmx.h │ │ ├── vpic.h │ │ └── vpt.h │ ├── hypercall.h │ ├── i387.h │ ├── init.h │ ├── io.h │ ├── io_apic.h │ ├── iocap.h │ ├── iommu.h │ ├── irq.h │ ├── ldt.h │ ├── livepatch.h │ ├── mach-default │ │ ├── bios_ebda.h │ │ ├── io_ports.h │ │ ├── irq_vectors.h │ │ ├── mach_mpparse.h │ │ ├── mach_mpspec.h │ │ ├── mach_wakecpu.h │ │ └── smpboot_hooks.h │ ├── mach-generic │ │ ├── mach_apic.h │ │ └── mach_mpparse.h │ ├── machine_kexec.h │ ├── mc146818rtc.h │ ├── mce.h │ ├── mem_access.h │ ├── mem_paging.h │ ├── mem_sharing.h │ ├── microcode.h │ ├── mm.h │ ├── monitor.h │ ├── mpspec.h │ ├── mpspec_def.h │ ├── msi.h │ ├── msr-index.h │ ├── msr.h │ ├── mtrr.h │ ├── mwait.h │ ├── nmi.h │ ├── nops.h │ ├── numa.h │ ├── p2m.h │ ├── page.h │ ├── paging.h │ ├── pci.h │ ├── percpu.h │ ├── perfc.h │ ├── perfc_defn.h │ ├── processor.h │ ├── psr.h │ ├── random.h │ ├── regs.h │ ├── setup.h │ ├── shadow.h │ ├── shared.h │ ├── smp.h │ ├── softirq.h │ ├── spinlock.h │ ├── string.h │ ├── system.h │ ├── tboot.h │ ├── time.h │ ├── trace.h │ ├── traps.h │ ├── types.h │ ├── uaccess.h │ ├── vm_event.h │ ├── vpmu.h │ ├── x86-defns.h │ ├── x86-vendors.h │ ├── x86_64 │ │ ├── efibind.h │ │ ├── elf.h │ │ ├── page.h │ │ ├── regs.h │ │ ├── system.h │ │ └── uaccess.h │ ├── x86_emulate.h │ ├── xenoprof.h │ └── xstate.h ├── crypto │ ├── README.source │ ├── rijndael.h │ └── vmac.h ├── efi │ ├── efiapi.h │ ├── eficapsule.h │ ├── eficon.h │ ├── efidef.h │ ├── efidevp.h │ ├── efierr.h │ ├── efipciio.h │ └── efiprot.h ├── public │ ├── COPYING │ ├── arch-arm.h │ ├── arch-arm │ │ └── hvm │ │ │ └── save.h │ ├── arch-x86 │ │ ├── cpufeatureset.h │ │ ├── cpuid.h │ │ ├── hvm │ │ │ ├── save.h │ │ │ └── start_info.h │ │ ├── pmu.h │ │ ├── xen-mca.h │ │ ├── xen-x86_32.h │ │ ├── xen-x86_64.h │ │ └── xen.h │ ├── arch-x86_32.h │ ├── arch-x86_64.h │ ├── callback.h │ ├── dom0_ops.h │ ├── domctl.h │ ├── elfnote.h │ ├── errno.h │ ├── event_channel.h │ ├── features.h │ ├── grant_table.h │ ├── hvm │ │ ├── dm_op.h │ │ ├── e820.h │ │ ├── hvm_info_table.h │ │ ├── hvm_op.h │ │ ├── hvm_vcpu.h │ │ ├── hvm_xs_strings.h │ │ ├── ioreq.h │ │ ├── params.h │ │ ├── pvdrivers.h │ │ └── save.h │ ├── io │ │ ├── 9pfs.h │ │ ├── blkif.h │ │ ├── console.h │ │ ├── displif.h │ │ ├── fbif.h │ │ ├── fsif.h │ │ ├── kbdif.h │ │ ├── libxenvchan.h │ │ ├── netif.h │ │ ├── pciif.h │ │ ├── protocols.h │ │ ├── pvcalls.h │ │ ├── ring.h │ │ ├── sndif.h │ │ ├── tpmif.h │ │ ├── usbif.h │ │ ├── vscsiif.h │ │ ├── xenbus.h │ │ └── xs_wire.h │ ├── kexec.h │ ├── memory.h │ ├── nmi.h │ ├── physdev.h │ ├── platform.h │ ├── pmu.h │ ├── sched.h │ ├── sysctl.h │ ├── tmem.h │ ├── trace.h │ ├── vcpu.h │ ├── version.h │ ├── vm_event.h │ ├── xen-compat.h │ ├── xen.h │ ├── xencomm.h │ ├── xenoprof.h │ └── xsm │ │ └── flask_op.h ├── xen │ ├── 8250-uart.h │ ├── acpi.h │ ├── atomic.h │ ├── bitmap.h │ ├── bitops.h │ ├── byteorder │ │ ├── big_endian.h │ │ ├── generic.h │ │ ├── little_endian.h │ │ └── swab.h │ ├── cache.h │ ├── compat.h │ ├── compile.h.in │ ├── compiler.h │ ├── config.h │ ├── console.h │ ├── const.h │ ├── cper.h │ ├── cpu.h │ ├── cpuidle.h │ ├── cpumask.h │ ├── ctype.h │ ├── decompress.h │ ├── delay.h │ ├── device_tree.h │ ├── dmi.h │ ├── domain.h │ ├── domain_page.h │ ├── early_printk.h │ ├── earlycpio.h │ ├── efi.h │ ├── elf.h │ ├── elfcore.h │ ├── elfstructs.h │ ├── err.h │ ├── errno.h │ ├── event.h │ ├── event_fifo.h │ ├── gcov.h │ ├── gdbstub.h │ ├── grant_table.h │ ├── guest_access.h │ ├── gunzip.h │ ├── hash.h │ ├── hvm │ │ ├── irq.h │ │ └── save.h │ ├── hypercall.h │ ├── init.h │ ├── inttypes.h │ ├── iocap.h │ ├── iommu.h │ ├── irq.h │ ├── irq_cpustat.h │ ├── kconfig.h │ ├── kernel.h │ ├── kexec.h │ ├── keyhandler.h │ ├── kimage.h │ ├── lib.h │ ├── libelf.h │ ├── libfdt │ │ ├── fdt.h │ │ ├── libfdt.h │ │ └── libfdt_env.h │ ├── list.h │ ├── livepatch.h │ ├── livepatch_elf.h │ ├── livepatch_payload.h │ ├── lz4.h │ ├── lzo.h │ ├── mem_access.h │ ├── mm.h │ ├── monitor.h │ ├── multiboot.h │ ├── multiboot2.h │ ├── multicall.h │ ├── nmi.h │ ├── nodemask.h │ ├── notifier.h │ ├── numa.h │ ├── p2m-common.h │ ├── paging.h │ ├── pci.h │ ├── pci_ids.h │ ├── pci_regs.h │ ├── pdx.h │ ├── percpu.h │ ├── perfc.h │ ├── perfc_defn.h │ ├── pfn.h │ ├── pmstat.h │ ├── preempt.h │ ├── prefetch.h │ ├── radix-tree.h │ ├── random.h │ ├── rangeset.h │ ├── rbtree.h │ ├── rcupdate.h │ ├── rwlock.h │ ├── sched-if.h │ ├── sched.h │ ├── serial.h │ ├── shared.h │ ├── shutdown.h │ ├── sizes.h │ ├── smp.h │ ├── softirq.h │ ├── sort.h │ ├── spinlock.h │ ├── stdarg.h │ ├── stdbool.h │ ├── stop_machine.h │ ├── string.h │ ├── stringify.h │ ├── symbols.h │ ├── tasklet.h │ ├── time.h │ ├── timer.h │ ├── tmem.h │ ├── tmem_control.h │ ├── tmem_xen.h │ ├── trace.h │ ├── types.h │ ├── typesafe.h │ ├── version.h │ ├── vga.h │ ├── video.h │ ├── virtual_region.h │ ├── vm_event.h │ ├── vmap.h │ ├── wait.h │ ├── warning.h │ ├── watchdog.h │ ├── xenoprof.h │ └── xmalloc.h ├── xlat.lst └── xsm │ ├── dummy.h │ └── xsm.h ├── test ├── Makefile └── livepatch │ ├── Makefile │ ├── xen_bye_world.c │ ├── xen_bye_world_func.c │ ├── xen_hello_world.c │ ├── xen_hello_world_func.c │ ├── xen_nop.c │ ├── xen_replace_world.c │ └── xen_replace_world_func.c ├── tools ├── Makefile ├── compat-build-header.py ├── compat-build-source.py ├── fig-to-oct.py ├── gen-cpuid.py ├── get-fields.sh ├── kconfig │ ├── .gitignore │ ├── Makefile │ ├── Makefile.host │ ├── Makefile.kconfig │ ├── POTFILES.in │ ├── README.source │ ├── allrandom.config │ ├── check.sh │ ├── conf.c │ ├── confdata.c │ ├── expr.c │ ├── expr.h │ ├── gconf.c │ ├── gconf.glade │ ├── images.c │ ├── kxgettext.c │ ├── list.h │ ├── lkc.h │ ├── lkc_proto.h │ ├── lxdialog │ │ ├── .gitignore │ │ ├── BIG.FAT.WARNING │ │ ├── check-lxdialog.sh │ │ ├── checklist.c │ │ ├── dialog.h │ │ ├── inputbox.c │ │ ├── menubox.c │ │ ├── textbox.c │ │ ├── util.c │ │ └── yesno.c │ ├── mconf.c │ ├── menu.c │ ├── merge_config.sh │ ├── nconf.c │ ├── nconf.gui.c │ ├── nconf.h │ ├── qconf.cc │ ├── qconf.h │ ├── streamline_config.pl │ ├── symbol.c │ ├── util.c │ ├── zconf.gperf │ ├── zconf.hash.c_shipped │ ├── zconf.l │ ├── zconf.lex.c_shipped │ ├── zconf.tab.c_shipped │ └── zconf.y ├── scmversion ├── symbols.c └── xen.flf └── xsm ├── Makefile ├── dummy.c ├── flask ├── .gitignore ├── Makefile ├── avc.c ├── flask_op.c ├── gen-policy.py ├── hooks.c ├── include │ ├── avc.h │ ├── avc_ss.h │ ├── conditional.h │ ├── objsec.h │ └── security.h ├── policy │ ├── access_vectors │ ├── initial_sids │ ├── mkaccess_vector.sh │ ├── mkflask.sh │ └── security_classes └── ss │ ├── Makefile │ ├── avtab.c │ ├── avtab.h │ ├── conditional.c │ ├── conditional.h │ ├── constraint.h │ ├── context.h │ ├── ebitmap.c │ ├── ebitmap.h │ ├── hashtab.c │ ├── hashtab.h │ ├── mls.c │ ├── mls.h │ ├── mls_types.h │ ├── policydb.c │ ├── policydb.h │ ├── services.c │ ├── services.h │ ├── sidtab.c │ ├── sidtab.h │ ├── symtab.c │ └── symtab.h ├── xsm_core.c └── xsm_policy.c /.bk-to-hg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exit 0 3 | -------------------------------------------------------------------------------- /.gitarchive-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/.gitarchive-info -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | .gitarchive-info export-subst 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/.gitignore -------------------------------------------------------------------------------- /.hg-to-bk: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exit 0 3 | -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/.hgignore -------------------------------------------------------------------------------- /.hgsigs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/.hgsigs -------------------------------------------------------------------------------- /.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/.hgtags -------------------------------------------------------------------------------- /.rootkeys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/.rootkeys -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODING_STYLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/CODING_STYLE -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/COPYING -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/CREDITS -------------------------------------------------------------------------------- /Config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/Config.mk -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/INSTALL -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/README -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/autogen.sh -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/config.guess -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/config.sub -------------------------------------------------------------------------------- /config/Docs.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/config/Docs.mk.in -------------------------------------------------------------------------------- /config/FreeBSD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/config/FreeBSD.mk -------------------------------------------------------------------------------- /config/Linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/config/Linux.mk -------------------------------------------------------------------------------- /config/MiniOS.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/config/MiniOS.mk -------------------------------------------------------------------------------- /config/NetBSD.mk: -------------------------------------------------------------------------------- 1 | include $(XEN_ROOT)/config/StdGNU.mk 2 | 3 | WGET = ftp 4 | -------------------------------------------------------------------------------- /config/NetBSDRump.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/config/NetBSDRump.mk -------------------------------------------------------------------------------- /config/OpenBSD.mk: -------------------------------------------------------------------------------- 1 | include $(XEN_ROOT)/config/StdGNU.mk 2 | -------------------------------------------------------------------------------- /config/Paths.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/config/Paths.mk.in -------------------------------------------------------------------------------- /config/StdGNU.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/config/StdGNU.mk -------------------------------------------------------------------------------- /config/Stubdom.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/config/Stubdom.mk.in -------------------------------------------------------------------------------- /config/SunOS.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/config/SunOS.mk -------------------------------------------------------------------------------- /config/Tools.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/config/Tools.mk.in -------------------------------------------------------------------------------- /config/Toplevel.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/config/Toplevel.mk.in -------------------------------------------------------------------------------- /config/arm32.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/config/arm32.mk -------------------------------------------------------------------------------- /config/arm64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/config/arm64.mk -------------------------------------------------------------------------------- /config/x86_32.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/config/x86_32.mk -------------------------------------------------------------------------------- /config/x86_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/config/x86_64.mk -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/configure.ac -------------------------------------------------------------------------------- /docs/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/ChangeLog -------------------------------------------------------------------------------- /docs/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/INDEX -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.colo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/README.colo -------------------------------------------------------------------------------- /docs/README.remus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/README.remus -------------------------------------------------------------------------------- /docs/README.xen-bugtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/README.xen-bugtool -------------------------------------------------------------------------------- /docs/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/configure -------------------------------------------------------------------------------- /docs/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/configure.ac -------------------------------------------------------------------------------- /docs/designs/dmop.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/designs/dmop.markdown -------------------------------------------------------------------------------- /docs/figs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/figs/Makefile -------------------------------------------------------------------------------- /docs/figs/xenlogo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/figs/xenlogo.eps -------------------------------------------------------------------------------- /docs/gen-html-index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/gen-html-index -------------------------------------------------------------------------------- /docs/man/xen-tscmode.pod.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/man/xen-tscmode.pod.7 -------------------------------------------------------------------------------- /docs/man/xen-vtpm.pod.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/man/xen-vtpm.pod.7 -------------------------------------------------------------------------------- /docs/man/xen-vtpmmgr.pod.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/man/xen-vtpmmgr.pod.7 -------------------------------------------------------------------------------- /docs/man/xenstore-ls.pod.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/man/xenstore-ls.pod.1 -------------------------------------------------------------------------------- /docs/man/xenstore.pod.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/man/xenstore.pod.1 -------------------------------------------------------------------------------- /docs/man/xentop.pod.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/man/xentop.pod.1 -------------------------------------------------------------------------------- /docs/man/xentrace.pod.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/man/xentrace.pod.8 -------------------------------------------------------------------------------- /docs/man/xl.cfg.pod.5.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/man/xl.cfg.pod.5.in -------------------------------------------------------------------------------- /docs/man/xl.conf.pod.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/man/xl.conf.pod.5 -------------------------------------------------------------------------------- /docs/man/xl.pod.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/man/xl.pod.1.in -------------------------------------------------------------------------------- /docs/misc/9pfs.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/misc/9pfs.markdown -------------------------------------------------------------------------------- /docs/misc/arm/booting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/misc/arm/booting.txt -------------------------------------------------------------------------------- /docs/misc/console.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/misc/console.txt -------------------------------------------------------------------------------- /docs/misc/crashdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/misc/crashdb.txt -------------------------------------------------------------------------------- /docs/misc/efi.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/misc/efi.markdown -------------------------------------------------------------------------------- /docs/misc/grant-tables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/misc/grant-tables.txt -------------------------------------------------------------------------------- /docs/misc/hvmlite.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/misc/hvmlite.markdown -------------------------------------------------------------------------------- /docs/misc/kconfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/misc/kconfig.txt -------------------------------------------------------------------------------- /docs/misc/libxl_memory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/misc/libxl_memory.txt -------------------------------------------------------------------------------- /docs/misc/pvcalls.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/misc/pvcalls.markdown -------------------------------------------------------------------------------- /docs/misc/pvh.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/misc/pvh.markdown -------------------------------------------------------------------------------- /docs/misc/pvrdtscp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/misc/pvrdtscp.c -------------------------------------------------------------------------------- /docs/misc/stubdom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/misc/stubdom.txt -------------------------------------------------------------------------------- /docs/misc/vtd-pi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/misc/vtd-pi.txt -------------------------------------------------------------------------------- /docs/misc/vtd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/misc/vtd.txt -------------------------------------------------------------------------------- /docs/misc/xen_config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/misc/xen_config.html -------------------------------------------------------------------------------- /docs/misc/xenmon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/misc/xenmon.txt -------------------------------------------------------------------------------- /docs/misc/xenpaging.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/misc/xenpaging.txt -------------------------------------------------------------------------------- /docs/misc/xenstore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/misc/xenstore.txt -------------------------------------------------------------------------------- /docs/misc/xl-psr.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/misc/xl-psr.markdown -------------------------------------------------------------------------------- /docs/misc/xsm-flask.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/misc/xsm-flask.txt -------------------------------------------------------------------------------- /docs/xen-headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/docs/xen-headers -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/install.sh -------------------------------------------------------------------------------- /m4/README.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/m4/README.source -------------------------------------------------------------------------------- /m4/ax_compare_version.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/m4/ax_compare_version.m4 -------------------------------------------------------------------------------- /m4/checkpolicy.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/m4/checkpolicy.m4 -------------------------------------------------------------------------------- /m4/curses.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/m4/curses.m4 -------------------------------------------------------------------------------- /m4/depends.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/m4/depends.m4 -------------------------------------------------------------------------------- /m4/docs_tool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/m4/docs_tool.m4 -------------------------------------------------------------------------------- /m4/extfs.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/m4/extfs.m4 -------------------------------------------------------------------------------- /m4/features.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/m4/features.m4 -------------------------------------------------------------------------------- /m4/fetcher.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/m4/fetcher.m4 -------------------------------------------------------------------------------- /m4/ocaml.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/m4/ocaml.m4 -------------------------------------------------------------------------------- /m4/path_or_fail.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/m4/path_or_fail.m4 -------------------------------------------------------------------------------- /m4/paths.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/m4/paths.m4 -------------------------------------------------------------------------------- /m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/m4/pkg.m4 -------------------------------------------------------------------------------- /m4/pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/m4/pthread.m4 -------------------------------------------------------------------------------- /m4/ptyfuncs.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/m4/ptyfuncs.m4 -------------------------------------------------------------------------------- /m4/python_devel.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/m4/python_devel.m4 -------------------------------------------------------------------------------- /m4/python_fortify_noopt.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/m4/python_fortify_noopt.m4 -------------------------------------------------------------------------------- /m4/python_version.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/m4/python_version.m4 -------------------------------------------------------------------------------- /m4/savevar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/m4/savevar.m4 -------------------------------------------------------------------------------- /m4/set_cflags_ldflags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/m4/set_cflags_ldflags.m4 -------------------------------------------------------------------------------- /m4/stubdom.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/m4/stubdom.m4 -------------------------------------------------------------------------------- /m4/subsystem.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/m4/subsystem.m4 -------------------------------------------------------------------------------- /m4/systemd.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/m4/systemd.m4 -------------------------------------------------------------------------------- /m4/uuid.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/m4/uuid.m4 -------------------------------------------------------------------------------- /m4/xenstored.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/m4/xenstored.m4 -------------------------------------------------------------------------------- /misc/coverity/model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/misc/coverity/model.c -------------------------------------------------------------------------------- /misc/release-checklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/misc/release-checklist.txt -------------------------------------------------------------------------------- /scripts/get_maintainer.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/scripts/get_maintainer.pl -------------------------------------------------------------------------------- /scripts/git-checkout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/scripts/git-checkout.sh -------------------------------------------------------------------------------- /scripts/travis-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/scripts/travis-build -------------------------------------------------------------------------------- /stubdom/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/COPYING -------------------------------------------------------------------------------- /stubdom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/Makefile -------------------------------------------------------------------------------- /stubdom/c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/c/Makefile -------------------------------------------------------------------------------- /stubdom/c/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/c/main.c -------------------------------------------------------------------------------- /stubdom/c/minios.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stubdom/caml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/caml/Makefile -------------------------------------------------------------------------------- /stubdom/caml/hello.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/caml/hello.ml -------------------------------------------------------------------------------- /stubdom/caml/main-caml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/caml/main-caml.c -------------------------------------------------------------------------------- /stubdom/caml/minios.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stubdom/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/configure -------------------------------------------------------------------------------- /stubdom/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/configure.ac -------------------------------------------------------------------------------- /stubdom/grub.patches/00cvs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/grub.patches/00cvs -------------------------------------------------------------------------------- /stubdom/grub/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/grub/Makefile -------------------------------------------------------------------------------- /stubdom/grub/boot-x86_32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/grub/boot-x86_32.S -------------------------------------------------------------------------------- /stubdom/grub/boot-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/grub/boot-x86_64.S -------------------------------------------------------------------------------- /stubdom/grub/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/grub/config.h -------------------------------------------------------------------------------- /stubdom/grub/kexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/grub/kexec.c -------------------------------------------------------------------------------- /stubdom/grub/mini-os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/grub/mini-os.c -------------------------------------------------------------------------------- /stubdom/grub/mini-os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/grub/mini-os.h -------------------------------------------------------------------------------- /stubdom/grub/minios.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/grub/minios.cfg -------------------------------------------------------------------------------- /stubdom/grub/osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/grub/osdep.h -------------------------------------------------------------------------------- /stubdom/ioemu-minios.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/ioemu-minios.cfg -------------------------------------------------------------------------------- /stubdom/libpci.config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/libpci.config.h -------------------------------------------------------------------------------- /stubdom/libpci.config.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/libpci.config.mak -------------------------------------------------------------------------------- /stubdom/lwip.patch-cvs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/lwip.patch-cvs -------------------------------------------------------------------------------- /stubdom/newlib-chk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/newlib-chk.patch -------------------------------------------------------------------------------- /stubdom/newlib.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/newlib.patch -------------------------------------------------------------------------------- /stubdom/ocaml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/ocaml.patch -------------------------------------------------------------------------------- /stubdom/pciutils.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/pciutils.patch -------------------------------------------------------------------------------- /stubdom/polarssl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/polarssl.patch -------------------------------------------------------------------------------- /stubdom/stubdom-dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/stubdom-dm -------------------------------------------------------------------------------- /stubdom/tpmemu-0.7.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/tpmemu-0.7.4.patch -------------------------------------------------------------------------------- /stubdom/vtpm-bufsize.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpm-bufsize.patch -------------------------------------------------------------------------------- /stubdom/vtpm/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpm/COPYING -------------------------------------------------------------------------------- /stubdom/vtpm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpm/Makefile -------------------------------------------------------------------------------- /stubdom/vtpm/minios.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpm/minios.cfg -------------------------------------------------------------------------------- /stubdom/vtpm/vtpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpm/vtpm.c -------------------------------------------------------------------------------- /stubdom/vtpm/vtpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpm/vtpm.h -------------------------------------------------------------------------------- /stubdom/vtpm/vtpm_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpm/vtpm_cmd.c -------------------------------------------------------------------------------- /stubdom/vtpm/vtpm_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpm/vtpm_cmd.h -------------------------------------------------------------------------------- /stubdom/vtpm/vtpm_pcrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpm/vtpm_pcrs.c -------------------------------------------------------------------------------- /stubdom/vtpm/vtpm_pcrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpm/vtpm_pcrs.h -------------------------------------------------------------------------------- /stubdom/vtpm/vtpmblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpm/vtpmblk.c -------------------------------------------------------------------------------- /stubdom/vtpm/vtpmblk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpm/vtpmblk.h -------------------------------------------------------------------------------- /stubdom/vtpmmgr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpmmgr/Makefile -------------------------------------------------------------------------------- /stubdom/vtpmmgr/calc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpmmgr/calc.pl -------------------------------------------------------------------------------- /stubdom/vtpmmgr/disk_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpmmgr/disk_io.c -------------------------------------------------------------------------------- /stubdom/vtpmmgr/disk_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpmmgr/disk_io.h -------------------------------------------------------------------------------- /stubdom/vtpmmgr/disk_tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpmmgr/disk_tpm.c -------------------------------------------------------------------------------- /stubdom/vtpmmgr/disk_tpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpmmgr/disk_tpm.h -------------------------------------------------------------------------------- /stubdom/vtpmmgr/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpmmgr/init.c -------------------------------------------------------------------------------- /stubdom/vtpmmgr/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpmmgr/log.c -------------------------------------------------------------------------------- /stubdom/vtpmmgr/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpmmgr/log.h -------------------------------------------------------------------------------- /stubdom/vtpmmgr/marshal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpmmgr/marshal.h -------------------------------------------------------------------------------- /stubdom/vtpmmgr/minios.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpmmgr/minios.cfg -------------------------------------------------------------------------------- /stubdom/vtpmmgr/tcg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpmmgr/tcg.h -------------------------------------------------------------------------------- /stubdom/vtpmmgr/tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpmmgr/tpm.c -------------------------------------------------------------------------------- /stubdom/vtpmmgr/tpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpmmgr/tpm.h -------------------------------------------------------------------------------- /stubdom/vtpmmgr/tpm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpmmgr/tpm2.c -------------------------------------------------------------------------------- /stubdom/vtpmmgr/tpm2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpmmgr/tpm2.h -------------------------------------------------------------------------------- /stubdom/vtpmmgr/tpmrsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpmmgr/tpmrsa.c -------------------------------------------------------------------------------- /stubdom/vtpmmgr/tpmrsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpmmgr/tpmrsa.h -------------------------------------------------------------------------------- /stubdom/vtpmmgr/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpmmgr/uuid.h -------------------------------------------------------------------------------- /stubdom/vtpmmgr/vtpmmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpmmgr/vtpmmgr.c -------------------------------------------------------------------------------- /stubdom/vtpmmgr/vtpmmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/stubdom/vtpmmgr/vtpmmgr.h -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/Rules.mk -------------------------------------------------------------------------------- /tools/blktap2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/blktap2/COPYING -------------------------------------------------------------------------------- /tools/blktap2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/blktap2/Makefile -------------------------------------------------------------------------------- /tools/blktap2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/blktap2/README -------------------------------------------------------------------------------- /tools/blktap2/drivers/td.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/blktap2/drivers/td.c -------------------------------------------------------------------------------- /tools/blktap2/lvm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/blktap2/lvm/Makefile -------------------------------------------------------------------------------- /tools/blktap2/vhd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/blktap2/vhd/Makefile -------------------------------------------------------------------------------- /tools/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/config.h.in -------------------------------------------------------------------------------- /tools/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/configure -------------------------------------------------------------------------------- /tools/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/configure.ac -------------------------------------------------------------------------------- /tools/console/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/console/Makefile -------------------------------------------------------------------------------- /tools/console/daemon/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/console/daemon/io.c -------------------------------------------------------------------------------- /tools/console/daemon/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/console/daemon/io.h -------------------------------------------------------------------------------- /tools/cross-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/cross-install -------------------------------------------------------------------------------- /tools/debugger/kdd/kdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/debugger/kdd/kdd.c -------------------------------------------------------------------------------- /tools/debugger/kdd/kdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/debugger/kdd/kdd.h -------------------------------------------------------------------------------- /tools/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/examples/Makefile -------------------------------------------------------------------------------- /tools/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/examples/README -------------------------------------------------------------------------------- /tools/examples/cpupool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/examples/cpupool -------------------------------------------------------------------------------- /tools/examples/xeninfo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/examples/xeninfo.pl -------------------------------------------------------------------------------- /tools/examples/xl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/examples/xl.conf -------------------------------------------------------------------------------- /tools/firmware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/firmware/Makefile -------------------------------------------------------------------------------- /tools/firmware/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/firmware/Rules.mk -------------------------------------------------------------------------------- /tools/firmware/etherboot/patches/series: -------------------------------------------------------------------------------- 1 | boot_prompt_option.patch 2 | -------------------------------------------------------------------------------- /tools/flask/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/flask/Makefile -------------------------------------------------------------------------------- /tools/flask/policy/policy/users: -------------------------------------------------------------------------------- 1 | gen_all_users() 2 | -------------------------------------------------------------------------------- /tools/flask/utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/flask/utils/Makefile -------------------------------------------------------------------------------- /tools/fuzz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/fuzz/Makefile -------------------------------------------------------------------------------- /tools/fuzz/README.afl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/fuzz/README.afl -------------------------------------------------------------------------------- /tools/fuzz/README.oss-fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/fuzz/README.oss-fuzz -------------------------------------------------------------------------------- /tools/fuzz/libelf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/fuzz/libelf/Makefile -------------------------------------------------------------------------------- /tools/golang/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/golang/Makefile -------------------------------------------------------------------------------- /tools/helpers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/helpers/Makefile -------------------------------------------------------------------------------- /tools/hotplug/Linux/block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/hotplug/Linux/block -------------------------------------------------------------------------------- /tools/hotplug/Linux/vif2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/hotplug/Linux/vif2 -------------------------------------------------------------------------------- /tools/hotplug/Linux/vscsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/hotplug/Linux/vscsi -------------------------------------------------------------------------------- /tools/hotplug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/hotplug/Makefile -------------------------------------------------------------------------------- /tools/hotplug/NetBSD/block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/hotplug/NetBSD/block -------------------------------------------------------------------------------- /tools/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/include/Makefile -------------------------------------------------------------------------------- /tools/libacpi/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libacpi/COPYING -------------------------------------------------------------------------------- /tools/libacpi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libacpi/Makefile -------------------------------------------------------------------------------- /tools/libacpi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libacpi/README -------------------------------------------------------------------------------- /tools/libacpi/acpi2_0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libacpi/acpi2_0.h -------------------------------------------------------------------------------- /tools/libacpi/build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libacpi/build.c -------------------------------------------------------------------------------- /tools/libacpi/dsdt.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libacpi/dsdt.asl -------------------------------------------------------------------------------- /tools/libacpi/libacpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libacpi/libacpi.h -------------------------------------------------------------------------------- /tools/libacpi/mk_dsdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libacpi/mk_dsdt.c -------------------------------------------------------------------------------- /tools/libacpi/ssdt_pm.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libacpi/ssdt_pm.asl -------------------------------------------------------------------------------- /tools/libacpi/ssdt_s3.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libacpi/ssdt_s3.asl -------------------------------------------------------------------------------- /tools/libacpi/ssdt_s4.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libacpi/ssdt_s4.asl -------------------------------------------------------------------------------- /tools/libacpi/ssdt_tpm.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libacpi/ssdt_tpm.asl -------------------------------------------------------------------------------- /tools/libfsimage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libfsimage/Makefile -------------------------------------------------------------------------------- /tools/libfsimage/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libfsimage/Rules.mk -------------------------------------------------------------------------------- /tools/libfsimage/fat/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libfsimage/fat/fat.h -------------------------------------------------------------------------------- /tools/libfsimage/ufs/ufs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libfsimage/ufs/ufs.h -------------------------------------------------------------------------------- /tools/libfsimage/xfs/xfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libfsimage/xfs/xfs.h -------------------------------------------------------------------------------- /tools/libs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libs/Makefile -------------------------------------------------------------------------------- /tools/libs/call/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libs/call/Makefile -------------------------------------------------------------------------------- /tools/libs/call/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libs/call/buffer.c -------------------------------------------------------------------------------- /tools/libs/call/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libs/call/core.c -------------------------------------------------------------------------------- /tools/libs/call/freebsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libs/call/freebsd.c -------------------------------------------------------------------------------- /tools/libs/call/linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libs/call/linux.c -------------------------------------------------------------------------------- /tools/libs/call/minios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libs/call/minios.c -------------------------------------------------------------------------------- /tools/libs/call/netbsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libs/call/netbsd.c -------------------------------------------------------------------------------- /tools/libs/call/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libs/call/private.h -------------------------------------------------------------------------------- /tools/libs/call/solaris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libs/call/solaris.c -------------------------------------------------------------------------------- /tools/libs/evtchn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libs/evtchn/Makefile -------------------------------------------------------------------------------- /tools/libs/evtchn/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libs/evtchn/core.c -------------------------------------------------------------------------------- /tools/libs/evtchn/linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libs/evtchn/linux.c -------------------------------------------------------------------------------- /tools/libs/evtchn/minios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libs/evtchn/minios.c -------------------------------------------------------------------------------- /tools/libs/evtchn/netbsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libs/evtchn/netbsd.c -------------------------------------------------------------------------------- /tools/libs/gnttab/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libs/gnttab/Makefile -------------------------------------------------------------------------------- /tools/libs/gnttab/linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libs/gnttab/linux.c -------------------------------------------------------------------------------- /tools/libs/gnttab/minios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libs/gnttab/minios.c -------------------------------------------------------------------------------- /tools/libvchan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libvchan/Makefile -------------------------------------------------------------------------------- /tools/libvchan/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libvchan/init.c -------------------------------------------------------------------------------- /tools/libvchan/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libvchan/io.c -------------------------------------------------------------------------------- /tools/libvchan/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libvchan/node.c -------------------------------------------------------------------------------- /tools/libxc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/COPYING -------------------------------------------------------------------------------- /tools/libxc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/Makefile -------------------------------------------------------------------------------- /tools/libxc/xc_altp2m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_altp2m.c -------------------------------------------------------------------------------- /tools/libxc/xc_arinc653.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_arinc653.c -------------------------------------------------------------------------------- /tools/libxc/xc_bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_bitops.h -------------------------------------------------------------------------------- /tools/libxc/xc_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_core.c -------------------------------------------------------------------------------- /tools/libxc/xc_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_core.h -------------------------------------------------------------------------------- /tools/libxc/xc_core_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_core_arm.c -------------------------------------------------------------------------------- /tools/libxc/xc_core_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_core_arm.h -------------------------------------------------------------------------------- /tools/libxc/xc_core_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_core_x86.c -------------------------------------------------------------------------------- /tools/libxc/xc_core_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_core_x86.h -------------------------------------------------------------------------------- /tools/libxc/xc_cpuid_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_cpuid_x86.c -------------------------------------------------------------------------------- /tools/libxc/xc_cpupool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_cpupool.c -------------------------------------------------------------------------------- /tools/libxc/xc_csched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_csched.c -------------------------------------------------------------------------------- /tools/libxc/xc_csched2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_csched2.c -------------------------------------------------------------------------------- /tools/libxc/xc_dom_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_dom_arm.c -------------------------------------------------------------------------------- /tools/libxc/xc_dom_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_dom_boot.c -------------------------------------------------------------------------------- /tools/libxc/xc_dom_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_dom_core.c -------------------------------------------------------------------------------- /tools/libxc/xc_dom_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_dom_x86.c -------------------------------------------------------------------------------- /tools/libxc/xc_domain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_domain.c -------------------------------------------------------------------------------- /tools/libxc/xc_efi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_efi.h -------------------------------------------------------------------------------- /tools/libxc/xc_elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_elf.h -------------------------------------------------------------------------------- /tools/libxc/xc_evtchn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_evtchn.c -------------------------------------------------------------------------------- /tools/libxc/xc_flask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_flask.c -------------------------------------------------------------------------------- /tools/libxc/xc_freebsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_freebsd.c -------------------------------------------------------------------------------- /tools/libxc/xc_gnttab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_gnttab.c -------------------------------------------------------------------------------- /tools/libxc/xc_hcall_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_hcall_buf.c -------------------------------------------------------------------------------- /tools/libxc/xc_kexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_kexec.c -------------------------------------------------------------------------------- /tools/libxc/xc_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_linux.c -------------------------------------------------------------------------------- /tools/libxc/xc_memshr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_memshr.c -------------------------------------------------------------------------------- /tools/libxc/xc_minios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_minios.c -------------------------------------------------------------------------------- /tools/libxc/xc_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_misc.c -------------------------------------------------------------------------------- /tools/libxc/xc_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_monitor.c -------------------------------------------------------------------------------- /tools/libxc/xc_msr_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_msr_x86.h -------------------------------------------------------------------------------- /tools/libxc/xc_netbsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_netbsd.c -------------------------------------------------------------------------------- /tools/libxc/xc_nomigrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_nomigrate.c -------------------------------------------------------------------------------- /tools/libxc/xc_pagetab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_pagetab.c -------------------------------------------------------------------------------- /tools/libxc/xc_physdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_physdev.c -------------------------------------------------------------------------------- /tools/libxc/xc_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_pm.c -------------------------------------------------------------------------------- /tools/libxc/xc_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_private.c -------------------------------------------------------------------------------- /tools/libxc/xc_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_private.h -------------------------------------------------------------------------------- /tools/libxc/xc_psr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_psr.c -------------------------------------------------------------------------------- /tools/libxc/xc_resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_resource.c -------------------------------------------------------------------------------- /tools/libxc/xc_resume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_resume.c -------------------------------------------------------------------------------- /tools/libxc/xc_rt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_rt.c -------------------------------------------------------------------------------- /tools/libxc/xc_solaris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_solaris.c -------------------------------------------------------------------------------- /tools/libxc/xc_sr_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_sr_common.c -------------------------------------------------------------------------------- /tools/libxc/xc_sr_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_sr_common.h -------------------------------------------------------------------------------- /tools/libxc/xc_sr_save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_sr_save.c -------------------------------------------------------------------------------- /tools/libxc/xc_suspend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_suspend.c -------------------------------------------------------------------------------- /tools/libxc/xc_tbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_tbuf.c -------------------------------------------------------------------------------- /tools/libxc/xc_tmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_tmem.c -------------------------------------------------------------------------------- /tools/libxc/xc_vm_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xc_vm_event.c -------------------------------------------------------------------------------- /tools/libxc/xenguest.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xenguest.pc.in -------------------------------------------------------------------------------- /tools/libxc/xg_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xg_private.c -------------------------------------------------------------------------------- /tools/libxc/xg_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxc/xg_private.h -------------------------------------------------------------------------------- /tools/libxl/CODING_STYLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/CODING_STYLE -------------------------------------------------------------------------------- /tools/libxl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/Makefile -------------------------------------------------------------------------------- /tools/libxl/flexarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/flexarray.c -------------------------------------------------------------------------------- /tools/libxl/flexarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/flexarray.h -------------------------------------------------------------------------------- /tools/libxl/gentest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/gentest.py -------------------------------------------------------------------------------- /tools/libxl/gentypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/gentypes.py -------------------------------------------------------------------------------- /tools/libxl/idl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/idl.py -------------------------------------------------------------------------------- /tools/libxl/idl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/idl.txt -------------------------------------------------------------------------------- /tools/libxl/libxl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl.c -------------------------------------------------------------------------------- /tools/libxl/libxl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl.h -------------------------------------------------------------------------------- /tools/libxl/libxl_9pfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_9pfs.c -------------------------------------------------------------------------------- /tools/libxl/libxl_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_arch.h -------------------------------------------------------------------------------- /tools/libxl/libxl_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_arm.c -------------------------------------------------------------------------------- /tools/libxl/libxl_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_arm.h -------------------------------------------------------------------------------- /tools/libxl/libxl_colo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_colo.h -------------------------------------------------------------------------------- /tools/libxl/libxl_cpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_cpuid.c -------------------------------------------------------------------------------- /tools/libxl/libxl_create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_create.c -------------------------------------------------------------------------------- /tools/libxl/libxl_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_device.c -------------------------------------------------------------------------------- /tools/libxl/libxl_disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_disk.c -------------------------------------------------------------------------------- /tools/libxl/libxl_dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_dm.c -------------------------------------------------------------------------------- /tools/libxl/libxl_dom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_dom.c -------------------------------------------------------------------------------- /tools/libxl/libxl_domain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_domain.c -------------------------------------------------------------------------------- /tools/libxl/libxl_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_event.c -------------------------------------------------------------------------------- /tools/libxl/libxl_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_event.h -------------------------------------------------------------------------------- /tools/libxl/libxl_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_exec.c -------------------------------------------------------------------------------- /tools/libxl/libxl_flask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_flask.c -------------------------------------------------------------------------------- /tools/libxl/libxl_fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_fork.c -------------------------------------------------------------------------------- /tools/libxl/libxl_genid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_genid.c -------------------------------------------------------------------------------- /tools/libxl/libxl_json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_json.c -------------------------------------------------------------------------------- /tools/libxl/libxl_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_json.h -------------------------------------------------------------------------------- /tools/libxl/libxl_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_linux.c -------------------------------------------------------------------------------- /tools/libxl/libxl_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_mem.c -------------------------------------------------------------------------------- /tools/libxl/libxl_netbsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_netbsd.c -------------------------------------------------------------------------------- /tools/libxl/libxl_nic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_nic.c -------------------------------------------------------------------------------- /tools/libxl/libxl_numa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_numa.c -------------------------------------------------------------------------------- /tools/libxl/libxl_osdeps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_osdeps.h -------------------------------------------------------------------------------- /tools/libxl/libxl_paths.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_paths.c -------------------------------------------------------------------------------- /tools/libxl/libxl_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_pci.c -------------------------------------------------------------------------------- /tools/libxl/libxl_psr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_psr.c -------------------------------------------------------------------------------- /tools/libxl/libxl_qmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_qmp.c -------------------------------------------------------------------------------- /tools/libxl/libxl_remus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_remus.c -------------------------------------------------------------------------------- /tools/libxl/libxl_sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_sched.c -------------------------------------------------------------------------------- /tools/libxl/libxl_tmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_tmem.c -------------------------------------------------------------------------------- /tools/libxl/libxl_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_usb.c -------------------------------------------------------------------------------- /tools/libxl/libxl_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_utils.c -------------------------------------------------------------------------------- /tools/libxl/libxl_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_utils.h -------------------------------------------------------------------------------- /tools/libxl/libxl_uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_uuid.c -------------------------------------------------------------------------------- /tools/libxl/libxl_uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_uuid.h -------------------------------------------------------------------------------- /tools/libxl/libxl_vnuma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_vnuma.c -------------------------------------------------------------------------------- /tools/libxl/libxl_vtpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_vtpm.c -------------------------------------------------------------------------------- /tools/libxl/libxl_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_x86.c -------------------------------------------------------------------------------- /tools/libxl/libxl_xshelp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxl_xshelp.c -------------------------------------------------------------------------------- /tools/libxl/libxlu_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxlu_cfg.c -------------------------------------------------------------------------------- /tools/libxl/libxlu_cfg_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxlu_cfg_i.h -------------------------------------------------------------------------------- /tools/libxl/libxlu_cfg_l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxlu_cfg_l.c -------------------------------------------------------------------------------- /tools/libxl/libxlu_cfg_l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxlu_cfg_l.h -------------------------------------------------------------------------------- /tools/libxl/libxlu_cfg_l.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxlu_cfg_l.l -------------------------------------------------------------------------------- /tools/libxl/libxlu_cfg_y.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxlu_cfg_y.c -------------------------------------------------------------------------------- /tools/libxl/libxlu_cfg_y.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxlu_cfg_y.h -------------------------------------------------------------------------------- /tools/libxl/libxlu_cfg_y.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxlu_cfg_y.y -------------------------------------------------------------------------------- /tools/libxl/libxlu_disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxlu_disk.c -------------------------------------------------------------------------------- /tools/libxl/libxlu_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxlu_pci.c -------------------------------------------------------------------------------- /tools/libxl/libxlu_vif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxlu_vif.c -------------------------------------------------------------------------------- /tools/libxl/libxlutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/libxlutil.h -------------------------------------------------------------------------------- /tools/libxl/osdeps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/osdeps.c -------------------------------------------------------------------------------- /tools/libxl/test_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/test_common.c -------------------------------------------------------------------------------- /tools/libxl/test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/test_common.h -------------------------------------------------------------------------------- /tools/libxl/xenlight.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/xenlight.pc.in -------------------------------------------------------------------------------- /tools/libxl/xlutil.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/libxl/xlutil.pc.in -------------------------------------------------------------------------------- /tools/memshr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/memshr/Makefile -------------------------------------------------------------------------------- /tools/memshr/bidir-hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/memshr/bidir-hash.c -------------------------------------------------------------------------------- /tools/memshr/bidir-hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/memshr/bidir-hash.h -------------------------------------------------------------------------------- /tools/memshr/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/memshr/interface.c -------------------------------------------------------------------------------- /tools/memshr/memshr-priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/memshr/memshr-priv.h -------------------------------------------------------------------------------- /tools/memshr/memshr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/memshr/memshr.h -------------------------------------------------------------------------------- /tools/memshr/shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/memshr/shm.c -------------------------------------------------------------------------------- /tools/memshr/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/memshr/shm.h -------------------------------------------------------------------------------- /tools/misc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/misc/Makefile -------------------------------------------------------------------------------- /tools/misc/mkdeb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/misc/mkdeb -------------------------------------------------------------------------------- /tools/misc/mkrpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/misc/mkrpm -------------------------------------------------------------------------------- /tools/misc/mktarball: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/misc/mktarball -------------------------------------------------------------------------------- /tools/misc/xen-bugtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/misc/xen-bugtool -------------------------------------------------------------------------------- /tools/misc/xen-cpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/misc/xen-cpuid.c -------------------------------------------------------------------------------- /tools/misc/xen-detect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/misc/xen-detect.c -------------------------------------------------------------------------------- /tools/misc/xen-hptool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/misc/xen-hptool.c -------------------------------------------------------------------------------- /tools/misc/xen-hvmcrash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/misc/xen-hvmcrash.c -------------------------------------------------------------------------------- /tools/misc/xen-hvmctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/misc/xen-hvmctx.c -------------------------------------------------------------------------------- /tools/misc/xen-livepatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/misc/xen-livepatch.c -------------------------------------------------------------------------------- /tools/misc/xen-lowmemd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/misc/xen-lowmemd.c -------------------------------------------------------------------------------- /tools/misc/xen-mfndump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/misc/xen-mfndump.c -------------------------------------------------------------------------------- /tools/misc/xen-ringwatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/misc/xen-ringwatch -------------------------------------------------------------------------------- /tools/misc/xencons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/misc/xencons -------------------------------------------------------------------------------- /tools/misc/xencov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/misc/xencov.c -------------------------------------------------------------------------------- /tools/misc/xencov_split: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/misc/xencov_split -------------------------------------------------------------------------------- /tools/misc/xenlockprof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/misc/xenlockprof.c -------------------------------------------------------------------------------- /tools/misc/xenperf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/misc/xenperf.c -------------------------------------------------------------------------------- /tools/misc/xenpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/misc/xenpm.c -------------------------------------------------------------------------------- /tools/misc/xenpvnetboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/misc/xenpvnetboot -------------------------------------------------------------------------------- /tools/misc/xensymoops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/misc/xensymoops -------------------------------------------------------------------------------- /tools/misc/xenwatchdogd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/misc/xenwatchdogd.c -------------------------------------------------------------------------------- /tools/ocaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/ocaml/LICENSE -------------------------------------------------------------------------------- /tools/ocaml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/ocaml/Makefile -------------------------------------------------------------------------------- /tools/ocaml/Makefile.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/ocaml/Makefile.rules -------------------------------------------------------------------------------- /tools/ocaml/common.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/ocaml/common.make -------------------------------------------------------------------------------- /tools/ocaml/libs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/ocaml/libs/Makefile -------------------------------------------------------------------------------- /tools/ocaml/libs/xb/op.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/ocaml/libs/xb/op.ml -------------------------------------------------------------------------------- /tools/ocaml/libs/xb/xb.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/ocaml/libs/xb/xb.ml -------------------------------------------------------------------------------- /tools/ocaml/libs/xb/xb.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/ocaml/libs/xb/xb.mli -------------------------------------------------------------------------------- /tools/ocaml/libs/xs/xs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/ocaml/libs/xs/xs.ml -------------------------------------------------------------------------------- /tools/ocaml/libs/xs/xs.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/ocaml/libs/xs/xs.mli -------------------------------------------------------------------------------- /tools/ocaml/libs/xs/xst.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/ocaml/libs/xs/xst.ml -------------------------------------------------------------------------------- /tools/ocaml/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/ocaml/test/Makefile -------------------------------------------------------------------------------- /tools/ocaml/test/dmesg.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/ocaml/test/dmesg.ml -------------------------------------------------------------------------------- /tools/ocaml/test/xtl.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/ocaml/test/xtl.ml -------------------------------------------------------------------------------- /tools/pygrub/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/pygrub/Makefile -------------------------------------------------------------------------------- /tools/pygrub/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/pygrub/README -------------------------------------------------------------------------------- /tools/pygrub/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/pygrub/setup.py -------------------------------------------------------------------------------- /tools/pygrub/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/pygrub/src/pygrub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/pygrub/src/pygrub -------------------------------------------------------------------------------- /tools/python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/python/Makefile -------------------------------------------------------------------------------- /tools/python/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/python/README -------------------------------------------------------------------------------- /tools/python/ZPL-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/python/ZPL-2.0 -------------------------------------------------------------------------------- /tools/python/install-wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/python/install-wrap -------------------------------------------------------------------------------- /tools/python/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/python/pylintrc -------------------------------------------------------------------------------- /tools/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/python/setup.py -------------------------------------------------------------------------------- /tools/python/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/python/test.py -------------------------------------------------------------------------------- /tools/python/xen/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tools/python/xen/lowlevel/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tools/python/xen/migration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/tests/Makefile -------------------------------------------------------------------------------- /tools/tests/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/tests/run_tests.sh -------------------------------------------------------------------------------- /tools/tests/vhpet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/tests/vhpet/Makefile -------------------------------------------------------------------------------- /tools/tests/vhpet/emul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/tests/vhpet/emul.h -------------------------------------------------------------------------------- /tools/tests/vhpet/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/tests/vhpet/main.c -------------------------------------------------------------------------------- /tools/xcutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xcutils/Makefile -------------------------------------------------------------------------------- /tools/xcutils/lsevtchn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xcutils/lsevtchn.c -------------------------------------------------------------------------------- /tools/xcutils/readnotes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xcutils/readnotes.c -------------------------------------------------------------------------------- /tools/xenbackendd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenbackendd/Makefile -------------------------------------------------------------------------------- /tools/xenmon/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenmon/COPYING -------------------------------------------------------------------------------- /tools/xenmon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenmon/Makefile -------------------------------------------------------------------------------- /tools/xenmon/setmask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenmon/setmask.c -------------------------------------------------------------------------------- /tools/xenmon/xenbaked.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenmon/xenbaked.c -------------------------------------------------------------------------------- /tools/xenmon/xenbaked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenmon/xenbaked.h -------------------------------------------------------------------------------- /tools/xenmon/xenmon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenmon/xenmon.py -------------------------------------------------------------------------------- /tools/xenpaging/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenpaging/Makefile -------------------------------------------------------------------------------- /tools/xenpaging/file_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenpaging/file_ops.c -------------------------------------------------------------------------------- /tools/xenpaging/file_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenpaging/file_ops.h -------------------------------------------------------------------------------- /tools/xenpaging/pagein.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenpaging/pagein.c -------------------------------------------------------------------------------- /tools/xenpaging/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenpaging/policy.h -------------------------------------------------------------------------------- /tools/xenpmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenpmd/Makefile -------------------------------------------------------------------------------- /tools/xenpmd/xenpmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenpmd/xenpmd.c -------------------------------------------------------------------------------- /tools/xenstat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenstat/Makefile -------------------------------------------------------------------------------- /tools/xenstat/xentop/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenstat/xentop/TODO -------------------------------------------------------------------------------- /tools/xenstore/.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenstore/.gdbinit -------------------------------------------------------------------------------- /tools/xenstore/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenstore/COPYING -------------------------------------------------------------------------------- /tools/xenstore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenstore/Makefile -------------------------------------------------------------------------------- /tools/xenstore/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenstore/README -------------------------------------------------------------------------------- /tools/xenstore/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenstore/TODO -------------------------------------------------------------------------------- /tools/xenstore/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenstore/hashtable.c -------------------------------------------------------------------------------- /tools/xenstore/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenstore/hashtable.h -------------------------------------------------------------------------------- /tools/xenstore/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenstore/list.h -------------------------------------------------------------------------------- /tools/xenstore/talloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenstore/talloc.c -------------------------------------------------------------------------------- /tools/xenstore/talloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenstore/talloc.h -------------------------------------------------------------------------------- /tools/xenstore/tdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenstore/tdb.c -------------------------------------------------------------------------------- /tools/xenstore/tdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenstore/tdb.h -------------------------------------------------------------------------------- /tools/xenstore/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenstore/utils.c -------------------------------------------------------------------------------- /tools/xenstore/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenstore/utils.h -------------------------------------------------------------------------------- /tools/xenstore/xs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenstore/xs.c -------------------------------------------------------------------------------- /tools/xenstore/xs_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xenstore/xs_lib.c -------------------------------------------------------------------------------- /tools/xentrace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xentrace/Makefile -------------------------------------------------------------------------------- /tools/xentrace/analyze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xentrace/analyze.h -------------------------------------------------------------------------------- /tools/xentrace/formats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xentrace/formats -------------------------------------------------------------------------------- /tools/xentrace/mread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xentrace/mread.c -------------------------------------------------------------------------------- /tools/xentrace/mread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xentrace/mread.h -------------------------------------------------------------------------------- /tools/xentrace/pv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xentrace/pv.h -------------------------------------------------------------------------------- /tools/xentrace/setsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xentrace/setsize.c -------------------------------------------------------------------------------- /tools/xentrace/xenalyze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xentrace/xenalyze.c -------------------------------------------------------------------------------- /tools/xentrace/xenctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xentrace/xenctx.c -------------------------------------------------------------------------------- /tools/xentrace/xentrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xentrace/xentrace.c -------------------------------------------------------------------------------- /tools/xl/CODING_STYLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/CODING_STYLE -------------------------------------------------------------------------------- /tools/xl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/Makefile -------------------------------------------------------------------------------- /tools/xl/bash-completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/bash-completion -------------------------------------------------------------------------------- /tools/xl/xl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/xl.c -------------------------------------------------------------------------------- /tools/xl/xl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/xl.h -------------------------------------------------------------------------------- /tools/xl/xl_block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/xl_block.c -------------------------------------------------------------------------------- /tools/xl/xl_cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/xl_cdrom.c -------------------------------------------------------------------------------- /tools/xl/xl_cmdtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/xl_cmdtable.c -------------------------------------------------------------------------------- /tools/xl/xl_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/xl_console.c -------------------------------------------------------------------------------- /tools/xl/xl_cpupool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/xl_cpupool.c -------------------------------------------------------------------------------- /tools/xl/xl_flask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/xl_flask.c -------------------------------------------------------------------------------- /tools/xl/xl_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/xl_info.c -------------------------------------------------------------------------------- /tools/xl/xl_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/xl_mem.c -------------------------------------------------------------------------------- /tools/xl/xl_migrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/xl_migrate.c -------------------------------------------------------------------------------- /tools/xl/xl_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/xl_misc.c -------------------------------------------------------------------------------- /tools/xl/xl_nic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/xl_nic.c -------------------------------------------------------------------------------- /tools/xl/xl_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/xl_parse.c -------------------------------------------------------------------------------- /tools/xl/xl_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/xl_parse.h -------------------------------------------------------------------------------- /tools/xl/xl_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/xl_pci.c -------------------------------------------------------------------------------- /tools/xl/xl_psr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/xl_psr.c -------------------------------------------------------------------------------- /tools/xl/xl_saverestore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/xl_saverestore.c -------------------------------------------------------------------------------- /tools/xl/xl_sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/xl_sched.c -------------------------------------------------------------------------------- /tools/xl/xl_sxp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/xl_sxp.c -------------------------------------------------------------------------------- /tools/xl/xl_tmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/xl_tmem.c -------------------------------------------------------------------------------- /tools/xl/xl_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/xl_usb.c -------------------------------------------------------------------------------- /tools/xl/xl_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/xl_utils.c -------------------------------------------------------------------------------- /tools/xl/xl_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/xl_utils.h -------------------------------------------------------------------------------- /tools/xl/xl_vcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/xl_vcpu.c -------------------------------------------------------------------------------- /tools/xl/xl_vmcontrol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/xl_vmcontrol.c -------------------------------------------------------------------------------- /tools/xl/xl_vtpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/tools/xl/xl_vtpm.c -------------------------------------------------------------------------------- /unmodified_drivers/linux-2.6/xenbus/empty_directory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/version.sh -------------------------------------------------------------------------------- /xen/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/COPYING -------------------------------------------------------------------------------- /xen/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/Kconfig -------------------------------------------------------------------------------- /xen/Kconfig.debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/Kconfig.debug -------------------------------------------------------------------------------- /xen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/Makefile -------------------------------------------------------------------------------- /xen/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/Rules.mk -------------------------------------------------------------------------------- /xen/arch/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/Kconfig -------------------------------------------------------------------------------- /xen/arch/arm/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/Kconfig -------------------------------------------------------------------------------- /xen/arch/arm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/Makefile -------------------------------------------------------------------------------- /xen/arch/arm/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/Rules.mk -------------------------------------------------------------------------------- /xen/arch/arm/acpi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/acpi/Makefile -------------------------------------------------------------------------------- /xen/arch/arm/acpi/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/acpi/boot.c -------------------------------------------------------------------------------- /xen/arch/arm/acpi/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/acpi/lib.c -------------------------------------------------------------------------------- /xen/arch/arm/alternative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/alternative.c -------------------------------------------------------------------------------- /xen/arch/arm/arm32/debug.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/arm32/debug.S -------------------------------------------------------------------------------- /xen/arch/arm/arm32/entry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/arm32/entry.S -------------------------------------------------------------------------------- /xen/arch/arm/arm32/head.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/arm32/head.S -------------------------------------------------------------------------------- /xen/arch/arm/arm32/insn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/arm32/insn.c -------------------------------------------------------------------------------- /xen/arch/arm/arm32/traps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/arm32/traps.c -------------------------------------------------------------------------------- /xen/arch/arm/arm32/vfp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/arm32/vfp.c -------------------------------------------------------------------------------- /xen/arch/arm/arm64/cache.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/arm64/cache.S -------------------------------------------------------------------------------- /xen/arch/arm/arm64/debug.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/arm64/debug.S -------------------------------------------------------------------------------- /xen/arch/arm/arm64/entry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/arm64/entry.S -------------------------------------------------------------------------------- /xen/arch/arm/arm64/head.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/arm64/head.S -------------------------------------------------------------------------------- /xen/arch/arm/arm64/insn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/arm64/insn.c -------------------------------------------------------------------------------- /xen/arch/arm/arm64/traps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/arm64/traps.c -------------------------------------------------------------------------------- /xen/arch/arm/arm64/vfp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/arm64/vfp.c -------------------------------------------------------------------------------- /xen/arch/arm/bootfdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/bootfdt.c -------------------------------------------------------------------------------- /xen/arch/arm/configs/arm32_defconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xen/arch/arm/configs/arm64_defconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xen/arch/arm/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/cpu.c -------------------------------------------------------------------------------- /xen/arch/arm/cpuerrata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/cpuerrata.c -------------------------------------------------------------------------------- /xen/arch/arm/cpufeature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/cpufeature.c -------------------------------------------------------------------------------- /xen/arch/arm/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/decode.c -------------------------------------------------------------------------------- /xen/arch/arm/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/decode.h -------------------------------------------------------------------------------- /xen/arch/arm/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/device.c -------------------------------------------------------------------------------- /xen/arch/arm/domain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/domain.c -------------------------------------------------------------------------------- /xen/arch/arm/domctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/domctl.c -------------------------------------------------------------------------------- /xen/arch/arm/dtb.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/dtb.S -------------------------------------------------------------------------------- /xen/arch/arm/efi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/efi/Makefile -------------------------------------------------------------------------------- /xen/arch/arm/efi/runtime.h: -------------------------------------------------------------------------------- 1 | /* Placeholder for ARM-specific runtime include/declarations */ 2 | -------------------------------------------------------------------------------- /xen/arch/arm/gic-v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/gic-v2.c -------------------------------------------------------------------------------- /xen/arch/arm/gic-v3-its.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/gic-v3-its.c -------------------------------------------------------------------------------- /xen/arch/arm/gic-v3-lpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/gic-v3-lpi.c -------------------------------------------------------------------------------- /xen/arch/arm/gic-v3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/gic-v3.c -------------------------------------------------------------------------------- /xen/arch/arm/gic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/gic.c -------------------------------------------------------------------------------- /xen/arch/arm/guestcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/guestcopy.c -------------------------------------------------------------------------------- /xen/arch/arm/hvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/hvm.c -------------------------------------------------------------------------------- /xen/arch/arm/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/io.c -------------------------------------------------------------------------------- /xen/arch/arm/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/irq.c -------------------------------------------------------------------------------- /xen/arch/arm/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/kernel.c -------------------------------------------------------------------------------- /xen/arch/arm/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/kernel.h -------------------------------------------------------------------------------- /xen/arch/arm/livepatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/livepatch.c -------------------------------------------------------------------------------- /xen/arch/arm/mem_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/mem_access.c -------------------------------------------------------------------------------- /xen/arch/arm/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/mm.c -------------------------------------------------------------------------------- /xen/arch/arm/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/monitor.c -------------------------------------------------------------------------------- /xen/arch/arm/p2m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/p2m.c -------------------------------------------------------------------------------- /xen/arch/arm/percpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/percpu.c -------------------------------------------------------------------------------- /xen/arch/arm/physdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/physdev.c -------------------------------------------------------------------------------- /xen/arch/arm/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/platform.c -------------------------------------------------------------------------------- /xen/arch/arm/processor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/processor.c -------------------------------------------------------------------------------- /xen/arch/arm/psci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/psci.c -------------------------------------------------------------------------------- /xen/arch/arm/setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/setup.c -------------------------------------------------------------------------------- /xen/arch/arm/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/shutdown.c -------------------------------------------------------------------------------- /xen/arch/arm/smc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/smc.S -------------------------------------------------------------------------------- /xen/arch/arm/smp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/smp.c -------------------------------------------------------------------------------- /xen/arch/arm/smpboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/smpboot.c -------------------------------------------------------------------------------- /xen/arch/arm/sysctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/sysctl.c -------------------------------------------------------------------------------- /xen/arch/arm/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/time.c -------------------------------------------------------------------------------- /xen/arch/arm/traps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/traps.c -------------------------------------------------------------------------------- /xen/arch/arm/vgic-v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/vgic-v2.c -------------------------------------------------------------------------------- /xen/arch/arm/vgic-v3-its.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/vgic-v3-its.c -------------------------------------------------------------------------------- /xen/arch/arm/vgic-v3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/vgic-v3.c -------------------------------------------------------------------------------- /xen/arch/arm/vgic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/vgic.c -------------------------------------------------------------------------------- /xen/arch/arm/vm_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/vm_event.c -------------------------------------------------------------------------------- /xen/arch/arm/vpsci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/vpsci.c -------------------------------------------------------------------------------- /xen/arch/arm/vtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/vtimer.c -------------------------------------------------------------------------------- /xen/arch/arm/vtimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/vtimer.h -------------------------------------------------------------------------------- /xen/arch/arm/vuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/vuart.c -------------------------------------------------------------------------------- /xen/arch/arm/vuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/vuart.h -------------------------------------------------------------------------------- /xen/arch/arm/xen.lds.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/arm/xen.lds.S -------------------------------------------------------------------------------- /xen/arch/x86/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/Kconfig -------------------------------------------------------------------------------- /xen/arch/x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/Makefile -------------------------------------------------------------------------------- /xen/arch/x86/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/Rules.mk -------------------------------------------------------------------------------- /xen/arch/x86/acpi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/acpi/Makefile -------------------------------------------------------------------------------- /xen/arch/x86/acpi/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/acpi/boot.c -------------------------------------------------------------------------------- /xen/arch/x86/acpi/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/acpi/lib.c -------------------------------------------------------------------------------- /xen/arch/x86/acpi/power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/acpi/power.c -------------------------------------------------------------------------------- /xen/arch/x86/alternative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/alternative.c -------------------------------------------------------------------------------- /xen/arch/x86/apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/apic.c -------------------------------------------------------------------------------- /xen/arch/x86/bitops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/bitops.c -------------------------------------------------------------------------------- /xen/arch/x86/boot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/boot/Makefile -------------------------------------------------------------------------------- /xen/arch/x86/boot/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/boot/defs.h -------------------------------------------------------------------------------- /xen/arch/x86/boot/edd.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/boot/edd.S -------------------------------------------------------------------------------- /xen/arch/x86/boot/head.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/boot/head.S -------------------------------------------------------------------------------- /xen/arch/x86/boot/mem.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/boot/mem.S -------------------------------------------------------------------------------- /xen/arch/x86/boot/reloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/boot/reloc.c -------------------------------------------------------------------------------- /xen/arch/x86/boot/video.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/boot/video.S -------------------------------------------------------------------------------- /xen/arch/x86/boot/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/boot/video.h -------------------------------------------------------------------------------- /xen/arch/x86/boot/wakeup.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/boot/wakeup.S -------------------------------------------------------------------------------- /xen/arch/x86/boot/x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/boot/x86_64.S -------------------------------------------------------------------------------- /xen/arch/x86/bzimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/bzimage.c -------------------------------------------------------------------------------- /xen/arch/x86/clear_page.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/clear_page.S -------------------------------------------------------------------------------- /xen/arch/x86/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/compat.c -------------------------------------------------------------------------------- /xen/arch/x86/configs/x86_32_defconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xen/arch/x86/configs/x86_64_defconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xen/arch/x86/copy_page.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/copy_page.S -------------------------------------------------------------------------------- /xen/arch/x86/cpu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/cpu/Makefile -------------------------------------------------------------------------------- /xen/arch/x86/cpu/amd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/cpu/amd.c -------------------------------------------------------------------------------- /xen/arch/x86/cpu/centaur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/cpu/centaur.c -------------------------------------------------------------------------------- /xen/arch/x86/cpu/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/cpu/common.c -------------------------------------------------------------------------------- /xen/arch/x86/cpu/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/cpu/cpu.h -------------------------------------------------------------------------------- /xen/arch/x86/cpu/intel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/cpu/intel.c -------------------------------------------------------------------------------- /xen/arch/x86/cpu/vpmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/cpu/vpmu.c -------------------------------------------------------------------------------- /xen/arch/x86/cpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/cpuid.c -------------------------------------------------------------------------------- /xen/arch/x86/crash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/crash.c -------------------------------------------------------------------------------- /xen/arch/x86/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/debug.c -------------------------------------------------------------------------------- /xen/arch/x86/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/delay.c -------------------------------------------------------------------------------- /xen/arch/x86/dmi_scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/dmi_scan.c -------------------------------------------------------------------------------- /xen/arch/x86/dom0_build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/dom0_build.c -------------------------------------------------------------------------------- /xen/arch/x86/domain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/domain.c -------------------------------------------------------------------------------- /xen/arch/x86/domain_page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/domain_page.c -------------------------------------------------------------------------------- /xen/arch/x86/domctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/domctl.c -------------------------------------------------------------------------------- /xen/arch/x86/e820.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/e820.c -------------------------------------------------------------------------------- /xen/arch/x86/efi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/efi/Makefile -------------------------------------------------------------------------------- /xen/arch/x86/efi/check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/efi/check.c -------------------------------------------------------------------------------- /xen/arch/x86/efi/mkreloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/efi/mkreloc.c -------------------------------------------------------------------------------- /xen/arch/x86/efi/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/efi/runtime.h -------------------------------------------------------------------------------- /xen/arch/x86/efi/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/efi/stub.c -------------------------------------------------------------------------------- /xen/arch/x86/extable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/extable.c -------------------------------------------------------------------------------- /xen/arch/x86/flushtlb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/flushtlb.c -------------------------------------------------------------------------------- /xen/arch/x86/gdbstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/gdbstub.c -------------------------------------------------------------------------------- /xen/arch/x86/hpet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/hpet.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/hvm/Makefile -------------------------------------------------------------------------------- /xen/arch/x86/hvm/asid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/hvm/asid.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/hvm/dm.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/emulate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/hvm/emulate.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/hpet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/hvm/hpet.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/hvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/hvm/hvm.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/i8254.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/hvm/i8254.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/hvm/io.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/ioreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/hvm/ioreq.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/hvm/irq.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/hvm/monitor.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/mtrr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/hvm/mtrr.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/pmtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/hvm/pmtimer.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/quirks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/hvm/quirks.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/hvm/rtc.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/hvm/save.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/stdvga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/hvm/stdvga.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/svm/svm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/hvm/svm/svm.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/vioapic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/hvm/vioapic.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/vlapic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/hvm/vlapic.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/vmsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/hvm/vmsi.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/vmx/vmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/hvm/vmx/vmx.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/vpic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/hvm/vpic.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/vpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/hvm/vpt.c -------------------------------------------------------------------------------- /xen/arch/x86/hypercall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/hypercall.c -------------------------------------------------------------------------------- /xen/arch/x86/i387.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/i387.c -------------------------------------------------------------------------------- /xen/arch/x86/i8259.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/i8259.c -------------------------------------------------------------------------------- /xen/arch/x86/io_apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/io_apic.c -------------------------------------------------------------------------------- /xen/arch/x86/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/irq.c -------------------------------------------------------------------------------- /xen/arch/x86/livepatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/livepatch.c -------------------------------------------------------------------------------- /xen/arch/x86/microcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/microcode.c -------------------------------------------------------------------------------- /xen/arch/x86/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/mm.c -------------------------------------------------------------------------------- /xen/arch/x86/mm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/mm/Makefile -------------------------------------------------------------------------------- /xen/arch/x86/mm/altp2m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/mm/altp2m.c -------------------------------------------------------------------------------- /xen/arch/x86/mm/hap/hap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/mm/hap/hap.c -------------------------------------------------------------------------------- /xen/arch/x86/mm/mm-locks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/mm/mm-locks.h -------------------------------------------------------------------------------- /xen/arch/x86/mm/p2m-ept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/mm/p2m-ept.c -------------------------------------------------------------------------------- /xen/arch/x86/mm/p2m-pod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/mm/p2m-pod.c -------------------------------------------------------------------------------- /xen/arch/x86/mm/p2m-pt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/mm/p2m-pt.c -------------------------------------------------------------------------------- /xen/arch/x86/mm/p2m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/mm/p2m.c -------------------------------------------------------------------------------- /xen/arch/x86/mm/paging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/mm/paging.c -------------------------------------------------------------------------------- /xen/arch/x86/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/monitor.c -------------------------------------------------------------------------------- /xen/arch/x86/mpparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/mpparse.c -------------------------------------------------------------------------------- /xen/arch/x86/msi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/msi.c -------------------------------------------------------------------------------- /xen/arch/x86/nmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/nmi.c -------------------------------------------------------------------------------- /xen/arch/x86/numa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/numa.c -------------------------------------------------------------------------------- /xen/arch/x86/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/pci.c -------------------------------------------------------------------------------- /xen/arch/x86/percpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/percpu.c -------------------------------------------------------------------------------- /xen/arch/x86/physdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/physdev.c -------------------------------------------------------------------------------- /xen/arch/x86/psr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/psr.c -------------------------------------------------------------------------------- /xen/arch/x86/pv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/pv/Makefile -------------------------------------------------------------------------------- /xen/arch/x86/pv/traps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/pv/traps.c -------------------------------------------------------------------------------- /xen/arch/x86/setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/setup.c -------------------------------------------------------------------------------- /xen/arch/x86/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/shutdown.c -------------------------------------------------------------------------------- /xen/arch/x86/smp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/smp.c -------------------------------------------------------------------------------- /xen/arch/x86/smpboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/smpboot.c -------------------------------------------------------------------------------- /xen/arch/x86/srat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/srat.c -------------------------------------------------------------------------------- /xen/arch/x86/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/string.c -------------------------------------------------------------------------------- /xen/arch/x86/sysctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/sysctl.c -------------------------------------------------------------------------------- /xen/arch/x86/tboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/tboot.c -------------------------------------------------------------------------------- /xen/arch/x86/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/time.c -------------------------------------------------------------------------------- /xen/arch/x86/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/trace.c -------------------------------------------------------------------------------- /xen/arch/x86/traps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/traps.c -------------------------------------------------------------------------------- /xen/arch/x86/usercopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/usercopy.c -------------------------------------------------------------------------------- /xen/arch/x86/vm_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/vm_event.c -------------------------------------------------------------------------------- /xen/arch/x86/x86_64/compat/Makefile: -------------------------------------------------------------------------------- 1 | obj-bin-y += entry.o 2 | 3 | -------------------------------------------------------------------------------- /xen/arch/x86/x86_64/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/x86_64/mm.c -------------------------------------------------------------------------------- /xen/arch/x86/x86_64/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/x86_64/pci.c -------------------------------------------------------------------------------- /xen/arch/x86/x86_emulate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/x86_emulate.c -------------------------------------------------------------------------------- /xen/arch/x86/xen.lds.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/xen.lds.S -------------------------------------------------------------------------------- /xen/arch/x86/xstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/arch/x86/xstate.c -------------------------------------------------------------------------------- /xen/common/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/COPYING -------------------------------------------------------------------------------- /xen/common/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/Kconfig -------------------------------------------------------------------------------- /xen/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/Makefile -------------------------------------------------------------------------------- /xen/common/README.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/README.source -------------------------------------------------------------------------------- /xen/common/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/bitmap.c -------------------------------------------------------------------------------- /xen/common/bsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/bsearch.c -------------------------------------------------------------------------------- /xen/common/bunzip2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/bunzip2.c -------------------------------------------------------------------------------- /xen/common/compat/domain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/compat/domain.c -------------------------------------------------------------------------------- /xen/common/compat/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/compat/kernel.c -------------------------------------------------------------------------------- /xen/common/compat/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/compat/memory.c -------------------------------------------------------------------------------- /xen/common/compat/xlat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/compat/xlat.c -------------------------------------------------------------------------------- /xen/common/core_parking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/core_parking.c -------------------------------------------------------------------------------- /xen/common/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/cpu.c -------------------------------------------------------------------------------- /xen/common/cpupool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/cpupool.c -------------------------------------------------------------------------------- /xen/common/decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/decompress.c -------------------------------------------------------------------------------- /xen/common/decompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/decompress.h -------------------------------------------------------------------------------- /xen/common/device_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/device_tree.c -------------------------------------------------------------------------------- /xen/common/domain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/domain.c -------------------------------------------------------------------------------- /xen/common/domctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/domctl.c -------------------------------------------------------------------------------- /xen/common/earlycpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/earlycpio.c -------------------------------------------------------------------------------- /xen/common/efi/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/efi/boot.c -------------------------------------------------------------------------------- /xen/common/efi/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/efi/compat.c -------------------------------------------------------------------------------- /xen/common/efi/efi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/efi/efi.h -------------------------------------------------------------------------------- /xen/common/efi/runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/efi/runtime.c -------------------------------------------------------------------------------- /xen/common/event_2l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/event_2l.c -------------------------------------------------------------------------------- /xen/common/event_channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/event_channel.c -------------------------------------------------------------------------------- /xen/common/event_fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/event_fifo.c -------------------------------------------------------------------------------- /xen/common/gcov/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/gcov/Makefile -------------------------------------------------------------------------------- /xen/common/gcov/gcc_3_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/gcov/gcc_3_4.c -------------------------------------------------------------------------------- /xen/common/gcov/gcc_4_7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/gcov/gcc_4_7.c -------------------------------------------------------------------------------- /xen/common/gcov/gcc_4_9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/gcov/gcc_4_9.c -------------------------------------------------------------------------------- /xen/common/gcov/gcc_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/gcov/gcc_5.c -------------------------------------------------------------------------------- /xen/common/gcov/gcov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/gcov/gcov.c -------------------------------------------------------------------------------- /xen/common/gcov/gcov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/gcov/gcov.h -------------------------------------------------------------------------------- /xen/common/gdbstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/gdbstub.c -------------------------------------------------------------------------------- /xen/common/grant_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/grant_table.c -------------------------------------------------------------------------------- /xen/common/guestcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/guestcopy.c -------------------------------------------------------------------------------- /xen/common/gunzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/gunzip.c -------------------------------------------------------------------------------- /xen/common/hvm/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += save.o 2 | -------------------------------------------------------------------------------- /xen/common/hvm/save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/hvm/save.c -------------------------------------------------------------------------------- /xen/common/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/inflate.c -------------------------------------------------------------------------------- /xen/common/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/irq.c -------------------------------------------------------------------------------- /xen/common/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/kernel.c -------------------------------------------------------------------------------- /xen/common/kexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/kexec.c -------------------------------------------------------------------------------- /xen/common/keyhandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/keyhandler.c -------------------------------------------------------------------------------- /xen/common/kimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/kimage.c -------------------------------------------------------------------------------- /xen/common/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/lib.c -------------------------------------------------------------------------------- /xen/common/libelf/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/libelf/COPYING -------------------------------------------------------------------------------- /xen/common/libelf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/libelf/Makefile -------------------------------------------------------------------------------- /xen/common/libelf/README: -------------------------------------------------------------------------------- 1 | Take care, this code is used by both xen and tools ... 2 | -------------------------------------------------------------------------------- /xen/common/libfdt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/libfdt/Makefile -------------------------------------------------------------------------------- /xen/common/libfdt/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/libfdt/TODO -------------------------------------------------------------------------------- /xen/common/libfdt/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/libfdt/fdt.c -------------------------------------------------------------------------------- /xen/common/libfdt/fdt_ro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/libfdt/fdt_ro.c -------------------------------------------------------------------------------- /xen/common/libfdt/fdt_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/libfdt/fdt_rw.c -------------------------------------------------------------------------------- /xen/common/libfdt/fdt_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/libfdt/fdt_sw.c -------------------------------------------------------------------------------- /xen/common/livepatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/livepatch.c -------------------------------------------------------------------------------- /xen/common/livepatch_elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/livepatch_elf.c -------------------------------------------------------------------------------- /xen/common/lz4/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/lz4/defs.h -------------------------------------------------------------------------------- /xen/common/lzo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/lzo.c -------------------------------------------------------------------------------- /xen/common/mem_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/mem_access.c -------------------------------------------------------------------------------- /xen/common/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/memory.c -------------------------------------------------------------------------------- /xen/common/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/monitor.c -------------------------------------------------------------------------------- /xen/common/multicall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/multicall.c -------------------------------------------------------------------------------- /xen/common/notifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/notifier.c -------------------------------------------------------------------------------- /xen/common/page_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/page_alloc.c -------------------------------------------------------------------------------- /xen/common/pdx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/pdx.c -------------------------------------------------------------------------------- /xen/common/perfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/perfc.c -------------------------------------------------------------------------------- /xen/common/preempt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/preempt.c -------------------------------------------------------------------------------- /xen/common/radix-tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/radix-tree.c -------------------------------------------------------------------------------- /xen/common/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/random.c -------------------------------------------------------------------------------- /xen/common/rangeset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/rangeset.c -------------------------------------------------------------------------------- /xen/common/rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/rbtree.c -------------------------------------------------------------------------------- /xen/common/rcupdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/rcupdate.c -------------------------------------------------------------------------------- /xen/common/rwlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/rwlock.c -------------------------------------------------------------------------------- /xen/common/sched_credit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/sched_credit.c -------------------------------------------------------------------------------- /xen/common/sched_credit2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/sched_credit2.c -------------------------------------------------------------------------------- /xen/common/sched_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/sched_null.c -------------------------------------------------------------------------------- /xen/common/sched_rt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/sched_rt.c -------------------------------------------------------------------------------- /xen/common/schedule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/schedule.c -------------------------------------------------------------------------------- /xen/common/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/shutdown.c -------------------------------------------------------------------------------- /xen/common/smp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/smp.c -------------------------------------------------------------------------------- /xen/common/softirq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/softirq.c -------------------------------------------------------------------------------- /xen/common/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/sort.c -------------------------------------------------------------------------------- /xen/common/spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/spinlock.c -------------------------------------------------------------------------------- /xen/common/stop_machine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/stop_machine.c -------------------------------------------------------------------------------- /xen/common/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/string.c -------------------------------------------------------------------------------- /xen/common/symbols-dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/symbols-dummy.c -------------------------------------------------------------------------------- /xen/common/symbols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/symbols.c -------------------------------------------------------------------------------- /xen/common/sysctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/sysctl.c -------------------------------------------------------------------------------- /xen/common/tasklet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/tasklet.c -------------------------------------------------------------------------------- /xen/common/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/time.c -------------------------------------------------------------------------------- /xen/common/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/timer.c -------------------------------------------------------------------------------- /xen/common/tmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/tmem.c -------------------------------------------------------------------------------- /xen/common/tmem_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/tmem_control.c -------------------------------------------------------------------------------- /xen/common/tmem_xen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/tmem_xen.c -------------------------------------------------------------------------------- /xen/common/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/trace.c -------------------------------------------------------------------------------- /xen/common/unlz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/unlz4.c -------------------------------------------------------------------------------- /xen/common/unlzma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/unlzma.c -------------------------------------------------------------------------------- /xen/common/unlzo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/unlzo.c -------------------------------------------------------------------------------- /xen/common/unxz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/unxz.c -------------------------------------------------------------------------------- /xen/common/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/version.c -------------------------------------------------------------------------------- /xen/common/vm_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/vm_event.c -------------------------------------------------------------------------------- /xen/common/vmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/vmap.c -------------------------------------------------------------------------------- /xen/common/vsprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/vsprintf.c -------------------------------------------------------------------------------- /xen/common/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/wait.c -------------------------------------------------------------------------------- /xen/common/warning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/warning.c -------------------------------------------------------------------------------- /xen/common/xenoprof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/xenoprof.c -------------------------------------------------------------------------------- /xen/common/xmalloc_tlsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/xmalloc_tlsf.c -------------------------------------------------------------------------------- /xen/common/xz/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/xz/crc32.c -------------------------------------------------------------------------------- /xen/common/xz/dec_bcj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/xz/dec_bcj.c -------------------------------------------------------------------------------- /xen/common/xz/dec_lzma2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/xz/dec_lzma2.c -------------------------------------------------------------------------------- /xen/common/xz/dec_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/xz/dec_stream.c -------------------------------------------------------------------------------- /xen/common/xz/lzma2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/xz/lzma2.h -------------------------------------------------------------------------------- /xen/common/xz/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/xz/private.h -------------------------------------------------------------------------------- /xen/common/xz/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/common/xz/stream.h -------------------------------------------------------------------------------- /xen/crypto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/crypto/Makefile -------------------------------------------------------------------------------- /xen/crypto/README.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/crypto/README.source -------------------------------------------------------------------------------- /xen/crypto/rijndael.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/crypto/rijndael.c -------------------------------------------------------------------------------- /xen/crypto/vmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/crypto/vmac.c -------------------------------------------------------------------------------- /xen/drivers/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/drivers/Kconfig -------------------------------------------------------------------------------- /xen/drivers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/drivers/Makefile -------------------------------------------------------------------------------- /xen/drivers/acpi/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/drivers/acpi/Kconfig -------------------------------------------------------------------------------- /xen/drivers/acpi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/drivers/acpi/Makefile -------------------------------------------------------------------------------- /xen/drivers/acpi/hwregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/drivers/acpi/hwregs.c -------------------------------------------------------------------------------- /xen/drivers/acpi/numa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/drivers/acpi/numa.c -------------------------------------------------------------------------------- /xen/drivers/acpi/osl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/drivers/acpi/osl.c -------------------------------------------------------------------------------- /xen/drivers/acpi/pmstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/drivers/acpi/pmstat.c -------------------------------------------------------------------------------- /xen/drivers/acpi/reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/drivers/acpi/reboot.c -------------------------------------------------------------------------------- /xen/drivers/acpi/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/drivers/acpi/tables.c -------------------------------------------------------------------------------- /xen/drivers/char/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/drivers/char/Kconfig -------------------------------------------------------------------------------- /xen/drivers/char/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/drivers/char/Makefile -------------------------------------------------------------------------------- /xen/drivers/char/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/drivers/char/console.c -------------------------------------------------------------------------------- /xen/drivers/char/ns16550.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/drivers/char/ns16550.c -------------------------------------------------------------------------------- /xen/drivers/char/pl011.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/drivers/char/pl011.c -------------------------------------------------------------------------------- /xen/drivers/char/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/drivers/char/serial.c -------------------------------------------------------------------------------- /xen/drivers/cpufreq/Kconfig: -------------------------------------------------------------------------------- 1 | 2 | config HAS_CPUFREQ 3 | bool 4 | -------------------------------------------------------------------------------- /xen/drivers/passthrough/Kconfig: -------------------------------------------------------------------------------- 1 | 2 | config HAS_PASSTHROUGH 3 | bool 4 | -------------------------------------------------------------------------------- /xen/drivers/pci/Kconfig: -------------------------------------------------------------------------------- 1 | 2 | config HAS_PCI 3 | bool 4 | -------------------------------------------------------------------------------- /xen/drivers/pci/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += pci.o 2 | -------------------------------------------------------------------------------- /xen/drivers/pci/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/drivers/pci/pci.c -------------------------------------------------------------------------------- /xen/drivers/video/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/drivers/video/Kconfig -------------------------------------------------------------------------------- /xen/drivers/video/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/drivers/video/Makefile -------------------------------------------------------------------------------- /xen/drivers/video/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/drivers/video/font.h -------------------------------------------------------------------------------- /xen/drivers/video/lfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/drivers/video/lfb.c -------------------------------------------------------------------------------- /xen/drivers/video/lfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/drivers/video/lfb.h -------------------------------------------------------------------------------- /xen/drivers/video/vesa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/drivers/video/vesa.c -------------------------------------------------------------------------------- /xen/drivers/video/vga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/drivers/video/vga.c -------------------------------------------------------------------------------- /xen/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/Makefile -------------------------------------------------------------------------------- /xen/include/acpi/acexcep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/acpi/acexcep.h -------------------------------------------------------------------------------- /xen/include/acpi/achware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/acpi/achware.h -------------------------------------------------------------------------------- /xen/include/acpi/aclocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/acpi/aclocal.h -------------------------------------------------------------------------------- /xen/include/acpi/acnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/acpi/acnames.h -------------------------------------------------------------------------------- /xen/include/acpi/acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/acpi/acpi.h -------------------------------------------------------------------------------- /xen/include/acpi/acpixf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/acpi/acpixf.h -------------------------------------------------------------------------------- /xen/include/acpi/actbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/acpi/actbl.h -------------------------------------------------------------------------------- /xen/include/acpi/apei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/acpi/apei.h -------------------------------------------------------------------------------- /xen/include/xen/acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/acpi.h -------------------------------------------------------------------------------- /xen/include/xen/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/cache.h -------------------------------------------------------------------------------- /xen/include/xen/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/const.h -------------------------------------------------------------------------------- /xen/include/xen/cper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/cper.h -------------------------------------------------------------------------------- /xen/include/xen/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/cpu.h -------------------------------------------------------------------------------- /xen/include/xen/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/ctype.h -------------------------------------------------------------------------------- /xen/include/xen/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/delay.h -------------------------------------------------------------------------------- /xen/include/xen/dmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/dmi.h -------------------------------------------------------------------------------- /xen/include/xen/efi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/efi.h -------------------------------------------------------------------------------- /xen/include/xen/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/elf.h -------------------------------------------------------------------------------- /xen/include/xen/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/err.h -------------------------------------------------------------------------------- /xen/include/xen/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/errno.h -------------------------------------------------------------------------------- /xen/include/xen/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/event.h -------------------------------------------------------------------------------- /xen/include/xen/gcov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/gcov.h -------------------------------------------------------------------------------- /xen/include/xen/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/hash.h -------------------------------------------------------------------------------- /xen/include/xen/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/init.h -------------------------------------------------------------------------------- /xen/include/xen/iocap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/iocap.h -------------------------------------------------------------------------------- /xen/include/xen/iommu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/iommu.h -------------------------------------------------------------------------------- /xen/include/xen/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/irq.h -------------------------------------------------------------------------------- /xen/include/xen/kexec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/kexec.h -------------------------------------------------------------------------------- /xen/include/xen/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/lib.h -------------------------------------------------------------------------------- /xen/include/xen/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/list.h -------------------------------------------------------------------------------- /xen/include/xen/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/lz4.h -------------------------------------------------------------------------------- /xen/include/xen/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/lzo.h -------------------------------------------------------------------------------- /xen/include/xen/mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/mm.h -------------------------------------------------------------------------------- /xen/include/xen/nmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/nmi.h -------------------------------------------------------------------------------- /xen/include/xen/numa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/numa.h -------------------------------------------------------------------------------- /xen/include/xen/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/pci.h -------------------------------------------------------------------------------- /xen/include/xen/pdx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/pdx.h -------------------------------------------------------------------------------- /xen/include/xen/perfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/perfc.h -------------------------------------------------------------------------------- /xen/include/xen/pfn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/pfn.h -------------------------------------------------------------------------------- /xen/include/xen/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/sched.h -------------------------------------------------------------------------------- /xen/include/xen/sizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/sizes.h -------------------------------------------------------------------------------- /xen/include/xen/smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/smp.h -------------------------------------------------------------------------------- /xen/include/xen/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/sort.h -------------------------------------------------------------------------------- /xen/include/xen/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/time.h -------------------------------------------------------------------------------- /xen/include/xen/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/timer.h -------------------------------------------------------------------------------- /xen/include/xen/tmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/tmem.h -------------------------------------------------------------------------------- /xen/include/xen/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/trace.h -------------------------------------------------------------------------------- /xen/include/xen/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/types.h -------------------------------------------------------------------------------- /xen/include/xen/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/vga.h -------------------------------------------------------------------------------- /xen/include/xen/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/video.h -------------------------------------------------------------------------------- /xen/include/xen/vmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/vmap.h -------------------------------------------------------------------------------- /xen/include/xen/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xen/wait.h -------------------------------------------------------------------------------- /xen/include/xlat.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xlat.lst -------------------------------------------------------------------------------- /xen/include/xsm/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xsm/dummy.h -------------------------------------------------------------------------------- /xen/include/xsm/xsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/include/xsm/xsm.h -------------------------------------------------------------------------------- /xen/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/test/Makefile -------------------------------------------------------------------------------- /xen/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/tools/Makefile -------------------------------------------------------------------------------- /xen/tools/fig-to-oct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/tools/fig-to-oct.py -------------------------------------------------------------------------------- /xen/tools/gen-cpuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/tools/gen-cpuid.py -------------------------------------------------------------------------------- /xen/tools/get-fields.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/tools/get-fields.sh -------------------------------------------------------------------------------- /xen/tools/kconfig/lkc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/tools/kconfig/lkc.h -------------------------------------------------------------------------------- /xen/tools/kconfig/lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | lxdialog 5 | -------------------------------------------------------------------------------- /xen/tools/scmversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/tools/scmversion -------------------------------------------------------------------------------- /xen/tools/symbols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/tools/symbols.c -------------------------------------------------------------------------------- /xen/tools/xen.flf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/tools/xen.flf -------------------------------------------------------------------------------- /xen/xsm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/xsm/Makefile -------------------------------------------------------------------------------- /xen/xsm/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/xsm/dummy.c -------------------------------------------------------------------------------- /xen/xsm/flask/.gitignore: -------------------------------------------------------------------------------- 1 | /policy.c 2 | -------------------------------------------------------------------------------- /xen/xsm/flask/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/xsm/flask/Makefile -------------------------------------------------------------------------------- /xen/xsm/flask/avc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/xsm/flask/avc.c -------------------------------------------------------------------------------- /xen/xsm/flask/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/xsm/flask/hooks.c -------------------------------------------------------------------------------- /xen/xsm/flask/ss/mls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/xsm/flask/ss/mls.c -------------------------------------------------------------------------------- /xen/xsm/flask/ss/mls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/xsm/flask/ss/mls.h -------------------------------------------------------------------------------- /xen/xsm/xsm_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/xsm/xsm_core.c -------------------------------------------------------------------------------- /xen/xsm/xsm_policy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirage/xen/HEAD/xen/xsm/xsm_policy.c --------------------------------------------------------------------------------