├── .cirrus.yml ├── .gitarchive-info ├── .gitattributes ├── .github └── workflows │ └── coverity.yml ├── .gitignore ├── .gitlab-ci.yml ├── .readthedocs.yaml ├── CHANGELOG.md ├── CODING_STYLE ├── CONTRIBUTING ├── COPYING ├── CREDITS ├── Config.mk ├── INSTALL ├── LICENSES ├── Apache-2.0 ├── BSD-2-Clause ├── BSD-3-Clause ├── BSD-3-Clause-Clear ├── CC-BY-4.0 ├── GPL-2.0 ├── LGPL-2.0 ├── LGPL-2.1 ├── MIT └── MIT-0 ├── MAINTAINERS ├── Makefile ├── README ├── SUPPORT.md ├── autogen.sh ├── automation ├── build │ ├── Makefile │ ├── README.md │ ├── alpine │ │ ├── 3.18-arm64v8.dockerfile │ │ └── 3.18.dockerfile │ ├── archlinux │ │ └── current.dockerfile │ ├── debian │ │ ├── 11-ppc64le.dockerfile │ │ ├── 12-ppc64le.dockerfile │ │ ├── 12-riscv64.dockerfile │ │ ├── 12-x86_32.dockerfile │ │ ├── 12-x86_64-gcc-ibt.dockerfile │ │ ├── 12-x86_64.dockerfile │ │ ├── 13-ppc64le.dockerfile │ │ ├── 13-riscv64.dockerfile │ │ ├── 13-x86_32.dockerfile │ │ ├── 13-x86_64.dockerfile │ │ ├── bookworm-arm64v8-arm32-gcc.dockerfile │ │ ├── bookworm-arm64v8.dockerfile │ │ └── bookworm-cppcheck.dockerfile │ ├── fedora │ │ └── 41-x86_64.dockerfile │ ├── opensuse │ │ ├── leap-15.6-x86_64.dockerfile │ │ └── tumbleweed-x86_64.dockerfile │ ├── ubuntu │ │ ├── 16.04-x86_64.dockerfile │ │ ├── 18.04-x86_64.dockerfile │ │ ├── 20.04-x86_64.dockerfile │ │ ├── 22.04-x86_64.dockerfile │ │ ├── 24.04-x86_64.dockerfile │ │ └── xenial-xilinx.dockerfile │ └── yocto │ │ ├── build-yocto.sh │ │ ├── yocto.dockerfile.in │ │ └── yocto.inc ├── eclair_analysis │ ├── ECLAIR │ │ ├── accepted_guidelines.sh │ │ ├── action.helpers │ │ ├── action.settings │ │ ├── action_check_clean_regressions.sh │ │ ├── action_log.sh │ │ ├── action_pull_request.sh │ │ ├── action_push.sh │ │ ├── action_upload_sarif.sh │ │ ├── adopted.sh │ │ ├── analysis.ecl │ │ ├── analyze.sh │ │ ├── deviations.ecl │ │ ├── generate-linker-symbols.sh │ │ ├── generate_ecl.sh │ │ ├── monitored.ecl │ │ ├── out_of_scope.ecl │ │ ├── print_analyzed_files.sh │ │ ├── public_APIs.ecl │ │ ├── report.ecl │ │ ├── tagging.ecl │ │ └── toolchain.ecl │ ├── Makefile.prepare │ ├── build.sh │ ├── linker-symbols.sh │ ├── prepare.sh │ └── propertyparser.py ├── gitlab-ci │ ├── analyze.yaml │ ├── build-each-commit.sh │ ├── build.yaml │ ├── containers.yaml │ └── test.yaml ├── scripts │ ├── .gitignore │ ├── build │ ├── build-test.sh │ ├── console.exp │ ├── containerize │ ├── eclair │ ├── include │ │ ├── configs │ │ │ ├── xtf-arm64-config │ │ │ ├── xtf-x86-64-config │ │ │ └── xtf-x86-64-efi-config │ │ ├── xtf-arm64 │ │ ├── xtf-runner │ │ ├── xtf-x86-64 │ │ └── xtf-x86-64-efi │ ├── qemu-alpine-x86_64.sh │ ├── qemu-smoke-dom0-arm32.sh │ ├── qemu-smoke-dom0-arm64.sh │ ├── qemu-smoke-dom0less-arm32.sh │ ├── qemu-smoke-dom0less-arm64.sh │ ├── qemu-smoke-ppc64le.sh │ ├── qemu-smoke-riscv64.sh │ ├── qemu-xtf.sh │ ├── qubes-x86-64.sh │ ├── run-tools-tests │ ├── xilinx-smoke-dom0-x86_64.sh │ └── xilinx-smoke-dom0less-arm64.sh └── tests-artifacts │ ├── Makefile │ └── qemu-system-aarch64 │ └── 6.0.0-arm64v8.dockerfile ├── 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-paths.mk.in ├── Tools.mk.in ├── Toplevel.mk.in ├── arm32.mk ├── arm64.mk ├── ppc64.mk ├── riscv64.mk ├── x86_32.mk └── x86_64.mk ├── configure ├── configure.ac ├── docs ├── .gitignore ├── INDEX ├── Makefile ├── README.colo ├── README.remus ├── README.source ├── admin-guide │ ├── index.rst │ ├── introduction.rst │ ├── microcode-loading.rst │ └── xen-overview.drawio.svg ├── conf.py ├── configure ├── configure.ac ├── designs │ ├── argo.pandoc │ ├── dmop.pandoc │ ├── launch │ │ ├── hyperlaunch-devicetree.rst │ │ └── hyperlaunch.rst │ ├── nested-svm-cpu-features.md │ ├── non-cooperative-migration.md │ ├── qemu-deprivilege.md │ └── xenstore-migration.md ├── faq.rst ├── features │ ├── dom0less.pandoc │ ├── feature-levelling.pandoc │ ├── hypervisorfs.pandoc │ ├── intel_psr_cat_cdp.pandoc │ ├── intel_psr_mba.pandoc │ ├── livepatch.pandoc │ ├── migration.pandoc │ ├── qemu-deprivilege.pandoc │ ├── sched_credit.pandoc │ ├── sched_credit2.pandoc │ ├── sched_rtds.pandoc │ └── template.pandoc ├── figs │ ├── Makefile │ ├── network-basic.fig │ ├── network-bridge.fig │ └── xenlogo.eps ├── fusa │ ├── index.rst │ └── reqs │ │ ├── REQUIREMENTS-STYLE │ │ ├── design-reqs │ │ ├── arm64 │ │ │ ├── generic-timer.rst │ │ │ ├── hypercall.rst │ │ │ ├── sbsa-uart.rst │ │ │ └── version_hypercall.rst │ │ └── version_hypercall.rst │ │ ├── index.rst │ │ ├── intro.rst │ │ ├── market-reqs │ │ └── reqs.rst │ │ └── product-reqs │ │ ├── arm64 │ │ └── reqs.rst │ │ ├── hypercall.rst │ │ ├── reqs.rst │ │ └── version_hypercall.rst ├── gen-html-index ├── glossary.rst ├── guest-guide │ ├── index.rst │ └── x86 │ │ ├── hypercall-abi.rst │ │ └── index.rst ├── hypervisor-guide │ ├── arm │ │ ├── firmware │ │ │ └── arm-scmi.rst │ │ └── index.rst │ ├── code-coverage.rst │ ├── index.rst │ └── x86 │ │ ├── how-xen-boots.rst │ │ └── index.rst ├── index.rst ├── man │ ├── xen-pci-device-reservations.7.pod │ ├── xen-pv-channel.7.pod │ ├── xen-tscmode.7.pod │ ├── xen-vbd-interface.7.pandoc │ ├── xen-vtpm.7.pod │ ├── xen-vtpmmgr.7.pod │ ├── xenhypfs.1.pod │ ├── xenstore-chmod.1.pod │ ├── xenstore-ls.1.pod │ ├── xenstore-read.1.pod │ ├── xenstore-write.1.pod │ ├── xenstore.1.pod │ ├── xentop.1.pod │ ├── xentrace.8.pod │ ├── xenwatchdogd.8.pod │ ├── xl-disk-configuration.5.pod.in │ ├── xl-network-configuration.5.pod.in │ ├── xl-numa-placement.7.pod │ ├── xl-pci-configuration.5.pod │ ├── xl.1.pod.in │ ├── xl.cfg.5.pod.in │ ├── xl.conf.5.pod.in │ └── xlcpupool.cfg.5.pod ├── misc │ ├── 9pfs.pandoc │ ├── amd-ucode-container.txt │ ├── arm │ │ ├── big.LITTLE.txt │ │ ├── booting.txt │ │ ├── device-tree │ │ │ ├── acpi.txt │ │ │ ├── booting.txt │ │ │ ├── cpupools.txt │ │ │ ├── guest.txt │ │ │ └── passthrough.txt │ │ ├── early-printk.txt │ │ ├── overlay.txt │ │ ├── passthrough-noiommu.txt │ │ ├── passthrough.txt │ │ └── silicon-errata.txt │ ├── block-scripts.txt │ ├── cache-coloring.rst │ ├── ci.rst │ ├── console.txt │ ├── crashdb.txt │ ├── distro_mapping.txt │ ├── dump-core-format.txt │ ├── efi.pandoc │ ├── grant-tables.txt │ ├── hvm-emulated-unplug.pandoc │ ├── hypfs-paths.pandoc │ ├── kexec_and_kdump.txt │ ├── libxl_memory.txt │ ├── livepatch.pandoc │ ├── netif-staging-grants.pandoc │ ├── printk-formats.txt │ ├── pv-drivers-lifecycle.pandoc │ ├── pvcalls.pandoc │ ├── pvh.pandoc │ ├── qemu-backends.txt │ ├── riscv │ │ └── booting.txt │ ├── status-override-table-spec.fodt │ ├── stubdom.txt │ ├── support-matrix-head.html │ ├── vtd-pi.txt │ ├── vtd.txt │ ├── vtpm-platforms.txt │ ├── x86-xenpv-bootloader.pandoc │ ├── xen-command-line.pandoc │ ├── xen-env-table-spec.fodt │ ├── xen-error-handling.txt │ ├── xen-makefiles │ │ └── makefiles.rst │ ├── xen_config.html │ ├── xenmon.txt │ ├── xenpaging.txt │ ├── xenstore-paths.pandoc │ ├── xenstore-ring.txt │ ├── xenstore.txt │ ├── xl-psr.pandoc │ └── xsm-flask.txt ├── misra │ ├── C-language-toolchain.rst │ ├── C-runtime-failures.rst │ ├── cppcheck.txt │ ├── deviations.rst │ ├── documenting-violations.rst │ ├── exclude-list.json │ ├── exclude-list.rst │ ├── false-positive-coverity.json │ ├── false-positive-cppcheck.json │ ├── false-positive-eclair.json │ ├── function-macro-properties.json │ ├── function-macro-properties.rst │ ├── index.rst │ ├── rules.rst │ ├── safe.json │ └── xen-static-analysis.rst ├── parse-support-md ├── process │ ├── RUBRIC │ ├── branching-checklist.txt │ ├── coding-best-practices.pandoc │ ├── release-technician-checklist.txt │ ├── sending-patches.pandoc │ └── xen-release-management.pandoc ├── specs │ ├── libxc-migration-stream.pandoc │ └── libxl-migration-stream.pandoc ├── support-matrix-generate └── 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 ├── golang.m4 ├── header.m4 ├── ocaml.m4 ├── path_or_fail.m4 ├── paths.m4 ├── pkg.m4 ├── pthread.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 └── coverity │ └── model.c ├── scripts ├── add_maintainers.pl ├── get_maintainer.pl └── git-checkout.sh ├── stubdom ├── .gitignore ├── COPYING ├── Makefile ├── c │ ├── Makefile │ ├── main.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 ├── libpci.config.h ├── libpci.config.mak ├── lwip.dhcp_create_request-hwaddr_len.patch ├── lwip.patch-cvs ├── mini-os.mk ├── newlib-chk.patch ├── newlib-cygmon-gmon.patch ├── newlib-disable-texinfo.patch ├── newlib-fix-copy_past_newline.patch ├── newlib-fix-etext.patch ├── newlib-makedoc.patch ├── newlib-stdint-size_max-fix-from-1.17.0.patch ├── newlib.patch ├── pciutils.patch ├── polarssl.patch ├── tpmemu-0.7.4.patch ├── vtpm-bufsize.patch ├── vtpm-cmake-Wextra.patch ├── vtpm-command-duration.patch ├── vtpm-deepquote-anyloc.patch ├── vtpm-deepquote.patch ├── vtpm-implicit-fallthrough.patch ├── vtpm-locality.patch ├── vtpm-microsecond-duration.patch ├── vtpm-parent-sign-ek.patch ├── vtpm-tpm_bn_t-addr.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 ├── vtpm_TPM_ChangeAuthAsymFinish.patch ├── vtpm_extern.patch ├── 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 ├── xenlibs.mk ├── xenstore-minios.cfg └── xenstorepvh-minios.cfg ├── tools ├── 9pfsd │ ├── .gitignore │ ├── Makefile │ ├── io.c │ ├── xen-9pfsd.c │ └── xen-9pfsd.h ├── Makefile ├── Rules.mk ├── config.h.in ├── configure ├── configure.ac ├── console │ ├── Makefile │ ├── client │ │ ├── .gitignore │ │ ├── Makefile │ │ └── main.c │ ├── daemon │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── io.c │ │ ├── io.h │ │ ├── main.c │ │ ├── utils.c │ │ └── utils.h │ └── testsuite │ │ ├── Makefile │ │ ├── README │ │ ├── console-dom0.c │ │ ├── console-domU.c │ │ └── procpipe.c ├── cross-install ├── debugger │ ├── Makefile │ ├── 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 │ ├── cpupool │ ├── xl.conf │ ├── xlexample.hvm │ ├── xlexample.pvhlinux │ └── 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 │ │ ├── hvmloader.lds │ │ ├── hypercall.h │ │ ├── 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 │ ├── include │ │ ├── stdarg.h │ │ ├── stdbool.h │ │ ├── stddef.h │ │ └── stdint.h │ ├── 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 │ └── xen-dir │ │ └── Makefile ├── 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 │ ├── cpu-policy │ │ ├── .gitignore │ │ ├── Makefile │ │ └── afl-policy-fuzzer.c │ ├── libelf │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── afl-libelf-fuzzer.c │ │ └── libelf-fuzzer.c │ ├── oss-fuzz │ │ └── build.sh │ └── x86_instruction_emulator │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── afl-harness.c │ │ ├── fuzz-emul.c │ │ └── fuzz-emul.h ├── golang │ ├── Makefile │ └── xenlight │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── gengotypes.py │ │ ├── go.mod │ │ ├── helpers.gen.go │ │ ├── types.gen.go │ │ └── xenlight.go ├── helpers │ ├── Makefile │ ├── init-dom-json.c │ ├── init-dom-json.h │ ├── init-dom0less.c │ ├── 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 │ │ │ ├── xen-init-dom0.service.in │ │ │ ├── xen-qemu-dom0-disk-backend.service.in │ │ │ ├── xen-watchdog-sleep.sh │ │ │ ├── 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 │ │ ├── vscsi │ │ ├── xen-hotplug-common.sh.in │ │ ├── xen-network-common.sh │ │ ├── xen-script-common.sh │ │ └── xendomains.in │ ├── Makefile │ ├── NetBSD │ │ ├── Makefile │ │ ├── block │ │ ├── locking.sh │ │ ├── qemu-ifup │ │ ├── rc.d │ │ │ ├── xen-watchdog │ │ │ ├── xencommons.in │ │ │ ├── xendomains │ │ │ └── xendriverdomain.in │ │ ├── vif-bridge │ │ └── vif-ip │ └── common │ │ ├── Makefile │ │ └── hotplugpath.sh.in ├── include │ ├── .gitignore │ ├── Makefile │ ├── libxenvchan.h │ ├── libxl.h │ ├── libxl_event.h │ ├── libxl_json.h │ ├── libxl_utils.h │ ├── libxl_uuid.h │ ├── libxlutil.h │ ├── xen-barrier.h │ ├── xen-foreign │ │ ├── Makefile │ │ ├── mkchecker.py │ │ ├── mkheader.py │ │ ├── reference.size │ │ └── structs.py │ ├── xen-sd-notify.h │ ├── 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 │ │ ├── arm-arch-capabilities.h │ │ ├── bitops.h │ │ ├── common-macros.h │ │ └── xenstore-common.h │ ├── xen.COPYING.in │ ├── xen_list.h │ ├── xencall.h │ ├── xenctrl.h │ ├── xenctrl_compat.h │ ├── xendevicemodel.h │ ├── xenevtchn.h │ ├── xenforeignmemory.h │ ├── xengnttab.h │ ├── xenguest.h │ ├── xenhypfs.h │ ├── xenmanage.h │ ├── xenstat.h │ ├── xenstore-compat │ │ ├── xs.h │ │ └── xs_lib.h │ ├── xenstore.h │ ├── xenstore_lib.h │ ├── xentoolcore.h │ ├── xentoolcore_internal.h │ └── xentoollog.h ├── libacpi │ ├── 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 │ ├── ssdt_tpm2.asl │ └── static_tables.c ├── libfsimage │ ├── Makefile │ ├── Rules.mk │ ├── common.mk │ ├── common │ │ ├── Makefile │ │ ├── fsimage.c │ │ ├── fsimage_grub.c │ │ ├── fsimage_plugin.c │ │ ├── fsimage_priv.h │ │ ├── mapfile-GNU │ │ ├── mapfile-SunOS │ │ ├── xenfsimage.h │ │ ├── xenfsimage_grub.h │ │ └── xenfsimage_plugin.h │ ├── 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 │ ├── .gitignore │ ├── Makefile │ ├── call │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── buffer.c │ │ ├── core.c │ │ ├── freebsd.c │ │ ├── libxencall.map │ │ ├── linux.c │ │ ├── minios.c │ │ ├── netbsd.c │ │ ├── private.h │ │ └── solaris.c │ ├── ctrl │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── xc_altp2m.c │ │ ├── xc_arinc653.c │ │ ├── xc_cpu_hotplug.c │ │ ├── xc_cpupool.c │ │ ├── xc_csched.c │ │ ├── xc_csched2.c │ │ ├── xc_devicemodel_compat.c │ │ ├── xc_domain.c │ │ ├── xc_dt_overlay.c │ │ ├── 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_pagetab.c │ │ ├── xc_physdev.c │ │ ├── xc_pm.c │ │ ├── xc_private.c │ │ ├── xc_private.h │ │ ├── xc_psr.c │ │ ├── xc_resource.c │ │ ├── xc_rt.c │ │ ├── xc_solaris.c │ │ ├── xc_tbuf.c │ │ ├── xc_version.c │ │ ├── xc_vm_event.c │ │ └── xc_vmtrace.c │ ├── devicemodel │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── common.c │ │ ├── compat.c │ │ ├── core.c │ │ ├── libxendevicemodel.map │ │ └── private.h │ ├── evtchn │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── core.c │ │ ├── freebsd.c │ │ ├── libxenevtchn.map │ │ ├── linux.c │ │ ├── minios.c │ │ ├── netbsd.c │ │ ├── private.h │ │ └── solaris.c │ ├── foreignmemory │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── compat.c │ │ ├── core.c │ │ ├── freebsd.c │ │ ├── libxenforeignmemory.map │ │ ├── linux.c │ │ ├── minios.c │ │ ├── netbsd.c │ │ ├── private.h │ │ └── solaris.c │ ├── gnttab │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── freebsd.c │ │ ├── gntshr_core.c │ │ ├── gntshr_unimp.c │ │ ├── gnttab_core.c │ │ ├── gnttab_unimp.c │ │ ├── libxengnttab.map │ │ ├── linux.c │ │ ├── minios.c │ │ ├── netbsd.c │ │ └── private.h │ ├── guest │ │ ├── COPYING │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── xg_core.c │ │ ├── xg_core.h │ │ ├── xg_core_arm.c │ │ ├── xg_core_arm.h │ │ ├── xg_core_x86.c │ │ ├── xg_core_x86.h │ │ ├── xg_cpuid_x86.c │ │ ├── xg_dom_arm.c │ │ ├── xg_dom_armzimageloader.c │ │ ├── xg_dom_binloader.c │ │ ├── xg_dom_boot.c │ │ ├── xg_dom_bzimageloader.c │ │ ├── xg_dom_compat_linux.c │ │ ├── xg_dom_core.c │ │ ├── xg_dom_decompress.h │ │ ├── xg_dom_decompress_lz4.c │ │ ├── xg_dom_decompress_unsafe.c │ │ ├── xg_dom_decompress_unsafe.h │ │ ├── xg_dom_decompress_unsafe_bzip2.c │ │ ├── xg_dom_decompress_unsafe_lzma.c │ │ ├── xg_dom_decompress_unsafe_lzo1x.c │ │ ├── xg_dom_decompress_unsafe_xz.c │ │ ├── xg_dom_decompress_unsafe_zstd.c │ │ ├── xg_dom_elfloader.c │ │ ├── xg_dom_hvmloader.c │ │ ├── xg_dom_x86.c │ │ ├── xg_domain.c │ │ ├── xg_nomigrate.c │ │ ├── xg_offline_page.c │ │ ├── xg_private.c │ │ ├── xg_private.h │ │ ├── xg_resume.c │ │ ├── xg_save_restore.h │ │ ├── xg_sr_common.c │ │ ├── xg_sr_common.h │ │ ├── xg_sr_common_x86.c │ │ ├── xg_sr_common_x86.h │ │ ├── xg_sr_common_x86_pv.c │ │ ├── xg_sr_common_x86_pv.h │ │ ├── xg_sr_restore.c │ │ ├── xg_sr_restore_x86_hvm.c │ │ ├── xg_sr_restore_x86_pv.c │ │ ├── xg_sr_save.c │ │ ├── xg_sr_save_x86_hvm.c │ │ ├── xg_sr_save_x86_pv.c │ │ ├── xg_sr_stream_format.h │ │ └── xg_suspend.c │ ├── hypfs │ │ ├── Makefile │ │ ├── core.c │ │ └── libxenhypfs.map │ ├── libs.mk │ ├── light │ │ ├── CODING_STYLE │ │ ├── Makefile │ │ ├── check-libxl-api-rules │ │ ├── flexarray.c │ │ ├── flexarray.h │ │ ├── gentest.py │ │ ├── gentypes.py │ │ ├── idl.py │ │ ├── idl.txt │ │ ├── libxl.c │ │ ├── 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_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_dt_overlay.c │ │ ├── libxl_event.c │ │ ├── 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_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_nocpuid.c │ │ ├── libxl_nonetbuffer.c │ │ ├── libxl_numa.c │ │ ├── libxl_osdeps.h │ │ ├── libxl_paths.c │ │ ├── libxl_pci.c │ │ ├── libxl_psr.c │ │ ├── libxl_pvcalls.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_setresuid.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_uuid.c │ │ ├── libxl_vdispl.c │ │ ├── libxl_virtio.c │ │ ├── libxl_vkb.c │ │ ├── libxl_vnuma.c │ │ ├── libxl_vsnd.c │ │ ├── libxl_vtpm.c │ │ ├── libxl_x86.c │ │ ├── libxl_x86_acpi.c │ │ ├── libxl_x86_acpi.h │ │ ├── libxl_xshelp.c │ │ ├── osdeps.c │ │ ├── test_common.c │ │ ├── test_common.h │ │ ├── test_fdderegrace.c │ │ └── test_timedereg.c │ ├── manage │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── core.c │ │ └── libxenmanage.map │ ├── stat │ │ ├── COPYING │ │ ├── Makefile │ │ ├── bindings │ │ │ └── swig │ │ │ │ └── xenstat.i │ │ ├── xenstat.c │ │ ├── xenstat_freebsd.c │ │ ├── xenstat_linux.c │ │ ├── xenstat_netbsd.c │ │ ├── xenstat_priv.h │ │ ├── xenstat_qmp.c │ │ └── xenstat_solaris.c │ ├── store │ │ ├── Makefile │ │ ├── libxenstore.map │ │ └── xs.c │ ├── toolcore │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── handlereg.c │ │ └── libxentoolcore.map │ ├── toollog │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── libxentoollog.map │ │ ├── xtl_core.c │ │ └── xtl_logger_stdio.c │ ├── uselibs.mk │ ├── util │ │ ├── CODING_STYLE │ │ ├── Makefile │ │ ├── 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 │ └── vchan │ │ ├── Makefile │ │ ├── init.c │ │ ├── io.c │ │ └── vchan.h ├── misc │ ├── .gitignore │ ├── Makefile │ ├── mkdeb │ ├── mkhex │ ├── mkrpm │ ├── mktarball │ ├── xen-access.c │ ├── xen-cpuid.c │ ├── xen-detect.c │ ├── xen-diag.c │ ├── xen-hptool.c │ ├── xen-hvmcrash.c │ ├── xen-hvmctx.c │ ├── xen-livepatch.c │ ├── xen-lowmemd.c │ ├── xen-mceinj.c │ ├── xen-memshare.c │ ├── xen-mfndump.c │ ├── xen-ucode.c │ ├── xen-vmtrace.c │ ├── xencov.c │ ├── xencov_split │ ├── xenhypfs.c │ ├── xenlockprof.c │ ├── xenperf.c │ ├── xenpm.c │ └── xenwatchdogd.c ├── ocaml │ ├── .gitignore │ ├── 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 │ │ │ ├── op.mli │ │ │ ├── packet.ml │ │ │ ├── packet.mli │ │ │ ├── partial.ml │ │ │ ├── partial.mli │ │ │ ├── xb.ml │ │ │ ├── xb.mli │ │ │ ├── xenbus_stubs.c │ │ │ ├── xs_ring.ml │ │ │ └── xs_ring_stubs.c │ │ ├── xc │ │ │ ├── .gitignore │ │ │ ├── META.in │ │ │ ├── Makefile │ │ │ ├── abi-check │ │ │ ├── xenctrl.ml │ │ │ ├── xenctrl.mli │ │ │ └── xenctrl_stubs.c │ │ ├── xen-caml-compat.h │ │ ├── xs │ │ │ ├── .gitignore │ │ │ ├── META.in │ │ │ ├── Makefile │ │ │ ├── paths.ml.in │ │ │ ├── queueop.ml │ │ │ ├── xs.ml │ │ │ ├── xs.mli │ │ │ ├── xsraw.ml │ │ │ ├── xsraw.mli │ │ │ ├── xst.ml │ │ │ └── xst.mli │ │ └── xsd_glue │ │ │ ├── META.in │ │ │ ├── Makefile │ │ │ ├── domain_getinfo_plugin_v1 │ │ │ ├── META.in │ │ │ ├── Makefile │ │ │ ├── domain_getinfo_stubs_v1.c │ │ │ ├── domain_getinfo_v1.ml │ │ │ └── domain_getinfo_v1.mli │ │ │ ├── plugin_interface_v1.ml │ │ │ └── plugin_interface_v1.mli │ └── xenstored │ │ ├── .gitignore │ │ ├── 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 │ │ ├── paths.ml.in │ │ ├── perms.ml │ │ ├── poll.ml │ │ ├── poll.mli │ │ ├── process.ml │ │ ├── quota.ml │ │ ├── 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 │ ├── .gitignore │ ├── 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 │ ├── .gitignore │ ├── Makefile │ ├── install-wrap │ ├── scripts │ │ ├── convert-legacy-stream │ │ └── verify-stream-v2 │ ├── setup.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 │ │ └── util.py ├── tests │ ├── Makefile │ ├── cpu-policy │ │ ├── .gitignore │ │ ├── Makefile │ │ └── test-cpu-policy.c │ ├── domid │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── harness.h │ │ └── test-domid.c │ ├── paging-mempool │ │ ├── .gitignore │ │ ├── Makefile │ │ └── test-paging-mempool.c │ ├── pdx │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── harness.h │ │ └── test-pdx.c │ ├── rangeset │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── harness.h │ │ └── test-rangeset.c │ ├── resource │ │ ├── .gitignore │ │ ├── Makefile │ │ └── test-resource.c │ ├── tsx │ │ ├── .gitignore │ │ ├── Makefile │ │ └── test-tsx.c │ ├── vpci │ │ ├── Makefile │ │ ├── emul.h │ │ └── main.c │ ├── x86_emulator │ │ ├── 32 │ │ │ └── Makefile │ │ ├── Makefile │ │ ├── blowfish.c │ │ ├── evex-disp8.c │ │ ├── opmask.S │ │ ├── predicates.c │ │ ├── simd-aes.c │ │ ├── simd-clmul.c │ │ ├── simd-fma.c │ │ ├── simd-gf.c │ │ ├── simd-sg.c │ │ ├── simd-sha.c │ │ ├── simd.c │ │ ├── simd.h │ │ ├── test_x86_emulator.c │ │ ├── testcase.mk │ │ ├── wrappers.c │ │ ├── x86-emulate.c │ │ └── x86-emulate.h │ └── xenstore │ │ ├── .gitignore │ │ ├── Makefile │ │ └── test-xenstore.c ├── vchan │ ├── Makefile │ ├── node-select.c │ ├── node.c │ └── vchan-socket-proxy.c ├── xcutils │ ├── Makefile │ ├── lsevtchn.c │ └── readnotes.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 ├── xenstored │ ├── .gitignore │ ├── Makefile │ ├── Makefile.common │ ├── README │ ├── control.c │ ├── control.h │ ├── core.c │ ├── core.h │ ├── domain.c │ ├── domain.h │ ├── hashtable.c │ ├── hashtable.h │ ├── list.h │ ├── lu.c │ ├── lu.h │ ├── lu_daemon.c │ ├── lu_minios.c │ ├── minios.c │ ├── osdep.h │ ├── posix.c │ ├── talloc.c │ ├── talloc.h │ ├── talloc_guide.txt │ ├── transaction.c │ ├── transaction.h │ ├── utils.c │ ├── utils.h │ ├── watch.c │ ├── watch.h │ └── xenstore_state.h ├── xentop │ ├── Makefile │ ├── TODO │ ├── pcpu.c │ ├── pcpu.h │ └── xentop.c ├── xentrace │ ├── Makefile │ ├── analyze.h │ ├── mread.c │ ├── mread.h │ ├── pv.h │ ├── setsize.c │ ├── xenalyze.c │ ├── xenctx.c │ └── xentrace.c ├── xl │ ├── CODING_STYLE │ ├── Makefile │ ├── bash-completion │ ├── check-xl-disk-parse │ ├── check-xl-vcpupin-parse │ ├── check-xl-vcpupin-parse.data-example │ ├── check-xl-vif-parse │ ├── 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_usb.c │ ├── xl_utils.c │ ├── xl_utils.h │ ├── xl_vcpu.c │ ├── xl_vdispl.c │ ├── xl_vkb.c │ ├── xl_vmcontrol.c │ ├── xl_vsnd.c │ └── xl_vtpm.c └── xs-clients │ ├── .gitignore │ ├── Makefile │ ├── xenstore_client.c │ └── xenstore_control.c ├── version.sh └── xen ├── COPYING ├── Kconfig ├── Kconfig.debug ├── Makefile ├── Rules.mk ├── arch ├── Kconfig ├── arm │ ├── Kconfig │ ├── Kconfig.debug │ ├── Makefile │ ├── README.LinuxPrimitives │ ├── Rules.mk │ ├── acpi │ │ ├── Makefile │ │ ├── boot.c │ │ ├── domain_build.c │ │ └── lib.c │ ├── alternative.c │ ├── arch.mk │ ├── arm32 │ │ ├── Makefile │ │ ├── asm-offsets.c │ │ ├── cache.S │ │ ├── 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.c │ │ │ ├── copy_template.S │ │ │ ├── div64.S │ │ │ ├── findbit.S │ │ │ ├── lib1funcs.S │ │ │ ├── lshrdi3.S │ │ │ ├── memchr.S │ │ │ ├── memcpy.S │ │ │ ├── memmove.S │ │ │ ├── memset.S │ │ │ ├── strchr.S │ │ │ └── strrchr.S │ │ ├── livepatch.c │ │ ├── mmu │ │ │ ├── Makefile │ │ │ ├── head.S │ │ │ └── mm.c │ │ ├── mpu │ │ │ ├── Makefile │ │ │ ├── head.S │ │ │ ├── p2m.c │ │ │ └── smpboot.c │ │ ├── proc-caxx.c │ │ ├── proc-v7.S │ │ ├── smpboot.c │ │ ├── traps.c │ │ └── vfp.c │ ├── arm64 │ │ ├── Makefile │ │ ├── asm-offsets.c │ │ ├── bpi.S │ │ ├── cache.S │ │ ├── cpufeature.c │ │ ├── debug-8250.inc │ │ ├── debug-cadence.inc │ │ ├── debug-imx-lpuart.inc │ │ ├── debug-linflex.inc │ │ ├── debug-meson.inc │ │ ├── debug-mvebu.inc │ │ ├── debug-pl011.inc │ │ ├── debug-scif.inc │ │ ├── debug.S │ │ ├── domain.c │ │ ├── domctl.c │ │ ├── entry.S │ │ ├── head.S │ │ ├── insn.c │ │ ├── lib │ │ │ ├── Makefile │ │ │ ├── assembler.h │ │ │ ├── bitops.c │ │ │ ├── clear_page.S │ │ │ ├── memchr.S │ │ │ ├── memcmp.S │ │ │ ├── memcpy.S │ │ │ ├── memmove.S │ │ │ ├── memset.S │ │ │ ├── strchr.S │ │ │ ├── strcmp.S │ │ │ ├── strlen.S │ │ │ ├── strncmp.S │ │ │ ├── strnlen.S │ │ │ └── strrchr.S │ │ ├── livepatch.c │ │ ├── mmu │ │ │ ├── Makefile │ │ │ ├── head.S │ │ │ └── mm.c │ │ ├── mpu │ │ │ ├── Makefile │ │ │ ├── head.S │ │ │ ├── p2m.c │ │ │ └── smpboot.c │ │ ├── smc.S │ │ ├── smpboot.c │ │ ├── sve-asm.S │ │ ├── sve.c │ │ ├── traps.c │ │ ├── vfp.c │ │ └── vsysreg.c │ ├── configs │ │ ├── arm32_defconfig │ │ ├── arm64_defconfig │ │ └── tiny64_defconfig │ ├── cpuerrata.c │ ├── cpufeature.c │ ├── decode.c │ ├── decode.h │ ├── device.c │ ├── dm.c │ ├── dom0less-build.c │ ├── domain.c │ ├── domain_build.c │ ├── domctl.c │ ├── dtb.S │ ├── early_printk.c │ ├── efi │ │ ├── Makefile │ │ ├── efi-boot.h │ │ ├── efi-dom0.c │ │ └── runtime.h │ ├── firmware │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── sci.c │ │ └── scmi-smc.c │ ├── gic-v2.c │ ├── gic-v3-its.c │ ├── gic-v3-lpi.c │ ├── gic-v3.c │ ├── gic-vgic.c │ ├── gic.c │ ├── guest_atomics.c │ ├── guest_walk.c │ ├── guestcopy.c │ ├── hvm.c │ ├── include │ │ └── asm │ │ │ ├── Makefile │ │ │ ├── acpi.h │ │ │ ├── alternative.h │ │ │ ├── arm32 │ │ │ ├── atomic.h │ │ │ ├── bitops.h │ │ │ ├── bug.h │ │ │ ├── cmpxchg.h │ │ │ ├── flushtlb.h │ │ │ ├── insn.h │ │ │ ├── io.h │ │ │ ├── macros.h │ │ │ ├── mm.h │ │ │ ├── mpu.h │ │ │ ├── nospec.h │ │ │ ├── page.h │ │ │ ├── processor.h │ │ │ ├── sysregs.h │ │ │ ├── system.h │ │ │ ├── traps.h │ │ │ └── vfp.h │ │ │ ├── arm64 │ │ │ ├── atomic.h │ │ │ ├── bitops.h │ │ │ ├── brk.h │ │ │ ├── bug.h │ │ │ ├── cmpxchg.h │ │ │ ├── cpufeature.h │ │ │ ├── efibind.h │ │ │ ├── flushtlb.h │ │ │ ├── hsr.h │ │ │ ├── insn.h │ │ │ ├── io.h │ │ │ ├── macros.h │ │ │ ├── mm.h │ │ │ ├── mpu.h │ │ │ ├── nospec.h │ │ │ ├── page.h │ │ │ ├── processor.h │ │ │ ├── sve.h │ │ │ ├── sysregs.h │ │ │ ├── system.h │ │ │ ├── traps.h │ │ │ └── vfp.h │ │ │ ├── asm_defns.h │ │ │ ├── atomic.h │ │ │ ├── bitmap-op.inc │ │ │ ├── bitops.h │ │ │ ├── bug.h │ │ │ ├── cache.h │ │ │ ├── cadence-uart.h │ │ │ ├── config.h │ │ │ ├── cpregs.h │ │ │ ├── cpuerrata.h │ │ │ ├── cpufeature.h │ │ │ ├── current.h │ │ │ ├── div64.h │ │ │ ├── domain.h │ │ │ ├── domain_build.h │ │ │ ├── early_printk.h │ │ │ ├── efibind.h │ │ │ ├── elf.h │ │ │ ├── event.h │ │ │ ├── exynos4210-uart.h │ │ │ ├── firmware │ │ │ └── sci.h │ │ │ ├── fixmap.h │ │ │ ├── flushtlb.h │ │ │ ├── gic.h │ │ │ ├── gic_v3_defs.h │ │ │ ├── gic_v3_its.h │ │ │ ├── grant_table.h │ │ │ ├── guest_access.h │ │ │ ├── guest_atomics.h │ │ │ ├── guest_walk.h │ │ │ ├── hsr.h │ │ │ ├── hypercall.h │ │ │ ├── imx-lpuart.h │ │ │ ├── insn.h │ │ │ ├── io.h │ │ │ ├── iommu.h │ │ │ ├── iommu_fwspec.h │ │ │ ├── ioreq.h │ │ │ ├── irq.h │ │ │ ├── kernel.h │ │ │ ├── linflex-uart.h │ │ │ ├── livepatch.h │ │ │ ├── lpae.h │ │ │ ├── macros.h │ │ │ ├── mem_access.h │ │ │ ├── mm.h │ │ │ ├── mmio.h │ │ │ ├── mmu │ │ │ ├── layout.h │ │ │ ├── mm.h │ │ │ ├── p2m.h │ │ │ └── setup.h │ │ │ ├── monitor.h │ │ │ ├── mpu.h │ │ │ ├── mpu │ │ │ ├── cpregs.h │ │ │ ├── layout.h │ │ │ ├── mm.h │ │ │ ├── p2m.h │ │ │ └── regions.inc │ │ │ ├── new_vgic.h │ │ │ ├── nospec.h │ │ │ ├── p2m.h │ │ │ ├── page-bits.h │ │ │ ├── page.h │ │ │ ├── pci.h │ │ │ ├── perfc_defn.h │ │ │ ├── pl011-uart.h │ │ │ ├── platform.h │ │ │ ├── platforms │ │ │ ├── exynos5.h │ │ │ ├── midway.h │ │ │ ├── omap5.h │ │ │ ├── vexpress.h │ │ │ └── xilinx-zynqmp-eemi.h │ │ │ ├── pmap.h │ │ │ ├── processor.h │ │ │ ├── procinfo.h │ │ │ ├── psci.h │ │ │ ├── regs.h │ │ │ ├── scif-uart.h │ │ │ ├── setup.h │ │ │ ├── short-desc.h │ │ │ ├── smccc.h │ │ │ ├── smp.h │ │ │ ├── spinlock.h │ │ │ ├── string.h │ │ │ ├── sysregs.h │ │ │ ├── system.h │ │ │ ├── tee │ │ │ ├── ffa.h │ │ │ ├── optee_msg.h │ │ │ ├── optee_rpc_cmd.h │ │ │ ├── optee_smc.h │ │ │ └── tee.h │ │ │ ├── time.h │ │ │ ├── traps.h │ │ │ ├── types.h │ │ │ ├── vfp.h │ │ │ ├── vgic-emul.h │ │ │ ├── vgic.h │ │ │ ├── vpl011.h │ │ │ ├── vpsci.h │ │ │ ├── vreg.h │ │ │ └── vtimer.h │ ├── io.c │ ├── ioreq.c │ ├── irq.c │ ├── kernel.c │ ├── livepatch.c │ ├── llc-coloring.c │ ├── mem_access.c │ ├── mm.c │ ├── mmu │ │ ├── Makefile │ │ ├── domain_page.c │ │ ├── mm.c │ │ ├── p2m.c │ │ ├── pt.c │ │ ├── setup.c │ │ └── smpboot.c │ ├── monitor.c │ ├── mpu │ │ ├── Makefile │ │ ├── arm32 │ │ │ ├── Makefile │ │ │ └── mm.c │ │ ├── arm64 │ │ │ ├── Makefile │ │ │ └── mm.c │ │ ├── mm.c │ │ ├── p2m.c │ │ ├── setup.c │ │ └── vmap.c │ ├── p2m.c │ ├── pci │ │ ├── Makefile │ │ ├── ecam.c │ │ ├── pci-access.c │ │ ├── pci-designware.c │ │ ├── pci-designware.h │ │ ├── pci-host-common.c │ │ ├── pci-host-generic.c │ │ ├── pci-host-rcar4.c │ │ ├── pci-host-rcar4.h │ │ ├── pci-host-zynqmp.c │ │ └── pci.c │ ├── physdev.c │ ├── platform.c │ ├── platform_hypercall.c │ ├── platforms │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── brcm-raspberry-pi.c │ │ ├── brcm.c │ │ ├── exynos5.c │ │ ├── imx8qm.c │ │ ├── midway.c │ │ ├── omap5.c │ │ ├── rcar2.c │ │ ├── seattle.c │ │ ├── sunxi.c │ │ ├── thunderx.c │ │ ├── vexpress.c │ │ ├── xgene-storm.c │ │ ├── xilinx-zynqmp-eemi.c │ │ └── xilinx-zynqmp.c │ ├── processor.c │ ├── psci.c │ ├── setup.c │ ├── shutdown.c │ ├── smp.c │ ├── smpboot.c │ ├── sysctl.c │ ├── tee │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── ffa.c │ │ ├── ffa_msg.c │ │ ├── ffa_notif.c │ │ ├── ffa_partinfo.c │ │ ├── ffa_private.h │ │ ├── ffa_rxtx.c │ │ ├── ffa_shm.c │ │ ├── optee.c │ │ └── tee.c │ ├── time.c │ ├── traps.c │ ├── vcpreg.c │ ├── vgic-v2.c │ ├── vgic-v3-its.c │ ├── vgic-v3.c │ ├── vgic.c │ ├── vgic │ │ ├── Makefile │ │ ├── vgic-init.c │ │ ├── vgic-mmio-v2.c │ │ ├── vgic-mmio.c │ │ ├── vgic-mmio.h │ │ ├── vgic-v2.c │ │ ├── vgic.c │ │ └── vgic.h │ ├── vm_event.c │ ├── vpci.c │ ├── vpci.h │ ├── vpl011.c │ ├── vpsci.c │ ├── vsmc.c │ ├── vtimer.c │ ├── vuart.c │ ├── vuart.h │ └── xen.lds.S ├── ppc │ ├── Kconfig │ ├── Kconfig.debug │ ├── Makefile │ ├── Rules.mk │ ├── arch.mk │ ├── configs │ │ └── ppc64_defconfig │ ├── early_printk.c │ ├── include │ │ └── asm │ │ │ ├── Makefile │ │ │ ├── asm-defns.h │ │ │ ├── atomic.h │ │ │ ├── bitops.h │ │ │ ├── boot.h │ │ │ ├── bug.h │ │ │ ├── cache.h │ │ │ ├── config.h │ │ │ ├── current.h │ │ │ ├── domain.h │ │ │ ├── early_printk.h │ │ │ ├── event.h │ │ │ ├── flushtlb.h │ │ │ ├── guest_access.h │ │ │ ├── guest_atomics.h │ │ │ ├── io.h │ │ │ ├── iommu.h │ │ │ ├── irq.h │ │ │ ├── memory.h │ │ │ ├── mm.h │ │ │ ├── monitor.h │ │ │ ├── msr.h │ │ │ ├── nospec.h │ │ │ ├── opal-api.h │ │ │ ├── p2m.h │ │ │ ├── page-bits.h │ │ │ ├── page.h │ │ │ ├── processor.h │ │ │ ├── regs.h │ │ │ ├── setup.h │ │ │ ├── smp.h │ │ │ ├── spinlock.h │ │ │ ├── string.h │ │ │ ├── system.h │ │ │ ├── time.h │ │ │ └── types.h │ ├── mm-radix.c │ ├── opal.c │ ├── ppc64 │ │ ├── Makefile │ │ ├── asm-offsets.c │ │ ├── exceptions-asm.S │ │ ├── exceptions.c │ │ ├── head.S │ │ └── opal-calls.S │ ├── setup.c │ ├── shutdown.c │ ├── stubs.c │ ├── tlb-radix.c │ └── xen.lds.S ├── riscv │ ├── Kconfig │ ├── Kconfig.debug │ ├── Makefile │ ├── Rules.mk │ ├── aplic-priv.h │ ├── aplic.c │ ├── arch.mk │ ├── configs │ │ ├── riscv64_defconfig │ │ └── tiny64_defconfig │ ├── cpufeature.c │ ├── early_printk.c │ ├── entry.S │ ├── imsic.c │ ├── include │ │ └── asm │ │ │ ├── Makefile │ │ │ ├── acpi.h │ │ │ ├── aplic.h │ │ │ ├── asm.h │ │ │ ├── atomic.h │ │ │ ├── bitops.h │ │ │ ├── bug.h │ │ │ ├── cache.h │ │ │ ├── cmpxchg.h │ │ │ ├── config.h │ │ │ ├── cpufeature.h │ │ │ ├── csr.h │ │ │ ├── current.h │ │ │ ├── domain.h │ │ │ ├── early_printk.h │ │ │ ├── event.h │ │ │ ├── fence.h │ │ │ ├── fixmap.h │ │ │ ├── flushtlb.h │ │ │ ├── guest_access.h │ │ │ ├── guest_atomics.h │ │ │ ├── imsic.h │ │ │ ├── intc.h │ │ │ ├── io.h │ │ │ ├── irq.h │ │ │ ├── mm-types.h │ │ │ ├── mm.h │ │ │ ├── monitor.h │ │ │ ├── nospec.h │ │ │ ├── p2m.h │ │ │ ├── page-bits.h │ │ │ ├── page.h │ │ │ ├── pmap.h │ │ │ ├── processor.h │ │ │ ├── regs.h │ │ │ ├── riscv_encoding.h │ │ │ ├── sbi.h │ │ │ ├── setup.h │ │ │ ├── smp.h │ │ │ ├── spinlock.h │ │ │ ├── string.h │ │ │ ├── system.h │ │ │ ├── time.h │ │ │ ├── traps.h │ │ │ └── types.h │ ├── intc.c │ ├── irq.c │ ├── mm.c │ ├── platforms │ │ └── Kconfig │ ├── pt.c │ ├── riscv64 │ │ ├── Makefile │ │ ├── asm-offsets.c │ │ └── head.S │ ├── sbi.c │ ├── setup.c │ ├── shutdown.c │ ├── smp.c │ ├── smpboot.c │ ├── stubs.c │ ├── time.c │ ├── traps.c │ ├── vm_event.c │ └── xen.lds.S └── x86 │ ├── Kconfig │ ├── Kconfig.cpu │ ├── Kconfig.debug │ ├── Makefile │ ├── Rules.mk │ ├── acpi │ ├── Makefile │ ├── boot.c │ ├── cpu_idle.c │ ├── cpufreq │ │ ├── Makefile │ │ ├── acpi.c │ │ ├── amd-cppc.c │ │ ├── cpufreq.c │ │ ├── hwp.c │ │ └── powernow.c │ ├── cpuidle_menu.c │ ├── lib.c │ ├── power.c │ └── wakeup_prot.S │ ├── alternative.c │ ├── apic.c │ ├── arch.mk │ ├── asm-macros.S │ ├── bhb-thunk.S │ ├── bitops.c │ ├── boot │ ├── .gitignore │ ├── Makefile │ ├── build32.lds.S │ ├── cmdline.c │ ├── edd.S │ ├── head.S │ ├── mem.S │ ├── mkelf32.c │ ├── reloc-trampoline.c │ ├── reloc.c │ ├── trampoline.S │ ├── video.S │ ├── video.h │ ├── wakeup.S │ └── x86_64.S │ ├── bzimage.c │ ├── clear_page.S │ ├── compat.c │ ├── configs │ ├── pvshim_defconfig │ ├── x86_32_defconfig │ └── x86_64_defconfig │ ├── copy_page.S │ ├── cpu-policy.c │ ├── cpu │ ├── Makefile │ ├── amd.c │ ├── centaur.c │ ├── common.c │ ├── cpu.h │ ├── hygon.c │ ├── intel.c │ ├── intel_cacheinfo.c │ ├── mcheck │ │ ├── Makefile │ │ ├── amd_nonfatal.c │ │ ├── barrier.c │ │ ├── barrier.h │ │ ├── intel-nonfatal.c │ │ ├── mcaction.c │ │ ├── mcaction.h │ │ ├── mce-apei.c │ │ ├── mce.c │ │ ├── mce.h │ │ ├── mce_amd.c │ │ ├── mce_amd.h │ │ ├── mce_intel.c │ │ ├── mctelem.c │ │ ├── mctelem.h │ │ ├── non-fatal.c │ │ ├── util.c │ │ ├── util.h │ │ ├── vmce.c │ │ ├── vmce.h │ │ └── x86_mca.h │ ├── microcode │ │ ├── Makefile │ │ ├── amd-patch-digests.c │ │ ├── amd.c │ │ ├── core.c │ │ ├── intel.c │ │ └── private.h │ ├── mtrr │ │ ├── Makefile │ │ ├── generic.c │ │ ├── main.c │ │ └── mtrr.h │ ├── mwait-idle.c │ ├── shanghai.c │ ├── vpmu.c │ ├── vpmu_amd.c │ └── vpmu_intel.c │ ├── cpuid.c │ ├── crash.c │ ├── debug.c │ ├── delay.c │ ├── desc.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 │ ├── mbi2.c │ ├── mkreloc.c │ ├── relocs-dummy.S │ ├── runtime.h │ └── stub.c │ ├── emul-i8254.c │ ├── extable.c │ ├── flushtlb.c │ ├── gdbsx.c │ ├── genapic │ ├── Makefile │ ├── bigsmp.c │ ├── default.c │ ├── delivery.c │ ├── probe.c │ └── x2apic.c │ ├── guest │ ├── Makefile │ ├── hyperv │ │ ├── Makefile │ │ ├── hyperv.c │ │ ├── private.h │ │ ├── tlb.c │ │ └── util.c │ ├── hypervisor.c │ └── xen │ │ ├── Makefile │ │ ├── hypercall.S │ │ ├── pvh-boot.c │ │ └── xen.c │ ├── hpet.c │ ├── hvm │ ├── Kconfig │ ├── Makefile │ ├── asid.c │ ├── dm.c │ ├── dom0_build.c │ ├── domain.c │ ├── emulate.c │ ├── grant_table.c │ ├── hpet.c │ ├── hvm.c │ ├── hypercall.c │ ├── intercept.c │ ├── io.c │ ├── ioreq.c │ ├── irq.c │ ├── mmio.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 │ │ ├── nestedhvm.h │ │ ├── nestedsvm.c │ │ ├── svm.c │ │ ├── svm.h │ │ ├── svmdebug.c │ │ └── vmcb.c │ ├── vioapic.c │ ├── viridian │ │ ├── Makefile │ │ ├── private.h │ │ ├── synic.c │ │ ├── time.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 │ ├── include │ └── asm │ │ ├── Makefile │ │ ├── acpi.h │ │ ├── alternative-asm.h │ │ ├── alternative-call.h │ │ ├── alternative.h │ │ ├── altp2m.h │ │ ├── amd.h │ │ ├── apic.h │ │ ├── apicdef.h │ │ ├── asm-defns.h │ │ ├── asm_defns.h │ │ ├── atomic.h │ │ ├── bitops.h │ │ ├── boot-helpers.h │ │ ├── bootfdt.h │ │ ├── bootinfo.h │ │ ├── bug.h │ │ ├── bzimage.h │ │ ├── cache.h │ │ ├── compat.h │ │ ├── config.h │ │ ├── cpu-policy.h │ │ ├── cpu-user-regs.h │ │ ├── cpufeature.h │ │ ├── cpufeatures.h │ │ ├── cpufeatureset.h │ │ ├── cpuid.h │ │ ├── cpuidle.h │ │ ├── current.h │ │ ├── debugreg.h │ │ ├── desc.h │ │ ├── device.h │ │ ├── dom0_build.h │ │ ├── domain.h │ │ ├── e820.h │ │ ├── edd.h │ │ ├── efi.h │ │ ├── efibind.h │ │ ├── elf.h │ │ ├── endbr.h │ │ ├── event.h │ │ ├── fixmap.h │ │ ├── flushtlb.h │ │ ├── fsgsbase.h │ │ ├── gdbsx.h │ │ ├── gen-idt.h │ │ ├── gen-idt.lds.h │ │ ├── genapic.h │ │ ├── grant_table.h │ │ ├── guest-msr.h │ │ ├── guest.h │ │ ├── guest │ │ ├── hyperv-hcall.h │ │ ├── hyperv-tlfs.h │ │ ├── hyperv.h │ │ ├── hypervisor.h │ │ ├── pvh-boot.h │ │ ├── xen-hcall.h │ │ └── xen.h │ │ ├── guest_access.h │ │ ├── guest_atomics.h │ │ ├── guest_pt.h │ │ ├── hap.h │ │ ├── hardirq.h │ │ ├── hpet.h │ │ ├── hvm │ │ ├── asid.h │ │ ├── cacheattr.h │ │ ├── domain.h │ │ ├── emulate.h │ │ ├── grant_table.h │ │ ├── guest_access.h │ │ ├── hvm.h │ │ ├── io.h │ │ ├── ioreq.h │ │ ├── irq.h │ │ ├── monitor.h │ │ ├── nestedhvm.h │ │ ├── save.h │ │ ├── support.h │ │ ├── svm │ │ │ ├── nestedsvm.h │ │ │ ├── svm.h │ │ │ ├── svmdebug.h │ │ │ └── vmcb.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 │ │ ├── idt.h │ │ ├── intel-family.h │ │ ├── invpcid.h │ │ ├── io-ports.h │ │ ├── io.h │ │ ├── io_apic.h │ │ ├── iocap.h │ │ ├── iommu.h │ │ ├── ioreq.h │ │ ├── irq-vectors.h │ │ ├── irq.h │ │ ├── ldt.h │ │ ├── livepatch.h │ │ ├── machine_kexec.h │ │ ├── match-cpu.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 │ │ ├── multicall.h │ │ ├── mwait.h │ │ ├── nmi.h │ │ ├── nops.h │ │ ├── nospec.h │ │ ├── numa.h │ │ ├── p2m.h │ │ ├── page-bits.h │ │ ├── page.h │ │ ├── paging.h │ │ ├── pci.h │ │ ├── pdx.h │ │ ├── percpu.h │ │ ├── perfc_defn.h │ │ ├── processor.h │ │ ├── prot-key.h │ │ ├── psr.h │ │ ├── pt-contig-markers.h │ │ ├── pv │ │ ├── domain.h │ │ ├── grant_table.h │ │ ├── mm.h │ │ ├── shim.h │ │ ├── trace.h │ │ └── traps.h │ │ ├── random.h │ │ ├── regs.h │ │ ├── setup.h │ │ ├── shadow.h │ │ ├── shared.h │ │ ├── shstk.h │ │ ├── smp.h │ │ ├── softirq.h │ │ ├── spec_ctrl.h │ │ ├── spec_ctrl_asm.h │ │ ├── spinlock.h │ │ ├── string.h │ │ ├── stubs.h │ │ ├── system.h │ │ ├── tboot.h │ │ ├── time.h │ │ ├── trampoline.h │ │ ├── traps.h │ │ ├── tsc.h │ │ ├── types.h │ │ ├── uaccess.h │ │ ├── vm_event.h │ │ ├── vpmu.h │ │ ├── x86-defns.h │ │ ├── x86-vendors.h │ │ ├── x86_64 │ │ ├── efibind.h │ │ ├── elf.h │ │ ├── page.h │ │ ├── system.h │ │ └── uaccess.h │ │ ├── x86_emulate.h │ │ ├── xenoprof.h │ │ └── xstate.h │ ├── indirect-thunk.S │ ├── io_apic.c │ ├── ioport_emulate.c │ ├── irq.c │ ├── livepatch.c │ ├── machine_kexec.c │ ├── memcpy.S │ ├── memset.S │ ├── mm.c │ ├── mm │ ├── Makefile │ ├── altp2m.c │ ├── guest_walk.c │ ├── guest_walk_2.c │ ├── guest_walk_3.c │ ├── guest_walk_4.c │ ├── hap │ │ ├── Makefile │ │ ├── guest_walk.c │ │ ├── guest_walk_2.c │ │ ├── guest_walk_3.c │ │ ├── guest_walk_4.c │ │ ├── hap.c │ │ ├── nested_ept.c │ │ ├── nested_hap.c │ │ └── private.h │ ├── mem_access.c │ ├── mem_paging.c │ ├── mem_sharing.c │ ├── mm-locks.h │ ├── nested.c │ ├── p2m-basic.c │ ├── p2m-ept.c │ ├── p2m-pod.c │ ├── p2m-pt.c │ ├── p2m.c │ ├── p2m.h │ ├── paging.c │ ├── physmap.c │ └── shadow │ │ ├── Makefile │ │ ├── common.c │ │ ├── guest_2.c │ │ ├── guest_3.c │ │ ├── guest_4.c │ │ ├── hvm.c │ │ ├── multi.c │ │ ├── multi.h │ │ ├── none.c │ │ ├── private.h │ │ ├── pv.c │ │ ├── set.c │ │ └── types.h │ ├── monitor.c │ ├── mpparse.c │ ├── msi.c │ ├── msr.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 │ ├── physdev.c │ ├── platform_hypercall.c │ ├── psr.c │ ├── pv │ ├── Makefile │ ├── callback.c │ ├── descriptor-tables.c │ ├── dom0_build.c │ ├── domain.c │ ├── emul-gate-op.c │ ├── emul-inv-op.c │ ├── emul-priv-op.c │ ├── emulate.c │ ├── emulate.h │ ├── gpr_switch.S │ ├── grant_table.c │ ├── hypercall.c │ ├── iret.c │ ├── misc-hypercalls.c │ ├── mm.c │ ├── mm.h │ ├── ro-page-fault.c │ ├── shim.c │ ├── trace.c │ └── traps.c │ ├── scrub-page.S │ ├── setup.c │ ├── shutdown.c │ ├── smp.c │ ├── smpboot.c │ ├── spec_ctrl.c │ ├── srat.c │ ├── string.c │ ├── sysctl.c │ ├── tboot.c │ ├── time.c │ ├── traps-setup.c │ ├── traps.c │ ├── tsx.c │ ├── usercopy.c │ ├── vm_event.c │ ├── x86_64 │ ├── Makefile │ ├── acpi_mmcfg.c │ ├── asm-offsets.c │ ├── compat.c │ ├── compat │ │ ├── Makefile │ │ ├── entry.S │ │ └── mm.c │ ├── cpu_idle.c │ ├── cpufreq.c │ ├── domain.c │ ├── entry.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 │ ├── x86_emulate.c │ ├── x86_emulate │ ├── 0f01.c │ ├── 0fae.c │ ├── 0fc7.c │ ├── Makefile │ ├── blk.c │ ├── decode.c │ ├── fpu.c │ ├── private.h │ ├── util-xen.c │ ├── util.c │ ├── x86_emulate.c │ └── x86_emulate.h │ ├── xen.lds.S │ └── xstate.c ├── build.mk ├── common ├── COPYING ├── Kconfig ├── Makefile ├── README.source ├── argo.c ├── bitmap.c ├── bitops.c ├── bug.c ├── bunzip2.c ├── compat │ ├── domain.c │ ├── grant_table.c │ ├── memory.c │ ├── multicall.c │ ├── xenoprof.c │ └── xlat.c ├── core_parking.c ├── coverage │ ├── Makefile │ ├── coverage.c │ ├── coverage.h │ ├── gcc_3_4.c │ ├── gcc_4_7.c │ ├── gcov.c │ ├── gcov.h │ ├── gcov_base.c │ └── llvm.c ├── cpu.c ├── debugtrace.c ├── decompress.c ├── decompress.h ├── device-tree │ ├── Makefile │ ├── bootfdt.c │ ├── bootinfo-fdt.c │ ├── bootinfo.c │ ├── device-tree.c │ ├── dom0less-bindings.c │ ├── dom0less-build.c │ ├── domain-build.c │ ├── dt-overlay.c │ ├── intc.c │ ├── kernel.c │ ├── static-evtchn.c │ ├── static-memory.c │ └── static-shmem.c ├── device.c ├── dm.c ├── domain.c ├── domctl.c ├── domid.c ├── earlycpio.c ├── efi │ ├── boot.c │ ├── common-stub.c │ ├── compat.c │ ├── ebmalloc.c │ ├── efi-common.mk │ ├── efi.h │ ├── pe.c │ └── runtime.c ├── event_2l.c ├── event_channel.c ├── event_channel.h ├── event_fifo.c ├── grant_table.c ├── guestcopy.c ├── gzip │ ├── Makefile │ ├── gunzip.c │ └── inflate.c ├── hypfs.c ├── ioreq.c ├── irq.c ├── kernel.c ├── kexec.c ├── keyhandler.c ├── kimage.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_addresses.c │ ├── fdt_check.c │ ├── fdt_empty_tree.c │ ├── fdt_overlay.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 ├── llc-coloring.c ├── lz4 │ ├── decompress.c │ └── defs.h ├── lzo.c ├── mem_access.c ├── memory.c ├── monitor.c ├── multicall.c ├── notifier.c ├── numa.c ├── page_alloc.c ├── pdx.c ├── percpu.c ├── perfc.c ├── pmap.c ├── preempt.c ├── radix-tree.c ├── random.c ├── rangeset.c ├── rcupdate.c ├── rwlock.c ├── sched │ ├── Kconfig │ ├── Makefile │ ├── arinc653.c │ ├── boot-cpupool.c │ ├── compat.c │ ├── core.c │ ├── cpupool.c │ ├── credit.c │ ├── credit2.c │ ├── null.c │ ├── private.h │ └── rt.c ├── shutdown.c ├── smp.c ├── softirq.c ├── spinlock.c ├── stack-protector.c ├── stop_machine.c ├── symbols-dummy.c ├── symbols.c ├── symbols.h ├── sysctl.c ├── tasklet.c ├── time.c ├── timer.c ├── trace.c ├── ubsan │ ├── Makefile │ ├── ubsan.c │ └── ubsan.h ├── unlz4.c ├── unlzma.c ├── unlzo.c ├── unxz.c ├── unzstd.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 └── zstd │ ├── bitstream.h │ ├── decompress.c │ ├── entropy_common.c │ ├── error_private.h │ ├── fse.h │ ├── fse_decompress.c │ ├── huf.h │ ├── huf_decompress.c │ ├── mem.h │ ├── zstd_common.c │ └── zstd_internal.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 │ ├── pm-op.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 │ ├── cadence-uart.c │ ├── console.c │ ├── consoled.c │ ├── ehci-dbgp.c │ ├── exynos4210-uart.c │ ├── imx-lpuart.c │ ├── linflex-uart.c │ ├── meson-uart.c │ ├── mvebu-uart.c │ ├── ns16550.c │ ├── omap-uart.c │ ├── pl011.c │ ├── scif-uart.c │ ├── serial.c │ ├── uart-init.c │ ├── xen_pv_console.c │ └── xhci-dbc.c ├── cpufreq │ ├── Kconfig │ ├── Makefile │ ├── cpufreq.c │ ├── cpufreq_misc_governors.c │ ├── cpufreq_ondemand.c │ └── utility.c ├── passthrough │ ├── Kconfig │ ├── Makefile │ ├── amd │ │ ├── Makefile │ │ ├── iommu-defs.h │ │ ├── iommu.h │ │ ├── iommu_acpi.c │ │ ├── iommu_cmd.c │ │ ├── iommu_detect.c │ │ ├── iommu_init.c │ │ ├── iommu_intr.c │ │ ├── iommu_map.c │ │ └── pci_amd_iommu.c │ ├── arm │ │ ├── Makefile │ │ ├── iommu.c │ │ ├── iommu_fwspec.c │ │ ├── iommu_helpers.c │ │ ├── ipmmu-vmsa.c │ │ ├── smmu-v3.c │ │ ├── smmu-v3.h │ │ └── smmu.c │ ├── ats.c │ ├── ats.h │ ├── device_tree.c │ ├── iommu.c │ ├── msi.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 │ │ ├── hvm.c │ │ └── iommu.c ├── pci │ ├── Kconfig │ ├── Makefile │ ├── pci.c │ └── physdev.c ├── video │ ├── Kconfig │ ├── Makefile │ ├── font.h │ ├── font_8x14.c │ ├── font_8x16.c │ ├── font_8x8.c │ ├── lfb.c │ ├── lfb.h │ ├── modelines.h │ ├── vesa.c │ └── vga.c └── vpci │ ├── Makefile │ ├── header.c │ ├── msi.c │ ├── msix.c │ ├── rebar.c │ └── vpci.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-generic │ ├── altp2m.h │ ├── atomic-ops.h │ ├── device.h │ ├── div64.h │ ├── hardirq.h │ ├── hypercall.h │ ├── iocap.h │ ├── irq-dt.h │ ├── monitor.h │ ├── paging.h │ ├── percpu.h │ ├── perfc_defn.h │ ├── random.h │ ├── softirq.h │ └── vm_event.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 │ └── pe.h ├── hypercall-defs.c ├── public │ ├── COPYING │ ├── arch-arm.h │ ├── arch-arm │ │ ├── hvm │ │ │ └── save.h │ │ └── smccc.h │ ├── arch-ppc.h │ ├── arch-riscv.h │ ├── arch-x86 │ │ ├── cpufeatureset.h │ │ ├── cpuid.h │ │ ├── guest-acpi.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 │ ├── argo.h │ ├── bootfdt.h │ ├── callback.h │ ├── device_tree_defs.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 │ ├── hypfs.h │ ├── io │ │ ├── 9pfs.h │ │ ├── blkif.h │ │ ├── cameraif.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 │ ├── alternative-call.h │ ├── argo.h │ ├── atomic.h │ ├── bitmap.h │ ├── bitops.h │ ├── bootfdt.h │ ├── bootinfo.h │ ├── bsearch.h │ ├── bug.h │ ├── byteorder.h │ ├── byteswap.h │ ├── cache.h │ ├── compat.h │ ├── compile.h.in │ ├── compiler.h │ ├── config.h │ ├── console.h │ ├── consoled.h │ ├── const.h │ ├── coverage.h │ ├── cper.h │ ├── cpu.h │ ├── cpuidle.h │ ├── cpumask.h │ ├── ctype.h │ ├── decompress.h │ ├── delay.h │ ├── device_tree.h │ ├── dm.h │ ├── dmi.h │ ├── dom0less-build.h │ ├── domain.h │ ├── domain_page.h │ ├── dt-overlay.h │ ├── early_printk.h │ ├── earlycpio.h │ ├── efi.h │ ├── elf.h │ ├── elfcore.h │ ├── elfstructs.h │ ├── err.h │ ├── errno.h │ ├── event.h │ ├── fdt-domain-build.h │ ├── fdt-kernel.h │ ├── grant_table.h │ ├── guest_access.h │ ├── gunzip.h │ ├── hypercall.h │ ├── hypfs.h │ ├── init.h │ ├── inttypes.h │ ├── io.h │ ├── iocap.h │ ├── iommu.h │ ├── ioreq.h │ ├── irq.h │ ├── irq_cpustat.h │ ├── kconfig.h │ ├── kernel.h │ ├── kexec.h │ ├── keyhandler.h │ ├── kimage.h │ ├── lib.h │ ├── lib │ │ └── x86 │ │ │ ├── Makefile │ │ │ └── cpu-policy.h │ ├── libelf.h │ ├── libfdt │ │ ├── fdt.h │ │ ├── libfdt-xen.h │ │ ├── libfdt.h │ │ └── libfdt_env.h │ ├── linkage.h │ ├── linux-compat.h │ ├── list.h │ ├── list_sort.h │ ├── livepatch.h │ ├── livepatch_elf.h │ ├── livepatch_payload.h │ ├── llc-coloring.h │ ├── lz4.h │ ├── lzo.h │ ├── macros.h │ ├── mem_access.h │ ├── mm-frame.h │ ├── mm-types.h │ ├── mm.h │ ├── monitor.h │ ├── msi.h │ ├── multiboot.h │ ├── multiboot2.h │ ├── multicall.h │ ├── nodemask.h │ ├── nospec.h │ ├── notifier.h │ ├── numa.h │ ├── p2m-common.h │ ├── page-defs.h │ ├── page-size.h │ ├── paging.h │ ├── param.h │ ├── pci.h │ ├── pci_ids.h │ ├── pci_regs.h │ ├── pdx.h │ ├── percpu.h │ ├── perfc.h │ ├── perfc_defn.h │ ├── pfn.h │ ├── pmap.h │ ├── pmstat.h │ ├── preempt.h │ ├── prefetch.h │ ├── pv_console.h │ ├── radix-tree.h │ ├── random.h │ ├── rangeset.h │ ├── rbtree.h │ ├── rcupdate.h │ ├── resource.h │ ├── rwlock.h │ ├── sched.h │ ├── scrub.h │ ├── sections.h │ ├── self-tests.h │ ├── serial.h │ ├── sha1.h │ ├── sha2.h │ ├── shared.h │ ├── shutdown.h │ ├── sizes.h │ ├── smp.h │ ├── softirq.h │ ├── sort.h │ ├── spinlock.h │ ├── stack-protector.h │ ├── static-evtchn.h │ ├── static-memory.h │ ├── static-shmem.h │ ├── stdarg.h │ ├── stdbool.h │ ├── stdint.h │ ├── stop_machine.h │ ├── string.h │ ├── stringify.h │ ├── symbols.h │ ├── tasklet.h │ ├── time.h │ ├── timer.h │ ├── trace.h │ ├── types.h │ ├── typesafe.h │ ├── unaligned.h │ ├── version.h │ ├── vga.h │ ├── video.h │ ├── virtual_region.h │ ├── vm_event.h │ ├── vmap.h │ ├── vpci.h │ ├── wait.h │ ├── warning.h │ ├── watchdog.h │ ├── xen.lds.h │ ├── xenoprof.h │ ├── xmalloc.h │ ├── xvmalloc.h │ └── xxhash.h ├── xlat.lst └── xsm │ ├── dummy.h │ └── xsm.h ├── lib ├── Makefile ├── bsearch.c ├── ctors.c ├── ctype.c ├── divmod.c ├── find-next-bit.c ├── generic-ffsl.c ├── generic-flsl.c ├── generic-hweightl.c ├── list-sort.c ├── memchr.c ├── memchr_inv.c ├── memcmp.c ├── memcpy.c ├── memmove.c ├── memset.c ├── muldiv64.c ├── parse-size.c ├── rbtree.c ├── sha1.c ├── sha2-256.c ├── sort.c ├── strcasecmp.c ├── strchr.c ├── strcmp.c ├── strcspn.c ├── strlcat.c ├── strlcpy.c ├── strlen.c ├── strncasecmp.c ├── strncmp.c ├── strnlen.c ├── strpbrk.c ├── strrchr.c ├── strsep.c ├── strspn.c ├── strstr.c ├── strtol.c ├── strtoll.c ├── strtoul.c ├── strtoull.c ├── x86-generic-hweightl.c ├── x86 │ ├── Makefile │ ├── cpuid.c │ ├── msr.c │ ├── policy.c │ └── private.h ├── xxhash32.c └── xxhash64.c ├── scripts ├── Kbuild.include ├── Kconfig.include ├── Makefile.asm-generic ├── Makefile.clean ├── Makefile.host ├── clang-version.sh ├── diff-report.py ├── gcc-version.sh ├── gen_hypercall.awk ├── xen-analysis.py └── xen_analysis │ ├── __init__.py │ ├── cppcheck_analysis.py │ ├── cppcheck_report_utils.py │ ├── diff_tool │ ├── __init__.py │ ├── cppcheck_report.py │ ├── debug.py │ ├── report.py │ └── unified_format_parser.py │ ├── exclusion_file_list.py │ ├── generic_analysis.py │ ├── settings.py │ ├── tag_database.py │ └── utils.py ├── test ├── Makefile └── livepatch │ ├── Makefile │ ├── xen_action_hooks.c │ ├── xen_action_hooks_marker.c │ ├── xen_action_hooks_noapply.c │ ├── xen_action_hooks_nofunc.c │ ├── xen_action_hooks_norevert.c │ ├── xen_bye_world.c │ ├── xen_bye_world_func.c │ ├── xen_expectations.c │ ├── xen_expectations_fail.c │ ├── xen_hello_world.c │ ├── xen_hello_world_func.c │ ├── xen_nop.c │ ├── xen_prepost_hooks.c │ ├── xen_prepost_hooks_fail.c │ ├── xen_replace_world.c │ └── xen_replace_world_func.c ├── tools ├── Makefile ├── binfile ├── check-endbr.sh ├── combine_two_binaries.py ├── compat-build-header.py ├── compat-build-source.py ├── compat-xlat-header.py ├── convert_misra_doc.py ├── cppcheck-cc.sh ├── cppcheck-plat │ ├── arm32-wchar_t4.xml │ ├── arm64-wchar_t2.xml │ └── x86_64-wchar_t2.xml ├── fixdep.c ├── gen-cpuid.py ├── kconfig │ ├── .gitignore │ ├── Makefile │ ├── README.source │ ├── allrandom.config │ ├── conf.c │ ├── confdata.c │ ├── expr.c │ ├── expr.h │ ├── gconf-cfg.sh │ ├── gconf.c │ ├── gconf.glade │ ├── images.c │ ├── images.h │ ├── lexer.l │ ├── list.h │ ├── lkc.h │ ├── lkc_proto.h │ ├── lxdialog │ │ ├── BIG.FAT.WARNING │ │ ├── checklist.c │ │ ├── dialog.h │ │ ├── inputbox.c │ │ ├── menubox.c │ │ ├── textbox.c │ │ ├── util.c │ │ └── yesno.c │ ├── mconf-cfg.sh │ ├── mconf.c │ ├── menu.c │ ├── merge_config.sh │ ├── nconf-cfg.sh │ ├── nconf.c │ ├── nconf.gui.c │ ├── nconf.h │ ├── parser.y │ ├── preprocess.c │ ├── qconf-cfg.sh │ ├── qconf.cc │ ├── qconf.h │ ├── streamline_config.pl │ ├── symbol.c │ ├── tests │ │ ├── auto_submenu │ │ │ ├── Kconfig │ │ │ ├── __init__.py │ │ │ └── expected_stdout │ │ ├── choice │ │ │ ├── Kconfig │ │ │ ├── __init__.py │ │ │ ├── alldef_expected_config │ │ │ ├── allmod_expected_config │ │ │ ├── allno_expected_config │ │ │ ├── allyes_expected_config │ │ │ ├── oldask0_expected_stdout │ │ │ ├── oldask1_config │ │ │ └── oldask1_expected_stdout │ │ ├── choice_value_with_m_dep │ │ │ ├── Kconfig │ │ │ ├── __init__.py │ │ │ ├── config │ │ │ ├── expected_config │ │ │ └── expected_stdout │ │ ├── conftest.py │ │ ├── err_recursive_dep │ │ │ ├── Kconfig │ │ │ ├── __init__.py │ │ │ └── expected_stderr │ │ ├── err_recursive_inc │ │ │ ├── Kconfig │ │ │ ├── Kconfig.inc1 │ │ │ ├── Kconfig.inc2 │ │ │ ├── Kconfig.inc3 │ │ │ ├── __init__.py │ │ │ └── expected_stderr │ │ ├── inter_choice │ │ │ ├── Kconfig │ │ │ ├── __init__.py │ │ │ ├── defconfig │ │ │ └── expected_config │ │ ├── new_choice_with_dep │ │ │ ├── Kconfig │ │ │ ├── __init__.py │ │ │ ├── config │ │ │ └── expected_stdout │ │ ├── no_write_if_dep_unmet │ │ │ ├── Kconfig │ │ │ ├── __init__.py │ │ │ ├── config │ │ │ └── expected_config │ │ ├── preprocess │ │ │ ├── builtin_func │ │ │ │ ├── Kconfig │ │ │ │ ├── __init__.py │ │ │ │ ├── expected_stderr │ │ │ │ └── expected_stdout │ │ │ ├── circular_expansion │ │ │ │ ├── Kconfig │ │ │ │ ├── __init__.py │ │ │ │ └── expected_stderr │ │ │ ├── escape │ │ │ │ ├── Kconfig │ │ │ │ ├── __init__.py │ │ │ │ └── expected_stderr │ │ │ └── variable │ │ │ │ ├── Kconfig │ │ │ │ ├── __init__.py │ │ │ │ └── expected_stderr │ │ ├── pytest.ini │ │ └── rand_nested_choice │ │ │ ├── Kconfig │ │ │ ├── __init__.py │ │ │ ├── expected_stdout0 │ │ │ ├── expected_stdout1 │ │ │ └── expected_stdout2 │ └── util.c ├── process-banner.sed ├── scmversion ├── symbols.c └── xen.flf └── xsm ├── Makefile ├── dummy.c ├── flask ├── .gitignore ├── Makefile ├── avc.c ├── flask_op.c ├── 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 ├── private.h └── 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 ├── silo.c ├── xsm_core.c └── xsm_policy.c /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.gitarchive-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/.gitarchive-info -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | .gitarchive-info export-subst 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODING_STYLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/CODING_STYLE -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/COPYING -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/CREDITS -------------------------------------------------------------------------------- /Config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/Config.mk -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSES/Apache-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/LICENSES/Apache-2.0 -------------------------------------------------------------------------------- /LICENSES/BSD-2-Clause: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/LICENSES/BSD-2-Clause -------------------------------------------------------------------------------- /LICENSES/BSD-3-Clause: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/LICENSES/BSD-3-Clause -------------------------------------------------------------------------------- /LICENSES/CC-BY-4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/LICENSES/CC-BY-4.0 -------------------------------------------------------------------------------- /LICENSES/GPL-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/LICENSES/GPL-2.0 -------------------------------------------------------------------------------- /LICENSES/LGPL-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/LICENSES/LGPL-2.0 -------------------------------------------------------------------------------- /LICENSES/LGPL-2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/LICENSES/LGPL-2.1 -------------------------------------------------------------------------------- /LICENSES/MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/LICENSES/MIT -------------------------------------------------------------------------------- /LICENSES/MIT-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/LICENSES/MIT-0 -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/README -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/autogen.sh -------------------------------------------------------------------------------- /automation/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/automation/build/Makefile -------------------------------------------------------------------------------- /automation/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/automation/build/README.md -------------------------------------------------------------------------------- /automation/scripts/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/automation/scripts/build -------------------------------------------------------------------------------- /automation/scripts/eclair: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/automation/scripts/eclair -------------------------------------------------------------------------------- /automation/scripts/include/configs/xtf-x86-64-config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automation/scripts/include/configs/xtf-x86-64-efi-config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/config.guess -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/config.sub -------------------------------------------------------------------------------- /config/Docs.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/config/Docs.mk.in -------------------------------------------------------------------------------- /config/FreeBSD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/config/FreeBSD.mk -------------------------------------------------------------------------------- /config/Linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/config/Linux.mk -------------------------------------------------------------------------------- /config/MiniOS.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/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/xen-project/xen/HEAD/config/NetBSDRump.mk -------------------------------------------------------------------------------- /config/OpenBSD.mk: -------------------------------------------------------------------------------- 1 | include $(XEN_ROOT)/config/StdGNU.mk 2 | 3 | XEN_ELF_SUB_FLAVOR = _obsd 4 | -------------------------------------------------------------------------------- /config/Paths.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/config/Paths.mk.in -------------------------------------------------------------------------------- /config/StdGNU.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/config/StdGNU.mk -------------------------------------------------------------------------------- /config/Stubdom.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/config/Stubdom.mk.in -------------------------------------------------------------------------------- /config/SunOS.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/config/SunOS.mk -------------------------------------------------------------------------------- /config/Tools-paths.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/config/Tools-paths.mk.in -------------------------------------------------------------------------------- /config/Tools.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/config/Tools.mk.in -------------------------------------------------------------------------------- /config/Toplevel.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/config/Toplevel.mk.in -------------------------------------------------------------------------------- /config/arm32.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/config/arm32.mk -------------------------------------------------------------------------------- /config/arm64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/config/arm64.mk -------------------------------------------------------------------------------- /config/ppc64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/config/ppc64.mk -------------------------------------------------------------------------------- /config/riscv64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/config/riscv64.mk -------------------------------------------------------------------------------- /config/x86_32.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/config/x86_32.mk -------------------------------------------------------------------------------- /config/x86_64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/config/x86_64.mk -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/configure.ac -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/INDEX -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.colo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/README.colo -------------------------------------------------------------------------------- /docs/README.remus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/README.remus -------------------------------------------------------------------------------- /docs/README.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/README.source -------------------------------------------------------------------------------- /docs/admin-guide/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/admin-guide/index.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/configure -------------------------------------------------------------------------------- /docs/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/configure.ac -------------------------------------------------------------------------------- /docs/designs/argo.pandoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/designs/argo.pandoc -------------------------------------------------------------------------------- /docs/designs/dmop.pandoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/designs/dmop.pandoc -------------------------------------------------------------------------------- /docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/faq.rst -------------------------------------------------------------------------------- /docs/figs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/figs/Makefile -------------------------------------------------------------------------------- /docs/figs/xenlogo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/figs/xenlogo.eps -------------------------------------------------------------------------------- /docs/fusa/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/fusa/index.rst -------------------------------------------------------------------------------- /docs/fusa/reqs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/fusa/reqs/index.rst -------------------------------------------------------------------------------- /docs/fusa/reqs/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/fusa/reqs/intro.rst -------------------------------------------------------------------------------- /docs/gen-html-index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/gen-html-index -------------------------------------------------------------------------------- /docs/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/glossary.rst -------------------------------------------------------------------------------- /docs/guest-guide/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/guest-guide/index.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/man/xen-tscmode.7.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/man/xen-tscmode.7.pod -------------------------------------------------------------------------------- /docs/man/xen-vtpm.7.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/man/xen-vtpm.7.pod -------------------------------------------------------------------------------- /docs/man/xen-vtpmmgr.7.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/man/xen-vtpmmgr.7.pod -------------------------------------------------------------------------------- /docs/man/xenhypfs.1.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/man/xenhypfs.1.pod -------------------------------------------------------------------------------- /docs/man/xenstore-ls.1.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/man/xenstore-ls.1.pod -------------------------------------------------------------------------------- /docs/man/xenstore.1.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/man/xenstore.1.pod -------------------------------------------------------------------------------- /docs/man/xentop.1.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/man/xentop.1.pod -------------------------------------------------------------------------------- /docs/man/xentrace.8.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/man/xentrace.8.pod -------------------------------------------------------------------------------- /docs/man/xl.1.pod.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/man/xl.1.pod.in -------------------------------------------------------------------------------- /docs/man/xl.cfg.5.pod.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/man/xl.cfg.5.pod.in -------------------------------------------------------------------------------- /docs/man/xl.conf.5.pod.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/man/xl.conf.5.pod.in -------------------------------------------------------------------------------- /docs/misc/9pfs.pandoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/misc/9pfs.pandoc -------------------------------------------------------------------------------- /docs/misc/arm/booting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/misc/arm/booting.txt -------------------------------------------------------------------------------- /docs/misc/arm/overlay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/misc/arm/overlay.txt -------------------------------------------------------------------------------- /docs/misc/ci.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/misc/ci.rst -------------------------------------------------------------------------------- /docs/misc/console.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/misc/console.txt -------------------------------------------------------------------------------- /docs/misc/crashdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/misc/crashdb.txt -------------------------------------------------------------------------------- /docs/misc/efi.pandoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/misc/efi.pandoc -------------------------------------------------------------------------------- /docs/misc/grant-tables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/misc/grant-tables.txt -------------------------------------------------------------------------------- /docs/misc/libxl_memory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/misc/libxl_memory.txt -------------------------------------------------------------------------------- /docs/misc/livepatch.pandoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/misc/livepatch.pandoc -------------------------------------------------------------------------------- /docs/misc/pvcalls.pandoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/misc/pvcalls.pandoc -------------------------------------------------------------------------------- /docs/misc/pvh.pandoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/misc/pvh.pandoc -------------------------------------------------------------------------------- /docs/misc/stubdom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/misc/stubdom.txt -------------------------------------------------------------------------------- /docs/misc/vtd-pi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/misc/vtd-pi.txt -------------------------------------------------------------------------------- /docs/misc/vtd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/misc/vtd.txt -------------------------------------------------------------------------------- /docs/misc/xen_config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/misc/xen_config.html -------------------------------------------------------------------------------- /docs/misc/xenmon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/misc/xenmon.txt -------------------------------------------------------------------------------- /docs/misc/xenpaging.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/misc/xenpaging.txt -------------------------------------------------------------------------------- /docs/misc/xenstore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/misc/xenstore.txt -------------------------------------------------------------------------------- /docs/misc/xl-psr.pandoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/misc/xl-psr.pandoc -------------------------------------------------------------------------------- /docs/misc/xsm-flask.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/misc/xsm-flask.txt -------------------------------------------------------------------------------- /docs/misra/cppcheck.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/misra/cppcheck.txt -------------------------------------------------------------------------------- /docs/misra/deviations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/misra/deviations.rst -------------------------------------------------------------------------------- /docs/misra/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/misra/index.rst -------------------------------------------------------------------------------- /docs/misra/rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/misra/rules.rst -------------------------------------------------------------------------------- /docs/misra/safe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/misra/safe.json -------------------------------------------------------------------------------- /docs/parse-support-md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/parse-support-md -------------------------------------------------------------------------------- /docs/process/RUBRIC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/process/RUBRIC -------------------------------------------------------------------------------- /docs/xen-headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/docs/xen-headers -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/install.sh -------------------------------------------------------------------------------- /m4/README.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/m4/README.source -------------------------------------------------------------------------------- /m4/ax_compare_version.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/m4/ax_compare_version.m4 -------------------------------------------------------------------------------- /m4/checkpolicy.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/m4/checkpolicy.m4 -------------------------------------------------------------------------------- /m4/curses.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/m4/curses.m4 -------------------------------------------------------------------------------- /m4/depends.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/m4/depends.m4 -------------------------------------------------------------------------------- /m4/docs_tool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/m4/docs_tool.m4 -------------------------------------------------------------------------------- /m4/extfs.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/m4/extfs.m4 -------------------------------------------------------------------------------- /m4/features.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/m4/features.m4 -------------------------------------------------------------------------------- /m4/fetcher.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/m4/fetcher.m4 -------------------------------------------------------------------------------- /m4/golang.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/m4/golang.m4 -------------------------------------------------------------------------------- /m4/header.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/m4/header.m4 -------------------------------------------------------------------------------- /m4/ocaml.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/m4/ocaml.m4 -------------------------------------------------------------------------------- /m4/path_or_fail.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/m4/path_or_fail.m4 -------------------------------------------------------------------------------- /m4/paths.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/m4/paths.m4 -------------------------------------------------------------------------------- /m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/m4/pkg.m4 -------------------------------------------------------------------------------- /m4/pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/m4/pthread.m4 -------------------------------------------------------------------------------- /m4/python_devel.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/m4/python_devel.m4 -------------------------------------------------------------------------------- /m4/python_fortify_noopt.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/m4/python_fortify_noopt.m4 -------------------------------------------------------------------------------- /m4/python_version.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/m4/python_version.m4 -------------------------------------------------------------------------------- /m4/savevar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/m4/savevar.m4 -------------------------------------------------------------------------------- /m4/set_cflags_ldflags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/m4/set_cflags_ldflags.m4 -------------------------------------------------------------------------------- /m4/stubdom.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/m4/stubdom.m4 -------------------------------------------------------------------------------- /m4/subsystem.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/m4/subsystem.m4 -------------------------------------------------------------------------------- /m4/systemd.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/m4/systemd.m4 -------------------------------------------------------------------------------- /m4/uuid.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/m4/uuid.m4 -------------------------------------------------------------------------------- /m4/xenstored.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/m4/xenstored.m4 -------------------------------------------------------------------------------- /misc/coverity/model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/misc/coverity/model.c -------------------------------------------------------------------------------- /scripts/add_maintainers.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/scripts/add_maintainers.pl -------------------------------------------------------------------------------- /scripts/get_maintainer.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/scripts/get_maintainer.pl -------------------------------------------------------------------------------- /scripts/git-checkout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/scripts/git-checkout.sh -------------------------------------------------------------------------------- /stubdom/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/.gitignore -------------------------------------------------------------------------------- /stubdom/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/COPYING -------------------------------------------------------------------------------- /stubdom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/Makefile -------------------------------------------------------------------------------- /stubdom/c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/c/Makefile -------------------------------------------------------------------------------- /stubdom/c/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/c/main.c -------------------------------------------------------------------------------- /stubdom/c/minios.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/c/minios.cfg -------------------------------------------------------------------------------- /stubdom/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/configure -------------------------------------------------------------------------------- /stubdom/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/configure.ac -------------------------------------------------------------------------------- /stubdom/grub.patches/00cvs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/grub.patches/00cvs -------------------------------------------------------------------------------- /stubdom/grub/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/grub/Makefile -------------------------------------------------------------------------------- /stubdom/grub/boot-x86_32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/grub/boot-x86_32.S -------------------------------------------------------------------------------- /stubdom/grub/boot-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/grub/boot-x86_64.S -------------------------------------------------------------------------------- /stubdom/grub/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/grub/config.h -------------------------------------------------------------------------------- /stubdom/grub/kexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/grub/kexec.c -------------------------------------------------------------------------------- /stubdom/grub/mini-os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/grub/mini-os.c -------------------------------------------------------------------------------- /stubdom/grub/mini-os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/grub/mini-os.h -------------------------------------------------------------------------------- /stubdom/grub/minios.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/grub/minios.cfg -------------------------------------------------------------------------------- /stubdom/grub/osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/grub/osdep.h -------------------------------------------------------------------------------- /stubdom/libpci.config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/libpci.config.h -------------------------------------------------------------------------------- /stubdom/libpci.config.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/libpci.config.mak -------------------------------------------------------------------------------- /stubdom/lwip.patch-cvs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/lwip.patch-cvs -------------------------------------------------------------------------------- /stubdom/mini-os.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/mini-os.mk -------------------------------------------------------------------------------- /stubdom/newlib-chk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/newlib-chk.patch -------------------------------------------------------------------------------- /stubdom/newlib.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/newlib.patch -------------------------------------------------------------------------------- /stubdom/pciutils.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/pciutils.patch -------------------------------------------------------------------------------- /stubdom/polarssl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/polarssl.patch -------------------------------------------------------------------------------- /stubdom/tpmemu-0.7.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/tpmemu-0.7.4.patch -------------------------------------------------------------------------------- /stubdom/vtpm-bufsize.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpm-bufsize.patch -------------------------------------------------------------------------------- /stubdom/vtpm/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpm/COPYING -------------------------------------------------------------------------------- /stubdom/vtpm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpm/Makefile -------------------------------------------------------------------------------- /stubdom/vtpm/minios.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpm/minios.cfg -------------------------------------------------------------------------------- /stubdom/vtpm/vtpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpm/vtpm.c -------------------------------------------------------------------------------- /stubdom/vtpm/vtpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpm/vtpm.h -------------------------------------------------------------------------------- /stubdom/vtpm/vtpm_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpm/vtpm_cmd.c -------------------------------------------------------------------------------- /stubdom/vtpm/vtpm_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpm/vtpm_cmd.h -------------------------------------------------------------------------------- /stubdom/vtpm/vtpm_pcrs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpm/vtpm_pcrs.c -------------------------------------------------------------------------------- /stubdom/vtpm/vtpm_pcrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpm/vtpm_pcrs.h -------------------------------------------------------------------------------- /stubdom/vtpm/vtpmblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpm/vtpmblk.c -------------------------------------------------------------------------------- /stubdom/vtpm/vtpmblk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpm/vtpmblk.h -------------------------------------------------------------------------------- /stubdom/vtpm_extern.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpm_extern.patch -------------------------------------------------------------------------------- /stubdom/vtpmmgr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpmmgr/Makefile -------------------------------------------------------------------------------- /stubdom/vtpmmgr/calc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpmmgr/calc.pl -------------------------------------------------------------------------------- /stubdom/vtpmmgr/disk_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpmmgr/disk_io.c -------------------------------------------------------------------------------- /stubdom/vtpmmgr/disk_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpmmgr/disk_io.h -------------------------------------------------------------------------------- /stubdom/vtpmmgr/disk_tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpmmgr/disk_tpm.c -------------------------------------------------------------------------------- /stubdom/vtpmmgr/disk_tpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpmmgr/disk_tpm.h -------------------------------------------------------------------------------- /stubdom/vtpmmgr/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpmmgr/init.c -------------------------------------------------------------------------------- /stubdom/vtpmmgr/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpmmgr/log.c -------------------------------------------------------------------------------- /stubdom/vtpmmgr/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpmmgr/log.h -------------------------------------------------------------------------------- /stubdom/vtpmmgr/marshal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpmmgr/marshal.h -------------------------------------------------------------------------------- /stubdom/vtpmmgr/minios.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpmmgr/minios.cfg -------------------------------------------------------------------------------- /stubdom/vtpmmgr/tcg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpmmgr/tcg.h -------------------------------------------------------------------------------- /stubdom/vtpmmgr/tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpmmgr/tpm.c -------------------------------------------------------------------------------- /stubdom/vtpmmgr/tpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpmmgr/tpm.h -------------------------------------------------------------------------------- /stubdom/vtpmmgr/tpm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpmmgr/tpm2.c -------------------------------------------------------------------------------- /stubdom/vtpmmgr/tpm2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpmmgr/tpm2.h -------------------------------------------------------------------------------- /stubdom/vtpmmgr/tpmrsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpmmgr/tpmrsa.c -------------------------------------------------------------------------------- /stubdom/vtpmmgr/tpmrsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpmmgr/tpmrsa.h -------------------------------------------------------------------------------- /stubdom/vtpmmgr/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpmmgr/uuid.h -------------------------------------------------------------------------------- /stubdom/vtpmmgr/vtpmmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpmmgr/vtpmmgr.c -------------------------------------------------------------------------------- /stubdom/vtpmmgr/vtpmmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/vtpmmgr/vtpmmgr.h -------------------------------------------------------------------------------- /stubdom/xenlibs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/stubdom/xenlibs.mk -------------------------------------------------------------------------------- /tools/9pfsd/.gitignore: -------------------------------------------------------------------------------- 1 | /xen-9pfsd 2 | -------------------------------------------------------------------------------- /tools/9pfsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/9pfsd/Makefile -------------------------------------------------------------------------------- /tools/9pfsd/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/9pfsd/io.c -------------------------------------------------------------------------------- /tools/9pfsd/xen-9pfsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/9pfsd/xen-9pfsd.c -------------------------------------------------------------------------------- /tools/9pfsd/xen-9pfsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/9pfsd/xen-9pfsd.h -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/Rules.mk -------------------------------------------------------------------------------- /tools/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/config.h.in -------------------------------------------------------------------------------- /tools/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/configure -------------------------------------------------------------------------------- /tools/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/configure.ac -------------------------------------------------------------------------------- /tools/console/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/console/Makefile -------------------------------------------------------------------------------- /tools/console/client/.gitignore: -------------------------------------------------------------------------------- 1 | /xenconsole 2 | -------------------------------------------------------------------------------- /tools/console/daemon/.gitignore: -------------------------------------------------------------------------------- 1 | /xenconsoled 2 | -------------------------------------------------------------------------------- /tools/console/daemon/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/console/daemon/io.c -------------------------------------------------------------------------------- /tools/console/daemon/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/console/daemon/io.h -------------------------------------------------------------------------------- /tools/cross-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/cross-install -------------------------------------------------------------------------------- /tools/debugger/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/debugger/Makefile -------------------------------------------------------------------------------- /tools/debugger/kdd/kdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/debugger/kdd/kdd.c -------------------------------------------------------------------------------- /tools/debugger/kdd/kdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/debugger/kdd/kdd.h -------------------------------------------------------------------------------- /tools/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/examples/Makefile -------------------------------------------------------------------------------- /tools/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/examples/README -------------------------------------------------------------------------------- /tools/examples/cpupool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/examples/cpupool -------------------------------------------------------------------------------- /tools/examples/xl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/examples/xl.conf -------------------------------------------------------------------------------- /tools/firmware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/firmware/Makefile -------------------------------------------------------------------------------- /tools/firmware/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/firmware/Rules.mk -------------------------------------------------------------------------------- /tools/firmware/etherboot/patches/series: -------------------------------------------------------------------------------- 1 | boot_prompt_option.patch 2 | -------------------------------------------------------------------------------- /tools/flask/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/flask/Makefile -------------------------------------------------------------------------------- /tools/flask/policy/policy/users: -------------------------------------------------------------------------------- 1 | gen_all_users() 2 | -------------------------------------------------------------------------------- /tools/flask/utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/flask/utils/Makefile -------------------------------------------------------------------------------- /tools/fuzz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/fuzz/Makefile -------------------------------------------------------------------------------- /tools/fuzz/README.afl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/fuzz/README.afl -------------------------------------------------------------------------------- /tools/fuzz/README.oss-fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/fuzz/README.oss-fuzz -------------------------------------------------------------------------------- /tools/fuzz/cpu-policy/.gitignore: -------------------------------------------------------------------------------- 1 | afl-policy-fuzzer 2 | -------------------------------------------------------------------------------- /tools/fuzz/libelf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/fuzz/libelf/Makefile -------------------------------------------------------------------------------- /tools/golang/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/golang/Makefile -------------------------------------------------------------------------------- /tools/helpers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/helpers/Makefile -------------------------------------------------------------------------------- /tools/hotplug/Linux/block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/hotplug/Linux/block -------------------------------------------------------------------------------- /tools/hotplug/Linux/vscsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/hotplug/Linux/vscsi -------------------------------------------------------------------------------- /tools/hotplug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/hotplug/Makefile -------------------------------------------------------------------------------- /tools/hotplug/NetBSD/block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/hotplug/NetBSD/block -------------------------------------------------------------------------------- /tools/include/.gitignore: -------------------------------------------------------------------------------- 1 | /xen/ 2 | -------------------------------------------------------------------------------- /tools/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/include/Makefile -------------------------------------------------------------------------------- /tools/include/libxl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/include/libxl.h -------------------------------------------------------------------------------- /tools/include/libxl_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/include/libxl_json.h -------------------------------------------------------------------------------- /tools/include/libxl_uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/include/libxl_uuid.h -------------------------------------------------------------------------------- /tools/include/libxlutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/include/libxlutil.h -------------------------------------------------------------------------------- /tools/include/xen_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/include/xen_list.h -------------------------------------------------------------------------------- /tools/include/xencall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/include/xencall.h -------------------------------------------------------------------------------- /tools/include/xenctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/include/xenctrl.h -------------------------------------------------------------------------------- /tools/include/xenevtchn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/include/xenevtchn.h -------------------------------------------------------------------------------- /tools/include/xengnttab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/include/xengnttab.h -------------------------------------------------------------------------------- /tools/include/xenguest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/include/xenguest.h -------------------------------------------------------------------------------- /tools/include/xenhypfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/include/xenhypfs.h -------------------------------------------------------------------------------- /tools/include/xenmanage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/include/xenmanage.h -------------------------------------------------------------------------------- /tools/include/xenstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/include/xenstat.h -------------------------------------------------------------------------------- /tools/include/xenstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/include/xenstore.h -------------------------------------------------------------------------------- /tools/include/xentoollog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/include/xentoollog.h -------------------------------------------------------------------------------- /tools/libacpi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libacpi/Makefile -------------------------------------------------------------------------------- /tools/libacpi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libacpi/README -------------------------------------------------------------------------------- /tools/libacpi/acpi2_0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libacpi/acpi2_0.h -------------------------------------------------------------------------------- /tools/libacpi/build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libacpi/build.c -------------------------------------------------------------------------------- /tools/libacpi/dsdt.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libacpi/dsdt.asl -------------------------------------------------------------------------------- /tools/libacpi/libacpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libacpi/libacpi.h -------------------------------------------------------------------------------- /tools/libacpi/mk_dsdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libacpi/mk_dsdt.c -------------------------------------------------------------------------------- /tools/libacpi/ssdt_pm.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libacpi/ssdt_pm.asl -------------------------------------------------------------------------------- /tools/libacpi/ssdt_s3.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libacpi/ssdt_s3.asl -------------------------------------------------------------------------------- /tools/libacpi/ssdt_s4.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libacpi/ssdt_s4.asl -------------------------------------------------------------------------------- /tools/libacpi/ssdt_tpm.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libacpi/ssdt_tpm.asl -------------------------------------------------------------------------------- /tools/libfsimage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libfsimage/Makefile -------------------------------------------------------------------------------- /tools/libfsimage/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libfsimage/Rules.mk -------------------------------------------------------------------------------- /tools/libfsimage/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libfsimage/common.mk -------------------------------------------------------------------------------- /tools/libfsimage/fat/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libfsimage/fat/fat.h -------------------------------------------------------------------------------- /tools/libfsimage/ufs/ufs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libfsimage/ufs/ufs.h -------------------------------------------------------------------------------- /tools/libfsimage/xfs/xfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libfsimage/xfs/xfs.h -------------------------------------------------------------------------------- /tools/libs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/.gitignore -------------------------------------------------------------------------------- /tools/libs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/Makefile -------------------------------------------------------------------------------- /tools/libs/call/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/call/Makefile -------------------------------------------------------------------------------- /tools/libs/call/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/call/buffer.c -------------------------------------------------------------------------------- /tools/libs/call/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/call/core.c -------------------------------------------------------------------------------- /tools/libs/call/freebsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/call/freebsd.c -------------------------------------------------------------------------------- /tools/libs/call/linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/call/linux.c -------------------------------------------------------------------------------- /tools/libs/call/minios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/call/minios.c -------------------------------------------------------------------------------- /tools/libs/call/netbsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/call/netbsd.c -------------------------------------------------------------------------------- /tools/libs/call/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/call/private.h -------------------------------------------------------------------------------- /tools/libs/call/solaris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/call/solaris.c -------------------------------------------------------------------------------- /tools/libs/ctrl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/ctrl/Makefile -------------------------------------------------------------------------------- /tools/libs/ctrl/xc_flask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/ctrl/xc_flask.c -------------------------------------------------------------------------------- /tools/libs/ctrl/xc_kexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/ctrl/xc_kexec.c -------------------------------------------------------------------------------- /tools/libs/ctrl/xc_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/ctrl/xc_linux.c -------------------------------------------------------------------------------- /tools/libs/ctrl/xc_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/ctrl/xc_misc.c -------------------------------------------------------------------------------- /tools/libs/ctrl/xc_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/ctrl/xc_pm.c -------------------------------------------------------------------------------- /tools/libs/ctrl/xc_psr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/ctrl/xc_psr.c -------------------------------------------------------------------------------- /tools/libs/ctrl/xc_rt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/ctrl/xc_rt.c -------------------------------------------------------------------------------- /tools/libs/ctrl/xc_tbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/ctrl/xc_tbuf.c -------------------------------------------------------------------------------- /tools/libs/evtchn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/evtchn/Makefile -------------------------------------------------------------------------------- /tools/libs/evtchn/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/evtchn/core.c -------------------------------------------------------------------------------- /tools/libs/evtchn/linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/evtchn/linux.c -------------------------------------------------------------------------------- /tools/libs/evtchn/minios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/evtchn/minios.c -------------------------------------------------------------------------------- /tools/libs/evtchn/netbsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/evtchn/netbsd.c -------------------------------------------------------------------------------- /tools/libs/gnttab/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/gnttab/Makefile -------------------------------------------------------------------------------- /tools/libs/gnttab/linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/gnttab/linux.c -------------------------------------------------------------------------------- /tools/libs/gnttab/minios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/gnttab/minios.c -------------------------------------------------------------------------------- /tools/libs/gnttab/netbsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/gnttab/netbsd.c -------------------------------------------------------------------------------- /tools/libs/guest/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/guest/COPYING -------------------------------------------------------------------------------- /tools/libs/guest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/guest/Makefile -------------------------------------------------------------------------------- /tools/libs/guest/xg_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/guest/xg_core.c -------------------------------------------------------------------------------- /tools/libs/guest/xg_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/guest/xg_core.h -------------------------------------------------------------------------------- /tools/libs/hypfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/hypfs/Makefile -------------------------------------------------------------------------------- /tools/libs/hypfs/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/hypfs/core.c -------------------------------------------------------------------------------- /tools/libs/libs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/libs.mk -------------------------------------------------------------------------------- /tools/libs/light/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/light/Makefile -------------------------------------------------------------------------------- /tools/libs/light/idl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/light/idl.py -------------------------------------------------------------------------------- /tools/libs/light/idl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/light/idl.txt -------------------------------------------------------------------------------- /tools/libs/light/libxl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/light/libxl.c -------------------------------------------------------------------------------- /tools/libs/light/osdeps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/light/osdeps.c -------------------------------------------------------------------------------- /tools/libs/manage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/manage/Makefile -------------------------------------------------------------------------------- /tools/libs/manage/Makefile.common: -------------------------------------------------------------------------------- 1 | CFLAGS += -D__XEN_TOOLS__ 2 | 3 | OBJS-y += core.o 4 | -------------------------------------------------------------------------------- /tools/libs/manage/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/manage/core.c -------------------------------------------------------------------------------- /tools/libs/stat/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/stat/COPYING -------------------------------------------------------------------------------- /tools/libs/stat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/stat/Makefile -------------------------------------------------------------------------------- /tools/libs/stat/xenstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/stat/xenstat.c -------------------------------------------------------------------------------- /tools/libs/store/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/store/Makefile -------------------------------------------------------------------------------- /tools/libs/store/xs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/store/xs.c -------------------------------------------------------------------------------- /tools/libs/toolcore/Makefile.common: -------------------------------------------------------------------------------- 1 | OBJS-y += handlereg.o 2 | -------------------------------------------------------------------------------- /tools/libs/uselibs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/uselibs.mk -------------------------------------------------------------------------------- /tools/libs/util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/util/Makefile -------------------------------------------------------------------------------- /tools/libs/vchan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/vchan/Makefile -------------------------------------------------------------------------------- /tools/libs/vchan/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/vchan/init.c -------------------------------------------------------------------------------- /tools/libs/vchan/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/vchan/io.c -------------------------------------------------------------------------------- /tools/libs/vchan/vchan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/libs/vchan/vchan.h -------------------------------------------------------------------------------- /tools/misc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/misc/.gitignore -------------------------------------------------------------------------------- /tools/misc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/misc/Makefile -------------------------------------------------------------------------------- /tools/misc/mkdeb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/misc/mkdeb -------------------------------------------------------------------------------- /tools/misc/mkhex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/misc/mkhex -------------------------------------------------------------------------------- /tools/misc/mkrpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/misc/mkrpm -------------------------------------------------------------------------------- /tools/misc/mktarball: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/misc/mktarball -------------------------------------------------------------------------------- /tools/misc/xen-access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/misc/xen-access.c -------------------------------------------------------------------------------- /tools/misc/xen-cpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/misc/xen-cpuid.c -------------------------------------------------------------------------------- /tools/misc/xen-detect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/misc/xen-detect.c -------------------------------------------------------------------------------- /tools/misc/xen-diag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/misc/xen-diag.c -------------------------------------------------------------------------------- /tools/misc/xen-hptool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/misc/xen-hptool.c -------------------------------------------------------------------------------- /tools/misc/xen-hvmcrash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/misc/xen-hvmcrash.c -------------------------------------------------------------------------------- /tools/misc/xen-hvmctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/misc/xen-hvmctx.c -------------------------------------------------------------------------------- /tools/misc/xen-livepatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/misc/xen-livepatch.c -------------------------------------------------------------------------------- /tools/misc/xen-lowmemd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/misc/xen-lowmemd.c -------------------------------------------------------------------------------- /tools/misc/xen-mceinj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/misc/xen-mceinj.c -------------------------------------------------------------------------------- /tools/misc/xen-memshare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/misc/xen-memshare.c -------------------------------------------------------------------------------- /tools/misc/xen-mfndump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/misc/xen-mfndump.c -------------------------------------------------------------------------------- /tools/misc/xen-ucode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/misc/xen-ucode.c -------------------------------------------------------------------------------- /tools/misc/xen-vmtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/misc/xen-vmtrace.c -------------------------------------------------------------------------------- /tools/misc/xencov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/misc/xencov.c -------------------------------------------------------------------------------- /tools/misc/xencov_split: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/misc/xencov_split -------------------------------------------------------------------------------- /tools/misc/xenhypfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/misc/xenhypfs.c -------------------------------------------------------------------------------- /tools/misc/xenlockprof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/misc/xenlockprof.c -------------------------------------------------------------------------------- /tools/misc/xenperf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/misc/xenperf.c -------------------------------------------------------------------------------- /tools/misc/xenpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/misc/xenpm.c -------------------------------------------------------------------------------- /tools/misc/xenwatchdogd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/misc/xenwatchdogd.c -------------------------------------------------------------------------------- /tools/ocaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/ocaml/.gitignore -------------------------------------------------------------------------------- /tools/ocaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/ocaml/LICENSE -------------------------------------------------------------------------------- /tools/ocaml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/ocaml/Makefile -------------------------------------------------------------------------------- /tools/ocaml/Makefile.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/ocaml/Makefile.rules -------------------------------------------------------------------------------- /tools/ocaml/common.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/ocaml/common.make -------------------------------------------------------------------------------- /tools/ocaml/libs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/ocaml/libs/Makefile -------------------------------------------------------------------------------- /tools/ocaml/libs/xb/op.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/ocaml/libs/xb/op.ml -------------------------------------------------------------------------------- /tools/ocaml/libs/xb/op.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/ocaml/libs/xb/op.mli -------------------------------------------------------------------------------- /tools/ocaml/libs/xb/xb.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/ocaml/libs/xb/xb.ml -------------------------------------------------------------------------------- /tools/ocaml/libs/xb/xb.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/ocaml/libs/xb/xb.mli -------------------------------------------------------------------------------- /tools/ocaml/libs/xc/.gitignore: -------------------------------------------------------------------------------- 1 | /xenctrl_abi_check.h 2 | -------------------------------------------------------------------------------- /tools/ocaml/libs/xs/.gitignore: -------------------------------------------------------------------------------- 1 | /paths.ml 2 | -------------------------------------------------------------------------------- /tools/ocaml/libs/xs/paths.ml.in: -------------------------------------------------------------------------------- 1 | let xen_run_stored = "@XEN_RUN_STORED@" 2 | -------------------------------------------------------------------------------- /tools/ocaml/libs/xs/xs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/ocaml/libs/xs/xs.ml -------------------------------------------------------------------------------- /tools/ocaml/libs/xs/xs.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/ocaml/libs/xs/xs.mli -------------------------------------------------------------------------------- /tools/ocaml/libs/xs/xst.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/ocaml/libs/xs/xst.ml -------------------------------------------------------------------------------- /tools/pygrub/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | /pygrub.egg-info/ 3 | -------------------------------------------------------------------------------- /tools/pygrub/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/pygrub/Makefile -------------------------------------------------------------------------------- /tools/pygrub/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/pygrub/README -------------------------------------------------------------------------------- /tools/pygrub/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/pygrub/setup.py -------------------------------------------------------------------------------- /tools/pygrub/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/pygrub/src/pygrub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/pygrub/src/pygrub -------------------------------------------------------------------------------- /tools/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/python/.gitignore -------------------------------------------------------------------------------- /tools/python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/python/Makefile -------------------------------------------------------------------------------- /tools/python/install-wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/python/install-wrap -------------------------------------------------------------------------------- /tools/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/python/setup.py -------------------------------------------------------------------------------- /tools/python/xen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/python/xen/lowlevel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/python/xen/migration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/python/xen/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/python/xen/util.py -------------------------------------------------------------------------------- /tools/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/tests/Makefile -------------------------------------------------------------------------------- /tools/tests/cpu-policy/.gitignore: -------------------------------------------------------------------------------- 1 | test-cpu-policy 2 | -------------------------------------------------------------------------------- /tools/tests/domid/.gitignore: -------------------------------------------------------------------------------- 1 | generated 2 | test-domid 3 | -------------------------------------------------------------------------------- /tools/tests/domid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/tests/domid/Makefile -------------------------------------------------------------------------------- /tools/tests/paging-mempool/.gitignore: -------------------------------------------------------------------------------- 1 | test-paging-mempool 2 | -------------------------------------------------------------------------------- /tools/tests/pdx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/tests/pdx/.gitignore -------------------------------------------------------------------------------- /tools/tests/pdx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/tests/pdx/Makefile -------------------------------------------------------------------------------- /tools/tests/pdx/harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/tests/pdx/harness.h -------------------------------------------------------------------------------- /tools/tests/pdx/test-pdx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/tests/pdx/test-pdx.c -------------------------------------------------------------------------------- /tools/tests/resource/.gitignore: -------------------------------------------------------------------------------- 1 | test-resource 2 | -------------------------------------------------------------------------------- /tools/tests/tsx/.gitignore: -------------------------------------------------------------------------------- 1 | test-tsx 2 | -------------------------------------------------------------------------------- /tools/tests/tsx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/tests/tsx/Makefile -------------------------------------------------------------------------------- /tools/tests/tsx/test-tsx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/tests/tsx/test-tsx.c -------------------------------------------------------------------------------- /tools/tests/vpci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/tests/vpci/Makefile -------------------------------------------------------------------------------- /tools/tests/vpci/emul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/tests/vpci/emul.h -------------------------------------------------------------------------------- /tools/tests/vpci/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/tests/vpci/main.c -------------------------------------------------------------------------------- /tools/tests/xenstore/.gitignore: -------------------------------------------------------------------------------- 1 | test-xenstore 2 | -------------------------------------------------------------------------------- /tools/vchan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/vchan/Makefile -------------------------------------------------------------------------------- /tools/vchan/node-select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/vchan/node-select.c -------------------------------------------------------------------------------- /tools/vchan/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/vchan/node.c -------------------------------------------------------------------------------- /tools/xcutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xcutils/Makefile -------------------------------------------------------------------------------- /tools/xcutils/lsevtchn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xcutils/lsevtchn.c -------------------------------------------------------------------------------- /tools/xcutils/readnotes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xcutils/readnotes.c -------------------------------------------------------------------------------- /tools/xenmon/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenmon/COPYING -------------------------------------------------------------------------------- /tools/xenmon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenmon/Makefile -------------------------------------------------------------------------------- /tools/xenmon/setmask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenmon/setmask.c -------------------------------------------------------------------------------- /tools/xenmon/xenbaked.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenmon/xenbaked.c -------------------------------------------------------------------------------- /tools/xenmon/xenbaked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenmon/xenbaked.h -------------------------------------------------------------------------------- /tools/xenmon/xenmon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenmon/xenmon.py -------------------------------------------------------------------------------- /tools/xenpaging/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenpaging/Makefile -------------------------------------------------------------------------------- /tools/xenpaging/file_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenpaging/file_ops.c -------------------------------------------------------------------------------- /tools/xenpaging/file_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenpaging/file_ops.h -------------------------------------------------------------------------------- /tools/xenpaging/pagein.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenpaging/pagein.c -------------------------------------------------------------------------------- /tools/xenpaging/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenpaging/policy.h -------------------------------------------------------------------------------- /tools/xenpmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenpmd/Makefile -------------------------------------------------------------------------------- /tools/xenpmd/xenpmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenpmd/xenpmd.c -------------------------------------------------------------------------------- /tools/xenstored/.gitignore: -------------------------------------------------------------------------------- 1 | /xenstored 2 | -------------------------------------------------------------------------------- /tools/xenstored/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenstored/Makefile -------------------------------------------------------------------------------- /tools/xenstored/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenstored/README -------------------------------------------------------------------------------- /tools/xenstored/control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenstored/control.c -------------------------------------------------------------------------------- /tools/xenstored/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenstored/control.h -------------------------------------------------------------------------------- /tools/xenstored/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenstored/core.c -------------------------------------------------------------------------------- /tools/xenstored/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenstored/core.h -------------------------------------------------------------------------------- /tools/xenstored/domain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenstored/domain.c -------------------------------------------------------------------------------- /tools/xenstored/domain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenstored/domain.h -------------------------------------------------------------------------------- /tools/xenstored/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenstored/list.h -------------------------------------------------------------------------------- /tools/xenstored/lu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenstored/lu.c -------------------------------------------------------------------------------- /tools/xenstored/lu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenstored/lu.h -------------------------------------------------------------------------------- /tools/xenstored/minios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenstored/minios.c -------------------------------------------------------------------------------- /tools/xenstored/osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenstored/osdep.h -------------------------------------------------------------------------------- /tools/xenstored/posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenstored/posix.c -------------------------------------------------------------------------------- /tools/xenstored/talloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenstored/talloc.c -------------------------------------------------------------------------------- /tools/xenstored/talloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenstored/talloc.h -------------------------------------------------------------------------------- /tools/xenstored/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenstored/utils.c -------------------------------------------------------------------------------- /tools/xenstored/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenstored/utils.h -------------------------------------------------------------------------------- /tools/xenstored/watch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenstored/watch.c -------------------------------------------------------------------------------- /tools/xenstored/watch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xenstored/watch.h -------------------------------------------------------------------------------- /tools/xentop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xentop/Makefile -------------------------------------------------------------------------------- /tools/xentop/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xentop/TODO -------------------------------------------------------------------------------- /tools/xentop/pcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xentop/pcpu.c -------------------------------------------------------------------------------- /tools/xentop/pcpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xentop/pcpu.h -------------------------------------------------------------------------------- /tools/xentop/xentop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xentop/xentop.c -------------------------------------------------------------------------------- /tools/xentrace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xentrace/Makefile -------------------------------------------------------------------------------- /tools/xentrace/analyze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xentrace/analyze.h -------------------------------------------------------------------------------- /tools/xentrace/mread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xentrace/mread.c -------------------------------------------------------------------------------- /tools/xentrace/mread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xentrace/mread.h -------------------------------------------------------------------------------- /tools/xentrace/pv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xentrace/pv.h -------------------------------------------------------------------------------- /tools/xentrace/setsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xentrace/setsize.c -------------------------------------------------------------------------------- /tools/xentrace/xenalyze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xentrace/xenalyze.c -------------------------------------------------------------------------------- /tools/xentrace/xenctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xentrace/xenctx.c -------------------------------------------------------------------------------- /tools/xentrace/xentrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xentrace/xentrace.c -------------------------------------------------------------------------------- /tools/xl/CODING_STYLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/CODING_STYLE -------------------------------------------------------------------------------- /tools/xl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/Makefile -------------------------------------------------------------------------------- /tools/xl/bash-completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/bash-completion -------------------------------------------------------------------------------- /tools/xl/xl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl.c -------------------------------------------------------------------------------- /tools/xl/xl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl.h -------------------------------------------------------------------------------- /tools/xl/xl_block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl_block.c -------------------------------------------------------------------------------- /tools/xl/xl_cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl_cdrom.c -------------------------------------------------------------------------------- /tools/xl/xl_cmdtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl_cmdtable.c -------------------------------------------------------------------------------- /tools/xl/xl_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl_console.c -------------------------------------------------------------------------------- /tools/xl/xl_cpupool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl_cpupool.c -------------------------------------------------------------------------------- /tools/xl/xl_flask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl_flask.c -------------------------------------------------------------------------------- /tools/xl/xl_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl_info.c -------------------------------------------------------------------------------- /tools/xl/xl_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl_mem.c -------------------------------------------------------------------------------- /tools/xl/xl_migrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl_migrate.c -------------------------------------------------------------------------------- /tools/xl/xl_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl_misc.c -------------------------------------------------------------------------------- /tools/xl/xl_nic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl_nic.c -------------------------------------------------------------------------------- /tools/xl/xl_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl_parse.c -------------------------------------------------------------------------------- /tools/xl/xl_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl_parse.h -------------------------------------------------------------------------------- /tools/xl/xl_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl_pci.c -------------------------------------------------------------------------------- /tools/xl/xl_psr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl_psr.c -------------------------------------------------------------------------------- /tools/xl/xl_saverestore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl_saverestore.c -------------------------------------------------------------------------------- /tools/xl/xl_sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl_sched.c -------------------------------------------------------------------------------- /tools/xl/xl_sxp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl_sxp.c -------------------------------------------------------------------------------- /tools/xl/xl_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl_usb.c -------------------------------------------------------------------------------- /tools/xl/xl_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl_utils.c -------------------------------------------------------------------------------- /tools/xl/xl_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl_utils.h -------------------------------------------------------------------------------- /tools/xl/xl_vcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl_vcpu.c -------------------------------------------------------------------------------- /tools/xl/xl_vdispl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl_vdispl.c -------------------------------------------------------------------------------- /tools/xl/xl_vkb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl_vkb.c -------------------------------------------------------------------------------- /tools/xl/xl_vmcontrol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl_vmcontrol.c -------------------------------------------------------------------------------- /tools/xl/xl_vsnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl_vsnd.c -------------------------------------------------------------------------------- /tools/xl/xl_vtpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xl/xl_vtpm.c -------------------------------------------------------------------------------- /tools/xs-clients/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/tools/xs-clients/Makefile -------------------------------------------------------------------------------- /version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/version.sh -------------------------------------------------------------------------------- /xen/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/COPYING -------------------------------------------------------------------------------- /xen/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/Kconfig -------------------------------------------------------------------------------- /xen/Kconfig.debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/Kconfig.debug -------------------------------------------------------------------------------- /xen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/Makefile -------------------------------------------------------------------------------- /xen/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/Rules.mk -------------------------------------------------------------------------------- /xen/arch/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/Kconfig -------------------------------------------------------------------------------- /xen/arch/arm/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/Kconfig -------------------------------------------------------------------------------- /xen/arch/arm/Kconfig.debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/Kconfig.debug -------------------------------------------------------------------------------- /xen/arch/arm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/Makefile -------------------------------------------------------------------------------- /xen/arch/arm/Rules.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xen/arch/arm/acpi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/acpi/Makefile -------------------------------------------------------------------------------- /xen/arch/arm/acpi/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/acpi/boot.c -------------------------------------------------------------------------------- /xen/arch/arm/acpi/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/acpi/lib.c -------------------------------------------------------------------------------- /xen/arch/arm/alternative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/alternative.c -------------------------------------------------------------------------------- /xen/arch/arm/arch.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/arch.mk -------------------------------------------------------------------------------- /xen/arch/arm/arm32/cache.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/arm32/cache.S -------------------------------------------------------------------------------- /xen/arch/arm/arm32/debug.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/arm32/debug.S -------------------------------------------------------------------------------- /xen/arch/arm/arm32/entry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/arm32/entry.S -------------------------------------------------------------------------------- /xen/arch/arm/arm32/head.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/arm32/head.S -------------------------------------------------------------------------------- /xen/arch/arm/arm32/insn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/arm32/insn.c -------------------------------------------------------------------------------- /xen/arch/arm/arm32/traps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/arm32/traps.c -------------------------------------------------------------------------------- /xen/arch/arm/arm32/vfp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/arm32/vfp.c -------------------------------------------------------------------------------- /xen/arch/arm/configs/arm32_defconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xen/arch/arm/configs/arm64_defconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xen/arch/arm/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/decode.c -------------------------------------------------------------------------------- /xen/arch/arm/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/decode.h -------------------------------------------------------------------------------- /xen/arch/arm/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/device.c -------------------------------------------------------------------------------- /xen/arch/arm/dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/dm.c -------------------------------------------------------------------------------- /xen/arch/arm/domain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/domain.c -------------------------------------------------------------------------------- /xen/arch/arm/domctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/domctl.c -------------------------------------------------------------------------------- /xen/arch/arm/dtb.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/dtb.S -------------------------------------------------------------------------------- /xen/arch/arm/gic-v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/gic-v2.c -------------------------------------------------------------------------------- /xen/arch/arm/gic-v3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/gic-v3.c -------------------------------------------------------------------------------- /xen/arch/arm/gic-vgic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/gic-vgic.c -------------------------------------------------------------------------------- /xen/arch/arm/gic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/gic.c -------------------------------------------------------------------------------- /xen/arch/arm/hvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/hvm.c -------------------------------------------------------------------------------- /xen/arch/arm/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/io.c -------------------------------------------------------------------------------- /xen/arch/arm/ioreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/ioreq.c -------------------------------------------------------------------------------- /xen/arch/arm/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/irq.c -------------------------------------------------------------------------------- /xen/arch/arm/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/kernel.c -------------------------------------------------------------------------------- /xen/arch/arm/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/mm.c -------------------------------------------------------------------------------- /xen/arch/arm/mmu/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/mmu/mm.c -------------------------------------------------------------------------------- /xen/arch/arm/mmu/p2m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/mmu/p2m.c -------------------------------------------------------------------------------- /xen/arch/arm/mmu/pt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/mmu/pt.c -------------------------------------------------------------------------------- /xen/arch/arm/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/monitor.c -------------------------------------------------------------------------------- /xen/arch/arm/mpu/arm32/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += mm.o 2 | -------------------------------------------------------------------------------- /xen/arch/arm/mpu/arm64/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += mm.o 2 | -------------------------------------------------------------------------------- /xen/arch/arm/mpu/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/mpu/mm.c -------------------------------------------------------------------------------- /xen/arch/arm/mpu/p2m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/mpu/p2m.c -------------------------------------------------------------------------------- /xen/arch/arm/mpu/vmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/mpu/vmap.c -------------------------------------------------------------------------------- /xen/arch/arm/p2m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/p2m.c -------------------------------------------------------------------------------- /xen/arch/arm/pci/ecam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/pci/ecam.c -------------------------------------------------------------------------------- /xen/arch/arm/pci/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/pci/pci.c -------------------------------------------------------------------------------- /xen/arch/arm/physdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/physdev.c -------------------------------------------------------------------------------- /xen/arch/arm/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/platform.c -------------------------------------------------------------------------------- /xen/arch/arm/psci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/psci.c -------------------------------------------------------------------------------- /xen/arch/arm/setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/setup.c -------------------------------------------------------------------------------- /xen/arch/arm/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/shutdown.c -------------------------------------------------------------------------------- /xen/arch/arm/smp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/smp.c -------------------------------------------------------------------------------- /xen/arch/arm/smpboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/smpboot.c -------------------------------------------------------------------------------- /xen/arch/arm/sysctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/sysctl.c -------------------------------------------------------------------------------- /xen/arch/arm/tee/ffa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/tee/ffa.c -------------------------------------------------------------------------------- /xen/arch/arm/tee/tee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/tee/tee.c -------------------------------------------------------------------------------- /xen/arch/arm/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/time.c -------------------------------------------------------------------------------- /xen/arch/arm/traps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/traps.c -------------------------------------------------------------------------------- /xen/arch/arm/vcpreg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/vcpreg.c -------------------------------------------------------------------------------- /xen/arch/arm/vgic-v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/vgic-v2.c -------------------------------------------------------------------------------- /xen/arch/arm/vgic-v3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/vgic-v3.c -------------------------------------------------------------------------------- /xen/arch/arm/vgic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/vgic.c -------------------------------------------------------------------------------- /xen/arch/arm/vm_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/vm_event.c -------------------------------------------------------------------------------- /xen/arch/arm/vpci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/vpci.c -------------------------------------------------------------------------------- /xen/arch/arm/vpci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/vpci.h -------------------------------------------------------------------------------- /xen/arch/arm/vpl011.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/vpl011.c -------------------------------------------------------------------------------- /xen/arch/arm/vpsci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/vpsci.c -------------------------------------------------------------------------------- /xen/arch/arm/vsmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/vsmc.c -------------------------------------------------------------------------------- /xen/arch/arm/vtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/vtimer.c -------------------------------------------------------------------------------- /xen/arch/arm/vuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/vuart.c -------------------------------------------------------------------------------- /xen/arch/arm/vuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/vuart.h -------------------------------------------------------------------------------- /xen/arch/arm/xen.lds.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/arm/xen.lds.S -------------------------------------------------------------------------------- /xen/arch/ppc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/ppc/Kconfig -------------------------------------------------------------------------------- /xen/arch/ppc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/ppc/Makefile -------------------------------------------------------------------------------- /xen/arch/ppc/Rules.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xen/arch/ppc/arch.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/ppc/arch.mk -------------------------------------------------------------------------------- /xen/arch/ppc/mm-radix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/ppc/mm-radix.c -------------------------------------------------------------------------------- /xen/arch/ppc/opal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/ppc/opal.c -------------------------------------------------------------------------------- /xen/arch/ppc/setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/ppc/setup.c -------------------------------------------------------------------------------- /xen/arch/ppc/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/ppc/shutdown.c -------------------------------------------------------------------------------- /xen/arch/ppc/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/ppc/stubs.c -------------------------------------------------------------------------------- /xen/arch/ppc/xen.lds.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/ppc/xen.lds.S -------------------------------------------------------------------------------- /xen/arch/riscv/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/riscv/Kconfig -------------------------------------------------------------------------------- /xen/arch/riscv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/riscv/Makefile -------------------------------------------------------------------------------- /xen/arch/riscv/Rules.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xen/arch/riscv/aplic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/riscv/aplic.c -------------------------------------------------------------------------------- /xen/arch/riscv/arch.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/riscv/arch.mk -------------------------------------------------------------------------------- /xen/arch/riscv/configs/riscv64_defconfig: -------------------------------------------------------------------------------- 1 | tiny64_defconfig -------------------------------------------------------------------------------- /xen/arch/riscv/entry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/riscv/entry.S -------------------------------------------------------------------------------- /xen/arch/riscv/imsic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/riscv/imsic.c -------------------------------------------------------------------------------- /xen/arch/riscv/intc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/riscv/intc.c -------------------------------------------------------------------------------- /xen/arch/riscv/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/riscv/irq.c -------------------------------------------------------------------------------- /xen/arch/riscv/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/riscv/mm.c -------------------------------------------------------------------------------- /xen/arch/riscv/pt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/riscv/pt.c -------------------------------------------------------------------------------- /xen/arch/riscv/riscv64/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += head.o 2 | -------------------------------------------------------------------------------- /xen/arch/riscv/sbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/riscv/sbi.c -------------------------------------------------------------------------------- /xen/arch/riscv/setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/riscv/setup.c -------------------------------------------------------------------------------- /xen/arch/riscv/smp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/riscv/smp.c -------------------------------------------------------------------------------- /xen/arch/riscv/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/riscv/stubs.c -------------------------------------------------------------------------------- /xen/arch/riscv/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/riscv/time.c -------------------------------------------------------------------------------- /xen/arch/riscv/traps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/riscv/traps.c -------------------------------------------------------------------------------- /xen/arch/x86/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/Kconfig -------------------------------------------------------------------------------- /xen/arch/x86/Kconfig.debug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xen/arch/x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/Makefile -------------------------------------------------------------------------------- /xen/arch/x86/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/Rules.mk -------------------------------------------------------------------------------- /xen/arch/x86/acpi/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/acpi/lib.c -------------------------------------------------------------------------------- /xen/arch/x86/apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/apic.c -------------------------------------------------------------------------------- /xen/arch/x86/arch.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/arch.mk -------------------------------------------------------------------------------- /xen/arch/x86/bitops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/bitops.c -------------------------------------------------------------------------------- /xen/arch/x86/boot/edd.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/boot/edd.S -------------------------------------------------------------------------------- /xen/arch/x86/boot/mem.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/boot/mem.S -------------------------------------------------------------------------------- /xen/arch/x86/bzimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/bzimage.c -------------------------------------------------------------------------------- /xen/arch/x86/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/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/cpu/amd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/cpu/amd.c -------------------------------------------------------------------------------- /xen/arch/x86/cpu/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/cpu/cpu.h -------------------------------------------------------------------------------- /xen/arch/x86/cpu/vpmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/cpu/vpmu.c -------------------------------------------------------------------------------- /xen/arch/x86/cpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/cpuid.c -------------------------------------------------------------------------------- /xen/arch/x86/crash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/crash.c -------------------------------------------------------------------------------- /xen/arch/x86/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/debug.c -------------------------------------------------------------------------------- /xen/arch/x86/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/delay.c -------------------------------------------------------------------------------- /xen/arch/x86/desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/desc.c -------------------------------------------------------------------------------- /xen/arch/x86/dmi_scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/dmi_scan.c -------------------------------------------------------------------------------- /xen/arch/x86/domain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/domain.c -------------------------------------------------------------------------------- /xen/arch/x86/domctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/domctl.c -------------------------------------------------------------------------------- /xen/arch/x86/e820.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/e820.c -------------------------------------------------------------------------------- /xen/arch/x86/efi/mbi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/efi/mbi2.c -------------------------------------------------------------------------------- /xen/arch/x86/efi/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/efi/stub.c -------------------------------------------------------------------------------- /xen/arch/x86/extable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/extable.c -------------------------------------------------------------------------------- /xen/arch/x86/flushtlb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/flushtlb.c -------------------------------------------------------------------------------- /xen/arch/x86/gdbsx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/gdbsx.c -------------------------------------------------------------------------------- /xen/arch/x86/hpet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/hpet.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/asid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/hvm/asid.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/hvm/dm.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/hpet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/hvm/hpet.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/hvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/hvm/hvm.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/hvm/io.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/hvm/irq.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/mmio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/hvm/mmio.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/mtrr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/hvm/mtrr.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/hvm/rtc.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/hvm/save.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/vmsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/hvm/vmsi.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/vpic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/hvm/vpic.c -------------------------------------------------------------------------------- /xen/arch/x86/hvm/vpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/hvm/vpt.c -------------------------------------------------------------------------------- /xen/arch/x86/i387.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/i387.c -------------------------------------------------------------------------------- /xen/arch/x86/i8259.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/i8259.c -------------------------------------------------------------------------------- /xen/arch/x86/io_apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/io_apic.c -------------------------------------------------------------------------------- /xen/arch/x86/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/irq.c -------------------------------------------------------------------------------- /xen/arch/x86/memcpy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/memcpy.S -------------------------------------------------------------------------------- /xen/arch/x86/memset.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/memset.S -------------------------------------------------------------------------------- /xen/arch/x86/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/mm.c -------------------------------------------------------------------------------- /xen/arch/x86/mm/guest_walk_2.c: -------------------------------------------------------------------------------- 1 | #define GUEST_PAGING_LEVELS 2 2 | #include "guest_walk.c" 3 | -------------------------------------------------------------------------------- /xen/arch/x86/mm/guest_walk_3.c: -------------------------------------------------------------------------------- 1 | #define GUEST_PAGING_LEVELS 3 2 | #include "guest_walk.c" 3 | -------------------------------------------------------------------------------- /xen/arch/x86/mm/guest_walk_4.c: -------------------------------------------------------------------------------- 1 | #define GUEST_PAGING_LEVELS 4 2 | #include "guest_walk.c" 3 | -------------------------------------------------------------------------------- /xen/arch/x86/mm/hap/guest_walk_2.c: -------------------------------------------------------------------------------- 1 | #define GUEST_PAGING_LEVELS 2 2 | #include "guest_walk.c" 3 | -------------------------------------------------------------------------------- /xen/arch/x86/mm/hap/guest_walk_3.c: -------------------------------------------------------------------------------- 1 | #define GUEST_PAGING_LEVELS 3 2 | #include "guest_walk.c" 3 | -------------------------------------------------------------------------------- /xen/arch/x86/mm/hap/guest_walk_4.c: -------------------------------------------------------------------------------- 1 | #define GUEST_PAGING_LEVELS 4 2 | #include "guest_walk.c" 3 | -------------------------------------------------------------------------------- /xen/arch/x86/mm/p2m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/mm/p2m.c -------------------------------------------------------------------------------- /xen/arch/x86/mm/p2m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/mm/p2m.h -------------------------------------------------------------------------------- /xen/arch/x86/mm/shadow/guest_2.c: -------------------------------------------------------------------------------- 1 | #define GUEST_PAGING_LEVELS 2 2 | #include "multi.c" 3 | -------------------------------------------------------------------------------- /xen/arch/x86/mm/shadow/guest_3.c: -------------------------------------------------------------------------------- 1 | #define GUEST_PAGING_LEVELS 3 2 | #include "multi.c" 3 | -------------------------------------------------------------------------------- /xen/arch/x86/mm/shadow/guest_4.c: -------------------------------------------------------------------------------- 1 | #define GUEST_PAGING_LEVELS 4 2 | #include "multi.c" 3 | -------------------------------------------------------------------------------- /xen/arch/x86/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/monitor.c -------------------------------------------------------------------------------- /xen/arch/x86/mpparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/mpparse.c -------------------------------------------------------------------------------- /xen/arch/x86/msi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/msi.c -------------------------------------------------------------------------------- /xen/arch/x86/msr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/msr.c -------------------------------------------------------------------------------- /xen/arch/x86/nmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/nmi.c -------------------------------------------------------------------------------- /xen/arch/x86/numa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/numa.c -------------------------------------------------------------------------------- /xen/arch/x86/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/pci.c -------------------------------------------------------------------------------- /xen/arch/x86/physdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/physdev.c -------------------------------------------------------------------------------- /xen/arch/x86/psr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/psr.c -------------------------------------------------------------------------------- /xen/arch/x86/pv/iret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/pv/iret.c -------------------------------------------------------------------------------- /xen/arch/x86/pv/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/pv/mm.c -------------------------------------------------------------------------------- /xen/arch/x86/pv/mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/pv/mm.h -------------------------------------------------------------------------------- /xen/arch/x86/pv/shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/pv/shim.c -------------------------------------------------------------------------------- /xen/arch/x86/pv/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/pv/trace.c -------------------------------------------------------------------------------- /xen/arch/x86/pv/traps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/pv/traps.c -------------------------------------------------------------------------------- /xen/arch/x86/setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/setup.c -------------------------------------------------------------------------------- /xen/arch/x86/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/shutdown.c -------------------------------------------------------------------------------- /xen/arch/x86/smp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/smp.c -------------------------------------------------------------------------------- /xen/arch/x86/smpboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/smpboot.c -------------------------------------------------------------------------------- /xen/arch/x86/srat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/srat.c -------------------------------------------------------------------------------- /xen/arch/x86/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/string.c -------------------------------------------------------------------------------- /xen/arch/x86/sysctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/sysctl.c -------------------------------------------------------------------------------- /xen/arch/x86/tboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/tboot.c -------------------------------------------------------------------------------- /xen/arch/x86/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/time.c -------------------------------------------------------------------------------- /xen/arch/x86/traps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/traps.c -------------------------------------------------------------------------------- /xen/arch/x86/tsx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/tsx.c -------------------------------------------------------------------------------- /xen/arch/x86/usercopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/usercopy.c -------------------------------------------------------------------------------- /xen/arch/x86/vm_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/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/xen.lds.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/xen.lds.S -------------------------------------------------------------------------------- /xen/arch/x86/xstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/arch/x86/xstate.c -------------------------------------------------------------------------------- /xen/build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/build.mk -------------------------------------------------------------------------------- /xen/common/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/COPYING -------------------------------------------------------------------------------- /xen/common/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/Kconfig -------------------------------------------------------------------------------- /xen/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/Makefile -------------------------------------------------------------------------------- /xen/common/argo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/argo.c -------------------------------------------------------------------------------- /xen/common/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/bitmap.c -------------------------------------------------------------------------------- /xen/common/bitops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/bitops.c -------------------------------------------------------------------------------- /xen/common/bug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/bug.c -------------------------------------------------------------------------------- /xen/common/bunzip2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/bunzip2.c -------------------------------------------------------------------------------- /xen/common/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/cpu.c -------------------------------------------------------------------------------- /xen/common/debugtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/debugtrace.c -------------------------------------------------------------------------------- /xen/common/decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/decompress.c -------------------------------------------------------------------------------- /xen/common/decompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/decompress.h -------------------------------------------------------------------------------- /xen/common/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/device.c -------------------------------------------------------------------------------- /xen/common/dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/dm.c -------------------------------------------------------------------------------- /xen/common/domain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/domain.c -------------------------------------------------------------------------------- /xen/common/domctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/domctl.c -------------------------------------------------------------------------------- /xen/common/domid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/domid.c -------------------------------------------------------------------------------- /xen/common/earlycpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/earlycpio.c -------------------------------------------------------------------------------- /xen/common/efi/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/efi/boot.c -------------------------------------------------------------------------------- /xen/common/efi/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/efi/compat.c -------------------------------------------------------------------------------- /xen/common/efi/efi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/efi/efi.h -------------------------------------------------------------------------------- /xen/common/efi/pe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/efi/pe.c -------------------------------------------------------------------------------- /xen/common/event_2l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/event_2l.c -------------------------------------------------------------------------------- /xen/common/event_fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/event_fifo.c -------------------------------------------------------------------------------- /xen/common/guestcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/guestcopy.c -------------------------------------------------------------------------------- /xen/common/gzip/Makefile: -------------------------------------------------------------------------------- 1 | obj-bin-y += gunzip.init.o 2 | -------------------------------------------------------------------------------- /xen/common/hypfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/hypfs.c -------------------------------------------------------------------------------- /xen/common/ioreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/ioreq.c -------------------------------------------------------------------------------- /xen/common/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/irq.c -------------------------------------------------------------------------------- /xen/common/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/kernel.c -------------------------------------------------------------------------------- /xen/common/kexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/kexec.c -------------------------------------------------------------------------------- /xen/common/keyhandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/keyhandler.c -------------------------------------------------------------------------------- /xen/common/kimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/kimage.c -------------------------------------------------------------------------------- /xen/common/libelf/README: -------------------------------------------------------------------------------- 1 | Take care, this code is used by both xen and tools ... 2 | -------------------------------------------------------------------------------- /xen/common/libfdt/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/libfdt/TODO -------------------------------------------------------------------------------- /xen/common/libfdt/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/libfdt/fdt.c -------------------------------------------------------------------------------- /xen/common/livepatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/livepatch.c -------------------------------------------------------------------------------- /xen/common/lz4/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/lz4/defs.h -------------------------------------------------------------------------------- /xen/common/lzo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/lzo.c -------------------------------------------------------------------------------- /xen/common/mem_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/mem_access.c -------------------------------------------------------------------------------- /xen/common/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/memory.c -------------------------------------------------------------------------------- /xen/common/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/monitor.c -------------------------------------------------------------------------------- /xen/common/multicall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/multicall.c -------------------------------------------------------------------------------- /xen/common/notifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/notifier.c -------------------------------------------------------------------------------- /xen/common/numa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/numa.c -------------------------------------------------------------------------------- /xen/common/page_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/page_alloc.c -------------------------------------------------------------------------------- /xen/common/pdx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/pdx.c -------------------------------------------------------------------------------- /xen/common/percpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/percpu.c -------------------------------------------------------------------------------- /xen/common/perfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/perfc.c -------------------------------------------------------------------------------- /xen/common/pmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/pmap.c -------------------------------------------------------------------------------- /xen/common/preempt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/preempt.c -------------------------------------------------------------------------------- /xen/common/radix-tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/radix-tree.c -------------------------------------------------------------------------------- /xen/common/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/random.c -------------------------------------------------------------------------------- /xen/common/rangeset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/rangeset.c -------------------------------------------------------------------------------- /xen/common/rcupdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/rcupdate.c -------------------------------------------------------------------------------- /xen/common/rwlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/rwlock.c -------------------------------------------------------------------------------- /xen/common/sched/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/sched/core.c -------------------------------------------------------------------------------- /xen/common/sched/null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/sched/null.c -------------------------------------------------------------------------------- /xen/common/sched/rt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/sched/rt.c -------------------------------------------------------------------------------- /xen/common/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/shutdown.c -------------------------------------------------------------------------------- /xen/common/smp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/smp.c -------------------------------------------------------------------------------- /xen/common/softirq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/softirq.c -------------------------------------------------------------------------------- /xen/common/spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/spinlock.c -------------------------------------------------------------------------------- /xen/common/symbols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/symbols.c -------------------------------------------------------------------------------- /xen/common/symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/symbols.h -------------------------------------------------------------------------------- /xen/common/sysctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/sysctl.c -------------------------------------------------------------------------------- /xen/common/tasklet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/tasklet.c -------------------------------------------------------------------------------- /xen/common/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/time.c -------------------------------------------------------------------------------- /xen/common/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/timer.c -------------------------------------------------------------------------------- /xen/common/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/trace.c -------------------------------------------------------------------------------- /xen/common/ubsan/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += ubsan.o 2 | -------------------------------------------------------------------------------- /xen/common/unlz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/unlz4.c -------------------------------------------------------------------------------- /xen/common/unlzma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/unlzma.c -------------------------------------------------------------------------------- /xen/common/unlzo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/unlzo.c -------------------------------------------------------------------------------- /xen/common/unxz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/unxz.c -------------------------------------------------------------------------------- /xen/common/unzstd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/unzstd.c -------------------------------------------------------------------------------- /xen/common/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/version.c -------------------------------------------------------------------------------- /xen/common/vm_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/vm_event.c -------------------------------------------------------------------------------- /xen/common/vmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/vmap.c -------------------------------------------------------------------------------- /xen/common/vsprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/vsprintf.c -------------------------------------------------------------------------------- /xen/common/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/wait.c -------------------------------------------------------------------------------- /xen/common/warning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/warning.c -------------------------------------------------------------------------------- /xen/common/xenoprof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/xenoprof.c -------------------------------------------------------------------------------- /xen/common/xz/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/xz/crc32.c -------------------------------------------------------------------------------- /xen/common/xz/dec_bcj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/xz/dec_bcj.c -------------------------------------------------------------------------------- /xen/common/xz/lzma2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/xz/lzma2.h -------------------------------------------------------------------------------- /xen/common/xz/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/xz/private.h -------------------------------------------------------------------------------- /xen/common/xz/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/xz/stream.h -------------------------------------------------------------------------------- /xen/common/zstd/fse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/zstd/fse.h -------------------------------------------------------------------------------- /xen/common/zstd/huf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/zstd/huf.h -------------------------------------------------------------------------------- /xen/common/zstd/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/common/zstd/mem.h -------------------------------------------------------------------------------- /xen/crypto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/crypto/Makefile -------------------------------------------------------------------------------- /xen/crypto/rijndael.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/crypto/rijndael.c -------------------------------------------------------------------------------- /xen/crypto/vmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/crypto/vmac.c -------------------------------------------------------------------------------- /xen/drivers/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/drivers/Kconfig -------------------------------------------------------------------------------- /xen/drivers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/drivers/Makefile -------------------------------------------------------------------------------- /xen/drivers/acpi/numa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/drivers/acpi/numa.c -------------------------------------------------------------------------------- /xen/drivers/acpi/osl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/drivers/acpi/osl.c -------------------------------------------------------------------------------- /xen/drivers/cpufreq/Kconfig: -------------------------------------------------------------------------------- 1 | 2 | config HAS_CPUFREQ 3 | bool 4 | -------------------------------------------------------------------------------- /xen/drivers/pci/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/drivers/pci/Kconfig -------------------------------------------------------------------------------- /xen/drivers/pci/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/drivers/pci/pci.c -------------------------------------------------------------------------------- /xen/drivers/video/lfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/drivers/video/lfb.c -------------------------------------------------------------------------------- /xen/drivers/video/lfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/drivers/video/lfb.h -------------------------------------------------------------------------------- /xen/drivers/video/vga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/drivers/video/vga.c -------------------------------------------------------------------------------- /xen/drivers/vpci/msi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/drivers/vpci/msi.c -------------------------------------------------------------------------------- /xen/drivers/vpci/msix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/drivers/vpci/msix.c -------------------------------------------------------------------------------- /xen/drivers/vpci/vpci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/drivers/vpci/vpci.c -------------------------------------------------------------------------------- /xen/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/Makefile -------------------------------------------------------------------------------- /xen/include/acpi/acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/acpi/acpi.h -------------------------------------------------------------------------------- /xen/include/acpi/apei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/acpi/apei.h -------------------------------------------------------------------------------- /xen/include/efi/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/efi/pe.h -------------------------------------------------------------------------------- /xen/include/xen/acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/acpi.h -------------------------------------------------------------------------------- /xen/include/xen/argo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/argo.h -------------------------------------------------------------------------------- /xen/include/xen/bug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/bug.h -------------------------------------------------------------------------------- /xen/include/xen/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/cache.h -------------------------------------------------------------------------------- /xen/include/xen/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/const.h -------------------------------------------------------------------------------- /xen/include/xen/cper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/cper.h -------------------------------------------------------------------------------- /xen/include/xen/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/cpu.h -------------------------------------------------------------------------------- /xen/include/xen/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/ctype.h -------------------------------------------------------------------------------- /xen/include/xen/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/delay.h -------------------------------------------------------------------------------- /xen/include/xen/dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/dm.h -------------------------------------------------------------------------------- /xen/include/xen/dmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/dmi.h -------------------------------------------------------------------------------- /xen/include/xen/efi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/efi.h -------------------------------------------------------------------------------- /xen/include/xen/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/elf.h -------------------------------------------------------------------------------- /xen/include/xen/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/err.h -------------------------------------------------------------------------------- /xen/include/xen/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/errno.h -------------------------------------------------------------------------------- /xen/include/xen/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/event.h -------------------------------------------------------------------------------- /xen/include/xen/hypfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/hypfs.h -------------------------------------------------------------------------------- /xen/include/xen/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/init.h -------------------------------------------------------------------------------- /xen/include/xen/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/io.h -------------------------------------------------------------------------------- /xen/include/xen/iocap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/iocap.h -------------------------------------------------------------------------------- /xen/include/xen/iommu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/iommu.h -------------------------------------------------------------------------------- /xen/include/xen/ioreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/ioreq.h -------------------------------------------------------------------------------- /xen/include/xen/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/irq.h -------------------------------------------------------------------------------- /xen/include/xen/kexec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/kexec.h -------------------------------------------------------------------------------- /xen/include/xen/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/lib.h -------------------------------------------------------------------------------- /xen/include/xen/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/list.h -------------------------------------------------------------------------------- /xen/include/xen/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/lz4.h -------------------------------------------------------------------------------- /xen/include/xen/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/lzo.h -------------------------------------------------------------------------------- /xen/include/xen/mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/mm.h -------------------------------------------------------------------------------- /xen/include/xen/msi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/msi.h -------------------------------------------------------------------------------- /xen/include/xen/numa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/numa.h -------------------------------------------------------------------------------- /xen/include/xen/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/param.h -------------------------------------------------------------------------------- /xen/include/xen/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/pci.h -------------------------------------------------------------------------------- /xen/include/xen/pdx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/pdx.h -------------------------------------------------------------------------------- /xen/include/xen/perfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/perfc.h -------------------------------------------------------------------------------- /xen/include/xen/pfn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/pfn.h -------------------------------------------------------------------------------- /xen/include/xen/pmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/pmap.h -------------------------------------------------------------------------------- /xen/include/xen/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/sched.h -------------------------------------------------------------------------------- /xen/include/xen/scrub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/scrub.h -------------------------------------------------------------------------------- /xen/include/xen/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/sha1.h -------------------------------------------------------------------------------- /xen/include/xen/sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/sha2.h -------------------------------------------------------------------------------- /xen/include/xen/sizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/sizes.h -------------------------------------------------------------------------------- /xen/include/xen/smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/smp.h -------------------------------------------------------------------------------- /xen/include/xen/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/sort.h -------------------------------------------------------------------------------- /xen/include/xen/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/time.h -------------------------------------------------------------------------------- /xen/include/xen/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/timer.h -------------------------------------------------------------------------------- /xen/include/xen/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/trace.h -------------------------------------------------------------------------------- /xen/include/xen/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/types.h -------------------------------------------------------------------------------- /xen/include/xen/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/vga.h -------------------------------------------------------------------------------- /xen/include/xen/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/video.h -------------------------------------------------------------------------------- /xen/include/xen/vmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/vmap.h -------------------------------------------------------------------------------- /xen/include/xen/vpci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/vpci.h -------------------------------------------------------------------------------- /xen/include/xen/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xen/wait.h -------------------------------------------------------------------------------- /xen/include/xlat.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xlat.lst -------------------------------------------------------------------------------- /xen/include/xsm/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xsm/dummy.h -------------------------------------------------------------------------------- /xen/include/xsm/xsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/include/xsm/xsm.h -------------------------------------------------------------------------------- /xen/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/Makefile -------------------------------------------------------------------------------- /xen/lib/bsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/bsearch.c -------------------------------------------------------------------------------- /xen/lib/ctors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/ctors.c -------------------------------------------------------------------------------- /xen/lib/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/ctype.c -------------------------------------------------------------------------------- /xen/lib/divmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/divmod.c -------------------------------------------------------------------------------- /xen/lib/find-next-bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/find-next-bit.c -------------------------------------------------------------------------------- /xen/lib/generic-ffsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/generic-ffsl.c -------------------------------------------------------------------------------- /xen/lib/generic-flsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/generic-flsl.c -------------------------------------------------------------------------------- /xen/lib/list-sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/list-sort.c -------------------------------------------------------------------------------- /xen/lib/memchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/memchr.c -------------------------------------------------------------------------------- /xen/lib/memchr_inv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/memchr_inv.c -------------------------------------------------------------------------------- /xen/lib/memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/memcmp.c -------------------------------------------------------------------------------- /xen/lib/memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/memcpy.c -------------------------------------------------------------------------------- /xen/lib/memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/memmove.c -------------------------------------------------------------------------------- /xen/lib/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/memset.c -------------------------------------------------------------------------------- /xen/lib/muldiv64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/muldiv64.c -------------------------------------------------------------------------------- /xen/lib/parse-size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/parse-size.c -------------------------------------------------------------------------------- /xen/lib/rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/rbtree.c -------------------------------------------------------------------------------- /xen/lib/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/sha1.c -------------------------------------------------------------------------------- /xen/lib/sha2-256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/sha2-256.c -------------------------------------------------------------------------------- /xen/lib/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/sort.c -------------------------------------------------------------------------------- /xen/lib/strcasecmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/strcasecmp.c -------------------------------------------------------------------------------- /xen/lib/strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/strchr.c -------------------------------------------------------------------------------- /xen/lib/strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/strcmp.c -------------------------------------------------------------------------------- /xen/lib/strcspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/strcspn.c -------------------------------------------------------------------------------- /xen/lib/strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/strlcat.c -------------------------------------------------------------------------------- /xen/lib/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/strlcpy.c -------------------------------------------------------------------------------- /xen/lib/strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/strlen.c -------------------------------------------------------------------------------- /xen/lib/strncasecmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/strncasecmp.c -------------------------------------------------------------------------------- /xen/lib/strncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/strncmp.c -------------------------------------------------------------------------------- /xen/lib/strnlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/strnlen.c -------------------------------------------------------------------------------- /xen/lib/strpbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/strpbrk.c -------------------------------------------------------------------------------- /xen/lib/strrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/strrchr.c -------------------------------------------------------------------------------- /xen/lib/strsep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/strsep.c -------------------------------------------------------------------------------- /xen/lib/strspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/strspn.c -------------------------------------------------------------------------------- /xen/lib/strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/strstr.c -------------------------------------------------------------------------------- /xen/lib/strtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/strtol.c -------------------------------------------------------------------------------- /xen/lib/strtoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/strtoll.c -------------------------------------------------------------------------------- /xen/lib/strtoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/strtoul.c -------------------------------------------------------------------------------- /xen/lib/strtoull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/strtoull.c -------------------------------------------------------------------------------- /xen/lib/x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/x86/Makefile -------------------------------------------------------------------------------- /xen/lib/x86/cpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/x86/cpuid.c -------------------------------------------------------------------------------- /xen/lib/x86/msr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/x86/msr.c -------------------------------------------------------------------------------- /xen/lib/x86/policy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/x86/policy.c -------------------------------------------------------------------------------- /xen/lib/x86/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/x86/private.h -------------------------------------------------------------------------------- /xen/lib/xxhash32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/xxhash32.c -------------------------------------------------------------------------------- /xen/lib/xxhash64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/lib/xxhash64.c -------------------------------------------------------------------------------- /xen/scripts/xen_analysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xen/scripts/xen_analysis/diff_tool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xen/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/test/Makefile -------------------------------------------------------------------------------- /xen/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/tools/Makefile -------------------------------------------------------------------------------- /xen/tools/binfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/tools/binfile -------------------------------------------------------------------------------- /xen/tools/fixdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/tools/fixdep.c -------------------------------------------------------------------------------- /xen/tools/gen-cpuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/tools/gen-cpuid.py -------------------------------------------------------------------------------- /xen/tools/kconfig/lkc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/tools/kconfig/lkc.h -------------------------------------------------------------------------------- /xen/tools/kconfig/tests/inter_choice/defconfig: -------------------------------------------------------------------------------- 1 | CONFIG_CHOICE_VAL0=y 2 | -------------------------------------------------------------------------------- /xen/tools/kconfig/tests/no_write_if_dep_unmet/config: -------------------------------------------------------------------------------- 1 | CONFIG_A=y 2 | -------------------------------------------------------------------------------- /xen/tools/kconfig/tests/preprocess/builtin_func/expected_stdout: -------------------------------------------------------------------------------- 1 | hello world 0 2 | -------------------------------------------------------------------------------- /xen/tools/scmversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/tools/scmversion -------------------------------------------------------------------------------- /xen/tools/symbols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/tools/symbols.c -------------------------------------------------------------------------------- /xen/tools/xen.flf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/tools/xen.flf -------------------------------------------------------------------------------- /xen/xsm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/xsm/Makefile -------------------------------------------------------------------------------- /xen/xsm/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/xsm/dummy.c -------------------------------------------------------------------------------- /xen/xsm/flask/.gitignore: -------------------------------------------------------------------------------- 1 | /policy.c 2 | -------------------------------------------------------------------------------- /xen/xsm/flask/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/xsm/flask/Makefile -------------------------------------------------------------------------------- /xen/xsm/flask/avc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/xsm/flask/avc.c -------------------------------------------------------------------------------- /xen/xsm/flask/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/xsm/flask/hooks.c -------------------------------------------------------------------------------- /xen/xsm/flask/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/xsm/flask/private.h -------------------------------------------------------------------------------- /xen/xsm/flask/ss/mls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/xsm/flask/ss/mls.c -------------------------------------------------------------------------------- /xen/xsm/flask/ss/mls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/xsm/flask/ss/mls.h -------------------------------------------------------------------------------- /xen/xsm/silo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/xsm/silo.c -------------------------------------------------------------------------------- /xen/xsm/xsm_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/xsm/xsm_core.c -------------------------------------------------------------------------------- /xen/xsm/xsm_policy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xen-project/xen/HEAD/xen/xsm/xsm_policy.c --------------------------------------------------------------------------------