gitextract_uz81yfub/ ├── .dockerignore ├── .editorconfig ├── .gitignore ├── .mailmap ├── .travis.yml ├── CHANGELOG.adoc ├── COPYING ├── README.adoc ├── docker/ │ ├── 000-default.conf │ ├── Dockerfile │ └── gitconfig ├── elixir/ │ ├── __init__.py │ ├── api.py │ ├── autocomplete.py │ ├── data.py │ ├── filters/ │ │ ├── __init__.py │ │ ├── configin.py │ │ ├── cppinc.py │ │ ├── cpppathinc.py │ │ ├── defconfig.py │ │ ├── dtscompcode.py │ │ ├── dtscompdocs.py │ │ ├── dtscompdts.py │ │ ├── dtsi.py │ │ ├── ident.py │ │ ├── kconfig.py │ │ ├── kconfigidents.py │ │ ├── makefiledir.py │ │ ├── makefiledtb.py │ │ ├── makefilefile.py │ │ ├── makefileo.py │ │ ├── makefilesrctree.py │ │ ├── makefilesubdir.py │ │ ├── projects.py │ │ └── utils.py │ ├── lib.py │ ├── query.py │ ├── web.py │ └── web_utils.py ├── find-file-doc-comments.pl ├── find_compatible_dts.py ├── projects/ │ ├── amazon-freertos.sh │ ├── arm-trusted-firmware.sh │ ├── barebox.sh │ ├── bluez.sh │ ├── busybox.sh │ ├── coreboot.sh │ ├── dpdk.sh │ ├── freebsd.sh │ ├── glibc.sh │ ├── grub.sh │ ├── iproute2.sh │ ├── linux.sh │ ├── llvm.sh │ ├── mesa.sh │ ├── musl.sh │ ├── ofono.sh │ ├── op-tee.sh │ ├── opensbi.sh │ ├── qemu.sh │ ├── toybox.sh │ ├── u-boot.sh │ ├── uclibc-ng.sh │ ├── xen.sh │ └── zephyr.sh ├── requirements.txt ├── samples/ │ └── projects/ │ └── linuxtest.sh ├── script.sh ├── static/ │ ├── autocomplete.js │ ├── dynamic-references.js │ ├── fonts/ │ │ └── ubuntu/ │ │ ├── LICENCE-FAQ.txt │ │ ├── LICENCE.txt │ │ └── copyright.txt │ ├── messages.json │ ├── robots.txt │ ├── script.js │ └── style.css ├── t/ │ ├── 050-testhelpers.t │ ├── 100-basic.t │ ├── 200-api.t │ ├── 300-doc-comments.t │ ├── 400-web.t │ ├── TestClass.pm │ ├── TestEnvironment.pm │ ├── TestHelpers.pm │ ├── api_test.py │ ├── interact.pl │ └── tree/ │ ├── arch/ │ │ ├── arm/ │ │ │ └── xen/ │ │ │ └── hypercall.S │ │ └── x86/ │ │ └── include/ │ │ ├── asm/ │ │ │ ├── acpi.h │ │ │ ├── ist.h │ │ │ ├── orc_types.h │ │ │ └── uprobes.h │ │ └── uapi/ │ │ └── asm/ │ │ └── ist.h │ ├── drivers/ │ │ ├── firmware/ │ │ │ └── broadcom/ │ │ │ └── bcm74xx_sprom.c │ │ └── i2c/ │ │ ├── i2c-boardinfo.c │ │ ├── i2c-core-acpi.c │ │ ├── i2c-core-base.c │ │ ├── i2c-core-of.c │ │ ├── i2c-core-slave.c │ │ ├── i2c-core-smbus.c │ │ ├── i2c-core.h │ │ ├── i2c-dev.c │ │ ├── i2c-smbus.c │ │ └── i2c-stub.c │ ├── include/ │ │ ├── acpi/ │ │ │ ├── acpi_bus.h │ │ │ └── acpi_drivers.h │ │ ├── asm-generic/ │ │ │ ├── barrier.h │ │ │ ├── io.h │ │ │ ├── pci_iomap.h │ │ │ ├── qrwlock.h │ │ │ ├── qspinlock.h │ │ │ └── qspinlock_types.h │ │ ├── linux/ │ │ │ ├── acpi.h │ │ │ ├── apm_bios.h │ │ │ ├── assoc_array.h │ │ │ ├── cred.h │ │ │ ├── i2c-smbus.h │ │ │ ├── i2c.h │ │ │ ├── key.h │ │ │ ├── kmod.h │ │ │ ├── log2.h │ │ │ ├── logic_pio.h │ │ │ ├── memblock.h │ │ │ ├── of.h │ │ │ ├── of_platform.h │ │ │ ├── plist.h │ │ │ ├── pm.h │ │ │ ├── pm_wakeup.h │ │ │ ├── radix-tree.h │ │ │ ├── rbtree.h │ │ │ ├── rcu_node_tree.h │ │ │ ├── rcu_segcblist.h │ │ │ ├── rcu_sync.h │ │ │ ├── rcupdate.h │ │ │ ├── rcutree.h │ │ │ ├── srcu.h │ │ │ ├── srcutree.h │ │ │ ├── stackdepot.h │ │ │ ├── uprobes.h │ │ │ └── xarray.h │ │ ├── trace/ │ │ │ └── events/ │ │ │ └── i2c.h │ │ └── uapi/ │ │ └── linux/ │ │ ├── apm_bios.h │ │ ├── eventpoll.h │ │ ├── i2c.h │ │ └── rseq.h │ ├── issue102.c │ ├── issue131.h │ ├── issue134.c │ ├── issue150.S │ ├── issue186-counterexamples.c │ ├── issue186.c │ ├── issue188.c │ ├── issue192.c │ └── syscall_define.c ├── templates/ │ ├── error.html │ ├── header.html │ ├── ident.html │ ├── layout.html │ ├── sidebar.html │ ├── source.html │ ├── topbar.html │ └── tree.html ├── update.py ├── utils/ │ ├── index │ ├── query.py │ └── speedtest.py └── wsgi.py