diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b25c15b --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*~ diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..b1f9942 --- /dev/null +++ b/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2013, Henry Lee(henglinli@gmail.com). +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + * Neither the name of Henry Lee nor the names of its contributors may be + used to endorse or promote products derived from this software without + specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..c3769d9 --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +linux.config +============================ + +### Author + + henglinli@gmail.com + +### kernel.config supported Machine + + ThinkPad E530c + msi ZH77A-G43 + core-i3 + [Alienware Alpha](http://www.dell.com/Support/Article/cn/zh/cndhs1/SLN300246) + +### License + +This work is licensed under the New BSD License (see the LICENSE file). + +[alpha]: http://www.dell.com/Support/Article/cn/zh/cndhs1/SLN300246 "specifications" diff --git a/etc/dracut.conf.d/default.conf b/etc/dracut.conf.d/default.conf new file mode 100644 index 0000000..5fba6f2 --- /dev/null +++ b/etc/dracut.conf.d/default.conf @@ -0,0 +1,7 @@ +# Equivalent to -H +hostonly="yes" +force="yes" +compress="xz" +# Equivalent to -o "module" +omit_dracutmodules+="bootchart dash modsign busybox network lvmmerge btrfs dm dmraid dmsquash-live-ntfs lvm mdraid crypt-gpg cifs iscsi iscsi biosdevname masterkey" +no_kernel="yes" diff --git a/etc/kernel/install.d/99-config.install b/etc/kernel/install.d/99-config.install new file mode 100755 index 0000000..c696006 --- /dev/null +++ b/etc/kernel/install.d/99-config.install @@ -0,0 +1,42 @@ +#!/bin/bash +# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*- +# ex: ts=8 sw=4 sts=4 et filetype=sh + +COMMAND="$1" +KERNEL_VERSION="$2" +BOOT_DIR_ABS="$3" +KERNEL_IMAGE="$4" + +if ! [[ $KERNEL_INSTALL_MACHINE_ID ]]; then + exit 0 +fi + +if ! [[ -d "$BOOT_DIR_ABS" ]]; then + exit 0 +fi + +MACHINE_ID=$KERNEL_INSTALL_MACHINE_ID + +BOOT_DIR="/$MACHINE_ID/$KERNEL_VERSION" +BOOT_ROOT=${BOOT_DIR_ABS%$BOOT_DIR} +CONF="$BOOT_ROOT/$KERNEL_VERSION.conf" + +if [[ $COMMAND == remove ]]; then + exec rm -f "$CONF" +fi + +if ! [[ $COMMAND == add ]]; then + exit 1 +fi + +if ! [[ $KERNEL_IMAGE ]]; then + exit 1 +fi + + +if [[ -f .config ]]; then + echo "cp .config $CONF" + cp .config $CONF +fi + +exit 0 diff --git a/etc/paludis/bashrc b/etc/paludis/bashrc new file mode 100644 index 0000000..1984392 --- /dev/null +++ b/etc/paludis/bashrc @@ -0,0 +1,6 @@ +CHOST="x86_64-pc-linux-gnu" +i686_pc_linux_gnu_CFLAGS="-march=native -O2 -pipe -fPIC" +i686_pc_linux_gnu_CXXFLAGS="-march=native -O2 -pipe -fPIC" +x86_64_pc_linux_gnu_CFLAGS="-march=native -O2 -pipe -fPIC" +x86_64_pc_linux_gnu_CXXFLAGS="-march=native -O2 -pipe -fPIC" + diff --git a/etc/paludis/general.conf b/etc/paludis/general.conf new file mode 100644 index 0000000..87bd434 --- /dev/null +++ b/etc/paludis/general.conf @@ -0,0 +1 @@ +world = ${root}/var/db/paludis/repositories/installed/world diff --git a/etc/paludis/licences.conf b/etc/paludis/licences.conf new file mode 100644 index 0000000..9dd7a06 --- /dev/null +++ b/etc/paludis/licences.conf @@ -0,0 +1 @@ +*/* * diff --git a/etc/paludis/mirrors.conf.d/gentoo.conf b/etc/paludis/mirrors.conf.d/gentoo.conf new file mode 100644 index 0000000..daa7439 --- /dev/null +++ b/etc/paludis/mirrors.conf.d/gentoo.conf @@ -0,0 +1 @@ +* http://mirrors.163.com/gentoo/distfiles/ diff --git a/etc/paludis/options.conf.d/all.conf b/etc/paludis/options.conf.d/all.conf new file mode 100644 index 0000000..5a0dc51 --- /dev/null +++ b/etc/paludis/options.conf.d/all.conf @@ -0,0 +1,8 @@ +*/* build_options: jobs=4 symbols=strip -recommended_tests -optional_tests +*/* parts: -documentation +*/* targets: x86_64-pc-linux-gnu +# i686-pc-linux-gnu +*/* linguas: zh_CN zh_TW ja +*/* amd64_cpu_features: mmx mmxext sse sse2 sse3 ssse3 sse4 sse4.1 sse4.2 avx avx2 fma3 aes +*/* -doc -vim-syntax -perl -python -ruby -bash-completion -X + diff --git a/etc/paludis/options.conf.d/audio.conf b/etc/paludis/options.conf.d/audio.conf new file mode 100644 index 0000000..12bb0c4 --- /dev/null +++ b/etc/paludis/options.conf.d/audio.conf @@ -0,0 +1 @@ +media-sound/pulseaudio -tcpd bluetooth diff --git a/etc/paludis/options.conf.d/chrome.conf b/etc/paludis/options.conf.d/chrome.conf new file mode 100644 index 0000000..27ba130 --- /dev/null +++ b/etc/paludis/options.conf.d/chrome.conf @@ -0,0 +1 @@ +net-print/cups -pam -systemd -tcpd diff --git a/etc/paludis/options.conf.d/coreutils.conf b/etc/paludis/options.conf.d/coreutils.conf new file mode 100644 index 0000000..18d1443 --- /dev/null +++ b/etc/paludis/options.conf.d/coreutils.conf @@ -0,0 +1 @@ +sys-apps/coreutils xattr diff --git a/etc/paludis/options.conf.d/ffmpeg.conf b/etc/paludis/options.conf.d/ffmpeg.conf new file mode 100644 index 0000000..b1c8719 --- /dev/null +++ b/etc/paludis/options.conf.d/ffmpeg.conf @@ -0,0 +1 @@ +media/ffmpeg -truetype -pulseaudio providers: -openh264 diff --git a/etc/paludis/options.conf.d/gtk.conf b/etc/paludis/options.conf.d/gtk.conf new file mode 100644 index 0000000..51040be --- /dev/null +++ b/etc/paludis/options.conf.d/gtk.conf @@ -0,0 +1 @@ +x11-libs/gtk+ wayland diff --git a/etc/paludis/options.conf.d/libxslt.conf b/etc/paludis/options.conf.d/libxslt.conf new file mode 100644 index 0000000..02e9a3a --- /dev/null +++ b/etc/paludis/options.conf.d/libxslt.conf @@ -0,0 +1 @@ +dev-libs/libxslt -crypt diff --git a/etc/paludis/options.conf.d/mesa.conf b/etc/paludis/options.conf.d/mesa.conf new file mode 100644 index 0000000..af427f4 --- /dev/null +++ b/etc/paludis/options.conf.d/mesa.conf @@ -0,0 +1,2 @@ +x11-dri/libdrm video_drivers: nouveau +x11-dri/mesa wayland video_drivers: nouveau diff --git a/etc/paludis/options.conf.d/mpv.conf b/etc/paludis/options.conf.d/mpv.conf new file mode 100644 index 0000000..c3485c9 --- /dev/null +++ b/etc/paludis/options.conf.d/mpv.conf @@ -0,0 +1,2 @@ +media-libs/libass fontconfig + diff --git a/etc/paludis/options.conf.d/paludis.conf b/etc/paludis/options.conf.d/paludis.conf new file mode 100644 index 0000000..3fa116c --- /dev/null +++ b/etc/paludis/options.conf.d/paludis.conf @@ -0,0 +1,2 @@ +sys-apps/paludis -vim-syntax -bash-completion zsh-completion -pbin + diff --git a/etc/paludis/options.conf.d/systemd.conf b/etc/paludis/options.conf.d/systemd.conf new file mode 100644 index 0000000..ef6d57b --- /dev/null +++ b/etc/paludis/options.conf.d/systemd.conf @@ -0,0 +1,2 @@ +sys-apps/systemd acl zsh-completion efi + diff --git a/etc/paludis/options.conf.d/tar.conf b/etc/paludis/options.conf.d/tar.conf new file mode 100644 index 0000000..c779c12 --- /dev/null +++ b/etc/paludis/options.conf.d/tar.conf @@ -0,0 +1,2 @@ +app-arch/tar acl + diff --git a/etc/paludis/options.conf.d/vlc.conf b/etc/paludis/options.conf.d/vlc.conf new file mode 100644 index 0000000..82273df --- /dev/null +++ b/etc/paludis/options.conf.d/vlc.conf @@ -0,0 +1 @@ +media/vlc -crypt -truetype diff --git a/etc/paludis/options.conf.d/weston.conf b/etc/paludis/options.conf.d/weston.conf new file mode 100644 index 0000000..634ec39 --- /dev/null +++ b/etc/paludis/options.conf.d/weston.conf @@ -0,0 +1,5 @@ +compositor/weston -X +x11-libs/cairo glesv2 +x11-dri/libdrm video_drivers: nouveau +x11-dri/mesa wayland video_drivers: nouveau +x11-libs/libxkbcommon wayland diff --git a/etc/paludis/options.conf.d/wpa.conf b/etc/paludis/options.conf.d/wpa.conf new file mode 100644 index 0000000..7e491ad --- /dev/null +++ b/etc/paludis/options.conf.d/wpa.conf @@ -0,0 +1 @@ +net-wireless/wpa_supplicant -dbus nl80211 diff --git a/etc/paludis/options.conf.d/zsh.conf b/etc/paludis/options.conf.d/zsh.conf new file mode 100644 index 0000000..b2ac01b --- /dev/null +++ b/etc/paludis/options.conf.d/zsh.conf @@ -0,0 +1 @@ +app-shells/zsh caps diff --git a/etc/paludis/platforms.conf b/etc/paludis/platforms.conf new file mode 100644 index 0000000..7c430d5 --- /dev/null +++ b/etc/paludis/platforms.conf @@ -0,0 +1 @@ +*/* amd64 ~amd64 diff --git a/etc/paludis/recommendations.conf.d/glib.conf b/etc/paludis/recommendations.conf.d/glib.conf new file mode 100644 index 0000000..f1f0117 --- /dev/null +++ b/etc/paludis/recommendations.conf.d/glib.conf @@ -0,0 +1,2 @@ +dev-libs/glib -gnome-desktop/dconf + diff --git a/etc/paludis/repositories/accounts.conf b/etc/paludis/repositories/accounts.conf new file mode 100644 index 0000000..deb95ba --- /dev/null +++ b/etc/paludis/repositories/accounts.conf @@ -0,0 +1 @@ +format = accounts diff --git a/etc/paludis/repositories/arbor.conf b/etc/paludis/repositories/arbor.conf new file mode 100644 index 0000000..51b46c8 --- /dev/null +++ b/etc/paludis/repositories/arbor.conf @@ -0,0 +1,6 @@ +location = ${root}/var/db/paludis/repositories/arbor +sync = git+https://git.exherbo.org/git/arbor.git +profiles = ${location}/profiles/amd64 +format = e +names_cache = ${root}/var/cache/paludis/names +write_cache = ${root}/var/cache/paludis/metadata diff --git a/etc/paludis/repositories/desktop.conf b/etc/paludis/repositories/desktop.conf new file mode 100644 index 0000000..a6abb3e --- /dev/null +++ b/etc/paludis/repositories/desktop.conf @@ -0,0 +1,3 @@ +format = e +location = /var/db/paludis/repositories/desktop +sync = git+https://git.exherbo.org/git/desktop.git diff --git a/etc/paludis/repositories/graveyard.conf b/etc/paludis/repositories/graveyard.conf new file mode 100644 index 0000000..6b13b34 --- /dev/null +++ b/etc/paludis/repositories/graveyard.conf @@ -0,0 +1,4 @@ +format = unwritten +location = /var/db/paludis/repositories/graveyard +sync = git+https://git.exherbo.org/git/graveyard.git +importance = -90 diff --git a/etc/paludis/repositories/i686-pc-linux-gnu.conf b/etc/paludis/repositories/i686-pc-linux-gnu.conf new file mode 100644 index 0000000..4b993eb --- /dev/null +++ b/etc/paludis/repositories/i686-pc-linux-gnu.conf @@ -0,0 +1,6 @@ +format = exndbam +location = ${root}/var/db/paludis/repositories/cross-installed/i686-pc-linux-gnu +name = i686-pc-linux-gnu +split_debug_location = /usr/i686-pc-linux-gnu/lib/debug +tool_prefix = i686-pc-linux-gnu- +cross_compile_host = i686-pc-linux-gnu diff --git a/etc/paludis/repositories/installed.conf b/etc/paludis/repositories/installed.conf new file mode 100644 index 0000000..554b926 --- /dev/null +++ b/etc/paludis/repositories/installed.conf @@ -0,0 +1,5 @@ +location = ${root}/var/db/paludis/repositories/installed +format = exndbam +names_cache = ${root}/var/cache/paludis/names +split_debug_location = /usr/x86_64-pc-linux-gnu/lib/debug +tool_prefix = x86_64-pc-linux-gnu- diff --git a/etc/paludis/repositories/installed_accounts.conf b/etc/paludis/repositories/installed_accounts.conf new file mode 100644 index 0000000..e826928 --- /dev/null +++ b/etc/paludis/repositories/installed_accounts.conf @@ -0,0 +1,2 @@ +format = installed-accounts +handler = passwd diff --git a/etc/paludis/repositories/python.conf b/etc/paludis/repositories/python.conf new file mode 100644 index 0000000..4531d4b --- /dev/null +++ b/etc/paludis/repositories/python.conf @@ -0,0 +1,3 @@ +format = e +location = /var/db/paludis/repositories/python +sync = git+https://git.exherbo.org/git/python.git diff --git a/etc/paludis/repositories/repository.conf b/etc/paludis/repositories/repository.conf new file mode 100644 index 0000000..f6ed955 --- /dev/null +++ b/etc/paludis/repositories/repository.conf @@ -0,0 +1,3 @@ +format = repository +config_filename = /etc/paludis/repositories/%{repository_template_name}.conf +config_template = /etc/paludis/repository.template diff --git a/etc/paludis/repositories/sigma0f.conf b/etc/paludis/repositories/sigma0f.conf new file mode 100644 index 0000000..b801e75 --- /dev/null +++ b/etc/paludis/repositories/sigma0f.conf @@ -0,0 +1,4 @@ +location = ${root}/usr/local/sigma0f +sync = git+https://github.com/sigma0f/sigma0f +format = e + diff --git a/etc/paludis/repositories/unavailable-unofficial.conf b/etc/paludis/repositories/unavailable-unofficial.conf new file mode 100644 index 0000000..4bdc806 --- /dev/null +++ b/etc/paludis/repositories/unavailable-unofficial.conf @@ -0,0 +1,5 @@ +format = unavailable +name = unavailable-unofficial +sync = tar+https://git.exherbo.org/exherbo_unofficial_repositories.tar.bz2 +location = ${root}/var/db/paludis/repositories/unavailable-unofficial +importance = -100 diff --git a/etc/paludis/repositories/unavailable.conf b/etc/paludis/repositories/unavailable.conf new file mode 100644 index 0000000..2309e4c --- /dev/null +++ b/etc/paludis/repositories/unavailable.conf @@ -0,0 +1,5 @@ +format = unavailable +name = unavailable +sync = tar+https://git.exherbo.org/exherbo_repositories.tar.bz2 +location = ${root}/var/db/paludis/repositories/unavailable +importance = -100 diff --git a/etc/paludis/repositories/unpackaged.conf b/etc/paludis/repositories/unpackaged.conf new file mode 100644 index 0000000..c3072d5 --- /dev/null +++ b/etc/paludis/repositories/unpackaged.conf @@ -0,0 +1,2 @@ +location = ${root}/var/db/paludis/repositories/unpackaged +format = installed_unpackaged diff --git a/etc/paludis/repositories/unwritten.conf b/etc/paludis/repositories/unwritten.conf new file mode 100644 index 0000000..9f0a8e2 --- /dev/null +++ b/etc/paludis/repositories/unwritten.conf @@ -0,0 +1,4 @@ +format = unwritten +location = ${root}/var/db/paludis/repositories/unwritten +sync = git+https://git.exherbo.org/git/unwritten.git +importance = -100 diff --git a/etc/paludis/repositories/x11.conf b/etc/paludis/repositories/x11.conf new file mode 100644 index 0000000..bfd0450 --- /dev/null +++ b/etc/paludis/repositories/x11.conf @@ -0,0 +1,3 @@ +format = e +location = /var/db/paludis/repositories/x11 +sync = git+https://git.exherbo.org/git/x11.git diff --git a/etc/paludis/repository.template b/etc/paludis/repository.template new file mode 100644 index 0000000..7f005b5 --- /dev/null +++ b/etc/paludis/repository.template @@ -0,0 +1,3 @@ +format = %{repository_template_format} +location = /var/db/paludis/repositories/%{repository_template_name} +sync = %{repository_template_sync} diff --git a/etc/paludis/repository_defaults.conf b/etc/paludis/repository_defaults.conf new file mode 100644 index 0000000..e69de29 diff --git a/etc/paludis/suggestions.conf.d/dconf.conf b/etc/paludis/suggestions.conf.d/dconf.conf new file mode 100644 index 0000000..92dd7f2 --- /dev/null +++ b/etc/paludis/suggestions.conf.d/dconf.conf @@ -0,0 +1 @@ +gnome-desktop/dconf -gnome-desktop/dconf-editor diff --git a/etc/paludis/suggestions.conf.d/dracut.conf b/etc/paludis/suggestions.conf.d/dracut.conf new file mode 100644 index 0000000..938b589 --- /dev/null +++ b/etc/paludis/suggestions.conf.d/dracut.conf @@ -0,0 +1 @@ +sys-boot/dracut -net-fs/cifs-utils -net-misc/open-iscsi -sys-boot/plymouth -net-misc/bridge-utils diff --git a/etc/paludis/suggestions.conf.d/git.conf b/etc/paludis/suggestions.conf.d/git.conf new file mode 100644 index 0000000..ccc7449 --- /dev/null +++ b/etc/paludis/suggestions.conf.d/git.conf @@ -0,0 +1 @@ +dev-scm/git -dev-scm/cvsps -dev-perl/DBI -dev-perl/CGI -dev-perl/MailTools -dev-perl/libwww-perl -net-misc/rsync diff --git a/etc/paludis/suggestions.conf.d/glib.conf b/etc/paludis/suggestions.conf.d/glib.conf new file mode 100644 index 0000000..e52f729 --- /dev/null +++ b/etc/paludis/suggestions.conf.d/glib.conf @@ -0,0 +1 @@ +dev-libs/glib -gnome-desktop/gvfs diff --git a/etc/paludis/suggestions.conf.d/groff.conf b/etc/paludis/suggestions.conf.d/groff.conf new file mode 100644 index 0000000..ebc3471 --- /dev/null +++ b/etc/paludis/suggestions.conf.d/groff.conf @@ -0,0 +1 @@ +sys-apps/groff -dev-perl/File-HomeDir -media-sound/lilypond diff --git a/etc/paludis/suggestions.conf.d/systemd.conf b/etc/paludis/suggestions.conf.d/systemd.conf new file mode 100644 index 0000000..bb5368f --- /dev/null +++ b/etc/paludis/suggestions.conf.d/systemd.conf @@ -0,0 +1 @@ +sys-apps/systemd -dev-python/lxml diff --git a/etc/portage/env/chromium.conf b/etc/portage/env/chromium.conf new file mode 100644 index 0000000..08cfe44 --- /dev/null +++ b/etc/portage/env/chromium.conf @@ -0,0 +1,3 @@ +EXTRA_ECONF=" use_kerberos=false use_gio=false use_glib=false enable_media_remoting=false enable_webrtc=false" + + diff --git a/etc/portage/env/clang b/etc/portage/env/clang new file mode 100644 index 0000000..8e98101 --- /dev/null +++ b/etc/portage/env/clang @@ -0,0 +1,10 @@ +#--*--coding:utf-8-unix;--*-- +CC="clang" +CXX="clang++" +CFLAGS="-O2 -pipe -fPIC" +CXXFLAGS="${CFLAGS}" +LDFLAGS="-Wl,-O2 -Wl,--as-needed -fuse-ld=lld" +AR="llvm-ar" +NM="llvm-nm" +RANLIB="llvm-ranlib" +AS="llvm-as" diff --git a/etc/portage/env/clang.local b/etc/portage/env/clang.local new file mode 100644 index 0000000..d7698f5 --- /dev/null +++ b/etc/portage/env/clang.local @@ -0,0 +1,14 @@ +#--*--coding:utf-8-unix;--*-- +LLVM_ROOT=/usr/local/llvm +LLVM_BIN=${LLVM_ROOT}/bin +LLVM_LIB=${LLVM_ROOT}/lib +export LD_LIBRARY_PATH=${LLVM_LIB} +CC="${LLVM_BIN}/clang" +CXX="${LLVM_BIN}/clang++" +CFLAGS="-O2 -pipe -fPIC" +CXXFLAGS="${CFLAGS} -fno-rtti -stdlib=libc++" +LDFLAGS="-Wl,-O2 -Wl,--as-needed -lunwind -lpthread -ldl" +AR="${LLVM_BIN}/llvm-ar" +NM="${LLVM_BIN}/llvm-nm" +RANLIB="${LLVM_BIN}/llvm-ranlib" +AS="${LLVM_BIN}/llvm-as" diff --git a/etc/portage/env/gcc b/etc/portage/env/gcc new file mode 100644 index 0000000..d7aadb8 --- /dev/null +++ b/etc/portage/env/gcc @@ -0,0 +1,3 @@ +CFLAGS="-O2 -pipe" +CXXFLAGS="${CFLAGS}" +LDFLAGS="-Wl,-O2 -Wl,--as-needed -fuse-ld=gold" diff --git a/etc/portage/env/gold.conf b/etc/portage/env/gold.conf new file mode 100644 index 0000000..d91d633 --- /dev/null +++ b/etc/portage/env/gold.conf @@ -0,0 +1,2 @@ +EXTRA_ECONF="--enable-gold=default --disable-obsolete --enable-lto --enable-plugins" + diff --git a/etc/portage/env/static b/etc/portage/env/static new file mode 100644 index 0000000..4dc724c --- /dev/null +++ b/etc/portage/env/static @@ -0,0 +1,3 @@ +CFLAGS="-O2 -pipe -static" +CXXFLAGS="${CFLAGS}" +LDFLAGS="-Wl,-O2 -Wl,--as-needed -fuse-ld=gold" diff --git a/etc/portage/flatpak.conf b/etc/portage/flatpak.conf new file mode 100644 index 0000000..befccf2 --- /dev/null +++ b/etc/portage/flatpak.conf @@ -0,0 +1,6 @@ +[flatpak-overlay] +priority = 50 +location = /usr/local/overlay/flatpak +sync-type = git +sync-uri = https://github.com/fosero/flatpak-overlay +auto-sync = Yes diff --git a/etc/portage/make.conf b/etc/portage/make.conf new file mode 100644 index 0000000..3262f04 --- /dev/null +++ b/etc/portage/make.conf @@ -0,0 +1,52 @@ +# These settings were set by the catalyst build script that automatically +# built this stage. +# Please consult /usr/share/portage/config/make.conf.example for a more +# detailed example. +ACCEPT_KEYWORDS="~amd64" +# for c/c++ +CFLAGS="-pipe -O2 -march=native -fPIC" +CXXFLAGS="${CFLAGS}" +LDFLAGS="-Wl,-O2 -Wl,--as-needed" +# for dlang +DMDFLAGS="-O" +#EMERGE_DEFAULT_OPTS="--quiet-build" +# WARNING: Changing your CHOST is not something that should be done lightly. +# Please consult http://www.gentoo.org/doc/en/change-chost.xml before changing. +CHOST="x86_64-pc-linux-gnu" +# These are the USE flags that were used in addition to what is provided by the +# profile used for building. +CPU_FLAGS="mmx mmxext sse sse2 sse3 ssse3 sse4 sse4_1 sse4_2 avx avx2 fma3 aes" +UNUSE="-gstreamer -vala -X -gtk -iptables -python -perl -ruby -lua -multilib \ +-smartcard -introspection -xml -openmp -fortran -handbook -man -doc -gnome \ +-tcpd -qt -qt3 -qt4 -qt5 -gnome-online-accounts -postscript -consolekit \ +-sendmail -cups -colord -ldap -cxx -gdbm -berkdb -ipv6 -bzip2" +USE="$UNUSE minimal wayland systemd pulseaudio bluetooth threads" +#PORTDIR="/usr/portage" +#DISTDIR="${PORTDIR}/distfiles" +#PKGDIR="${PORTDIR}/packages" +PORTAGE_TMPDIR="/tmp" +# add by lee +MAKEOPTS="-j4" +GENTOO_MIRRORS="http://mirrors.163.com/gentoo http://gentoo.osuosl.org" +LINGUAS="en_US zh_CN" +L10N="zh-CN" +VIDEO_CARDS="nouveau" +INPUT_DEVICES="evdev" +#PYTHON_SINGLE_TARGET="" +#PYTHON_TARGETS="" +#nouveau +#ENLIGHTENMENT_MODULES="" +ENLIGHTENMENT_MODULES="appmenu clock conf conf-applications conf-bindings conf-comp conf-dialogs conf-display conf-interaction conf-intl conf-menus conf-paths conf-performance conf-randr conf-shelves conf-theme conf-window-remembers cpufreq everything fileman fileman-opinfo gadman ibar ibox lokker illume2 mixer msgbus music-control notification pager pager-plain quickaccess shot start syscon systray tasks tiling winlist wireless wizard xkbswitch wl-desktop-shell wl-drm wl-text-input wl-weekeyboard xwayland time packagekit temperature connman bluze4" +CPU_FLAGS_X86="mmx mmxext sse sse2 sse3 ssse3 sse4 sse4_1 sse4_2 avx avx2 fma3 aes" +LLVM_TARGETS="X86" +FFTOOLS="" +ALSA_CARDS="" +APACHE2_MODULES="" +CALLIGRA_FEATURES="" +COLLECTD_PLUGINS="" +GPSD_PROTOCOLS="" +LCD_DEVICES="" +XTABLES_ADDONS="" +# +QEMU_SOFTMMU_TARGETS="x86_64" +QEMU_USER_TARGETS="" diff --git a/etc/portage/make.conf.catalyst b/etc/portage/make.conf.catalyst new file mode 100644 index 0000000..f8ec082 --- /dev/null +++ b/etc/portage/make.conf.catalyst @@ -0,0 +1,15 @@ +# These settings were set by the catalyst build script that automatically +# built this stage. +# Please consult /usr/share/portage/config/make.conf.example for a more +# detailed example. +CFLAGS="-O2 -pipe" +CXXFLAGS="${CFLAGS}" +# WARNING: Changing your CHOST is not something that should be done lightly. +# Please consult http://www.gentoo.org/doc/en/change-chost.xml before changing. +CHOST="x86_64-pc-linux-gnu" +# These are the USE flags that were used in addition to what is provided by the +# profile used for building. +USE="bindist mmx sse sse2" +PORTDIR="/usr/portage" +DISTDIR="${PORTDIR}/distfiles" +PKGDIR="${PORTDIR}/packages" diff --git a/etc/portage/make.profile b/etc/portage/make.profile new file mode 120000 index 0000000..d062fbd --- /dev/null +++ b/etc/portage/make.profile @@ -0,0 +1 @@ +../../usr/portage/profiles/default/linux/amd64/17.0/no-multilib \ No newline at end of file diff --git a/etc/portage/package.accept_keywords/chromium b/etc/portage/package.accept_keywords/chromium new file mode 100644 index 0000000..db29b1e --- /dev/null +++ b/etc/portage/package.accept_keywords/chromium @@ -0,0 +1 @@ +www-client/chromium -~amd64 diff --git a/etc/portage/package.accept_keywords/gcc b/etc/portage/package.accept_keywords/gcc new file mode 100644 index 0000000..b0edea8 --- /dev/null +++ b/etc/portage/package.accept_keywords/gcc @@ -0,0 +1,2 @@ +# package.accept_keywords# required by =gcc-6.3.0 (argument) +<=sys-devel/gcc-7.9.9 ** diff --git a/etc/portage/package.accept_keywords/weston b/etc/portage/package.accept_keywords/weston new file mode 100644 index 0000000..aec5952 --- /dev/null +++ b/etc/portage/package.accept_keywords/weston @@ -0,0 +1 @@ +=compositor/weston-9999 ** diff --git a/etc/portage/package.env/bcc b/etc/portage/package.env/bcc new file mode 100644 index 0000000..1aa3db6 --- /dev/null +++ b/etc/portage/package.env/bcc @@ -0,0 +1 @@ +dev-util/bcc clang diff --git a/etc/portage/package.env/binutils b/etc/portage/package.env/binutils new file mode 100644 index 0000000..c1c3a75 --- /dev/null +++ b/etc/portage/package.env/binutils @@ -0,0 +1,2 @@ +sys-devel/binutils gold.conf + diff --git a/etc/portage/package.env/chromium b/etc/portage/package.env/chromium new file mode 100644 index 0000000..1bead27 --- /dev/null +++ b/etc/portage/package.env/chromium @@ -0,0 +1,2 @@ +www-client/chromium clang chromium.conf + diff --git a/etc/portage/package.env/clang-meta b/etc/portage/package.env/clang-meta new file mode 100644 index 0000000..b454731 --- /dev/null +++ b/etc/portage/package.env/clang-meta @@ -0,0 +1,24 @@ +# pass1: gcc +#sys-devel/llvm gcc +#sys-devel/clang gcc +#sys-libs/libcxx gcc +#sys-devel/clang-runtime +#sys-libs/libcxxabi gcc +#sys-libs/compiler-rt gcc +#sys-libs/compiler-rt-sanitizers gcc +#sys-libs/llvm-libunwind gcc +#sys-devel/lld gcc +#sys-devel/lldb gcc +# pass2: clang +sys-devel/llvm-common clang +sys-devel/llvm-gold clang +sys-devel/llvm clang +sys-devel/clang clang +sys-libs/libcxx clang +sys-devel/clang-runtime clang +sys-libs/libcxxabi clang +sys-libs/compiler-rt clang +sys-libs/compiler-rt-sanitizers clang +sys-libs/llvm-libunwind clang +sys-devel/lld clang +dev-util/lldb clang diff --git a/etc/portage/package.env/llvm b/etc/portage/package.env/llvm new file mode 100644 index 0000000..45cadbe --- /dev/null +++ b/etc/portage/package.env/llvm @@ -0,0 +1,18 @@ +# pass1: gcc +sys-devel/llvm gcc +sys-devel/clang gcc +sys-libs/libcxx gcc +sys-devel/clang-runtime +sys-libs/libcxxabi gcc +sys-libs/compiler-rt gcc +sys-libs/compiler-rt-sanitizers gcc +sys-libs/llvm-libunwind gcc +# pass2: clang +#sys-devel/llvm clang +#sys-devel/clang clang +#sys-libs/libcxx clang +#sys-devel/clang-runtime +#sys-libs/libcxxabi clang +#sys-libs/compiler-rt clang +#sys-libs/compiler-rt-sanitizers clang +#sys-libs/llvm-libunwind clang diff --git a/etc/portage/package.license/adobe b/etc/portage/package.license/adobe new file mode 100644 index 0000000..a987524 --- /dev/null +++ b/etc/portage/package.license/adobe @@ -0,0 +1 @@ +www-plugins/adobe-flash AdobeFlash-11.x diff --git a/etc/portage/package.license/chrome b/etc/portage/package.license/chrome new file mode 100644 index 0000000..47fb3d7 --- /dev/null +++ b/etc/portage/package.license/chrome @@ -0,0 +1 @@ +www-client/google-chrome google-chrome diff --git a/etc/portage/package.license/gentoo-sources b/etc/portage/package.license/gentoo-sources new file mode 100644 index 0000000..ff6c049 --- /dev/null +++ b/etc/portage/package.license/gentoo-sources @@ -0,0 +1 @@ +sys-kernel/gentoo-sources freedist diff --git a/etc/portage/package.license/linux-firmware b/etc/portage/package.license/linux-firmware new file mode 100644 index 0000000..7707540 --- /dev/null +++ b/etc/portage/package.license/linux-firmware @@ -0,0 +1 @@ +sys-kernel/linux-firmware freedist linux-firmware no-source-code diff --git a/etc/portage/package.mask/libffi b/etc/portage/package.mask/libffi new file mode 100644 index 0000000..23d590f --- /dev/null +++ b/etc/portage/package.mask/libffi @@ -0,0 +1 @@ +>dev-libs/libffi-3.2.1 diff --git a/etc/portage/package.use/aria2 b/etc/portage/package.use/aria2 new file mode 100644 index 0000000..aad4ed8 --- /dev/null +++ b/etc/portage/package.use/aria2 @@ -0,0 +1 @@ +net-misc/aria2 -gnutls -nettle -libxml2 bittorrent metalink xmlrpc diff --git a/etc/portage/package.use/bluez b/etc/portage/package.use/bluez new file mode 100644 index 0000000..dfceb95 --- /dev/null +++ b/etc/portage/package.use/bluez @@ -0,0 +1 @@ +net-wireless/bluez -obex -alsa -mesh diff --git a/etc/portage/package.use/btrfs b/etc/portage/package.use/btrfs new file mode 100644 index 0000000..e5fb245 --- /dev/null +++ b/etc/portage/package.use/btrfs @@ -0,0 +1 @@ +sys-fs/btrfs-progs -convert diff --git a/etc/portage/package.use/cairo b/etc/portage/package.use/cairo new file mode 100644 index 0000000..11b6117 --- /dev/null +++ b/etc/portage/package.use/cairo @@ -0,0 +1,2 @@ +x11-libs/cairo X xcb +x11-libs/pango -X diff --git a/etc/portage/package.use/chrome b/etc/portage/package.use/chrome new file mode 100644 index 0000000..7b0de0a --- /dev/null +++ b/etc/portage/package.use/chrome @@ -0,0 +1,4 @@ +app-text/poppler -jpeg -jpeg2k cxx +net-print/cups -ssl -systemd -acl -pam -threads +net-print/cups-filters -foomatic +media-libs/lcms -threads diff --git a/etc/portage/package.use/chromium b/etc/portage/package.use/chromium new file mode 100644 index 0000000..79c2002 --- /dev/null +++ b/etc/portage/package.use/chromium @@ -0,0 +1,8 @@ +www-client/chromium -hangouts -system-ffmpeg -system-libvpx -system-icu +browser/chromium -hangouts -system-ffmpeg -system-libvpx -system-icu +media-libs/openh264 -plugin +net-libs/nodejs -npm +net-libs/nghttp2 -cxx +www-plugins/adobe-flash -nsplugin +dev-libs/libxml2 icu + diff --git a/etc/portage/package.use/clang-meta b/etc/portage/package.use/clang-meta new file mode 100644 index 0000000..7f367a4 --- /dev/null +++ b/etc/portage/package.use/clang-meta @@ -0,0 +1,13 @@ +sys-devel/binutils cxx +sys-devel/llvm gold -libffi ncurses llvm_targets_BPF +sys-libs/libcxx libunwind libcxxabi +sys-devel/clang-runtime -openmp libcxx +sys-libs/libcxxabi libunwind +sys-libs/llvm-libunwind static-libs +sys-libs/compiler-rt-sanitizers +dev-util/lldb +sys-devel/clang default-compiler-rt default-libcxx xml +# pass1 +#sys-libs/compiler-rt -clang +# pass2 +sys-libs/compiler-rt clang diff --git a/etc/portage/package.use/clutter b/etc/portage/package.use/clutter new file mode 100644 index 0000000..c26bb67 --- /dev/null +++ b/etc/portage/package.use/clutter @@ -0,0 +1 @@ +media-libs/clutter egl diff --git a/etc/portage/package.use/cmake b/etc/portage/package.use/cmake new file mode 100644 index 0000000..9ac7750 --- /dev/null +++ b/etc/portage/package.use/cmake @@ -0,0 +1,2 @@ +dev-util/cmake -qt5 +app-arch/libarchive -acl -bzip2 -iconv -lzma -xattr -zlib \ No newline at end of file diff --git a/etc/portage/package.use/connman b/etc/portage/package.use/connman new file mode 100644 index 0000000..c9be201 --- /dev/null +++ b/etc/portage/package.use/connman @@ -0,0 +1 @@ +net-misc/connman -ethernet -bluetooth diff --git a/etc/portage/package.use/coreutils b/etc/portage/package.use/coreutils new file mode 100644 index 0000000..cb66e6c --- /dev/null +++ b/etc/portage/package.use/coreutils @@ -0,0 +1 @@ +#sys-apps/coreutils multicall diff --git a/etc/portage/package.use/dbus b/etc/portage/package.use/dbus new file mode 100644 index 0000000..8d9a77c --- /dev/null +++ b/etc/portage/package.use/dbus @@ -0,0 +1 @@ +sys-apps/dbus user-session diff --git a/etc/portage/package.use/docker b/etc/portage/package.use/docker new file mode 100644 index 0000000..a813c1f --- /dev/null +++ b/etc/portage/package.use/docker @@ -0,0 +1 @@ +app-emulation/docker -device-mapper btrfs \ No newline at end of file diff --git a/etc/portage/package.use/e17 b/etc/portage/package.use/e17 new file mode 100644 index 0000000..266c4f7 --- /dev/null +++ b/etc/portage/package.use/e17 @@ -0,0 +1,7 @@ +x11-wm/enlightenment:0.17 ukit +dev-libs/efl egl gles drm -psd -ppm -ico -bmp -ssl sound luajit +lib/efl egl gles drm -psd -ppm -ico -bmp -ssl sound + + + + diff --git a/etc/portage/package.use/elfutils b/etc/portage/package.use/elfutils new file mode 100644 index 0000000..ccb01e4 --- /dev/null +++ b/etc/portage/package.use/elfutils @@ -0,0 +1 @@ +dev-libs/elfutils -utils -bzip2 diff --git a/etc/portage/package.use/emacs b/etc/portage/package.use/emacs new file mode 100644 index 0000000..d06c2bb --- /dev/null +++ b/etc/portage/package.use/emacs @@ -0,0 +1,2 @@ +app-editors/emacs -xpm X -alsa acl -gtk3 -zlib dynamic-loading xft +app-emacs/emacs-common-gentoo X diff --git a/etc/portage/package.use/erlang b/etc/portage/package.use/erlang new file mode 100644 index 0000000..4ec8e58 --- /dev/null +++ b/etc/portage/package.use/erlang @@ -0,0 +1 @@ +dev-lang/erlang hipe smp kpoll dirty-schedulers diff --git a/etc/portage/package.use/fcitx b/etc/portage/package.use/fcitx new file mode 100644 index 0000000..ac53868 --- /dev/null +++ b/etc/portage/package.use/fcitx @@ -0,0 +1 @@ +app-i18n/fcitx -autostart -cairo -dbus -enchant -introspection -pango -xml diff --git a/etc/portage/package.use/firefox b/etc/portage/package.use/firefox new file mode 100644 index 0000000..1dd408e --- /dev/null +++ b/etc/portage/package.use/firefox @@ -0,0 +1,6 @@ +www-client/firefox hwaccel nsplugin gold +www-client/seamonkey -calendar -chatzilla -crypt -roaming force-gtk3 +browser/firefox hwaccel nsplugin gold + + + diff --git a/etc/portage/package.use/firmware b/etc/portage/package.use/firmware new file mode 100644 index 0000000..de6347d --- /dev/null +++ b/etc/portage/package.use/firmware @@ -0,0 +1 @@ +sys-kernel/linux-firmware savedconfig diff --git a/etc/portage/package.use/gcc b/etc/portage/package.use/gcc new file mode 100644 index 0000000..f02353c --- /dev/null +++ b/etc/portage/package.use/gcc @@ -0,0 +1,5 @@ +sys-devel/gcc -fortran go cxx +sys-devel/binutils static-libs + + + diff --git a/etc/portage/package.use/gdb b/etc/portage/package.use/gdb new file mode 100644 index 0000000..c1a9ac4 --- /dev/null +++ b/etc/portage/package.use/gdb @@ -0,0 +1 @@ +sys-devel/gdb -server -python_single_target_python2_7 -python_targets_python2_7 -python_targets_python3_4 diff --git a/etc/portage/package.use/gdm b/etc/portage/package.use/gdm new file mode 100644 index 0000000..ee174b4 --- /dev/null +++ b/etc/portage/package.use/gdm @@ -0,0 +1,3 @@ +gnome-base/gdm plymouth +sys-boot/plymouth gdm +x11-libs/libdrm libkms diff --git a/etc/portage/package.use/geoclue b/etc/portage/package.use/geoclue new file mode 100644 index 0000000..d2db3dc --- /dev/null +++ b/etc/portage/package.use/geoclue @@ -0,0 +1 @@ +app-misc/geoclue -modemmanager diff --git a/etc/portage/package.use/git b/etc/portage/package.use/git new file mode 100644 index 0000000..2b4ff46 --- /dev/null +++ b/etc/portage/package.use/git @@ -0,0 +1 @@ +dev-vcs/git -blksha1 -perl -webdav -gpg -pcre -pcre-jit blksha1 diff --git a/etc/portage/package.use/glib b/etc/portage/package.use/glib new file mode 100644 index 0000000..8c66b12 --- /dev/null +++ b/etc/portage/package.use/glib @@ -0,0 +1,2 @@ +dev-libs/glib dbus +net-libs/glib-networking -libproxy diff --git a/etc/portage/package.use/glibc b/etc/portage/package.use/glibc new file mode 100644 index 0000000..6f18997 --- /dev/null +++ b/etc/portage/package.use/glibc @@ -0,0 +1 @@ +sys-libs/glibc -rpc diff --git a/etc/portage/package.use/gnome b/etc/portage/package.use/gnome new file mode 100644 index 0000000..0d35c86 --- /dev/null +++ b/etc/portage/package.use/gnome @@ -0,0 +1,9 @@ +gnome-base/gnome-shell -networkmanager +gnome-base/gnome-control-center -colord -gnome-online-accouts -networkmanager +gnome-base/gvfs udisks gtk +app-crypt/pinentry gnome-keyring gtk -ncurses +gnome-base/nautilus -tracker -previewer +app-text/evince -gstreamer -postscript -tiff -gnome -gnome-keyring -introspection +app-crypt/gcr gtk +dev-libs/libxml2 python +gnome-base/gdm -ipv6 -plymouth diff --git a/etc/portage/package.use/gnupg b/etc/portage/package.use/gnupg new file mode 100644 index 0000000..92f416f --- /dev/null +++ b/etc/portage/package.use/gnupg @@ -0,0 +1,3 @@ +app-crypt/gnupg -gnutls +app-crypt/pinentry -gnome-keyring -gtk caps ncurses + diff --git a/etc/portage/package.use/gnutls b/etc/portage/package.use/gnutls new file mode 100644 index 0000000..f5e1463 --- /dev/null +++ b/etc/portage/package.use/gnutls @@ -0,0 +1 @@ +net-libs/gnutls -sslv3 -openssl diff --git a/etc/portage/package.use/gtk+ b/etc/portage/package.use/gtk+ new file mode 100644 index 0000000..72da1a4 --- /dev/null +++ b/etc/portage/package.use/gtk+ @@ -0,0 +1,2 @@ +x11-libs/gtk+ X + diff --git a/etc/portage/package.use/harfbuzz b/etc/portage/package.use/harfbuzz new file mode 100644 index 0000000..bd055dd --- /dev/null +++ b/etc/portage/package.use/harfbuzz @@ -0,0 +1 @@ +media-libs/harfbuzz -cairo -graphite icu diff --git a/etc/portage/package.use/ibus b/etc/portage/package.use/ibus new file mode 100644 index 0000000..f6f24fd --- /dev/null +++ b/etc/portage/package.use/ibus @@ -0,0 +1 @@ +app-i18n/ibus -introspection -gtk2 -libnotify -emoji diff --git a/etc/portage/package.use/iproute2 b/etc/portage/package.use/iproute2 new file mode 100644 index 0000000..7778505 --- /dev/null +++ b/etc/portage/package.use/iproute2 @@ -0,0 +1 @@ +sys-apps/iproute2 -minimal diff --git a/etc/portage/package.use/iputils b/etc/portage/package.use/iputils new file mode 100644 index 0000000..9cde931 --- /dev/null +++ b/etc/portage/package.use/iputils @@ -0,0 +1 @@ +net-misc/iputils -caps -filecaps diff --git a/etc/portage/package.use/kernel b/etc/portage/package.use/kernel new file mode 100644 index 0000000..61d4804 --- /dev/null +++ b/etc/portage/package.use/kernel @@ -0,0 +1 @@ +sys-kernel/gentoo-sources experimental \ No newline at end of file diff --git a/etc/portage/package.use/kmscon b/etc/portage/package.use/kmscon new file mode 100644 index 0000000..afe9aa7 --- /dev/null +++ b/etc/portage/package.use/kmscon @@ -0,0 +1 @@ +sys-apps/kmscon -fbdev pango -unifont diff --git a/etc/portage/package.use/less b/etc/portage/package.use/less new file mode 100644 index 0000000..388d8c1 --- /dev/null +++ b/etc/portage/package.use/less @@ -0,0 +1,2 @@ +sys-apps/less -pcre + diff --git a/etc/portage/package.use/libarchive b/etc/portage/package.use/libarchive new file mode 100644 index 0000000..a0c5de7 --- /dev/null +++ b/etc/portage/package.use/libarchive @@ -0,0 +1 @@ +app-arch/libarchive -e2fsprogs diff --git a/etc/portage/package.use/libevent b/etc/portage/package.use/libevent new file mode 100644 index 0000000..7cbe414 --- /dev/null +++ b/etc/portage/package.use/libevent @@ -0,0 +1,2 @@ +dev-libs/libevent -threads -ssl static-libs + diff --git a/etc/portage/package.use/libpcre b/etc/portage/package.use/libpcre new file mode 100644 index 0000000..27eb97c --- /dev/null +++ b/etc/portage/package.use/libpcre @@ -0,0 +1 @@ +dev-libs/libpcre -pcre16 -bzip2 -readline -zlib diff --git a/etc/portage/package.use/libsdl2 b/etc/portage/package.use/libsdl2 new file mode 100644 index 0000000..94b7086 --- /dev/null +++ b/etc/portage/package.use/libsdl2 @@ -0,0 +1,2 @@ +media-libs/libsdl2 -joystick gles udev -sound -pulseaudio + diff --git a/etc/portage/package.use/libxcb b/etc/portage/package.use/libxcb new file mode 100644 index 0000000..a548501 --- /dev/null +++ b/etc/portage/package.use/libxcb @@ -0,0 +1 @@ +x11-libs/libxcb xkb diff --git a/etc/portage/package.use/libxkbcommon b/etc/portage/package.use/libxkbcommon new file mode 100644 index 0000000..1b62b11 --- /dev/null +++ b/etc/portage/package.use/libxkbcommon @@ -0,0 +1 @@ +x11-libs/libxkbcommon X diff --git a/etc/portage/package.use/lightdm b/etc/portage/package.use/lightdm new file mode 100644 index 0000000..e7fa92e --- /dev/null +++ b/etc/portage/package.use/lightdm @@ -0,0 +1 @@ +x11-misc/lightdm diff --git a/etc/portage/package.use/liri b/etc/portage/package.use/liri new file mode 100644 index 0000000..339f552 --- /dev/null +++ b/etc/portage/package.use/liri @@ -0,0 +1,8 @@ +dev-libs/libpcre2 pcre16 +dev-util/scons python_targets_python2_7 +# +dev-qt/qtwidgets -xcb gles2 +dev-qt/qtdeclarative gles2 +dev-qt/qtgui egl eglfs gles2 libinput jpeg dbus -gif -xcb +dev-qt/qtcore icu + diff --git a/etc/portage/package.use/llvm b/etc/portage/package.use/llvm new file mode 100644 index 0000000..1f25301 --- /dev/null +++ b/etc/portage/package.use/llvm @@ -0,0 +1,11 @@ +sys-devel/llvm gold -libffi -ncurses +sys-devel/clang default-compiler-rt default-libcxx +sys-libs/libcxx libunwind libcxxabi -libcxxrt +sys-devel/clang-runtime -openmp libcxx +sys-libs/libcxxabi libunwind +sys-libs/llvm-libunwind static-libs +sys-libs/compiler-rt-sanitizers +# pass1 +sys-libs/compiler-rt -clang +# pass2 +#sys-libs/compiler-rt clang diff --git a/etc/portage/package.use/lxqt b/etc/portage/package.use/lxqt new file mode 100644 index 0000000..a862870 --- /dev/null +++ b/etc/portage/package.use/lxqt @@ -0,0 +1 @@ +lxqt-base/lxqt-meta -filemanager lximage sddm sudo diff --git a/etc/portage/package.use/mesa b/etc/portage/package.use/mesa new file mode 100644 index 0000000..7218d9e --- /dev/null +++ b/etc/portage/package.use/mesa @@ -0,0 +1 @@ +media-libs/mesa -classic -dri3 -llvm gallium gles2 diff --git a/etc/portage/package.use/mpv b/etc/portage/package.use/mpv new file mode 100644 index 0000000..3ec1b5b --- /dev/null +++ b/etc/portage/package.use/mpv @@ -0,0 +1,3 @@ +media-video/ffmpeg pic -zlib -bzip2 -encode -network -postproc -iconv -webp -alsa -pulseaudio chromium +media-video/libav -alsa -bzip2 -encode -network -ssl -zlib +media-video/mpv -alsa -iconv -libass -uchardet -xv -zlib diff --git a/etc/portage/package.use/nano b/etc/portage/package.use/nano new file mode 100644 index 0000000..17ac9cb --- /dev/null +++ b/etc/portage/package.use/nano @@ -0,0 +1 @@ +app-editors/nano justify -minimal diff --git a/etc/portage/package.use/ncurses b/etc/portage/package.use/ncurses new file mode 100644 index 0000000..1180077 --- /dev/null +++ b/etc/portage/package.use/ncurses @@ -0,0 +1,3 @@ +sys-libs/ncurses static-libs -cxx -minimal + + diff --git a/etc/portage/package.use/noto b/etc/portage/package.use/noto new file mode 100644 index 0000000..6e4843d --- /dev/null +++ b/etc/portage/package.use/noto @@ -0,0 +1 @@ +media-fonts/noto cjk diff --git a/etc/portage/package.use/nss b/etc/portage/package.use/nss new file mode 100644 index 0000000..c2500be --- /dev/null +++ b/etc/portage/package.use/nss @@ -0,0 +1,3 @@ +dev-libs/nss -nss-pem +dev-db/sqlite -readline + diff --git a/etc/portage/package.use/nvidia b/etc/portage/package.use/nvidia new file mode 100644 index 0000000..29f5a6c --- /dev/null +++ b/etc/portage/package.use/nvidia @@ -0,0 +1 @@ +x11-drivers/nvidia-drivers -tools -gtk3 uvm driver X -kms diff --git a/etc/portage/package.use/openrc b/etc/portage/package.use/openrc new file mode 100644 index 0000000..0cc85ca --- /dev/null +++ b/etc/portage/package.use/openrc @@ -0,0 +1 @@ +sys-apps/openrc -netifrc diff --git a/etc/portage/package.use/openssl b/etc/portage/package.use/openssl new file mode 100644 index 0000000..58679da --- /dev/null +++ b/etc/portage/package.use/openssl @@ -0,0 +1,2 @@ +dev-libs/openssl -sslv3 -zlib static-libs + diff --git a/etc/portage/package.use/openvpn b/etc/portage/package.use/openvpn new file mode 100644 index 0000000..014ac76 --- /dev/null +++ b/etc/portage/package.use/openvpn @@ -0,0 +1 @@ +net-vpn/openvpn down-root iproute2 diff --git a/etc/portage/package.use/paludis b/etc/portage/package.use/paludis new file mode 100644 index 0000000..ef7395f --- /dev/null +++ b/etc/portage/package.use/paludis @@ -0,0 +1 @@ +sys-apps/paludis -python -python_targets_python2_7 diff --git a/etc/portage/package.use/pciutils b/etc/portage/package.use/pciutils new file mode 100644 index 0000000..6b40b23 --- /dev/null +++ b/etc/portage/package.use/pciutils @@ -0,0 +1,2 @@ +sys-apps/pciutils -kmod -udev + diff --git a/etc/portage/package.use/portage b/etc/portage/package.use/portage new file mode 100644 index 0000000..319ee17 --- /dev/null +++ b/etc/portage/package.use/portage @@ -0,0 +1 @@ +sys-apps/portage -xattr ipcsys-apps/portage -native-extensions diff --git a/etc/portage/package.use/procps b/etc/portage/package.use/procps new file mode 100644 index 0000000..49e6c9c --- /dev/null +++ b/etc/portage/package.use/procps @@ -0,0 +1 @@ +sys-process/procps modern-top diff --git a/etc/portage/package.use/protobuf b/etc/portage/package.use/protobuf new file mode 100644 index 0000000..1111b15 --- /dev/null +++ b/etc/portage/package.use/protobuf @@ -0,0 +1 @@ +dev-libs/protobuf static-libs -zlib diff --git a/etc/portage/package.use/pulseaudio b/etc/portage/package.use/pulseaudio new file mode 100644 index 0000000..0212a6b --- /dev/null +++ b/etc/portage/package.use/pulseaudio @@ -0,0 +1,3 @@ +media-sound/pulseaudio bluetooth dbus -tcpd -ipv6 -ssl -orc -asyncns -glib -webrtc-aec -native-headset -alsa-plugin +media-sound/alsa-utils -libsamplerate +media-libs/libsndfile -alsa diff --git a/etc/portage/package.use/python b/etc/portage/package.use/python new file mode 100644 index 0000000..a214498 --- /dev/null +++ b/etc/portage/package.use/python @@ -0,0 +1,3 @@ +dev-lang/python -ipv6 -ncurses -readline ssl xml +sys-libs/gdbm berkdb + diff --git a/etc/portage/package.use/qemu b/etc/portage/package.use/qemu new file mode 100644 index 0000000..59660b0 --- /dev/null +++ b/etc/portage/package.use/qemu @@ -0,0 +1,3 @@ +app-emulation/qemu -bluetooth -curl -fdt -caps -jpeg -ncurses -png -pulseaudio -vnc -xattr -bzip2 +app-emulation/qemu ncurses +dev-libs/libpcre2 -pcre16 -bzip2 -readline -zlib diff --git a/etc/portage/package.use/qingy b/etc/portage/package.use/qingy new file mode 100644 index 0000000..9b9b10e --- /dev/null +++ b/etc/portage/package.use/qingy @@ -0,0 +1 @@ +sys-apps/qingy directfb diff --git a/etc/portage/package.use/qtmultimedia b/etc/portage/package.use/qtmultimedia new file mode 100644 index 0000000..b5bc875 --- /dev/null +++ b/etc/portage/package.use/qtmultimedia @@ -0,0 +1 @@ +dev-qt/qtmultimedia openal pulseaudio diff --git a/etc/portage/package.use/ruby b/etc/portage/package.use/ruby new file mode 100644 index 0000000..b792c7e --- /dev/null +++ b/etc/portage/package.use/ruby @@ -0,0 +1 @@ +dev-lang/ruby -rdoc diff --git a/etc/portage/package.use/scim b/etc/portage/package.use/scim new file mode 100644 index 0000000..615e70b --- /dev/null +++ b/etc/portage/package.use/scim @@ -0,0 +1 @@ +app-i18n/scim gtk3 diff --git a/etc/portage/package.use/sddm b/etc/portage/package.use/sddm new file mode 100644 index 0000000..b28b04f --- /dev/null +++ b/etc/portage/package.use/sddm @@ -0,0 +1,3 @@ + + + diff --git a/etc/portage/package.use/shell b/etc/portage/package.use/shell new file mode 100644 index 0000000..3103ebc --- /dev/null +++ b/etc/portage/package.use/shell @@ -0,0 +1,2 @@ +app-shells/zsh -gdbm caps -pcre static +app-shells/bash -net diff --git a/etc/portage/package.use/slang b/etc/portage/package.use/slang new file mode 100644 index 0000000..4c05fe5 --- /dev/null +++ b/etc/portage/package.use/slang @@ -0,0 +1 @@ +sys-libs/slang cjk diff --git a/etc/portage/package.use/source-pro b/etc/portage/package.use/source-pro new file mode 100644 index 0000000..42b94a7 --- /dev/null +++ b/etc/portage/package.use/source-pro @@ -0,0 +1 @@ +media-fonts/source-pro -cjk diff --git a/etc/portage/package.use/sway b/etc/portage/package.use/sway new file mode 100644 index 0000000..ca8567f --- /dev/null +++ b/etc/portage/package.use/sway @@ -0,0 +1 @@ +x11-libs/gdk-pixbuf jpeg diff --git a/etc/portage/package.use/systemd b/etc/portage/package.use/systemd new file mode 100644 index 0000000..d16982d --- /dev/null +++ b/etc/portage/package.use/systemd @@ -0,0 +1,2 @@ +sys-apps/systemd -lz4 -seccomp -gcrypt -ssl -kmod -pcre -sysv-utils +sys-auth/polkit jit diff --git a/etc/portage/package.use/tilix b/etc/portage/package.use/tilix new file mode 100644 index 0000000..88be718 --- /dev/null +++ b/etc/portage/package.use/tilix @@ -0,0 +1,7 @@ +x11-terms/tilix dmd-2_074 -crypt +dev-libs/gtkd dmd-2_074 vte +x11-libs/vte -crypt +dev-libs/libpcre2 -bzip2 -pcre32 -zlib -readline + + + diff --git a/etc/portage/package.use/tor b/etc/portage/package.use/tor new file mode 100644 index 0000000..91fde98 --- /dev/null +++ b/etc/portage/package.use/tor @@ -0,0 +1 @@ +net/tor systemd diff --git a/etc/portage/package.use/util-linux b/etc/portage/package.use/util-linux new file mode 100644 index 0000000..f6c25c8 --- /dev/null +++ b/etc/portage/package.use/util-linux @@ -0,0 +1,2 @@ +sys-apps/util-linux -cramfs -pam -udev + diff --git a/etc/portage/package.use/weston b/etc/portage/package.use/weston new file mode 100644 index 0000000..09e2430 --- /dev/null +++ b/etc/portage/package.use/weston @@ -0,0 +1 @@ +compositor/weston dbus xwayland diff --git a/etc/portage/package.use/wireless b/etc/portage/package.use/wireless new file mode 100644 index 0000000..d4cef46 --- /dev/null +++ b/etc/portage/package.use/wireless @@ -0,0 +1,2 @@ +net-wireless/aircrack-ng -pcre -sqlite -experimental -airdrop-ng +net-libs/libpcap -bluetooth netlink diff --git a/etc/portage/package.use/wpa_supplicant b/etc/portage/package.use/wpa_supplicant new file mode 100644 index 0000000..c6c5aeb --- /dev/null +++ b/etc/portage/package.use/wpa_supplicant @@ -0,0 +1,2 @@ +net-wireless/wpa_supplicant -hs2-0 -ssl +dev-lang/swig -pcre diff --git a/etc/portage/package.use/xmlto b/etc/portage/package.use/xmlto new file mode 100644 index 0000000..6b5c489 --- /dev/null +++ b/etc/portage/package.use/xmlto @@ -0,0 +1 @@ +app-text/xmlto -text \ No newline at end of file diff --git a/etc/portage/package.use/xorg-server b/etc/portage/package.use/xorg-server new file mode 100644 index 0000000..fa59181 --- /dev/null +++ b/etc/portage/package.use/xorg-server @@ -0,0 +1,2 @@ +x11-base/xorg-server minimal glamor -xorg +media-libs/libepoxy X diff --git a/etc/portage/package.use/zlib b/etc/portage/package.use/zlib new file mode 100644 index 0000000..0cfcaf5 --- /dev/null +++ b/etc/portage/package.use/zlib @@ -0,0 +1,14 @@ +sys-libs/zlib minizip static-libs +# required by dev-python/setuptools-34.0.2-r1::gentoo +# required by dev-python/certifi-2017.11.5::gentoo +>=dev-python/appdirs-1.4.3 python_targets_python2_7 python_targets_python3_5 +# required by dev-python/setuptools-34.0.2-r1::gentoo +# required by dev-python/certifi-2017.11.5::gentoo +>=dev-python/packaging-16.8 python_targets_python2_7 python_targets_python3_5 +# required by dev-python/packaging-16.8::gentoo +# required by dev-python/setuptools-34.0.2-r1::gentoo +# required by dev-python/certifi-2017.11.5::gentoo +>=dev-python/pyparsing-2.2.0 python_targets_python2_7 python_targets_python3_5 +# required by dev-python/setuptools-34.0.2-r1::gentoo +# required by dev-python/certifi-2017.11.5::gentoo +>=dev-python/six-1.11.0 python_targets_python2_7 python_targets_python3_5 diff --git a/etc/portage/patches/dev-libs/weston-1.12.0/major.patch b/etc/portage/patches/dev-libs/weston-1.12.0/major.patch new file mode 100644 index 0000000..7d228df --- /dev/null +++ b/etc/portage/patches/dev-libs/weston-1.12.0/major.patch @@ -0,0 +1,36 @@ +diff --git a/libweston/launcher-direct.c b/libweston/launcher-direct.c +index 29d9c28..b58fdfe 100644 +--- a/libweston/launcher-direct.c ++++ b/libweston/launcher-direct.c +@@ -31,6 +31,7 @@ + #include + #include + #include ++#include + #include + #include + #include +diff --git a/libweston/launcher-logind.c b/libweston/launcher-logind.c +index 8d5e8f9..20cb193 100644 +--- a/libweston/launcher-logind.c ++++ b/libweston/launcher-logind.c +@@ -35,6 +35,7 @@ + #include + #include + #include ++#include + #include + #include + +diff --git a/libweston/weston-launch.c b/libweston/weston-launch.c +index 140fde1..eecb911 100644 +--- a/libweston/weston-launch.c ++++ b/libweston/weston-launch.c +@@ -42,6 +42,7 @@ + #include + #include + #include ++#include + #include + #include + #include diff --git a/etc/portage/profile/package.provided b/etc/portage/profile/package.provided new file mode 100644 index 0000000..e16aa4f --- /dev/null +++ b/etc/portage/profile/package.provided @@ -0,0 +1,2 @@ +app-text/xmlto-0.0.28-r1 +sys-apps/sysvinit-2.88-r9 diff --git a/etc/portage/profile/packages b/etc/portage/profile/packages new file mode 100644 index 0000000..75455dc --- /dev/null +++ b/etc/portage/profile/packages @@ -0,0 +1,5 @@ +-*sys-apps/openrc +-*sys-apps/sysvinit +-*sys-apps/net-tools +-*sys-apps/busybox +-*sys-fs/e2fsprogs diff --git a/etc/portage/repo.postsync.d/example b/etc/portage/repo.postsync.d/example new file mode 100644 index 0000000..533bf71 --- /dev/null +++ b/etc/portage/repo.postsync.d/example @@ -0,0 +1,51 @@ +#!/bin/sh +# Example /etc/portage/repo.postsync.d script. Make it executable (chmod +x) for +# Portage to process it. +# +# With portage-2.2.16 and newer, all repo.postsync.d hooks will be called multiple +# times after syncing each repository. +# +# Older versions of Portage support syncing only one repository. +# In those versions, the postsync.d hooks will be called only once, +# and they will not be passed any parameters. + +# On a repo.postsync.d hook call, positional parameters contain +# information about the just-synced repository. + +# Your hook can control it's actions depending on any of the three +# parameters passed in to it. +# +# They are as follows: +# +# The repository name. +repository_name=${1} +# The URI to which the repository was synced. +sync_uri=${2} +# The path to the repository. +repository_path=${3} + +# Portage assumes that a hook succeeded if it exits with 0 code. If no +# explicit exit is done, the exit code is the exit code of last spawned +# command. Since our script is a bit more complex, we want to control +# the exit code explicitly. +ret=0 + +if [ -n "${repository_name}" ]; then + # Repository name was provided, so we're in a post-repository hook. + echo "* In post-repository hook for ${repository_name}" + echo "** synced from remote repository ${sync_uri}" + echo "** synced into ${repository_path}" + + # Gentoo comes with pregenerated cache but the other repositories + # usually don't. Generate them to improve performance. + if [ "${repository_name}" != "gentoo" ]; then + if ! egencache --update --repo="${repository_name}" --jobs=4 + then + echo "!!! egencache failed!" + ret=1 + fi + fi +fi + +# Return explicit status. +exit "${ret}" diff --git a/etc/portage/repo.postsync.d/q-reinit b/etc/portage/repo.postsync.d/q-reinit new file mode 100755 index 0000000..0833c66 --- /dev/null +++ b/etc/portage/repo.postsync.d/q-reinit @@ -0,0 +1,10 @@ +#!/bin/sh + +repository_name=$1 +repository_path=$3 + +if [ -n "${repository_name}" ]; then + q ${PORTAGE_QUIET:+-q} --reinitialize="${repository_path}" +fi + +: diff --git a/etc/portage/repos.conf/gentoo.conf b/etc/portage/repos.conf/gentoo.conf new file mode 100644 index 0000000..7ebc34a --- /dev/null +++ b/etc/portage/repos.conf/gentoo.conf @@ -0,0 +1,13 @@ +[DEFAULT] +main-repo = gentoo + +[gentoo] +location = /usr/portage +sync-type = git +#sync-uri = https://github.com/gentoo/gentoo +sync-uri = https://anongit.gentoo.org/git/repo/gentoo.git +auto-sync = yes + +# for daily squashfs snapshots +#sync-type = squashdelta +#sync-uri = mirror://gentoo/../snapshots/squashfs diff --git a/etc/portage/repos.conf/layman.conf b/etc/portage/repos.conf/layman.conf new file mode 100644 index 0000000..e69de29 diff --git a/etc/portage/repos.conf/sigma0f.conf b/etc/portage/repos.conf/sigma0f.conf new file mode 100644 index 0000000..3c8561e --- /dev/null +++ b/etc/portage/repos.conf/sigma0f.conf @@ -0,0 +1,5 @@ +[sigma0f] +location = /usr/local/overlay/sigma0f +masters = gentoo +auto-sync = no + diff --git a/etc/portage/savedconfig/sys-kernel/linux-firmware b/etc/portage/savedconfig/sys-kernel/linux-firmware new file mode 100644 index 0000000..61f7d6a --- /dev/null +++ b/etc/portage/savedconfig/sys-kernel/linux-firmware @@ -0,0 +1,32 @@ +intel/irci_irci_ecr-master_20161208_0213_20170112_1500.bin +intel/ipu3-fw.bin +intel/ibt-hw-37.8.bseq +intel/ibt-hw-37.8.10-fw-22.50.19.14.f.bseq +intel/ibt-hw-37.8.10-fw-1.10.3.11.e.bseq +intel/ibt-hw-37.8.10-fw-1.10.2.27.d.bseq +intel/ibt-hw-37.7.bseq +intel/ibt-hw-37.7.10-fw-1.80.2.3.d.bseq +intel/ibt-hw-37.7.10-fw-1.80.1.2d.d.bseq +intel/ibt-hw-37.7.10-fw-1.0.2.3.d.bseq +intel/ibt-hw-37.7.10-fw-1.0.1.2d.d.bseq +intel/ibt-12-16.sfi +intel/ibt-12-16.ddc +intel/ibt-11-5.sfi +intel/ibt-11-5.ddc +intel/fw_sst_22a8.bin +intel/fw_sst_0f28_ssp0.bin +intel/fw_sst_0f28.bin-48kHz_i2s_master +intel/fw_sst_0f28.bin +intel/dsp_fw_release_v969.bin +intel/dsp_fw_release.bin +intel/dsp_fw_kbl_v701.bin +intel/dsp_fw_kbl_v2630.bin +intel/dsp_fw_kbl_v2042.bin +intel/dsp_fw_kbl_v1037.bin +intel/dsp_fw_kbl.bin +intel/dsp_fw_glk_v1814.bin +intel/dsp_fw_glk.bin +intel/dsp_fw_bxtn_v2219.bin +intel/dsp_fw_bxtn.bin +iwlwifi-3160-17.ucode + diff --git a/etc/portage/savedconfig/sys-kernel/linux-firmware-20170622 b/etc/portage/savedconfig/sys-kernel/linux-firmware-20170622 new file mode 100644 index 0000000..301d98a --- /dev/null +++ b/etc/portage/savedconfig/sys-kernel/linux-firmware-20170622 @@ -0,0 +1,1581 @@ +# Remove files that shall not be installed from this list. +3com/3C359.bin +3com/typhoon.bin +GPL-2 +GPL-3 +LICENCE.Abilis +LICENCE.IntcSST2 +LICENCE.Marvell +LICENCE.Netronome +LICENCE.OLPC +LICENCE.adsp_sst +LICENCE.agere +LICENCE.atheros_firmware +LICENCE.broadcom_bcm43xx +LICENCE.ca0132 +LICENCE.cavium +LICENCE.chelsio_firmware +LICENCE.cw1200 +LICENCE.e100 +LICENCE.ene_firmware +LICENCE.fw_sst_0f28 +LICENCE.go7007 +LICENCE.i2400m +LICENCE.ibt_firmware +LICENCE.it913x +LICENCE.iwlwifi_firmware +LICENCE.kaweth +LICENCE.moxa +LICENCE.myri10ge_firmware +LICENCE.nvidia +LICENCE.open-ath9k-htc-firmware +LICENCE.phanfw +LICENCE.qat_firmware +LICENCE.qla1280 +LICENCE.qla2xxx +LICENCE.r8a779x_usb3 +LICENCE.ralink-firmware.txt +LICENCE.ralink_a_mediatek_company_firmware +LICENCE.rockchip +LICENCE.rtlwifi_firmware.txt +LICENCE.siano +LICENCE.tda7706-firmware.txt +LICENCE.ti-connectivity +LICENCE.ti-keystone +LICENCE.ueagle-atm4-firmware +LICENCE.via_vt6656 +LICENCE.wl1251 +LICENCE.xc4000 +LICENCE.xc5000 +LICENCE.xc5000c +LICENSE.QualcommAtheros_ar3k +LICENSE.QualcommAtheros_ath10k +LICENSE.amd-ucode +LICENSE.amdgpu +LICENSE.atmel +LICENSE.dib0700 +LICENSE.hfi1_firmware +LICENSE.i915 +LICENSE.qcom +LICENSE.radeon +LICENSE.sdma_firmware +Makefile +README +RTL8192E/boot.img +RTL8192E/data.img +RTL8192E/main.img +TDA7706_OM_v2.5.1_boot.txt +TDA7706_OM_v3.0.2_boot.txt +WHENCE +acenic/tg1.bin +acenic/tg2.bin +adaptec/starfire_rx.bin +adaptec/starfire_tx.bin +advansys/3550.bin +advansys/38C0800.bin +advansys/38C1600.bin +advansys/mcode.bin +agere_ap_fw.bin +agere_sta_fw.bin +amd-ucode/microcode_amd.bin +amd-ucode/microcode_amd.bin.asc +amd-ucode/microcode_amd_fam15h.bin +amd-ucode/microcode_amd_fam15h.bin.asc +amd-ucode/microcode_amd_fam16h.bin +amd-ucode/microcode_amd_fam16h.bin.asc +amdgpu/carrizo_ce.bin +amdgpu/carrizo_me.bin +amdgpu/carrizo_mec.bin +amdgpu/carrizo_mec2.bin +amdgpu/carrizo_pfp.bin +amdgpu/carrizo_rlc.bin +amdgpu/carrizo_sdma.bin +amdgpu/carrizo_sdma1.bin +amdgpu/carrizo_uvd.bin +amdgpu/carrizo_vce.bin +amdgpu/fiji_ce.bin +amdgpu/fiji_mc.bin +amdgpu/fiji_me.bin +amdgpu/fiji_mec.bin +amdgpu/fiji_mec2.bin +amdgpu/fiji_pfp.bin +amdgpu/fiji_rlc.bin +amdgpu/fiji_sdma.bin +amdgpu/fiji_sdma1.bin +amdgpu/fiji_smc.bin +amdgpu/fiji_uvd.bin +amdgpu/fiji_vce.bin +amdgpu/polaris10_ce.bin +amdgpu/polaris10_k_smc.bin +amdgpu/polaris10_mc.bin +amdgpu/polaris10_me.bin +amdgpu/polaris10_mec.bin +amdgpu/polaris10_mec2.bin +amdgpu/polaris10_pfp.bin +amdgpu/polaris10_rlc.bin +amdgpu/polaris10_sdma.bin +amdgpu/polaris10_sdma1.bin +amdgpu/polaris10_smc.bin +amdgpu/polaris10_smc_sk.bin +amdgpu/polaris10_uvd.bin +amdgpu/polaris10_vce.bin +amdgpu/polaris11_ce.bin +amdgpu/polaris11_k_smc.bin +amdgpu/polaris11_mc.bin +amdgpu/polaris11_me.bin +amdgpu/polaris11_mec.bin +amdgpu/polaris11_mec2.bin +amdgpu/polaris11_pfp.bin +amdgpu/polaris11_rlc.bin +amdgpu/polaris11_sdma.bin +amdgpu/polaris11_sdma1.bin +amdgpu/polaris11_smc.bin +amdgpu/polaris11_smc_sk.bin +amdgpu/polaris11_uvd.bin +amdgpu/polaris11_vce.bin +amdgpu/polaris12_ce.bin +amdgpu/polaris12_mc.bin +amdgpu/polaris12_me.bin +amdgpu/polaris12_mec.bin +amdgpu/polaris12_mec2.bin +amdgpu/polaris12_pfp.bin +amdgpu/polaris12_rlc.bin +amdgpu/polaris12_sdma.bin +amdgpu/polaris12_sdma1.bin +amdgpu/polaris12_smc.bin +amdgpu/polaris12_uvd.bin +amdgpu/polaris12_vce.bin +amdgpu/stoney_ce.bin +amdgpu/stoney_me.bin +amdgpu/stoney_mec.bin +amdgpu/stoney_pfp.bin +amdgpu/stoney_rlc.bin +amdgpu/stoney_sdma.bin +amdgpu/stoney_uvd.bin +amdgpu/stoney_vce.bin +amdgpu/tonga_ce.bin +amdgpu/tonga_k_smc.bin +amdgpu/tonga_mc.bin +amdgpu/tonga_me.bin +amdgpu/tonga_mec.bin +amdgpu/tonga_mec2.bin +amdgpu/tonga_pfp.bin +amdgpu/tonga_rlc.bin +amdgpu/tonga_sdma.bin +amdgpu/tonga_sdma1.bin +amdgpu/tonga_smc.bin +amdgpu/tonga_uvd.bin +amdgpu/tonga_vce.bin +amdgpu/topaz_ce.bin +amdgpu/topaz_k_smc.bin +amdgpu/topaz_mc.bin +amdgpu/topaz_me.bin +amdgpu/topaz_mec.bin +amdgpu/topaz_mec2.bin +amdgpu/topaz_pfp.bin +amdgpu/topaz_rlc.bin +amdgpu/topaz_sdma.bin +amdgpu/topaz_sdma1.bin +amdgpu/topaz_smc.bin +ar3k/1020200/PS_ASIC.pst +ar3k/1020200/RamPatch.txt +ar3k/1020200/ar3kbdaddr.pst +ar3k/1020201/PS_ASIC.pst +ar3k/1020201/RamPatch.txt +ar3k/1020201coex/ramps_0x01020201_26_HighPriority.dfu +ar3k/30000/PS_ASIC.pst +ar3k/30000/RamPatch.txt +ar3k/30000/ar3kbdaddr.pst +ar3k/30101/PS_ASIC.pst +ar3k/30101/RamPatch.txt +ar3k/30101/ar3kbdaddr.pst +ar3k/30101coex/PS_ASIC.pst +ar3k/30101coex/PS_ASIC_aclHighPri.pst +ar3k/30101coex/PS_ASIC_aclLowPri.pst +ar3k/30101coex/RamPatch.txt +ar3k/30101coex/ar3kbdaddr.pst +ar3k/AthrBT_0x01020001.dfu +ar3k/AthrBT_0x01020200.dfu +ar3k/AthrBT_0x01020201.dfu +ar3k/AthrBT_0x11020000.dfu +ar3k/AthrBT_0x11020100.dfu +ar3k/AthrBT_0x31010000.dfu +ar3k/AthrBT_0x31010100.dfu +ar3k/AthrBT_0x41020000.dfu +ar3k/ramps_0x01020001_26.dfu +ar3k/ramps_0x01020200_26.dfu +ar3k/ramps_0x01020200_40.dfu +ar3k/ramps_0x01020201_26.dfu +ar3k/ramps_0x01020201_40.dfu +ar3k/ramps_0x11020000_40.dfu +ar3k/ramps_0x11020100_40.dfu +ar3k/ramps_0x31010000_40.dfu +ar3k/ramps_0x31010100_40.dfu +ar3k/ramps_0x41020000_40.dfu +ar5523.bin +ar7010.fw +ar7010_1_1.fw +ar9170-1.fw +ar9170-2.fw +ar9271.fw +as102_data1_st.hex +as102_data2_st.hex +ath10k/QCA4019/hw1.0/board-2.bin +ath10k/QCA4019/hw1.0/firmware-5.bin +ath10k/QCA4019/hw1.0/notice_ath10k_firmware-5.txt +ath10k/QCA6174/hw2.1/board-2.bin +ath10k/QCA6174/hw2.1/board.bin +ath10k/QCA6174/hw2.1/firmware-5.bin +ath10k/QCA6174/hw2.1/notice_ath10k_firmware-5.txt +ath10k/QCA6174/hw3.0/board-2.bin +ath10k/QCA6174/hw3.0/board.bin +ath10k/QCA6174/hw3.0/firmware-4.bin +ath10k/QCA6174/hw3.0/firmware-6.bin +ath10k/QCA6174/hw3.0/notice_ath10k_firmware-4.txt +ath10k/QCA6174/hw3.0/notice_ath10k_firmware-6.txt +ath10k/QCA9377/hw1.0/board-2.bin +ath10k/QCA9377/hw1.0/board.bin +ath10k/QCA9377/hw1.0/firmware-5.bin +ath10k/QCA9377/hw1.0/notice_ath10k_firmware-5.txt +ath10k/QCA9887/hw1.0/board.bin +ath10k/QCA9887/hw1.0/firmware-5.bin +ath10k/QCA9887/hw1.0/notice_ath10k_firmware-5.txt +ath10k/QCA9888/hw2.0/board-2.bin +ath10k/QCA9888/hw2.0/firmware-5.bin +ath10k/QCA9888/hw2.0/notice_ath10k_firmware-5.txt +ath10k/QCA988X/hw2.0/board.bin +ath10k/QCA988X/hw2.0/firmware-4.bin +ath10k/QCA988X/hw2.0/firmware-5.bin +ath10k/QCA988X/hw2.0/notice_ath10k_firmware-4.txt +ath10k/QCA988X/hw2.0/notice_ath10k_firmware-5.txt +ath10k/QCA9984/hw1.0/board-2.bin +ath10k/QCA9984/hw1.0/firmware-5.bin +ath10k/QCA9984/hw1.0/notice_ath10k_firmware-5.txt +ath10k/QCA99X0/hw2.0/board.bin +ath10k/QCA99X0/hw2.0/firmware-5.bin +ath10k/QCA99X0/hw2.0/notice_ath10k_firmware-5.txt +ath3k-1.fw +ath6k/AR6002/athwlan.bin.z77 +ath6k/AR6002/data.patch.hw2_0.bin +ath6k/AR6002/eeprom.bin +ath6k/AR6002/eeprom.data +ath6k/AR6003.1/hw2.1.1/athwlan.bin +ath6k/AR6003.1/hw2.1.1/bdata.SD31.bin +ath6k/AR6003.1/hw2.1.1/bdata.SD32.bin +ath6k/AR6003.1/hw2.1.1/bdata.WB31.bin +ath6k/AR6003.1/hw2.1.1/data.patch.bin +ath6k/AR6003.1/hw2.1.1/endpointping.bin +ath6k/AR6003.1/hw2.1.1/otp.bin +ath6k/AR6003/hw1.0/athwlan.bin.z77 +ath6k/AR6003/hw1.0/bdata.SD31.bin +ath6k/AR6003/hw1.0/bdata.SD32.bin +ath6k/AR6003/hw1.0/bdata.WB31.bin +ath6k/AR6003/hw1.0/data.patch.bin +ath6k/AR6003/hw1.0/otp.bin.z77 +ath6k/AR6003/hw2.0/athwlan.bin.z77 +ath6k/AR6003/hw2.0/bdata.SD31.bin +ath6k/AR6003/hw2.0/bdata.SD32.bin +ath6k/AR6003/hw2.0/bdata.WB31.bin +ath6k/AR6003/hw2.0/data.patch.bin +ath6k/AR6003/hw2.0/otp.bin.z77 +ath6k/AR6003/hw2.1.1/athwlan.bin +ath6k/AR6003/hw2.1.1/bdata.SD31.bin +ath6k/AR6003/hw2.1.1/bdata.SD32.bin +ath6k/AR6003/hw2.1.1/bdata.WB31.bin +ath6k/AR6003/hw2.1.1/data.patch.bin +ath6k/AR6003/hw2.1.1/endpointping.bin +ath6k/AR6003/hw2.1.1/fw-2.bin +ath6k/AR6003/hw2.1.1/fw-3.bin +ath6k/AR6003/hw2.1.1/otp.bin +ath6k/AR6004/hw1.2/bdata.bin +ath6k/AR6004/hw1.2/fw-2.bin +ath6k/AR6004/hw1.3/bdata.bin +ath6k/AR6004/hw1.3/fw-3.bin +ath9k_htc/htc_7010-1.4.0.fw +ath9k_htc/htc_9271-1.4.0.fw +atmel/wilc1000_ap_fw.bin +atmel/wilc1000_fw.bin +atmel/wilc1000_p2p_fw.bin +atmel/wilc1000_wifi_firmware.bin +atmsar11.fw +atusb/ChangeLog +atusb/atusb-0.2.dfu +atusb/atusb-0.3.dfu +atusb/rzusb-0.3.bin +av7110/Boot.S +av7110/Makefile +av7110/bootcode.bin +bnx2/bnx2-mips-06-4.6.16.fw +bnx2/bnx2-mips-06-5.0.0.j3.fw +bnx2/bnx2-mips-06-5.0.0.j6.fw +bnx2/bnx2-mips-06-6.0.15.fw +bnx2/bnx2-mips-06-6.2.1.fw +bnx2/bnx2-mips-06-6.2.3.fw +bnx2/bnx2-mips-09-4.6.17.fw +bnx2/bnx2-mips-09-5.0.0.j15.fw +bnx2/bnx2-mips-09-5.0.0.j3.fw +bnx2/bnx2-mips-09-5.0.0.j9.fw +bnx2/bnx2-mips-09-6.0.17.fw +bnx2/bnx2-mips-09-6.2.1.fw +bnx2/bnx2-mips-09-6.2.1a.fw +bnx2/bnx2-mips-09-6.2.1b.fw +bnx2/bnx2-rv2p-06-4.6.16.fw +bnx2/bnx2-rv2p-06-5.0.0.j3.fw +bnx2/bnx2-rv2p-06-6.0.15.fw +bnx2/bnx2-rv2p-09-4.6.15.fw +bnx2/bnx2-rv2p-09-5.0.0.j10.fw +bnx2/bnx2-rv2p-09-5.0.0.j3.fw +bnx2/bnx2-rv2p-09-6.0.17.fw +bnx2/bnx2-rv2p-09ax-5.0.0.j10.fw +bnx2/bnx2-rv2p-09ax-5.0.0.j3.fw +bnx2/bnx2-rv2p-09ax-6.0.17.fw +bnx2x/bnx2x-e1-6.0.34.0.fw +bnx2x/bnx2x-e1-6.2.5.0.fw +bnx2x/bnx2x-e1-6.2.9.0.fw +bnx2x/bnx2x-e1-7.0.20.0.fw +bnx2x/bnx2x-e1-7.0.23.0.fw +bnx2x/bnx2x-e1-7.0.29.0.fw +bnx2x/bnx2x-e1-7.10.51.0.fw +bnx2x/bnx2x-e1-7.12.30.0.fw +bnx2x/bnx2x-e1-7.13.1.0.fw +bnx2x/bnx2x-e1-7.2.16.0.fw +bnx2x/bnx2x-e1-7.2.51.0.fw +bnx2x/bnx2x-e1-7.8.17.0.fw +bnx2x/bnx2x-e1-7.8.19.0.fw +bnx2x/bnx2x-e1-7.8.2.0.fw +bnx2x/bnx2x-e1h-6.0.34.0.fw +bnx2x/bnx2x-e1h-6.2.5.0.fw +bnx2x/bnx2x-e1h-6.2.9.0.fw +bnx2x/bnx2x-e1h-7.0.20.0.fw +bnx2x/bnx2x-e1h-7.0.23.0.fw +bnx2x/bnx2x-e1h-7.0.29.0.fw +bnx2x/bnx2x-e1h-7.10.51.0.fw +bnx2x/bnx2x-e1h-7.12.30.0.fw +bnx2x/bnx2x-e1h-7.13.1.0.fw +bnx2x/bnx2x-e1h-7.2.16.0.fw +bnx2x/bnx2x-e1h-7.2.51.0.fw +bnx2x/bnx2x-e1h-7.8.17.0.fw +bnx2x/bnx2x-e1h-7.8.19.0.fw +bnx2x/bnx2x-e1h-7.8.2.0.fw +bnx2x/bnx2x-e2-6.0.34.0.fw +bnx2x/bnx2x-e2-6.2.5.0.fw +bnx2x/bnx2x-e2-6.2.9.0.fw +bnx2x/bnx2x-e2-7.0.20.0.fw +bnx2x/bnx2x-e2-7.0.23.0.fw +bnx2x/bnx2x-e2-7.0.29.0.fw +bnx2x/bnx2x-e2-7.10.51.0.fw +bnx2x/bnx2x-e2-7.12.30.0.fw +bnx2x/bnx2x-e2-7.13.1.0.fw +bnx2x/bnx2x-e2-7.2.16.0.fw +bnx2x/bnx2x-e2-7.2.51.0.fw +bnx2x/bnx2x-e2-7.8.17.0.fw +bnx2x/bnx2x-e2-7.8.19.0.fw +bnx2x/bnx2x-e2-7.8.2.0.fw +bnx2x-e1-4.8.53.0.fw +bnx2x-e1-5.2.13.0.fw +bnx2x-e1-5.2.7.0.fw +bnx2x-e1h-4.8.53.0.fw +bnx2x-e1h-5.2.13.0.fw +bnx2x-e1h-5.2.7.0.fw +brcm/bcm4329-fullmac-4.bin +brcm/bcm43xx-0.fw +brcm/bcm43xx_hdr-0.fw +brcm/brcmfmac43143-sdio.bin +brcm/brcmfmac43143.bin +brcm/brcmfmac43236b.bin +brcm/brcmfmac43241b0-sdio.bin +brcm/brcmfmac43241b4-sdio.bin +brcm/brcmfmac43241b5-sdio.bin +brcm/brcmfmac43242a.bin +brcm/brcmfmac4329-sdio.bin +brcm/brcmfmac4330-sdio.bin +brcm/brcmfmac4334-sdio.bin +brcm/brcmfmac43340-sdio.bin +brcm/brcmfmac4335-sdio.bin +brcm/brcmfmac43362-sdio.bin +brcm/brcmfmac4339-sdio.bin +brcm/brcmfmac43430-sdio.bin +brcm/brcmfmac43455-sdio.bin +brcm/brcmfmac4350-pcie.bin +brcm/brcmfmac4350c2-pcie.bin +brcm/brcmfmac4354-sdio.bin +brcm/brcmfmac4356-pcie.bin +brcm/brcmfmac4356-sdio.bin +brcm/brcmfmac43569.bin +brcm/brcmfmac43570-pcie.bin +brcm/brcmfmac4358-pcie.bin +brcm/brcmfmac43602-pcie.ap.bin +brcm/brcmfmac43602-pcie.bin +brcm/brcmfmac4366b-pcie.bin +brcm/brcmfmac4371-pcie.bin +carl9170-1.fw +carl9170fw/CMakeLists.txt +carl9170fw/COPYRIGHT +carl9170fw/GPL +carl9170fw/Kconfig +carl9170fw/README +carl9170fw/autogen.sh +carl9170fw/carlfw/CMakeLists.txt +carl9170fw/carlfw/Kconfig +carl9170fw/carlfw/carl9170.lds +carl9170fw/carlfw/include/cam.h +carl9170fw/carlfw/include/carl9170.h +carl9170fw/carlfw/include/cmd.h +carl9170fw/carlfw/include/config.h +carl9170fw/carlfw/include/dma.h +carl9170fw/carlfw/include/fwdsc.h +carl9170fw/carlfw/include/gpio.h +carl9170fw/carlfw/include/hostif.h +carl9170fw/carlfw/include/io.h +carl9170fw/carlfw/include/printf.h +carl9170fw/carlfw/include/rf.h +carl9170fw/carlfw/include/rom.h +carl9170fw/carlfw/include/timer.h +carl9170fw/carlfw/include/uart.h +carl9170fw/carlfw/include/usb.h +carl9170fw/carlfw/include/usb_fifo.h +carl9170fw/carlfw/include/wl.h +carl9170fw/carlfw/include/wol.h +carl9170fw/carlfw/src/ashlsi3.S +carl9170fw/carlfw/src/cam.c +carl9170fw/carlfw/src/cmd.c +carl9170fw/carlfw/src/dma.c +carl9170fw/carlfw/src/fw.c +carl9170fw/carlfw/src/gpio.c +carl9170fw/carlfw/src/hostif.c +carl9170fw/carlfw/src/main.c +carl9170fw/carlfw/src/memcpy.S +carl9170fw/carlfw/src/memset.S +carl9170fw/carlfw/src/printf.c +carl9170fw/carlfw/src/reboot.S +carl9170fw/carlfw/src/rf.c +carl9170fw/carlfw/src/uart.c +carl9170fw/carlfw/src/udivsi3_i4i-Os.S +carl9170fw/carlfw/src/wlan.c +carl9170fw/carlfw/src/wol.c +carl9170fw/carlfw/usb/Kconfig +carl9170fw/carlfw/usb/fifo.c +carl9170fw/carlfw/usb/main.c +carl9170fw/carlfw/usb/usb.c +carl9170fw/config/CMakeLists.txt +carl9170fw/config/conf.c +carl9170fw/config/confdata.c +carl9170fw/config/expr.c +carl9170fw/config/expr.h +carl9170fw/config/lkc.h +carl9170fw/config/lkc_proto.h +carl9170fw/config/menu.c +carl9170fw/config/symbol.c +carl9170fw/config/util.c +carl9170fw/config/zconf.gperf +carl9170fw/config/zconf.l +carl9170fw/config/zconf.y +carl9170fw/extra/FindGPERF.cmake +carl9170fw/extra/FindPackageHandleStandardArgs.cmake +carl9170fw/extra/FindUSB-1.0.cmake +carl9170fw/extra/GCCVersion.cmake +carl9170fw/extra/libusb-zeropacket.diff +carl9170fw/extra/sh-elf-linux.cmake +carl9170fw/genapi.sh +carl9170fw/include/linux/ch9.h +carl9170fw/include/linux/compiler.h +carl9170fw/include/linux/ieee80211.h +carl9170fw/include/linux/types.h +carl9170fw/include/shared/eeprom.h +carl9170fw/include/shared/fwcmd.h +carl9170fw/include/shared/fwdesc.h +carl9170fw/include/shared/hw.h +carl9170fw/include/shared/phy.h +carl9170fw/include/shared/version.h +carl9170fw/include/shared/wlan.h +carl9170fw/minifw/CMakeLists.txt +carl9170fw/minifw/Kconfig +carl9170fw/minifw/miniboot.S +carl9170fw/minifw/miniboot.lds +carl9170fw/toolchain/Makefile +carl9170fw/toolchain/SHA256SUMS +carl9170fw/tools/CMakeLists.txt +carl9170fw/tools/Kconfig +carl9170fw/tools/carlu/CMakeLists.txt +carl9170fw/tools/carlu/src/carlu.h +carl9170fw/tools/carlu/src/cmd.c +carl9170fw/tools/carlu/src/cmd.h +carl9170fw/tools/carlu/src/debug.c +carl9170fw/tools/carlu/src/debug.h +carl9170fw/tools/carlu/src/fw.c +carl9170fw/tools/carlu/src/main.c +carl9170fw/tools/carlu/src/rx.c +carl9170fw/tools/carlu/src/test.c +carl9170fw/tools/carlu/src/test.h +carl9170fw/tools/carlu/src/tx.c +carl9170fw/tools/carlu/src/usb.c +carl9170fw/tools/carlu/src/usb.h +carl9170fw/tools/include/frame.h +carl9170fw/tools/include/list.h +carl9170fw/tools/lib/CMakeLists.txt +carl9170fw/tools/lib/carlfw.c +carl9170fw/tools/lib/carlfw.h +carl9170fw/tools/src/CMakeLists.txt +carl9170fw/tools/src/checksum.c +carl9170fw/tools/src/eeprom_fix.c +carl9170fw/tools/src/fwinfo.c +carl9170fw/tools/src/miniboot.c +carl9170fw/tools/src/wol.c +cbfw-3.2.1.1.bin +cbfw-3.2.3.0.bin +cbfw-3.2.5.1.bin +check_whence.py +cis/3CCFEM556.cis +cis/3CXEM556.cis +cis/COMpad2.cis +cis/COMpad4.cis +cis/DP83903.cis +cis/LA-PCM.cis +cis/MT5634ZLX.cis +cis/Makefile +cis/NE2K.cis +cis/PCMLM28.cis +cis/PE-200.cis +cis/PE520.cis +cis/RS-COM-2P.cis +cis/SW_555_SER.cis +cis/SW_7xx_SER.cis +cis/SW_8xx_SER.cis +cis/src/3CCFEM556.cis +cis/src/3CXEM556.cis +cis/src/COMpad2.cis +cis/src/COMpad4.cis +cis/src/DP83903.cis +cis/src/LA-PCM.cis +cis/src/MT5634ZLX.cis +cis/src/NE2K.cis +cis/src/PCMLM28.cis +cis/src/PE-200.cis +cis/src/PE520.cis +cis/src/RS-COM-2P.cis +cis/src/tamarack.cis +cis/tamarack.cis +cmmb_vega_12mhz.inp +cmmb_venice_12mhz.inp +configure +cpia2/stv0672_vp4.bin +ct2fw-3.2.1.1.bin +ct2fw-3.2.3.0.bin +ct2fw-3.2.5.1.bin +ctefx.bin +ctfw-3.2.1.1.bin +ctfw-3.2.3.0.bin +ctfw-3.2.5.1.bin +ctspeq.bin +cxgb3/ael2005_opt_edc.bin +cxgb3/ael2005_twx_edc.bin +cxgb3/ael2020_twx_edc.bin +cxgb3/t3b_psram-1.1.0.bin +cxgb3/t3c_psram-1.1.0.bin +cxgb3/t3fw-7.0.0.bin +cxgb3/t3fw-7.1.0.bin +cxgb3/t3fw-7.10.0.bin +cxgb3/t3fw-7.12.0.bin +cxgb3/t3fw-7.4.0.bin +cxgb4/aq1202_fw.cld +cxgb4/bcm8483.bin +cxgb4/t4fw-1.14.4.0.bin +cxgb4/t4fw-1.15.37.0.bin +cxgb4/t4fw-1.16.45.0.bin +cxgb4/t4fw.bin +cxgb4/t5fw-1.14.4.0.bin +cxgb4/t5fw-1.15.37.0.bin +cxgb4/t5fw-1.16.45.0.bin +cxgb4/t5fw.bin +cxgb4/t6fw-1.16.45.0.bin +cxgb4/t6fw.bin +dabusb/bitstream.bin +dabusb/firmware.fw +dsp56k/Makefile +dsp56k/bootstrap.asm +dsp56k/bootstrap.bin +dsp56k/concat-bootstrap.pl +dvb-fe-xc4000-1.4.1.fw +dvb-fe-xc5000-1.6.114.fw +dvb-fe-xc5000c-4.1.30.7.fw +dvb-usb-dib0700-1.20.fw +dvb-usb-it9135-01.fw +dvb-usb-it9135-02.fw +dvb-usb-terratec-h5-drxk.fw +dvb_nova_12mhz.inp +dvb_nova_12mhz_b0.inp +e100/d101m_ucode.bin +e100/d101s_ucode.bin +e100/d102e_ucode.bin +edgeport/boot.fw +edgeport/boot2.fw +edgeport/down.fw +edgeport/down2.fw +edgeport/down3.bin +emi26/bitstream.fw +emi26/firmware.fw +emi26/loader.fw +emi62/bitstream.fw +emi62/loader.fw +emi62/midi.fw +emi62/spdif.fw +ene-ub6250/ms_init.bin +ene-ub6250/ms_rdwr.bin +ene-ub6250/msp_rdwr.bin +ene-ub6250/sd_init1.bin +ene-ub6250/sd_init2.bin +ene-ub6250/sd_rdwr.bin +ess/maestro3_assp_kernel.fw +ess/maestro3_assp_minisrc.fw +f2255usb.bin +go7007/go7007fw.bin +go7007/go7007tv.bin +go7007/lr192.fw +go7007/px-m402u.fw +go7007/px-tv402u.fw +go7007/s2250-1.fw +go7007/s2250-2.fw +go7007/wis-startrek.fw +hfi1_dc8051.fw +hfi1_fabric.fw +hfi1_pcie.fw +hfi1_sbus.fw +htc_7010.fw +htc_9271.fw +i2400m-fw-usb-1.4.sbcf +i2400m-fw-usb-1.5.sbcf +i6050-fw-usb-1.5.sbcf +i915/bxt_dmc_ver1.bin +i915/bxt_dmc_ver1_07.bin +i915/bxt_guc_ver8_7.bin +i915/bxt_huc_ver01_07_1398.bin +i915/kbl_dmc_ver1.bin +i915/kbl_dmc_ver1_01.bin +i915/kbl_guc_ver9_14.bin +i915/kbl_huc_ver02_00_1810.bin +i915/skl_dmc_ver1.bin +i915/skl_dmc_ver1_23.bin +i915/skl_dmc_ver1_26.bin +i915/skl_guc_ver1.bin +i915/skl_guc_ver4.bin +i915/skl_guc_ver6.bin +i915/skl_guc_ver6_1.bin +i915/skl_huc_ver01_07_1398.bin +imx/sdma/sdma-imx6q.bin +imx/sdma/sdma-imx7d.bin +intel/IntcSST2.bin +intel/dsp_fw_bxtn.bin +intel/dsp_fw_bxtn_v1118.bin +intel/dsp_fw_bxtn_v2010.bin +intel/dsp_fw_bxtn_v2219.bin +intel/dsp_fw_bxtn_v430.bin +intel/dsp_fw_bxtn_v702.bin +intel/dsp_fw_glk.bin +intel/dsp_fw_glk_v1814.bin +intel/dsp_fw_kbl.bin +intel/dsp_fw_kbl_v1037.bin +intel/dsp_fw_kbl_v2042.bin +intel/dsp_fw_kbl_v701.bin +intel/dsp_fw_release.bin +intel/dsp_fw_release_v827.bin +intel/dsp_fw_release_v869.bin +intel/dsp_fw_release_v896.bin +intel/dsp_fw_release_v927.bin +intel/dsp_fw_release_v948.bin +intel/dsp_fw_release_v951.bin +intel/dsp_fw_release_v958.bin +intel/dsp_fw_release_v969.bin +intel/fw_sst_0f28.bin +intel/fw_sst_0f28.bin-48kHz_i2s_master +intel/fw_sst_0f28_ssp0.bin +intel/fw_sst_22a8.bin +intel/ibt-11-5.ddc +intel/ibt-11-5.sfi +intel/ibt-12-16.ddc +intel/ibt-12-16.sfi +intel/ibt-hw-37.7.10-fw-1.0.1.2d.d.bseq +intel/ibt-hw-37.7.10-fw-1.0.2.3.d.bseq +intel/ibt-hw-37.7.10-fw-1.80.1.2d.d.bseq +intel/ibt-hw-37.7.10-fw-1.80.2.3.d.bseq +intel/ibt-hw-37.7.bseq +intel/ibt-hw-37.8.10-fw-1.10.2.27.d.bseq +intel/ibt-hw-37.8.10-fw-1.10.3.11.e.bseq +intel/ibt-hw-37.8.10-fw-22.50.19.14.f.bseq +intel/ibt-hw-37.8.bseq +intelliport2.bin +isci/Makefile +isci/README +isci/create_fw.c +isci/create_fw.h +isci/isci_firmware.bin +isci/probe_roms.h +isdbt_nova_12mhz.inp +isdbt_nova_12mhz_b0.inp +isdbt_rio.inp +iwlwifi-100-5.ucode +iwlwifi-1000-3.ucode +iwlwifi-1000-5.ucode +iwlwifi-105-6.ucode +iwlwifi-135-6.ucode +iwlwifi-2000-6.ucode +iwlwifi-2030-6.ucode +iwlwifi-3160-10.ucode +iwlwifi-3160-12.ucode +iwlwifi-3160-13.ucode +iwlwifi-3160-16.ucode +iwlwifi-3160-17.ucode +iwlwifi-3160-7.ucode +iwlwifi-3160-8.ucode +iwlwifi-3160-9.ucode +iwlwifi-3168-21.ucode +iwlwifi-3168-22.ucode +iwlwifi-3168-27.ucode +iwlwifi-3945-2.ucode +iwlwifi-4965-2.ucode +iwlwifi-5000-1.ucode +iwlwifi-5000-2.ucode +iwlwifi-5000-5.ucode +iwlwifi-5150-2.ucode +iwlwifi-6000-4.ucode +iwlwifi-6000g2a-5.ucode +iwlwifi-6000g2a-6.ucode +iwlwifi-6000g2b-5.ucode +iwlwifi-6000g2b-6.ucode +iwlwifi-6050-4.ucode +iwlwifi-6050-5.ucode +iwlwifi-7260-10.ucode +iwlwifi-7260-12.ucode +iwlwifi-7260-13.ucode +iwlwifi-7260-16.ucode +iwlwifi-7260-17.ucode +iwlwifi-7260-7.ucode +iwlwifi-7260-8.ucode +iwlwifi-7260-9.ucode +iwlwifi-7265-10.ucode +iwlwifi-7265-12.ucode +iwlwifi-7265-13.ucode +iwlwifi-7265-16.ucode +iwlwifi-7265-17.ucode +iwlwifi-7265-8.ucode +iwlwifi-7265-9.ucode +iwlwifi-7265D-10.ucode +iwlwifi-7265D-12.ucode +iwlwifi-7265D-13.ucode +iwlwifi-7265D-16.ucode +iwlwifi-7265D-17.ucode +iwlwifi-7265D-21.ucode +iwlwifi-7265D-22.ucode +iwlwifi-7265D-27.ucode +iwlwifi-8000C-13.ucode +iwlwifi-8000C-16.ucode +iwlwifi-8000C-21.ucode +iwlwifi-8000C-22.ucode +iwlwifi-8000C-27.ucode +iwlwifi-8265-21.ucode +iwlwifi-8265-22.ucode +iwlwifi-8265-27.ucode +kaweth/new_code.bin +kaweth/new_code_fix.bin +kaweth/trigger_code.bin +kaweth/trigger_code_fix.bin +keyspan/mpr.fw +keyspan/usa18x.fw +keyspan/usa19.fw +keyspan/usa19qi.fw +keyspan/usa19qw.fw +keyspan/usa19w.fw +keyspan/usa28.fw +keyspan/usa28x.fw +keyspan/usa28xa.fw +keyspan/usa28xb.fw +keyspan/usa49w.fw +keyspan/usa49wlc.fw +keyspan_pda/Makefile +keyspan_pda/keyspan_pda.S +keyspan_pda/keyspan_pda.fw +keyspan_pda/xircom_pgs.S +keyspan_pda/xircom_pgs.fw +korg/k1212.dsp +lbtf_usb.bin +lgs8g75.fw +libertas/cf8381.bin +libertas/cf8381_helper.bin +libertas/cf8385.bin +libertas/cf8385_helper.bin +libertas/gspi8682.bin +libertas/gspi8682_helper.bin +libertas/gspi8686_v9.bin +libertas/gspi8686_v9_helper.bin +libertas/gspi8688.bin +libertas/gspi8688_helper.bin +libertas/lbtf_sdio.bin +libertas/sd8385.bin +libertas/sd8385_helper.bin +libertas/sd8682.bin +libertas/sd8682_helper.bin +libertas/sd8686_v8.bin +libertas/sd8686_v8_helper.bin +libertas/sd8686_v9.bin +libertas/sd8686_v9_helper.bin +libertas/usb8388_olpc.bin +libertas/usb8388_v5.bin +libertas/usb8388_v9.bin +libertas/usb8682.bin +libertas/sd8688_helper.bin +libertas/sd8688.bin +liquidio/lio_210nv_nic.bin +liquidio/lio_210sv_nic.bin +liquidio/lio_23xx_nic.bin +liquidio/lio_410nv_nic.bin +matrox/g200_warp.fw +matrox/g400_warp.fw +mellanox/mlxsw_spectrum-13.1420.122.mfa2 +moxa/moxa-1110.fw +moxa/moxa-1130.fw +moxa/moxa-1131.fw +moxa/moxa-1150.fw +moxa/moxa-1151.fw +moxa/moxa-1250.fw +moxa/moxa-1251.fw +moxa/moxa-1410.fw +moxa/moxa-1450.fw +moxa/moxa-1451.fw +moxa/moxa-1613.fw +moxa/moxa-1618.fw +moxa/moxa-1653.fw +moxa/moxa-1658.fw +mrvl/pcie8897_uapsta.bin +mrvl/pcie8997_wlan_v4.bin +mrvl/pcieuart8997_combo_v4.bin +mrvl/pcieusb8997_combo_v4.bin +mrvl/sd8688.bin +mrvl/sd8688_helper.bin +mrvl/sd8787_uapsta.bin +mrvl/sd8797_uapsta.bin +mrvl/sd8801_uapsta.bin +mrvl/sd8887_uapsta.bin +mrvl/sd8897_uapsta.bin +mrvl/usb8766_uapsta.bin +mrvl/usb8797_uapsta.bin +mrvl/usb8801_uapsta.bin +mrvl/usb8897_uapsta.bin +mrvl/usbusb8997_combo_v4.bin +mt7601u.bin +mt7650.bin +mt7662.bin +mt7662_rom_patch.bin +mts_cdma.fw +mts_edge.fw +mts_gsm.fw +mts_mt9234mu.fw +mts_mt9234zba.fw +mwl8k/fmimage_8366.fw +mwl8k/fmimage_8366_ap-1.fw +mwl8k/fmimage_8366_ap-2.fw +mwl8k/fmimage_8366_ap-3.fw +mwl8k/fmimage_8687.fw +mwl8k/fmimage_8764_ap-1.fw +mwl8k/helper_8366.fw +mwl8k/helper_8687.fw +mwlwifi/88W8864.bin +mwlwifi/88W8897.bin +myri10ge_eth_big_z8e.dat +myri10ge_eth_z8e.dat +myri10ge_ethp_big_z8e.dat +myri10ge_ethp_z8e.dat +myri10ge_rss_eth_big_z8e.dat +myri10ge_rss_eth_z8e.dat +myri10ge_rss_ethp_big_z8e.dat +myri10ge_rss_ethp_z8e.dat +myricom/lanai.bin +netronome/nic_AMDA0081-0001_1x40.nffw +netronome/nic_AMDA0081-0001_4x10.nffw +netronome/nic_AMDA0096-0001_2x10.nffw +netronome/nic_AMDA0097-0001_2x40.nffw +netronome/nic_AMDA0097-0001_4x10_1x40.nffw +netronome/nic_AMDA0097-0001_8x10.nffw +netronome/nic_AMDA0099-0001_2x10.nffw +netronome/nic_AMDA0099-0001_2x25.nffw +nvidia/gk20a/fecs_data.bin +nvidia/gk20a/fecs_inst.bin +nvidia/gk20a/gpccs_data.bin +nvidia/gk20a/gpccs_inst.bin +nvidia/gk20a/sw_bundle_init.bin +nvidia/gk20a/sw_ctx.bin +nvidia/gk20a/sw_method_init.bin +nvidia/gk20a/sw_nonctx.bin +nvidia/gm200/acr/bl.bin +nvidia/gm200/acr/ucode_load.bin +nvidia/gm200/acr/ucode_unload.bin +nvidia/gm200/gr/fecs_bl.bin +nvidia/gm200/gr/fecs_data.bin +nvidia/gm200/gr/fecs_inst.bin +nvidia/gm200/gr/fecs_sig.bin +nvidia/gm200/gr/gpccs_bl.bin +nvidia/gm200/gr/gpccs_data.bin +nvidia/gm200/gr/gpccs_inst.bin +nvidia/gm200/gr/gpccs_sig.bin +nvidia/gm200/gr/sw_bundle_init.bin +nvidia/gm200/gr/sw_ctx.bin +nvidia/gm200/gr/sw_method_init.bin +nvidia/gm200/gr/sw_nonctx.bin +nvidia/gm204/acr/ucode_unload.bin +nvidia/gm204/acr/ucode_load.bin +nvidia/gm204/acr/bl.bin +nvidia/gm204/gr/fecs_data.bin +nvidia/gm204/gr/fecs_sig.bin +nvidia/gm204/gr/gpccs_data.bin +nvidia/gm204/gr/gpccs_sig.bin +nvidia/gm204/gr/sw_nonctx.bin +nvidia/gm204/gr/sw_method_init.bin +nvidia/gm204/gr/sw_ctx.bin +nvidia/gm204/gr/sw_bundle_init.bin +nvidia/gm204/gr/gpccs_inst.bin +nvidia/gm204/gr/gpccs_bl.bin +nvidia/gm204/gr/fecs_inst.bin +nvidia/gm204/gr/fecs_bl.bin +nvidia/gm206/acr/ucode_load.bin +nvidia/gm206/acr/ucode_unload.bin +nvidia/gm206/acr/bl.bin +nvidia/gm206/gr/fecs_data.bin +nvidia/gm206/gr/fecs_sig.bin +nvidia/gm206/gr/gpccs_data.bin +nvidia/gm206/gr/gpccs_sig.bin +nvidia/gm206/gr/sw_nonctx.bin +nvidia/gm206/gr/sw_method_init.bin +nvidia/gm206/gr/sw_ctx.bin +nvidia/gm206/gr/sw_bundle_init.bin +nvidia/gm206/gr/gpccs_inst.bin +nvidia/gm206/gr/gpccs_bl.bin +nvidia/gm206/gr/fecs_inst.bin +nvidia/gm206/gr/fecs_bl.bin +nvidia/gm20b/acr/bl.bin +nvidia/gm20b/acr/ucode_load.bin +nvidia/gm20b/gr/fecs_bl.bin +nvidia/gm20b/gr/fecs_data.bin +nvidia/gm20b/gr/fecs_inst.bin +nvidia/gm20b/gr/fecs_sig.bin +nvidia/gm20b/gr/gpccs_data.bin +nvidia/gm20b/gr/gpccs_inst.bin +nvidia/gm20b/gr/sw_bundle_init.bin +nvidia/gm20b/gr/sw_ctx.bin +nvidia/gm20b/gr/sw_nonctx.bin +nvidia/gm20b/gr/sw_method_init.bin +nvidia/gm20b/pmu/desc.bin +nvidia/gm20b/pmu/image.bin +nvidia/gm20b/pmu/sig.bin +nvidia/gp100/acr/bl.bin +nvidia/gp100/acr/ucode_load.bin +nvidia/gp100/acr/ucode_unload.bin +nvidia/gp100/gr/fecs_data.bin +nvidia/gp100/gr/fecs_inst.bin +nvidia/gp100/gr/fecs_sig.bin +nvidia/gp100/gr/gpccs_data.bin +nvidia/gp100/gr/gpccs_inst.bin +nvidia/gp100/gr/gpccs_sig.bin +nvidia/gp100/gr/sw_bundle_init.bin +nvidia/gp100/gr/sw_ctx.bin +nvidia/gp100/gr/sw_method_init.bin +nvidia/gp100/gr/sw_nonctx.bin +nvidia/gp100/gr/gpccs_bl.bin +nvidia/gp100/gr/fecs_bl.bin +nvidia/gp102/acr/bl.bin +nvidia/gp102/acr/ucode_load.bin +nvidia/gp102/acr/ucode_unload.bin +nvidia/gp102/acr/unload_bl.bin +nvidia/gp102/gr/fecs_data.bin +nvidia/gp102/gr/fecs_inst.bin +nvidia/gp102/gr/fecs_sig.bin +nvidia/gp102/gr/gpccs_data.bin +nvidia/gp102/gr/gpccs_inst.bin +nvidia/gp102/gr/gpccs_sig.bin +nvidia/gp102/gr/sw_bundle_init.bin +nvidia/gp102/gr/sw_ctx.bin +nvidia/gp102/gr/sw_method_init.bin +nvidia/gp102/gr/sw_nonctx.bin +nvidia/gp102/gr/gpccs_bl.bin +nvidia/gp102/gr/fecs_bl.bin +nvidia/gp102/nvdec/scrubber.bin +nvidia/gp102/sec2/desc.bin +nvidia/gp102/sec2/image.bin +nvidia/gp102/sec2/sig.bin +nvidia/gp104/acr/unload_bl.bin +nvidia/gp104/acr/ucode_unload.bin +nvidia/gp104/acr/ucode_load.bin +nvidia/gp104/acr/bl.bin +nvidia/gp104/gr/fecs_data.bin +nvidia/gp104/gr/fecs_inst.bin +nvidia/gp104/gr/fecs_sig.bin +nvidia/gp104/gr/gpccs_data.bin +nvidia/gp104/gr/gpccs_inst.bin +nvidia/gp104/gr/gpccs_sig.bin +nvidia/gp104/gr/sw_nonctx.bin +nvidia/gp104/gr/sw_method_init.bin +nvidia/gp104/gr/sw_ctx.bin +nvidia/gp104/gr/sw_bundle_init.bin +nvidia/gp104/gr/gpccs_bl.bin +nvidia/gp104/gr/fecs_bl.bin +nvidia/gp104/nvdec/scrubber.bin +nvidia/gp104/sec2/sig.bin +nvidia/gp104/sec2/image.bin +nvidia/gp104/sec2/desc.bin +nvidia/gp106/acr/unload_bl.bin +nvidia/gp106/acr/ucode_unload.bin +nvidia/gp106/acr/ucode_load.bin +nvidia/gp106/acr/bl.bin +nvidia/gp106/gr/fecs_data.bin +nvidia/gp106/gr/fecs_sig.bin +nvidia/gp106/gr/gpccs_data.bin +nvidia/gp106/gr/gpccs_sig.bin +nvidia/gp106/gr/sw_nonctx.bin +nvidia/gp106/gr/sw_method_init.bin +nvidia/gp106/gr/sw_ctx.bin +nvidia/gp106/gr/sw_bundle_init.bin +nvidia/gp106/gr/gpccs_inst.bin +nvidia/gp106/gr/gpccs_bl.bin +nvidia/gp106/gr/fecs_inst.bin +nvidia/gp106/gr/fecs_bl.bin +nvidia/gp106/nvdec/scrubber.bin +nvidia/gp106/sec2/sig.bin +nvidia/gp106/sec2/image.bin +nvidia/gp106/sec2/desc.bin +nvidia/gp107/acr/unload_bl.bin +nvidia/gp107/acr/ucode_unload.bin +nvidia/gp107/acr/ucode_load.bin +nvidia/gp107/acr/bl.bin +nvidia/gp107/gr/fecs_bl.bin +nvidia/gp107/gr/fecs_data.bin +nvidia/gp107/gr/fecs_inst.bin +nvidia/gp107/gr/fecs_sig.bin +nvidia/gp107/gr/gpccs_bl.bin +nvidia/gp107/gr/gpccs_data.bin +nvidia/gp107/gr/gpccs_inst.bin +nvidia/gp107/gr/gpccs_sig.bin +nvidia/gp107/gr/sw_ctx.bin +nvidia/gp107/gr/sw_nonctx.bin +nvidia/gp107/gr/sw_method_init.bin +nvidia/gp107/gr/sw_bundle_init.bin +nvidia/gp107/nvdec/scrubber.bin +nvidia/gp107/sec2/sig.bin +nvidia/gp107/sec2/image.bin +nvidia/gp107/sec2/desc.bin +nvidia/gp10b/acr/bl.bin +nvidia/gp10b/acr/ucode_load.bin +nvidia/gp10b/gr/fecs_bl.bin +nvidia/gp10b/gr/fecs_data.bin +nvidia/gp10b/gr/fecs_inst.bin +nvidia/gp10b/gr/fecs_sig.bin +nvidia/gp10b/gr/gpccs_bl.bin +nvidia/gp10b/gr/gpccs_data.bin +nvidia/gp10b/gr/gpccs_inst.bin +nvidia/gp10b/gr/gpccs_sig.bin +nvidia/gp10b/gr/sw_bundle_init.bin +nvidia/gp10b/gr/sw_ctx.bin +nvidia/gp10b/gr/sw_method_init.bin +nvidia/gp10b/gr/sw_nonctx.bin +nvidia/gp10b/pmu/desc.bin +nvidia/gp10b/pmu/image.bin +nvidia/gp10b/pmu/sig.bin +nvidia/tegra124/vic03_ucode.bin +nvidia/tegra124/xusb.bin +nvidia/tegra186/vic04_ucode.bin +nvidia/tegra210/vic04_ucode.bin +nvidia/tegra210/xusb.bin +ositech/Xilinx7OD.bin +phanfw.bin +qat_895xcc.bin +qat_895xcc_mmp.bin +qat_c3xxx.bin +qat_c3xxx_mmp.bin +qat_c62x.bin +qat_c62x_mmp.bin +qat_mmp.bin +qca/NOTICE.txt +qca/nvm_00130300.bin +qca/nvm_00130302.bin +qca/nvm_usb_00000200.bin +qca/nvm_usb_00000201.bin +qca/nvm_usb_00000300.bin +qca/nvm_usb_00000302.bin +qca/rampatch_00130300.bin +qca/rampatch_00130302.bin +qca/rampatch_usb_00000200.bin +qca/rampatch_usb_00000201.bin +qca/rampatch_usb_00000300.bin +qca/rampatch_usb_00000302.bin +qcom/NOTICE.txt +qcom/venus-1.8/venus.b00 +qcom/venus-1.8/venus.b01 +qcom/venus-1.8/venus.b02 +qcom/venus-1.8/venus.b03 +qcom/venus-1.8/venus.b04 +qcom/venus-1.8/venus.mdt +qed/qed_init_values_zipped-8.10.10.0.bin +qed/qed_init_values_zipped-8.10.5.0.bin +qed/qed_init_values_zipped-8.15.3.0.bin +qed/qed_init_values_zipped-8.20.0.0.bin +qed/qed_init_values_zipped-8.4.2.0.bin +qed/qed_init_values_zipped-8.7.3.0.bin +ql2100_fw.bin +ql2200_fw.bin +ql2300_fw.bin +ql2322_fw.bin +ql2400_fw.bin +ql2500_fw.bin +qlogic/1040.bin +qlogic/12160.bin +qlogic/1280.bin +qlogic/isp1000.bin +qlogic/sd7220.fw +r128/r128_cce.bin +r8a779x_usb3_v1.dlmem +r8a779x_usb3_v2.dlmem +r8a779x_usb3_v3.dlmem +radeon/ARUBA_me.bin +radeon/ARUBA_pfp.bin +radeon/ARUBA_rlc.bin +radeon/BARTS_mc.bin +radeon/BARTS_me.bin +radeon/BARTS_pfp.bin +radeon/BARTS_smc.bin +radeon/BONAIRE_ce.bin +radeon/BONAIRE_mc.bin +radeon/BONAIRE_mc2.bin +radeon/BONAIRE_me.bin +radeon/BONAIRE_mec.bin +radeon/BONAIRE_pfp.bin +radeon/BONAIRE_rlc.bin +radeon/BONAIRE_sdma.bin +radeon/BONAIRE_smc.bin +radeon/BONAIRE_uvd.bin +radeon/BONAIRE_vce.bin +radeon/BTC_rlc.bin +radeon/CAICOS_mc.bin +radeon/CAICOS_me.bin +radeon/CAICOS_pfp.bin +radeon/CAICOS_smc.bin +radeon/CAYMAN_mc.bin +radeon/CAYMAN_me.bin +radeon/CAYMAN_pfp.bin +radeon/CAYMAN_rlc.bin +radeon/CAYMAN_smc.bin +radeon/CEDAR_me.bin +radeon/CEDAR_pfp.bin +radeon/CEDAR_rlc.bin +radeon/CEDAR_smc.bin +radeon/CYPRESS_me.bin +radeon/CYPRESS_pfp.bin +radeon/CYPRESS_rlc.bin +radeon/CYPRESS_smc.bin +radeon/CYPRESS_uvd.bin +radeon/HAINAN_ce.bin +radeon/HAINAN_mc.bin +radeon/HAINAN_mc2.bin +radeon/HAINAN_me.bin +radeon/HAINAN_pfp.bin +radeon/HAINAN_rlc.bin +radeon/HAINAN_smc.bin +radeon/HAWAII_ce.bin +radeon/HAWAII_mc.bin +radeon/HAWAII_mc2.bin +radeon/HAWAII_me.bin +radeon/HAWAII_mec.bin +radeon/HAWAII_pfp.bin +radeon/HAWAII_rlc.bin +radeon/HAWAII_sdma.bin +radeon/HAWAII_smc.bin +radeon/JUNIPER_me.bin +radeon/JUNIPER_pfp.bin +radeon/JUNIPER_rlc.bin +radeon/JUNIPER_smc.bin +radeon/KABINI_ce.bin +radeon/KABINI_me.bin +radeon/KABINI_mec.bin +radeon/KABINI_pfp.bin +radeon/KABINI_rlc.bin +radeon/KABINI_sdma.bin +radeon/KAVERI_ce.bin +radeon/KAVERI_me.bin +radeon/KAVERI_mec.bin +radeon/KAVERI_pfp.bin +radeon/KAVERI_rlc.bin +radeon/KAVERI_sdma.bin +radeon/MULLINS_ce.bin +radeon/MULLINS_me.bin +radeon/MULLINS_mec.bin +radeon/MULLINS_pfp.bin +radeon/MULLINS_rlc.bin +radeon/MULLINS_sdma.bin +radeon/OLAND_ce.bin +radeon/OLAND_mc.bin +radeon/OLAND_mc2.bin +radeon/OLAND_me.bin +radeon/OLAND_pfp.bin +radeon/OLAND_rlc.bin +radeon/OLAND_smc.bin +radeon/PALM_me.bin +radeon/PALM_pfp.bin +radeon/PITCAIRN_ce.bin +radeon/PITCAIRN_mc.bin +radeon/PITCAIRN_mc2.bin +radeon/PITCAIRN_me.bin +radeon/PITCAIRN_pfp.bin +radeon/PITCAIRN_rlc.bin +radeon/PITCAIRN_smc.bin +radeon/R100_cp.bin +radeon/R200_cp.bin +radeon/R300_cp.bin +radeon/R420_cp.bin +radeon/R520_cp.bin +radeon/R600_me.bin +radeon/R600_pfp.bin +radeon/R600_rlc.bin +radeon/R600_uvd.bin +radeon/R700_rlc.bin +radeon/REDWOOD_me.bin +radeon/REDWOOD_pfp.bin +radeon/REDWOOD_rlc.bin +radeon/REDWOOD_smc.bin +radeon/RS600_cp.bin +radeon/RS690_cp.bin +radeon/RS780_me.bin +radeon/RS780_pfp.bin +radeon/RS780_uvd.bin +radeon/RV610_me.bin +radeon/RV610_pfp.bin +radeon/RV620_me.bin +radeon/RV620_pfp.bin +radeon/RV630_me.bin +radeon/RV630_pfp.bin +radeon/RV635_me.bin +radeon/RV635_pfp.bin +radeon/RV670_me.bin +radeon/RV670_pfp.bin +radeon/RV710_me.bin +radeon/RV710_pfp.bin +radeon/RV710_smc.bin +radeon/RV710_uvd.bin +radeon/RV730_me.bin +radeon/RV730_pfp.bin +radeon/RV730_smc.bin +radeon/RV740_smc.bin +radeon/RV770_me.bin +radeon/RV770_pfp.bin +radeon/RV770_smc.bin +radeon/RV770_uvd.bin +radeon/SUMO2_me.bin +radeon/SUMO2_pfp.bin +radeon/SUMO_me.bin +radeon/SUMO_pfp.bin +radeon/SUMO_rlc.bin +radeon/SUMO_uvd.bin +radeon/TAHITI_ce.bin +radeon/TAHITI_mc.bin +radeon/TAHITI_mc2.bin +radeon/TAHITI_me.bin +radeon/TAHITI_pfp.bin +radeon/TAHITI_rlc.bin +radeon/TAHITI_smc.bin +radeon/TAHITI_uvd.bin +radeon/TAHITI_vce.bin +radeon/TURKS_mc.bin +radeon/TURKS_me.bin +radeon/TURKS_pfp.bin +radeon/TURKS_smc.bin +radeon/VERDE_ce.bin +radeon/VERDE_mc.bin +radeon/VERDE_mc2.bin +radeon/VERDE_me.bin +radeon/VERDE_pfp.bin +radeon/VERDE_rlc.bin +radeon/VERDE_smc.bin +radeon/banks_k_2_smc.bin +radeon/bonaire_ce.bin +radeon/bonaire_k_smc.bin +radeon/bonaire_mc.bin +radeon/bonaire_me.bin +radeon/bonaire_mec.bin +radeon/bonaire_pfp.bin +radeon/bonaire_rlc.bin +radeon/bonaire_sdma.bin +radeon/bonaire_sdma1.bin +radeon/bonaire_smc.bin +radeon/bonaire_uvd.bin +radeon/bonaire_vce.bin +radeon/hainan_ce.bin +radeon/hainan_k_smc.bin +radeon/hainan_mc.bin +radeon/hainan_me.bin +radeon/hainan_pfp.bin +radeon/hainan_rlc.bin +radeon/hainan_smc.bin +radeon/hawaii_ce.bin +radeon/hawaii_k_smc.bin +radeon/hawaii_mc.bin +radeon/hawaii_me.bin +radeon/hawaii_mec.bin +radeon/hawaii_pfp.bin +radeon/hawaii_rlc.bin +radeon/hawaii_sdma.bin +radeon/hawaii_sdma1.bin +radeon/hawaii_smc.bin +radeon/hawaii_uvd.bin +radeon/hawaii_vce.bin +radeon/kabini_ce.bin +radeon/kabini_me.bin +radeon/kabini_mec.bin +radeon/kabini_pfp.bin +radeon/kabini_rlc.bin +radeon/kabini_sdma.bin +radeon/kabini_sdma1.bin +radeon/kabini_uvd.bin +radeon/kabini_vce.bin +radeon/kaveri_ce.bin +radeon/kaveri_me.bin +radeon/kaveri_mec.bin +radeon/kaveri_mec2.bin +radeon/kaveri_pfp.bin +radeon/kaveri_rlc.bin +radeon/kaveri_sdma.bin +radeon/kaveri_sdma1.bin +radeon/kaveri_uvd.bin +radeon/kaveri_vce.bin +radeon/mullins_ce.bin +radeon/mullins_me.bin +radeon/mullins_mec.bin +radeon/mullins_pfp.bin +radeon/mullins_rlc.bin +radeon/mullins_sdma.bin +radeon/mullins_sdma1.bin +radeon/mullins_uvd.bin +radeon/mullins_vce.bin +radeon/oland_ce.bin +radeon/oland_k_smc.bin +radeon/oland_mc.bin +radeon/oland_me.bin +radeon/oland_pfp.bin +radeon/oland_rlc.bin +radeon/oland_smc.bin +radeon/pitcairn_ce.bin +radeon/pitcairn_k_smc.bin +radeon/pitcairn_mc.bin +radeon/pitcairn_me.bin +radeon/pitcairn_pfp.bin +radeon/pitcairn_rlc.bin +radeon/pitcairn_smc.bin +radeon/si58_mc.bin +radeon/tahiti_ce.bin +radeon/tahiti_k_smc.bin +radeon/tahiti_mc.bin +radeon/tahiti_me.bin +radeon/tahiti_pfp.bin +radeon/tahiti_rlc.bin +radeon/tahiti_smc.bin +radeon/verde_ce.bin +radeon/verde_k_smc.bin +radeon/verde_mc.bin +radeon/verde_me.bin +radeon/verde_pfp.bin +radeon/verde_rlc.bin +radeon/verde_smc.bin +rockchip/dptx.bin +rp2.fw +rsi/rs9113_wlan_qspi.rps +rsi_91x.fw +rt2561.bin +rt2561s.bin +rt2661.bin +rt2860.bin +rt2870.bin +rt3070.bin +rt3071.bin +rt3090.bin +rt3290.bin +rt73.bin +rtl_bt/rtl8192ee_fw.bin +rtl_bt/rtl8192eu_fw.bin +rtl_bt/rtl8723a_fw.bin +rtl_bt/rtl8723b_fw.bin +rtl_bt/rtl8761a_fw.bin +rtl_bt/rtl8812ae_fw.bin +rtl_bt/rtl8821a_fw.bin +rtl_bt/rtl8822b_config.bin +rtl_bt/rtl8822b_fw.bin +rtl_nic/rtl8105e-1.fw +rtl_nic/rtl8106e-1.fw +rtl_nic/rtl8106e-2.fw +rtl_nic/rtl8107e-1.fw +rtl_nic/rtl8107e-2.fw +rtl_nic/rtl8168d-1.fw +rtl_nic/rtl8168d-2.fw +rtl_nic/rtl8168e-1.fw +rtl_nic/rtl8168e-2.fw +rtl_nic/rtl8168e-3.fw +rtl_nic/rtl8168f-1.fw +rtl_nic/rtl8168f-2.fw +rtl_nic/rtl8168g-1.fw +rtl_nic/rtl8168g-2.fw +rtl_nic/rtl8168g-3.fw +rtl_nic/rtl8168h-1.fw +rtl_nic/rtl8168h-2.fw +rtl_nic/rtl8402-1.fw +rtl_nic/rtl8411-1.fw +rtl_nic/rtl8411-2.fw +rtlwifi/rtl8188efw.bin +rtlwifi/rtl8188eufw.bin +rtlwifi/rtl8192cfw.bin +rtlwifi/rtl8192cfwU.bin +rtlwifi/rtl8192cfwU_B.bin +rtlwifi/rtl8192cufw.bin +rtlwifi/rtl8192cufw_A.bin +rtlwifi/rtl8192cufw_B.bin +rtlwifi/rtl8192cufw_TMSC.bin +rtlwifi/rtl8192defw.bin +rtlwifi/rtl8192eefw.bin +rtlwifi/rtl8192eu_ap_wowlan.bin +rtlwifi/rtl8192eu_nic.bin +rtlwifi/rtl8192eu_wowlan.bin +rtlwifi/rtl8192sefw.bin +rtlwifi/rtl8712u.bin +rtlwifi/rtl8723aufw_A.bin +rtlwifi/rtl8723aufw_B.bin +rtlwifi/rtl8723aufw_B_NoBT.bin +rtlwifi/rtl8723befw.bin +rtlwifi/rtl8723befw_36.bin +rtlwifi/rtl8723bs_ap_wowlan.bin +rtlwifi/rtl8723bs_bt.bin +rtlwifi/rtl8723bs_nic.bin +rtlwifi/rtl8723bs_wowlan.bin +rtlwifi/rtl8723bu_ap_wowlan.bin +rtlwifi/rtl8723bu_nic.bin +rtlwifi/rtl8723bu_wowlan.bin +rtlwifi/rtl8723fw.bin +rtlwifi/rtl8723fw_B.bin +rtlwifi/rtl8821aefw.bin +rtlwifi/rtl8821aefw_29.bin +rtlwifi/rtl8821aefw_wowlan.bin +s2250.fw +s2250_loader.fw +s5p-mfc-v6-v2.fw +s5p-mfc-v6.fw +s5p-mfc-v7.fw +s5p-mfc-v8.fw +s5p-mfc.fw +sb16/alaw_main.csp +sb16/ima_adpcm_capture.csp +sb16/ima_adpcm_init.csp +sb16/ima_adpcm_playback.csp +sb16/mulaw_main.csp +sdd_sagrad_1091_1098.bin +slicoss/gbdownload.sys +slicoss/gbrcvucode.sys +slicoss/oasisdbgdownload.sys +slicoss/oasisdownload.sys +slicoss/oasisrcvucode.sys +sms1xxx-hcw-55xxx-dvbt-02.fw +sms1xxx-hcw-55xxx-isdbt-02.fw +sms1xxx-nova-a-dvbt-01.fw +sms1xxx-nova-b-dvbt-01.fw +sms1xxx-stellar-dvbt-01.fw +sun/cassini.bin +sxg/saharadbgdownloadB.sys +sxg/saharadownloadB.sys +tdmb_nova_12mhz.inp +tehuti/bdx.bin +ti-connectivity/TIInit_7.2.31.bts +ti-connectivity/wl1251-fw.bin +ti-connectivity/wl1251-nvs.bin +ti-connectivity/wl1271-fw-2.bin +ti-connectivity/wl1271-fw-ap.bin +ti-connectivity/wl1271-fw.bin +ti-connectivity/wl1271-nvs.bin +ti-connectivity/wl127x-fw-3.bin +ti-connectivity/wl127x-fw-4-mr.bin +ti-connectivity/wl127x-fw-4-plt.bin +ti-connectivity/wl127x-fw-4-sr.bin +ti-connectivity/wl127x-fw-5-mr.bin +ti-connectivity/wl127x-fw-5-plt.bin +ti-connectivity/wl127x-fw-5-sr.bin +ti-connectivity/wl127x-fw-plt-3.bin +ti-connectivity/wl127x-nvs.bin +ti-connectivity/wl128x-fw-3.bin +ti-connectivity/wl128x-fw-4-mr.bin +ti-connectivity/wl128x-fw-4-plt.bin +ti-connectivity/wl128x-fw-4-sr.bin +ti-connectivity/wl128x-fw-5-mr.bin +ti-connectivity/wl128x-fw-5-plt.bin +ti-connectivity/wl128x-fw-5-sr.bin +ti-connectivity/wl128x-fw-ap.bin +ti-connectivity/wl128x-fw-plt-3.bin +ti-connectivity/wl128x-fw.bin +ti-connectivity/wl128x-nvs.bin +ti-connectivity/wl12xx-nvs.bin +ti-connectivity/wl18xx-fw-2.bin +ti-connectivity/wl18xx-fw-3.bin +ti-connectivity/wl18xx-fw-4.bin +ti-connectivity/wl18xx-fw.bin +ti-keystone/ks2_qmss_pdsp_acc48_k2_le_1_0_0_9.bin +ti_3410.fw +ti_5052.fw +tigon/tg3.bin +tigon/tg357766.bin +tigon/tg3_tso.bin +tigon/tg3_tso5.bin +tlg2300_firmware.bin +tr_smctr.bin +ttusb-budget/dspbootcode.bin +ueagle-atm/930-fpga.bin +ueagle-atm/CMV4p.bin.v2 +ueagle-atm/CMV9i.bin +ueagle-atm/CMV9p.bin +ueagle-atm/CMVei.bin +ueagle-atm/CMVeiWO.bin +ueagle-atm/CMVep.bin +ueagle-atm/CMVepES.bin +ueagle-atm/CMVepES03.bin +ueagle-atm/CMVepFR.bin +ueagle-atm/CMVepFR04.bin +ueagle-atm/CMVepFR10.bin +ueagle-atm/CMVepIT.bin +ueagle-atm/CMVepWO.bin +ueagle-atm/DSP4p.bin +ueagle-atm/DSP9i.bin +ueagle-atm/DSP9p.bin +ueagle-atm/DSPei.bin +ueagle-atm/DSPep.bin +ueagle-atm/adi930.fw +ueagle-atm/eagleI.fw +ueagle-atm/eagleII.fw +ueagle-atm/eagleIII.fw +ueagle-atm/eagleIV.fw +usbdux/Makefile_dux +usbdux/fx2-include.asm +usbdux/usbdux_firmware.asm +usbdux/usbduxfast_firmware.asm +usbdux/usbduxsigma_firmware.asm +usbdux_firmware.bin +usbduxfast_firmware.bin +usbduxsigma_firmware.bin +v4l-cx231xx-avcore-01.fw +v4l-cx23418-apu.fw +v4l-cx23418-cpu.fw +v4l-cx23418-dig.fw +v4l-cx23885-avcore-01.fw +v4l-cx25840.fw +vicam/firmware.fw +vntwusb.fw +vpu_d.bin +vpu_p.bin +vxge/X3fw-pxe.ncf +vxge/X3fw.ncf +whiteheat.fw +whiteheat_loader.fw +wil6210.brd +wil6210.fw +wsm_22.bin +yam/1200.bin +yam/9600.bin +yamaha/ds1_ctrl.fw +yamaha/ds1_dsp.fw +yamaha/ds1e_ctrl.fw +yamaha/yss225_registers.bin diff --git a/etc/portage/sets/clang-meta b/etc/portage/sets/clang-meta new file mode 100644 index 0000000..1cc51c5 --- /dev/null +++ b/etc/portage/sets/clang-meta @@ -0,0 +1,11 @@ +sys-devel/llvm-common +sys-devel/llvm +sys-devel/llvmgold +sys-libs/llvm-libunwind +sys-libs/libcxxabi +sys-libs/compiler-rt-sanitizers +sys-libs/compiler-rt +sys-libs/libcxx +sys-devel/clang-runtime +sys-devel/clang +sys-devel/lld diff --git a/etc/sudoers.d/wheel b/etc/sudoers.d/wheel new file mode 100644 index 0000000..81409fd --- /dev/null +++ b/etc/sudoers.d/wheel @@ -0,0 +1,2 @@ +## Uncomment to allow members of group wheel to execute any command +%wheel ALL=(ALL) ALL diff --git a/etc/systemd/system/var-tmp-paludis-build.mount b/etc/systemd/system/var-tmp-paludis-build.mount new file mode 100644 index 0000000..6abc007 --- /dev/null +++ b/etc/systemd/system/var-tmp-paludis-build.mount @@ -0,0 +1,25 @@ +# SPDX-License-Identifier: LGPL-2.1+ +# +# This file is part of systemd. +# +# systemd is free software; you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation; either version 2.1 of the License, or +# (at your option) any later version. + +[Unit] +Description=Temporary Directory (/tmp) +Documentation=man:hier(7) +Documentation=https://www.freedesktop.org/wiki/Software/systemd/APIFileSystems +ConditionPathIsSymbolicLink=!/var/tmp/paludis/build +DefaultDependencies=no +Conflicts=umount.target +Before=local-fs.target umount.target +After=swap.target + +[Mount] +What=tmpfs +Where=/var/tmp/paludis/build +Type=tmpfs +Options=mode=1777,strictatime,nosuid,nodev,gid=443 +DirectoryMode=775 diff --git a/etc/systemd/system/weston@.service b/etc/systemd/system/weston@.service new file mode 100644 index 0000000..d27f2e1 --- /dev/null +++ b/etc/systemd/system/weston@.service @@ -0,0 +1,50 @@ +# -*-coding:utf-8-unix;-*- +# Systemd unit file for Weston in an auto-login like setup +# +# Relies on Weston's logind integration via dbus. +# Sets up a user session as user 'shell_guest' (edit to your needs). +# This user is effectively auto-logged in for starting Weston. + +[Unit] +Description=Wayland compositor Weston on %I +Documentation=man:weston(1) man:weston.ini(5) +Documentation=http://wayland.freedesktop.org/ +After=systemd-user-sessions.service plymouth-quit-wait.service + +# Make sure we launch before graphical.target is up. +Before=graphical.target + +# On systems without virtual consoles, do not start. +ConditionPathExists=/dev/tty0 + +[Service] +#Type=notify +#NotifyAccess=main +Type=simple +ExecStart=/usr/bin/weston +UtmpIdentifier=%I +#UtmpMode=login +TTYPath=/dev/%I +TTYReset=yes +TTYVHangup=yes +TTYVTDisallocate=yes + +# run as pre-configured user +User=lee +WorkingDirectory=~ +Environment=WESTON=1 LANG=zh_CN.UTF-8 + +# fail start, if not controlling the tty +#StandardInput=tty-fail +#StandardOutput=tty + +# connect stderr to journal +StandardError=journal + +# Want PAM session for the user, similar to login +PAMName=login + +[Install] +WantedBy=graphical.target +DefaultInstance=tty1 + diff --git a/etc/udev/rules.d/20-block.rules b/etc/udev/rules.d/20-block.rules new file mode 100644 index 0000000..156a079 --- /dev/null +++ b/etc/udev/rules.d/20-block.rules @@ -0,0 +1 @@ +ACTION=="add|change",SUBSYTEM=="block",ATTR{queue/scheduler}="bfq" diff --git a/kernle.config/ThinkPad-E530c/config-3.10.0-gentoo b/kernle.config/ThinkPad-E530c/config-3.10.0-gentoo new file mode 100644 index 0000000..a51f3a4 --- /dev/null +++ b/kernle.config/ThinkPad-E530c/config-3.10.0-gentoo @@ -0,0 +1,2278 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 3.10.0-gentoo Kernel Configuration +# +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_HAVE_LATENCYTOP_SUPPORT=y +CONFIG_MMU=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_GENERIC_ISA_DMA=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_ARCH_MAY_HAVE_PC_FDC=y +CONFIG_RWSEM_XCHGADD_ALGORITHM=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_CPU_AUTOPROBE=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ZONE_DMA32=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_HAVE_INTEL_TXT=y +CONFIG_X86_64_SMP=y +CONFIG_X86_HT=y +CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-rdi -fcall-saved-rsi -fcall-saved-rdx -fcall-saved-rcx -fcall-saved-r8 -fcall-saved-r9 -fcall-saved-r10 -fcall-saved-r11" +CONFIG_ARCH_CPU_PROBE_RELEASE=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_EXTABLE_SORT=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +CONFIG_CROSS_COMPILE="" +CONFIG_LOCALVERSION="" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_KERNEL_GZIP=y +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +# CONFIG_KERNEL_XZ is not set +# CONFIG_KERNEL_LZO is not set +CONFIG_DEFAULT_HOSTNAME="(funtoo)" +# CONFIG_SWAP is not set +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +# CONFIG_POSIX_MQUEUE is not set +# CONFIG_FHANDLE is not set +CONFIG_AUDIT=y +CONFIG_AUDITSYSCALL=y +CONFIG_AUDIT_WATCH=y +CONFIG_AUDIT_TREE=y +# CONFIG_AUDIT_LOGINUID_IMMUTABLE is not set +CONFIG_HAVE_GENERIC_HARDIRQS=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_HARDIRQS=y +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_DATA=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +CONFIG_NO_HZ_IDLE=y +# CONFIG_NO_HZ_FULL is not set +CONFIG_NO_HZ=y +CONFIG_HIGH_RES_TIMERS=y + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +# CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_BSD_PROCESS_ACCT=y +# CONFIG_BSD_PROCESS_ACCT_V3 is not set +CONFIG_TASKSTATS=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_XACCT=y +CONFIG_TASK_IO_ACCOUNTING=y + +# +# RCU Subsystem +# +CONFIG_TREE_PREEMPT_RCU=y +CONFIG_PREEMPT_RCU=y +CONFIG_RCU_STALL_COMMON=y +# CONFIG_RCU_USER_QS is not set +CONFIG_RCU_FANOUT=64 +CONFIG_RCU_FANOUT_LEAF=16 +# CONFIG_RCU_FANOUT_EXACT is not set +# CONFIG_RCU_FAST_NO_HZ is not set +# CONFIG_TREE_RCU_TRACE is not set +# CONFIG_RCU_BOOST is not set +# CONFIG_RCU_NOCB_CPU is not set +# CONFIG_IKCONFIG is not set +CONFIG_LOG_BUF_SHIFT=18 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANTS_PROT_NUMA_PROT_NONE=y +# CONFIG_NUMA_BALANCING is not set +# CONFIG_CGROUPS is not set +# CONFIG_CHECKPOINT_RESTORE is not set +CONFIG_NAMESPACES=y +CONFIG_UTS_NS=y +CONFIG_IPC_NS=y +# CONFIG_USER_NS is not set +CONFIG_PID_NS=y +CONFIG_NET_NS=y +CONFIG_UIDGID_CONVERTED=y +# CONFIG_UIDGID_STRICT_TYPE_CHECKS is not set +# CONFIG_SCHED_AUTOGROUP is not set +# CONFIG_SYSFS_DEPRECATED is not set +# CONFIG_RELAY is not set +# CONFIG_BLK_DEV_INITRD is not set +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_SYSCTL=y +CONFIG_ANON_INODES=y +CONFIG_HAVE_UID16=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HOTPLUG=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +# CONFIG_EXPERT is not set +CONFIG_UID16=y +# CONFIG_SYSCTL_SYSCALL is not set +CONFIG_KALLSYMS=y +CONFIG_PRINTK=y +CONFIG_BUG=y +CONFIG_ELF_CORE=y +CONFIG_PCSPKR_PLATFORM=y +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_PCI_QUIRKS=y +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +CONFIG_VM_EVENT_COUNTERS=y +CONFIG_SLUB_DEBUG=y +# CONFIG_COMPAT_BRK is not set +# CONFIG_SLAB is not set +CONFIG_SLUB=y +# CONFIG_PROFILING is not set +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +# CONFIG_KPROBES is not set +# CONFIG_JUMP_LABEL is not set +# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_ATTRS=y +CONFIG_USE_GENERIC_SMP_HELPERS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_DMA_API_DEBUG=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y +CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_SECCOMP_FILTER=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_OLD_SIGSUSPEND3=y +CONFIG_COMPAT_OLD_SIGACTION=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set +CONFIG_SLABINFO=y +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +CONFIG_MODULES=y +# CONFIG_MODULE_FORCE_LOAD is not set +CONFIG_MODULE_UNLOAD=y +# CONFIG_MODULE_FORCE_UNLOAD is not set +# CONFIG_MODVERSIONS is not set +# CONFIG_MODULE_SRCVERSION_ALL is not set +# CONFIG_MODULE_SIG is not set +CONFIG_STOP_MACHINE=y +CONFIG_BLOCK=y +CONFIG_BLK_DEV_BSG=y +# CONFIG_BLK_DEV_BSGLIB is not set +# CONFIG_BLK_DEV_INTEGRITY is not set + +# +# Partition Types +# +CONFIG_PARTITION_ADVANCED=y +# CONFIG_ACORN_PARTITION is not set +# CONFIG_OSF_PARTITION is not set +# CONFIG_AMIGA_PARTITION is not set +# CONFIG_ATARI_PARTITION is not set +# CONFIG_MAC_PARTITION is not set +CONFIG_MSDOS_PARTITION=y +# CONFIG_BSD_DISKLABEL is not set +# CONFIG_MINIX_SUBPARTITION is not set +# CONFIG_SOLARIS_X86_PARTITION is not set +# CONFIG_UNIXWARE_DISKLABEL is not set +# CONFIG_LDM_PARTITION is not set +# CONFIG_SGI_PARTITION is not set +# CONFIG_ULTRIX_PARTITION is not set +# CONFIG_SUN_PARTITION is not set +# CONFIG_KARMA_PARTITION is not set +CONFIG_EFI_PARTITION=y +# CONFIG_SYSV68_PARTITION is not set +CONFIG_BLOCK_COMPAT=y + +# +# IO Schedulers +# +CONFIG_IOSCHED_NOOP=y +CONFIG_IOSCHED_DEADLINE=y +CONFIG_IOSCHED_CFQ=y +# CONFIG_IOSCHED_BFQ is not set +# CONFIG_DEFAULT_DEADLINE is not set +CONFIG_DEFAULT_CFQ=y +# CONFIG_DEFAULT_NOOP is not set +CONFIG_DEFAULT_IOSCHED="cfq" +CONFIG_UNINLINE_SPIN_UNLOCK=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_FREEZER=y + +# +# Processor type and features +# +CONFIG_ZONE_DMA=y +CONFIG_SMP=y +# CONFIG_X86_MPPARSE is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +# CONFIG_X86_INTEL_LPSS is not set +CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y +CONFIG_SCHED_OMIT_FRAME_POINTER=y +# CONFIG_HYPERVISOR_GUEST is not set +CONFIG_NO_BOOTMEM=y +# CONFIG_MEMTEST is not set +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +CONFIG_MCORE2=y +# CONFIG_MATOM is not set +# CONFIG_GENERIC_CPU is not set +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_INTEL_USERCOPY=y +CONFIG_X86_USE_PPRO_CHECKSUM=y +CONFIG_X86_P6_NOP=y +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_HPET_TIMER=y +CONFIG_HPET_EMULATE_RTC=y +CONFIG_DMI=y +CONFIG_GART_IOMMU=y +# CONFIG_CALGARY_IOMMU is not set +CONFIG_SWIOTLB=y +CONFIG_IOMMU_HELPER=y +CONFIG_NR_CPUS=8 +# CONFIG_SCHED_SMT is not set +CONFIG_SCHED_MC=y +# CONFIG_PREEMPT_NONE is not set +# CONFIG_PREEMPT_VOLUNTARY is not set +CONFIG_PREEMPT=y +CONFIG_PREEMPT_COUNT=y +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y +CONFIG_X86_MCE=y +CONFIG_X86_MCE_INTEL=y +# CONFIG_X86_MCE_AMD is not set +CONFIG_X86_MCE_THRESHOLD=y +# CONFIG_X86_MCE_INJECT is not set +CONFIG_X86_THERMAL_VECTOR=y +# CONFIG_I8K is not set +# CONFIG_MICROCODE is not set +CONFIG_X86_MSR=y +CONFIG_X86_CPUID=y +CONFIG_ARCH_PHYS_ADDR_T_64BIT=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_DIRECT_GBPAGES=y +CONFIG_NUMA=y +# CONFIG_AMD_NUMA is not set +CONFIG_X86_64_ACPI_NUMA=y +CONFIG_NODES_SPAN_OTHER_NODES=y +# CONFIG_NUMA_EMU is not set +CONFIG_NODES_SHIFT=8 +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_NEED_MULTIPLE_NODES=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_MEMBLOCK=y +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_ARCH_DISCARD_MEMBLOCK=y +# CONFIG_MOVABLE_NODE is not set +# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_PAGEFLAGS_EXTENDED=y +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_COMPACTION=y +CONFIG_MIGRATION=y +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_ZONE_DMA_FLAG=1 +CONFIG_BOUNCE=y +CONFIG_VIRT_TO_BUS=y +CONFIG_KSM=y +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +# CONFIG_MEMORY_FAILURE is not set +CONFIG_TRANSPARENT_HUGEPAGE=y +CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y +# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set +CONFIG_CROSS_MEMORY_ATTACH=y +# CONFIG_CLEANCACHE is not set +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_X86_RESERVE_LOW=64 +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +CONFIG_X86_SMAP=y +CONFIG_EFI=y +CONFIG_EFI_STUB=y +CONFIG_SECCOMP=y +# CONFIG_CC_STACKPROTECTOR is not set +# CONFIG_HZ_100 is not set +# CONFIG_HZ_250 is not set +# CONFIG_HZ_300 is not set +CONFIG_HZ_1000=y +CONFIG_HZ=1000 +CONFIG_SCHED_HRTICK=y +# CONFIG_KEXEC is not set +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +# CONFIG_RELOCATABLE is not set +CONFIG_PHYSICAL_ALIGN=0x1000000 +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +CONFIG_COMPAT_VDSO=y +# CONFIG_CMDLINE_BOOL is not set +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_USE_PERCPU_NUMA_NODE_ID=y + +# +# Power management and ACPI options +# +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +# CONFIG_PM_AUTOSLEEP is not set +# CONFIG_PM_WAKELOCKS is not set +# CONFIG_PM_RUNTIME is not set +CONFIG_PM=y +# CONFIG_PM_DEBUG is not set +CONFIG_ACPI=y +CONFIG_ACPI_SLEEP=y +# CONFIG_ACPI_PROCFS is not set +# CONFIG_ACPI_PROCFS_POWER is not set +# CONFIG_ACPI_EC_DEBUGFS is not set +# CONFIG_ACPI_PROC_EVENT is not set +CONFIG_ACPI_AC=y +CONFIG_ACPI_BATTERY=y +CONFIG_ACPI_BUTTON=y +CONFIG_ACPI_VIDEO=y +CONFIG_ACPI_FAN=y +# CONFIG_ACPI_DOCK is not set +CONFIG_ACPI_I2C=y +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_HOTPLUG_CPU=y +# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set +CONFIG_ACPI_THERMAL=y +CONFIG_ACPI_NUMA=y +# CONFIG_ACPI_CUSTOM_DSDT is not set +CONFIG_ACPI_BLACKLIST_YEAR=0 +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_PCI_SLOT is not set +CONFIG_X86_PM_TIMER=y +CONFIG_ACPI_CONTAINER=y +# CONFIG_ACPI_SBS is not set +# CONFIG_ACPI_HED is not set +# CONFIG_ACPI_CUSTOM_METHOD is not set +# CONFIG_ACPI_BGRT is not set +# CONFIG_ACPI_APEI is not set +# CONFIG_SFI is not set + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +CONFIG_CPU_FREQ_TABLE=y +CONFIG_CPU_FREQ_GOV_COMMON=y +# CONFIG_CPU_FREQ_STAT is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set +CONFIG_CPU_FREQ_GOV_USERSPACE=y +CONFIG_CPU_FREQ_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set + +# +# x86 CPU frequency scaling drivers +# +# CONFIG_X86_INTEL_PSTATE is not set +# CONFIG_X86_PCC_CPUFREQ is not set +CONFIG_X86_ACPI_CPUFREQ=y +CONFIG_X86_ACPI_CPUFREQ_CPB=y +# CONFIG_X86_POWERNOW_K8 is not set +# CONFIG_X86_AMD_FREQ_SENSITIVITY is not set +# CONFIG_X86_SPEEDSTEP_CENTRINO is not set +# CONFIG_X86_P4_CLOCKMOD is not set + +# +# shared options +# +# CONFIG_X86_SPEEDSTEP_LIB is not set +CONFIG_CPU_IDLE=y +# CONFIG_CPU_IDLE_MULTIPLE_DRIVERS is not set +CONFIG_CPU_IDLE_GOV_LADDER=y +CONFIG_CPU_IDLE_GOV_MENU=y +# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set +# CONFIG_INTEL_IDLE is not set + +# +# Memory power savings +# +# CONFIG_I7300_IDLE is not set + +# +# Bus options (PCI etc.) +# +CONFIG_PCI=y +CONFIG_PCI_DIRECT=y +CONFIG_PCI_MMCONFIG=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCIEPORTBUS=y +# CONFIG_PCIEAER is not set +CONFIG_PCIEASPM=y +# CONFIG_PCIEASPM_DEBUG is not set +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +CONFIG_ARCH_SUPPORTS_MSI=y +CONFIG_PCI_MSI=y +# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set +# CONFIG_PCI_STUB is not set +CONFIG_HT_IRQ=y +# CONFIG_PCI_IOV is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_PASID is not set +# CONFIG_PCI_IOAPIC is not set +CONFIG_PCI_LABEL=y +CONFIG_ISA_DMA_API=y +CONFIG_AMD_NB=y +# CONFIG_PCCARD is not set +# CONFIG_HOTPLUG_PCI is not set +# CONFIG_RAPIDIO is not set + +# +# Executable file formats / Emulations +# +CONFIG_BINFMT_ELF=y +CONFIG_COMPAT_BINFMT_ELF=y +CONFIG_ARCH_BINFMT_ELF_RANDOMIZE_PIE=y +# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set +CONFIG_BINFMT_SCRIPT=y +# CONFIG_HAVE_AOUT is not set +# CONFIG_BINFMT_MISC is not set +CONFIG_COREDUMP=y +CONFIG_IA32_EMULATION=y +# CONFIG_IA32_AOUT is not set +# CONFIG_X86_X32 is not set +CONFIG_COMPAT=y +CONFIG_COMPAT_FOR_U64_ALIGNMENT=y +CONFIG_SYSVIPC_COMPAT=y +CONFIG_HAVE_TEXT_POKE_SMP=y +CONFIG_X86_DEV_DMA_OPS=y +CONFIG_NET=y + +# +# Networking options +# +CONFIG_PACKET=y +# CONFIG_PACKET_DIAG is not set +CONFIG_UNIX=y +# CONFIG_UNIX_DIAG is not set +CONFIG_XFRM=y +CONFIG_XFRM_ALGO=y +CONFIG_XFRM_USER=y +# CONFIG_XFRM_SUB_POLICY is not set +# CONFIG_XFRM_MIGRATE is not set +# CONFIG_XFRM_STATISTICS is not set +# CONFIG_NET_KEY is not set +CONFIG_INET=y +CONFIG_IP_MULTICAST=y +# CONFIG_IP_ADVANCED_ROUTER is not set +CONFIG_IP_PNP=y +# CONFIG_IP_PNP_DHCP is not set +# CONFIG_IP_PNP_BOOTP is not set +# CONFIG_IP_PNP_RARP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +# CONFIG_NET_IP_TUNNEL is not set +# CONFIG_IP_MROUTE is not set +# CONFIG_ARPD is not set +# CONFIG_SYN_COOKIES is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +# CONFIG_INET_XFRM_TUNNEL is not set +# CONFIG_INET_TUNNEL is not set +# CONFIG_INET_XFRM_MODE_TRANSPORT is not set +# CONFIG_INET_XFRM_MODE_TUNNEL is not set +# CONFIG_INET_XFRM_MODE_BEET is not set +CONFIG_INET_LRO=y +# CONFIG_INET_DIAG is not set +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set +# CONFIG_IPV6 is not set +# CONFIG_NETLABEL is not set +CONFIG_NETWORK_SECMARK=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +# CONFIG_NETFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +CONFIG_HAVE_NET_DSA=y +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_IPX is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +# CONFIG_NETLINK_MMAP is not set +# CONFIG_NETLINK_DIAG is not set +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +CONFIG_BQL=y +# CONFIG_BPF_JIT is not set + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_IRDA is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +CONFIG_WIRELESS=y +CONFIG_CFG80211=m +# CONFIG_NL80211_TESTMODE is not set +# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set +# CONFIG_CFG80211_REG_DEBUG is not set +# CONFIG_CFG80211_DEFAULT_PS is not set +# CONFIG_CFG80211_DEBUGFS is not set +# CONFIG_CFG80211_INTERNAL_REGDB is not set +# CONFIG_CFG80211_WEXT is not set +# CONFIG_LIB80211 is not set +CONFIG_MAC80211=m +CONFIG_MAC80211_HAS_RC=y +CONFIG_MAC80211_RC_MINSTREL=y +CONFIG_MAC80211_RC_MINSTREL_HT=y +CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y +CONFIG_MAC80211_RC_DEFAULT="minstrel_ht" +# CONFIG_MAC80211_MESH is not set +# CONFIG_MAC80211_DEBUGFS is not set +# CONFIG_MAC80211_MESSAGE_TRACING is not set +# CONFIG_MAC80211_DEBUG_MENU is not set +# CONFIG_WIMAX is not set +CONFIG_RFKILL=m +CONFIG_RFKILL_INPUT=y +# CONFIG_NET_9P is not set +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +CONFIG_HAVE_BPF_JIT=y + +# +# Device Drivers +# + +# +# Generic Driver Options +# +CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y +CONFIG_FW_LOADER=y +# CONFIG_FIRMWARE_IN_KERNEL is not set +CONFIG_EXTRA_FIRMWARE="" +CONFIG_FW_LOADER_USER_HELPER=y +# CONFIG_SYS_HYPERVISOR is not set +# CONFIG_GENERIC_CPU_DEVICES is not set +CONFIG_DMA_SHARED_BUFFER=y + +# +# Bus devices +# +CONFIG_CONNECTOR=y +CONFIG_PROC_EVENTS=y +# CONFIG_MTD is not set +# CONFIG_PARPORT is not set +CONFIG_PNP=y +CONFIG_PNP_DEBUG_MESSAGES=y + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +# CONFIG_BLK_DEV_FD is not set +# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set +# CONFIG_BLK_CPQ_DA is not set +# CONFIG_BLK_CPQ_CISS_DA is not set +# CONFIG_BLK_DEV_DAC960 is not set +# CONFIG_BLK_DEV_UMEM is not set +# CONFIG_BLK_DEV_COW_COMMON is not set +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set +# CONFIG_BLK_DEV_DRBD is not set +# CONFIG_BLK_DEV_NBD is not set +# CONFIG_BLK_DEV_NVME is not set +# CONFIG_BLK_DEV_SX8 is not set +# CONFIG_BLK_DEV_RAM is not set +# CONFIG_CDROM_PKTCDVD is not set +# CONFIG_ATA_OVER_ETH is not set +# CONFIG_BLK_DEV_HD is not set +# CONFIG_BLK_DEV_RBD is not set +# CONFIG_BLK_DEV_RSXX is not set + +# +# Misc devices +# +# CONFIG_SENSORS_LIS3LV02D is not set +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +# CONFIG_INTEL_MID_PTI is not set +# CONFIG_SGI_IOC4 is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ATMEL_SSC is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1780 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_BMP085_I2C is not set +# CONFIG_PCH_PHUB is not set +# CONFIG_USB_SWITCH_FSA9480 is not set +# CONFIG_SRAM is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +# CONFIG_EEPROM_AT24 is not set +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_SENSORS_LIS3_I2C is not set + +# +# Altera FPGA firmware download module +# +# CONFIG_ALTERA_STAPL is not set +# CONFIG_VMWARE_VMCI is not set +CONFIG_HAVE_IDE=y +# CONFIG_IDE is not set + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# CONFIG_RAID_ATTRS is not set +CONFIG_SCSI=y +CONFIG_SCSI_DMA=y +# CONFIG_SCSI_TGT is not set +# CONFIG_SCSI_NETLINK is not set +# CONFIG_SCSI_PROC_FS is not set + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=y +# CONFIG_CHR_DEV_ST is not set +# CONFIG_CHR_DEV_OSST is not set +# CONFIG_BLK_DEV_SR is not set +CONFIG_CHR_DEV_SG=y +# CONFIG_CHR_DEV_SCH is not set +# CONFIG_SCSI_MULTI_LUN is not set +# CONFIG_SCSI_CONSTANTS is not set +# CONFIG_SCSI_LOGGING is not set +# CONFIG_SCSI_SCAN_ASYNC is not set + +# +# SCSI Transports +# +CONFIG_SCSI_SPI_ATTRS=y +# CONFIG_SCSI_FC_ATTRS is not set +# CONFIG_SCSI_ISCSI_ATTRS is not set +# CONFIG_SCSI_SAS_ATTRS is not set +# CONFIG_SCSI_SAS_LIBSAS is not set +# CONFIG_SCSI_SRP_ATTRS is not set +# CONFIG_SCSI_LOWLEVEL is not set +# CONFIG_SCSI_DH is not set +# CONFIG_SCSI_OSD_INITIATOR is not set +CONFIG_ATA=y +# CONFIG_ATA_NONSTANDARD is not set +# CONFIG_ATA_VERBOSE_ERROR is not set +CONFIG_ATA_ACPI=y +# CONFIG_SATA_ZPODD is not set +CONFIG_SATA_PMP=y + +# +# Controllers with non-SFF native interface +# +CONFIG_SATA_AHCI=y +# CONFIG_SATA_AHCI_PLATFORM is not set +# CONFIG_SATA_INIC162X is not set +# CONFIG_SATA_ACARD_AHCI is not set +# CONFIG_SATA_SIL24 is not set +# CONFIG_ATA_SFF is not set +# CONFIG_MD is not set +# CONFIG_TARGET_CORE is not set +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# CONFIG_I2O is not set +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +# CONFIG_DUMMY is not set +# CONFIG_EQUALIZER is not set +# CONFIG_NET_FC is not set +# CONFIG_MII is not set +# CONFIG_NET_TEAM is not set +# CONFIG_MACVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_NETCONSOLE is not set +# CONFIG_NETPOLL is not set +# CONFIG_NET_POLL_CONTROLLER is not set +# CONFIG_TUN is not set +# CONFIG_VETH is not set +# CONFIG_ARCNET is not set + +# +# CAIF transport drivers +# + +# +# Distributed Switch Architecture drivers +# +# CONFIG_NET_DSA_MV88E6XXX is not set +# CONFIG_NET_DSA_MV88E6060 is not set +# CONFIG_NET_DSA_MV88E6XXX_NEED_PPU is not set +# CONFIG_NET_DSA_MV88E6131 is not set +# CONFIG_NET_DSA_MV88E6123_61_65 is not set +# CONFIG_ETHERNET is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +# CONFIG_PHYLIB is not set +# CONFIG_PPP is not set +# CONFIG_SLIP is not set + +# +# USB Network Adapters +# +# CONFIG_USB_CATC is not set +# CONFIG_USB_KAWETH is not set +# CONFIG_USB_PEGASUS is not set +# CONFIG_USB_RTL8150 is not set +# CONFIG_USB_RTL8152 is not set +# CONFIG_USB_USBNET is not set +# CONFIG_USB_HSO is not set +# CONFIG_USB_IPHETH is not set +CONFIG_WLAN=y +# CONFIG_LIBERTAS_THINFIRM is not set +# CONFIG_AIRO is not set +# CONFIG_ATMEL is not set +# CONFIG_AT76C50X_USB is not set +# CONFIG_PRISM54 is not set +# CONFIG_USB_ZD1201 is not set +# CONFIG_USB_NET_RNDIS_WLAN is not set +# CONFIG_RTL8180 is not set +# CONFIG_RTL8187 is not set +# CONFIG_ADM8211 is not set +# CONFIG_MAC80211_HWSIM is not set +# CONFIG_MWL8K is not set +# CONFIG_ATH_CARDS is not set +# CONFIG_B43 is not set +# CONFIG_B43LEGACY is not set +# CONFIG_BRCMFMAC is not set +# CONFIG_HOSTAP is not set +# CONFIG_IPW2100 is not set +# CONFIG_IWLWIFI is not set +# CONFIG_IWL4965 is not set +# CONFIG_IWL3945 is not set +# CONFIG_LIBERTAS is not set +# CONFIG_P54_COMMON is not set +# CONFIG_RT2X00 is not set +CONFIG_RTLWIFI=m +# CONFIG_RTLWIFI_DEBUG is not set +CONFIG_RTL8192CE=m +# CONFIG_RTL8192SE is not set +# CONFIG_RTL8192DE is not set +# CONFIG_RTL8723AE is not set +# CONFIG_RTL8188EE is not set +# CONFIG_RTL8192CU is not set +CONFIG_RTL8192C_COMMON=m +# CONFIG_WL_TI is not set +# CONFIG_ZD1211RW is not set +# CONFIG_MWIFIEX is not set + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +# CONFIG_VMXNET3 is not set +# CONFIG_ISDN is not set + +# +# Input device support +# +CONFIG_INPUT=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_POLLDEV is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +CONFIG_INPUT_MOUSEDEV=y +# CONFIG_INPUT_MOUSEDEV_PSAUX is not set +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 +# CONFIG_INPUT_JOYDEV is not set +CONFIG_INPUT_EVDEV=y +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +# CONFIG_KEYBOARD_ADP5588 is not set +# CONFIG_KEYBOARD_ADP5589 is not set +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_QT1070 is not set +# CONFIG_KEYBOARD_QT2160 is not set +# CONFIG_KEYBOARD_LKKBD is not set +# CONFIG_KEYBOARD_TCA6416 is not set +# CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_LM8333 is not set +# CONFIG_KEYBOARD_MAX7359 is not set +# CONFIG_KEYBOARD_MCS is not set +# CONFIG_KEYBOARD_MPR121 is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_OPENCORES is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_XTKBD is not set +# CONFIG_INPUT_MOUSE is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_TABLET is not set +# CONFIG_INPUT_TOUCHSCREEN is not set +# CONFIG_INPUT_MISC is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_SERIO_I8042=y +# CONFIG_SERIO_SERPORT is not set +# CONFIG_SERIO_CT82C710 is not set +# CONFIG_SERIO_PCIPS2 is not set +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_GAMEPORT is not set + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +CONFIG_VT_HW_CONSOLE_BINDING=y +CONFIG_UNIX98_PTYS=y +# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set +# CONFIG_LEGACY_PTYS is not set +CONFIG_SERIAL_NONSTANDARD=y +# CONFIG_ROCKETPORT is not set +# CONFIG_CYCLADES is not set +# CONFIG_MOXA_INTELLIO is not set +# CONFIG_MOXA_SMARTIO is not set +# CONFIG_SYNCLINK is not set +# CONFIG_SYNCLINKMP is not set +# CONFIG_SYNCLINK_GT is not set +# CONFIG_NOZOMI is not set +# CONFIG_ISI is not set +# CONFIG_N_HDLC is not set +# CONFIG_N_GSM is not set +# CONFIG_TRACE_SINK is not set + +# +# KCopy +# +CONFIG_KCOPY=y +# CONFIG_DEVKMEM is not set +# CONFIG_STALDRV is not set + +# +# Serial drivers +# +# CONFIG_SERIAL_8250 is not set +CONFIG_FIX_EARLYCON_MEM=y + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_MFD_HSU is not set +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_TIMBERDALE is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_PCH_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_IPMI_HANDLER is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +# CONFIG_HW_RANDOM_INTEL is not set +# CONFIG_HW_RANDOM_AMD is not set +CONFIG_HW_RANDOM_VIA=y +CONFIG_NVRAM=y +# CONFIG_R3964 is not set +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +# CONFIG_RAW_DRIVER is not set +CONFIG_HPET=y +# CONFIG_HPET_MMAP is not set +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +CONFIG_DEVPORT=y +CONFIG_I2C=y +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_COMPAT=y +# CONFIG_I2C_CHARDEV is not set +# CONFIG_I2C_MUX is not set +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_ALGOBIT=y + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +CONFIG_I2C_I801=y +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_ISMT is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EG20T is not set +# CONFIG_I2C_INTEL_MID is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +# CONFIG_I2C_PXA_PCI is not set +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_DIOLAN_U2C is not set +# CONFIG_I2C_PARPORT_LIGHT is not set +# CONFIG_I2C_TAOS_EVM is not set +# CONFIG_I2C_TINY_USB is not set + +# +# Other I2C/SMBus bus drivers +# +# CONFIG_I2C_STUB is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# CONFIG_SPI is not set + +# +# Qualcomm MSM SSBI bus support +# +# CONFIG_SSBI is not set +# CONFIG_HSI is not set + +# +# PPS support +# +# CONFIG_PPS is not set + +# +# PPS generators support +# + +# +# PTP clock support +# +# CONFIG_PTP_1588_CLOCK is not set + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# CONFIG_PTP_1588_CLOCK_PCH is not set +CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y +CONFIG_GPIO_DEVRES=y +# CONFIG_GPIOLIB is not set +# CONFIG_W1 is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +# CONFIG_PDA_POWER is not set +# CONFIG_TEST_POWER is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_DS2782 is not set +# CONFIG_BATTERY_SBS is not set +# CONFIG_BATTERY_BQ27x00 is not set +# CONFIG_BATTERY_MAX17040 is not set +# CONFIG_BATTERY_MAX17042 is not set +# CONFIG_CHARGER_MAX8903 is not set +# CONFIG_CHARGER_LP8727 is not set +# CONFIG_CHARGER_BQ2415X is not set +# CONFIG_CHARGER_SMB347 is not set +# CONFIG_BATTERY_GOLDFISH is not set +# CONFIG_POWER_RESET is not set +# CONFIG_POWER_AVS is not set +# CONFIG_HWMON is not set +CONFIG_THERMAL=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +# CONFIG_THERMAL_GOV_FAIR_SHARE is not set +CONFIG_THERMAL_GOV_STEP_WISE=y +# CONFIG_THERMAL_GOV_USER_SPACE is not set +# CONFIG_CPU_THERMAL is not set +# CONFIG_THERMAL_EMULATION is not set +# CONFIG_INTEL_POWERCLAMP is not set +# CONFIG_WATCHDOG is not set +CONFIG_SSB_POSSIBLE=y + +# +# Sonics Silicon Backplane +# +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y + +# +# Broadcom specific AMBA +# +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +# CONFIG_MFD_CORE is not set +# CONFIG_MFD_CS5535 is not set +# CONFIG_MFD_AS3711 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_CROS_EC is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX77686 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_VIPERBOARD is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RTSX_PCI is not set +# CONFIG_MFD_RC5T583 is not set +# CONFIG_MFD_SEC_CORE is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SMSC is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_STMPE is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TPS65217 is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TC3589X is not set +# CONFIG_MFD_TMIO is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +# CONFIG_REGULATOR is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +CONFIG_AGP=y +# CONFIG_AGP_AMD64 is not set +CONFIG_AGP_INTEL=y +# CONFIG_AGP_SIS is not set +# CONFIG_AGP_VIA is not set +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=2 +# CONFIG_VGA_SWITCHEROO is not set +CONFIG_DRM=y +CONFIG_DRM_KMS_HELPER=y +CONFIG_DRM_LOAD_EDID_FIRMWARE=y + +# +# I2C encoder or helper chips +# +# CONFIG_DRM_I2C_CH7006 is not set +# CONFIG_DRM_I2C_SIL164 is not set +# CONFIG_DRM_I2C_NXP_TDA998X is not set +# CONFIG_DRM_TDFX is not set +# CONFIG_DRM_R128 is not set +# CONFIG_DRM_RADEON is not set +# CONFIG_DRM_NOUVEAU is not set +CONFIG_DRM_I915=y +CONFIG_DRM_I915_KMS=y +# CONFIG_DRM_MGA is not set +# CONFIG_DRM_SIS is not set +# CONFIG_DRM_VIA is not set +# CONFIG_DRM_SAVAGE is not set +# CONFIG_DRM_VMWGFX is not set +# CONFIG_DRM_GMA500 is not set +# CONFIG_DRM_UDL is not set +# CONFIG_DRM_AST is not set +# CONFIG_DRM_MGAG200 is not set +# CONFIG_DRM_CIRRUS_QEMU is not set +# CONFIG_DRM_QXL is not set +# CONFIG_VGASTATE is not set +CONFIG_VIDEO_OUTPUT_CONTROL=y +CONFIG_HDMI=y +CONFIG_FB=y +CONFIG_FIRMWARE_EDID=y +# CONFIG_FB_DDC is not set +# CONFIG_FB_BOOT_VESA_SUPPORT is not set +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set +# CONFIG_FB_SYS_FILLRECT is not set +# CONFIG_FB_SYS_COPYAREA is not set +# CONFIG_FB_SYS_IMAGEBLIT is not set +# CONFIG_FB_FOREIGN_ENDIAN is not set +# CONFIG_FB_SYS_FOPS is not set +# CONFIG_FB_SVGALIB is not set +# CONFIG_FB_MACMODES is not set +# CONFIG_FB_BACKLIGHT is not set +# CONFIG_FB_MODE_HELPERS is not set +# CONFIG_FB_TILEBLITTING is not set + +# +# Frame buffer hardware drivers +# +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_PM2 is not set +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_ARC is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_IMSTT is not set +# CONFIG_FB_VGA16 is not set +# CONFIG_FB_UVESA is not set +# CONFIG_FB_VESA is not set +CONFIG_FB_EFI=y +# CONFIG_FB_N411 is not set +# CONFIG_FB_HGA is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_RIVA is not set +# CONFIG_FB_I740 is not set +# CONFIG_FB_LE80578 is not set +# CONFIG_FB_MATROX is not set +# CONFIG_FB_RADEON is not set +# CONFIG_FB_ATY128 is not set +# CONFIG_FB_ATY is not set +# CONFIG_FB_S3 is not set +# CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SIS is not set +# CONFIG_FB_VIA is not set +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_KYRO is not set +# CONFIG_FB_3DFX is not set +# CONFIG_FB_VOODOO1 is not set +# CONFIG_FB_VT8623 is not set +# CONFIG_FB_TRIDENT is not set +# CONFIG_FB_ARK is not set +# CONFIG_FB_PM3 is not set +# CONFIG_FB_CARMINE is not set +# CONFIG_FB_GEODE is not set +# CONFIG_FB_SMSCUFX is not set +# CONFIG_FB_UDL is not set +# CONFIG_FB_GOLDFISH is not set +# CONFIG_FB_VIRTUAL is not set +# CONFIG_FB_METRONOME is not set +# CONFIG_FB_MB862XX is not set +# CONFIG_FB_BROADSHEET is not set +# CONFIG_FB_AUO_K190X is not set +# CONFIG_EXYNOS_VIDEO is not set +CONFIG_BACKLIGHT_LCD_SUPPORT=y +# CONFIG_LCD_CLASS_DEVICE is not set +CONFIG_BACKLIGHT_CLASS_DEVICE=y +CONFIG_BACKLIGHT_GENERIC=y +# CONFIG_BACKLIGHT_APPLE is not set +# CONFIG_BACKLIGHT_SAHARA is not set +# CONFIG_BACKLIGHT_ADP8860 is not set +# CONFIG_BACKLIGHT_ADP8870 is not set +# CONFIG_BACKLIGHT_LM3630 is not set +# CONFIG_BACKLIGHT_LM3639 is not set +# CONFIG_BACKLIGHT_LP855X is not set + +# +# Console display driver support +# +CONFIG_VGA_CONSOLE=y +CONFIG_VGACON_SOFT_SCROLLBACK=y +CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64 +CONFIG_DUMMY_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set +# CONFIG_FB_CON_DECOR is not set +# CONFIG_FONTS is not set +CONFIG_FONT_8x8=y +CONFIG_FONT_8x16=y +# CONFIG_LOGO is not set +CONFIG_SOUND=y +CONFIG_SOUND_OSS_CORE=y +CONFIG_SOUND_OSS_CORE_PRECLAIM=y +CONFIG_SND=y +CONFIG_SND_TIMER=y +CONFIG_SND_PCM=y +CONFIG_SND_HWDEP=y +CONFIG_SND_SEQUENCER=y +CONFIG_SND_SEQ_DUMMY=y +CONFIG_SND_OSSEMUL=y +CONFIG_SND_MIXER_OSS=y +CONFIG_SND_PCM_OSS=y +CONFIG_SND_PCM_OSS_PLUGINS=y +CONFIG_SND_SEQUENCER_OSS=y +CONFIG_SND_HRTIMER=y +CONFIG_SND_SEQ_HRTIMER_DEFAULT=y +CONFIG_SND_DYNAMIC_MINORS=y +# CONFIG_SND_SUPPORT_OLD_API is not set +# CONFIG_SND_VERBOSE_PROCFS is not set +# CONFIG_SND_VERBOSE_PRINTK is not set +# CONFIG_SND_DEBUG is not set +CONFIG_SND_VMASTER=y +CONFIG_SND_KCTL_JACK=y +CONFIG_SND_DMA_SGBUF=y +# CONFIG_SND_RAWMIDI_SEQ is not set +# CONFIG_SND_OPL3_LIB_SEQ is not set +# CONFIG_SND_OPL4_LIB_SEQ is not set +# CONFIG_SND_SBAWE_SEQ is not set +# CONFIG_SND_EMU10K1_SEQ is not set +# CONFIG_SND_DRIVERS is not set +CONFIG_SND_PCI=y +# CONFIG_SND_AD1889 is not set +# CONFIG_SND_ALS300 is not set +# CONFIG_SND_ALS4000 is not set +# CONFIG_SND_ALI5451 is not set +# CONFIG_SND_ASIHPI is not set +# CONFIG_SND_ATIIXP is not set +# CONFIG_SND_ATIIXP_MODEM is not set +# CONFIG_SND_AU8810 is not set +# CONFIG_SND_AU8820 is not set +# CONFIG_SND_AU8830 is not set +# CONFIG_SND_AW2 is not set +# CONFIG_SND_AZT3328 is not set +# CONFIG_SND_BT87X is not set +# CONFIG_SND_CA0106 is not set +# CONFIG_SND_CMIPCI is not set +# CONFIG_SND_OXYGEN is not set +# CONFIG_SND_CS4281 is not set +# CONFIG_SND_CS46XX is not set +# CONFIG_SND_CS5530 is not set +# CONFIG_SND_CS5535AUDIO is not set +# CONFIG_SND_CTXFI is not set +# CONFIG_SND_DARLA20 is not set +# CONFIG_SND_GINA20 is not set +# CONFIG_SND_LAYLA20 is not set +# CONFIG_SND_DARLA24 is not set +# CONFIG_SND_GINA24 is not set +# CONFIG_SND_LAYLA24 is not set +# CONFIG_SND_MONA is not set +# CONFIG_SND_MIA is not set +# CONFIG_SND_ECHO3G is not set +# CONFIG_SND_INDIGO is not set +# CONFIG_SND_INDIGOIO is not set +# CONFIG_SND_INDIGODJ is not set +# CONFIG_SND_INDIGOIOX is not set +# CONFIG_SND_INDIGODJX is not set +# CONFIG_SND_EMU10K1 is not set +# CONFIG_SND_EMU10K1X is not set +# CONFIG_SND_ENS1370 is not set +# CONFIG_SND_ENS1371 is not set +# CONFIG_SND_ES1938 is not set +# CONFIG_SND_ES1968 is not set +# CONFIG_SND_FM801 is not set +CONFIG_SND_HDA_INTEL=y +CONFIG_SND_HDA_PREALLOC_SIZE=64 +CONFIG_SND_HDA_HWDEP=y +# CONFIG_SND_HDA_RECONFIG is not set +# CONFIG_SND_HDA_INPUT_BEEP is not set +# CONFIG_SND_HDA_INPUT_JACK is not set +# CONFIG_SND_HDA_PATCH_LOADER is not set +CONFIG_SND_HDA_CODEC_REALTEK=y +CONFIG_SND_HDA_CODEC_ANALOG=y +CONFIG_SND_HDA_CODEC_SIGMATEL=y +CONFIG_SND_HDA_CODEC_VIA=y +CONFIG_SND_HDA_CODEC_HDMI=y +CONFIG_SND_HDA_CODEC_CIRRUS=y +CONFIG_SND_HDA_CODEC_CONEXANT=y +CONFIG_SND_HDA_CODEC_CA0110=y +CONFIG_SND_HDA_CODEC_CA0132=y +# CONFIG_SND_HDA_CODEC_CA0132_DSP is not set +CONFIG_SND_HDA_CODEC_CMEDIA=y +CONFIG_SND_HDA_CODEC_SI3054=y +CONFIG_SND_HDA_GENERIC=y +CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0 +# CONFIG_SND_HDSP is not set +# CONFIG_SND_HDSPM is not set +# CONFIG_SND_ICE1712 is not set +# CONFIG_SND_ICE1724 is not set +# CONFIG_SND_INTEL8X0 is not set +# CONFIG_SND_INTEL8X0M is not set +# CONFIG_SND_KORG1212 is not set +# CONFIG_SND_LOLA is not set +# CONFIG_SND_LX6464ES is not set +# CONFIG_SND_MAESTRO3 is not set +# CONFIG_SND_MIXART is not set +# CONFIG_SND_NM256 is not set +# CONFIG_SND_PCXHR is not set +# CONFIG_SND_RIPTIDE is not set +# CONFIG_SND_RME32 is not set +# CONFIG_SND_RME96 is not set +# CONFIG_SND_RME9652 is not set +# CONFIG_SND_SONICVIBES is not set +# CONFIG_SND_TRIDENT is not set +# CONFIG_SND_VIA82XX is not set +# CONFIG_SND_VIA82XX_MODEM is not set +# CONFIG_SND_VIRTUOSO is not set +# CONFIG_SND_VX222 is not set +# CONFIG_SND_YMFPCI is not set +# CONFIG_SND_USB is not set +# CONFIG_SND_SOC is not set +# CONFIG_SOUND_PRIME is not set + +# +# HID support +# +CONFIG_HID=y +# CONFIG_HID_BATTERY_STRENGTH is not set +# CONFIG_HIDRAW is not set +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +CONFIG_HID_A4TECH=y +# CONFIG_HID_ACRUX is not set +CONFIG_HID_APPLE=y +# CONFIG_HID_APPLEIR is not set +# CONFIG_HID_AUREAL is not set +CONFIG_HID_BELKIN=y +CONFIG_HID_CHERRY=y +CONFIG_HID_CHICONY=y +# CONFIG_HID_PRODIKEYS is not set +CONFIG_HID_CYPRESS=y +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELECOM is not set +CONFIG_HID_EZKEY=y +# CONFIG_HID_HOLTEK is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_UCLOGIC is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_TWINHAN is not set +CONFIG_HID_KENSINGTON=y +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LENOVO_TPKBD is not set +CONFIG_HID_LOGITECH=y +# CONFIG_HID_LOGITECH_DJ is not set +# CONFIG_LOGITECH_FF is not set +# CONFIG_LOGIRUMBLEPAD2_FF is not set +# CONFIG_LOGIG940_FF is not set +# CONFIG_LOGIWHEELS_FF is not set +# CONFIG_HID_MAGICMOUSE is not set +CONFIG_HID_MICROSOFT=y +CONFIG_HID_MONTEREY=y +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTRIG is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_PS3REMOTE is not set +# CONFIG_HID_ROCCAT is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SONY is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set + +# +# USB HID support +# +CONFIG_USB_HID=y +# CONFIG_HID_PID is not set +# CONFIG_USB_HIDDEV is not set + +# +# I2C HID support +# +# CONFIG_I2C_HID is not set +CONFIG_USB_ARCH_HAS_OHCI=y +CONFIG_USB_ARCH_HAS_EHCI=y +CONFIG_USB_ARCH_HAS_XHCI=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=y +# CONFIG_USB_DEBUG is not set +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_DYNAMIC_MINORS is not set +# CONFIG_USB_MON is not set +# CONFIG_USB_WUSB_CBAF is not set + +# +# USB Host Controller Drivers +# +# CONFIG_USB_C67X00_HCD is not set +CONFIG_USB_XHCI_HCD=y +# CONFIG_USB_XHCI_HCD_DEBUGGING is not set +CONFIG_USB_EHCI_HCD=y +# CONFIG_USB_EHCI_ROOT_HUB_TT is not set +# CONFIG_USB_EHCI_TT_NEWSCHED is not set +CONFIG_USB_EHCI_PCI=y +# CONFIG_USB_EHCI_HCD_PLATFORM is not set +# CONFIG_USB_OXU210HP_HCD is not set +# CONFIG_USB_ISP116X_HCD is not set +# CONFIG_USB_ISP1760_HCD is not set +# CONFIG_USB_ISP1362_HCD is not set +CONFIG_USB_OHCI_HCD=y +# CONFIG_USB_OHCI_HCD_PLATFORM is not set +# CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set +# CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_UHCI_HCD=y +# CONFIG_USB_SL811_HCD is not set +# CONFIG_USB_R8A66597_HCD is not set + +# +# USB Device Class drivers +# +# CONFIG_USB_ACM is not set +# CONFIG_USB_PRINTER is not set +# CONFIG_USB_WDM is not set +# CONFIG_USB_TMC is not set + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# +CONFIG_USB_STORAGE=y +# CONFIG_USB_STORAGE_DEBUG is not set +# CONFIG_USB_STORAGE_REALTEK is not set +# CONFIG_USB_STORAGE_DATAFAB is not set +# CONFIG_USB_STORAGE_FREECOM is not set +# CONFIG_USB_STORAGE_ISD200 is not set +# CONFIG_USB_STORAGE_USBAT is not set +# CONFIG_USB_STORAGE_SDDR09 is not set +# CONFIG_USB_STORAGE_SDDR55 is not set +# CONFIG_USB_STORAGE_JUMPSHOT is not set +# CONFIG_USB_STORAGE_ALAUDA is not set +# CONFIG_USB_STORAGE_ONETOUCH is not set +# CONFIG_USB_STORAGE_KARMA is not set +# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set +# CONFIG_USB_STORAGE_ENE_UB6250 is not set + +# +# USB Imaging devices +# +# CONFIG_USB_MDC800 is not set +# CONFIG_USB_MICROTEK is not set +# CONFIG_USB_DWC3 is not set +# CONFIG_USB_CHIPIDEA is not set + +# +# USB port drivers +# +# CONFIG_USB_SERIAL is not set + +# +# USB Miscellaneous drivers +# +# CONFIG_USB_EMI62 is not set +# CONFIG_USB_EMI26 is not set +# CONFIG_USB_ADUTUX is not set +# CONFIG_USB_SEVSEG is not set +# CONFIG_USB_RIO500 is not set +# CONFIG_USB_LEGOTOWER is not set +# CONFIG_USB_LCD is not set +# CONFIG_USB_LED is not set +# CONFIG_USB_CYPRESS_CY7C63 is not set +# CONFIG_USB_CYTHERM is not set +# CONFIG_USB_IDMOUSE is not set +# CONFIG_USB_FTDI_ELAN is not set +# CONFIG_USB_APPLEDISPLAY is not set +# CONFIG_USB_SISUSBVGA is not set +# CONFIG_USB_LD is not set +# CONFIG_USB_TRANCEVIBRATOR is not set +# CONFIG_USB_IOWARRIOR is not set +# CONFIG_USB_TEST is not set +# CONFIG_USB_ISIGHTFW is not set +# CONFIG_USB_YUREX is not set +# CONFIG_USB_EZUSB_FX2 is not set +# CONFIG_USB_HSIC_USB3503 is not set +# CONFIG_USB_PHY is not set +# CONFIG_USB_GADGET is not set +# CONFIG_UWB is not set +# CONFIG_MMC is not set +# CONFIG_MEMSTICK is not set +# CONFIG_NEW_LEDS is not set +# CONFIG_ACCESSIBILITY is not set +# CONFIG_INFINIBAND is not set +CONFIG_EDAC=y +CONFIG_EDAC_LEGACY_SYSFS=y +# CONFIG_EDAC_DEBUG is not set +# CONFIG_EDAC_MM_EDAC is not set +CONFIG_RTC_LIB=y +CONFIG_RTC_CLASS=y +CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +# CONFIG_RTC_DEBUG is not set + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +# CONFIG_RTC_DRV_TEST is not set + +# +# I2C RTC drivers +# +# CONFIG_RTC_DRV_DS1307 is not set +# CONFIG_RTC_DRV_DS1374 is not set +# CONFIG_RTC_DRV_DS1672 is not set +# CONFIG_RTC_DRV_DS3232 is not set +# CONFIG_RTC_DRV_MAX6900 is not set +# CONFIG_RTC_DRV_RS5C372 is not set +# CONFIG_RTC_DRV_ISL1208 is not set +# CONFIG_RTC_DRV_ISL12022 is not set +# CONFIG_RTC_DRV_X1205 is not set +# CONFIG_RTC_DRV_PCF8523 is not set +# CONFIG_RTC_DRV_PCF8563 is not set +# CONFIG_RTC_DRV_PCF8583 is not set +# CONFIG_RTC_DRV_M41T80 is not set +# CONFIG_RTC_DRV_BQ32K is not set +# CONFIG_RTC_DRV_S35390A is not set +# CONFIG_RTC_DRV_FM3130 is not set +# CONFIG_RTC_DRV_RX8581 is not set +# CONFIG_RTC_DRV_RX8025 is not set +# CONFIG_RTC_DRV_EM3027 is not set +# CONFIG_RTC_DRV_RV3029C2 is not set + +# +# SPI RTC drivers +# + +# +# Platform RTC drivers +# +CONFIG_RTC_DRV_CMOS=y +# CONFIG_RTC_DRV_DS1286 is not set +# CONFIG_RTC_DRV_DS1511 is not set +# CONFIG_RTC_DRV_DS1553 is not set +# CONFIG_RTC_DRV_DS1742 is not set +# CONFIG_RTC_DRV_STK17TA8 is not set +# CONFIG_RTC_DRV_M48T86 is not set +# CONFIG_RTC_DRV_M48T35 is not set +# CONFIG_RTC_DRV_M48T59 is not set +# CONFIG_RTC_DRV_MSM6242 is not set +# CONFIG_RTC_DRV_BQ4802 is not set +# CONFIG_RTC_DRV_RP5C01 is not set +# CONFIG_RTC_DRV_V3020 is not set +# CONFIG_RTC_DRV_DS2404 is not set + +# +# on-CPU RTC drivers +# + +# +# HID Sensor RTC drivers +# +# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set + +# +# DMA Devices +# +# CONFIG_INTEL_MID_DMAC is not set +# CONFIG_INTEL_IOATDMA is not set +# CONFIG_DW_DMAC is not set +# CONFIG_TIMB_DMA is not set +# CONFIG_PCH_DMA is not set +CONFIG_DMA_ACPI=y +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VFIO is not set +# CONFIG_VIRT_DRIVERS is not set + +# +# Virtio drivers +# +# CONFIG_VIRTIO_PCI is not set +# CONFIG_VIRTIO_MMIO is not set + +# +# Microsoft Hyper-V guest support +# +# CONFIG_STAGING is not set +# CONFIG_X86_PLATFORM_DEVICES is not set + +# +# Hardware Spinlock drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_I8253_LOCK=y +CONFIG_CLKBLD_I8253=y +# CONFIG_MAILBOX is not set +CONFIG_IOMMU_API=y +CONFIG_IOMMU_SUPPORT=y +# CONFIG_AMD_IOMMU is not set +CONFIG_DMAR_TABLE=y +CONFIG_INTEL_IOMMU=y +# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set +CONFIG_INTEL_IOMMU_FLOPPY_WA=y +# CONFIG_IRQ_REMAP is not set + +# +# Remoteproc drivers +# +# CONFIG_STE_MODEM_RPROC is not set + +# +# Rpmsg drivers +# +# CONFIG_PM_DEVFREQ is not set +# CONFIG_EXTCON is not set +# CONFIG_MEMORY is not set +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +# CONFIG_PWM is not set +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set + +# +# Firmware Drivers +# +# CONFIG_EDD is not set +CONFIG_FIRMWARE_MEMMAP=y +# CONFIG_DELL_RBU is not set +# CONFIG_DCDBAS is not set +CONFIG_DMIID=y +# CONFIG_DMI_SYSFS is not set +# CONFIG_ISCSI_IBFT_FIND is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +CONFIG_EFI_VARS=y + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +CONFIG_EXT4_FS=y +CONFIG_EXT4_USE_FOR_EXT23=y +CONFIG_EXT4_FS_POSIX_ACL=y +CONFIG_EXT4_FS_SECURITY=y +# CONFIG_EXT4_DEBUG is not set +CONFIG_JBD2=y +# CONFIG_JBD2_DEBUG is not set +CONFIG_FS_MBCACHE=y +# CONFIG_REISERFS_FS is not set +# CONFIG_JFS_FS is not set +# CONFIG_XFS_FS is not set +# CONFIG_GFS2_FS is not set +# CONFIG_BTRFS_FS is not set +# CONFIG_NILFS2_FS is not set +CONFIG_FS_POSIX_ACL=y +CONFIG_FILE_LOCKING=y +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +# CONFIG_FANOTIFY is not set +CONFIG_QUOTA=y +CONFIG_QUOTA_NETLINK_INTERFACE=y +# CONFIG_PRINT_QUOTA_WARNING is not set +# CONFIG_QUOTA_DEBUG is not set +CONFIG_QUOTA_TREE=y +# CONFIG_QFMT_V1 is not set +CONFIG_QFMT_V2=y +CONFIG_QUOTACTL=y +CONFIG_QUOTACTL_COMPAT=y +CONFIG_AUTOFS4_FS=y +# CONFIG_FUSE_FS is not set +CONFIG_GENERIC_ACL=y + +# +# Caches +# +# CONFIG_FSCACHE is not set + +# +# CD-ROM/DVD Filesystems +# +CONFIG_ISO9660_FS=y +# CONFIG_JOLIET is not set +# CONFIG_ZISOFS is not set +# CONFIG_UDF_FS is not set + +# +# DOS/FAT/NT Filesystems +# +CONFIG_FAT_FS=y +# CONFIG_MSDOS_FS is not set +CONFIG_VFAT_FS=y +CONFIG_FAT_DEFAULT_CODEPAGE=936 +CONFIG_FAT_DEFAULT_IOCHARSET="utf8" +CONFIG_NTFS_FS=m +# CONFIG_NTFS_DEBUG is not set +CONFIG_NTFS_RW=y + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +# CONFIG_PROC_KCORE is not set +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +# CONFIG_HUGETLBFS is not set +# CONFIG_HUGETLB_PAGE is not set +# CONFIG_CONFIGFS_FS is not set +# CONFIG_MISC_FILESYSTEMS is not set +# CONFIG_NETWORK_FILESYSTEMS is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="utf8" +CONFIG_NLS_CODEPAGE_437=y +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +CONFIG_NLS_CODEPAGE_936=y +CONFIG_NLS_CODEPAGE_950=y +CONFIG_NLS_CODEPAGE_932=y +CONFIG_NLS_CODEPAGE_949=y +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +CONFIG_NLS_ASCII=y +CONFIG_NLS_ISO8859_1=y +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +CONFIG_NLS_UTF8=y + +# +# Kernel hacking +# +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +# CONFIG_PRINTK_TIME is not set +CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4 +# CONFIG_ENABLE_WARN_DEPRECATED is not set +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_FRAME_WARN=2048 +# CONFIG_MAGIC_SYSRQ is not set +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_UNUSED_SYMBOLS is not set +CONFIG_DEBUG_FS=y +# CONFIG_HEADERS_CHECK is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +# CONFIG_DEBUG_KERNEL is not set +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +# CONFIG_SLUB_DEBUG_ON is not set +# CONFIG_SLUB_STATS is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +CONFIG_DEBUG_BUGVERBOSE=y +CONFIG_DEBUG_MEMORY_INIT=y +CONFIG_ARCH_WANT_FRAME_POINTERS=y +CONFIG_FRAME_POINTER=y + +# +# RCU Debugging +# +# CONFIG_SPARSE_RCU_POINTER is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=60 +# CONFIG_RCU_CPU_STALL_VERBOSE is not set +# CONFIG_LKDTM is not set +CONFIG_ARCH_HAS_DEBUG_STRICT_USER_COPY_CHECKS=y +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=y +CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_DYNAMIC_DEBUG is not set +# CONFIG_DMA_API_DEBUG is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_SAMPLES is not set +CONFIG_HAVE_ARCH_KGDB=y +CONFIG_HAVE_ARCH_KMEMCHECK=y +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_STRICT_DEVMEM is not set +# CONFIG_X86_VERBOSE_BOOTUP is not set +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_DEBUG_SET_MODULE_RONX is not set +# CONFIG_IOMMU_STRESS is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +CONFIG_IO_DELAY_TYPE_0X80=0 +CONFIG_IO_DELAY_TYPE_0XED=1 +CONFIG_IO_DELAY_TYPE_UDELAY=2 +CONFIG_IO_DELAY_TYPE_NONE=3 +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +CONFIG_DEFAULT_IO_DELAY_TYPE=0 +CONFIG_OPTIMIZE_INLINING=y + +# +# Security options +# +# CONFIG_KEYS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +CONFIG_SECURITY=y +# CONFIG_SECURITYFS is not set +CONFIG_SECURITY_NETWORK=y +# CONFIG_SECURITY_NETWORK_XFRM is not set +# CONFIG_SECURITY_PATH is not set +# CONFIG_INTEL_TXT is not set +CONFIG_LSM_MMAP_MIN_ADDR=65536 +CONFIG_SECURITY_SELINUX=y +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=1 +CONFIG_SECURITY_SELINUX_DISABLE=y +CONFIG_SECURITY_SELINUX_DEVELOP=y +CONFIG_SECURITY_SELINUX_AVC_STATS=y +CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 +# CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set +# CONFIG_SECURITY_SMACK is not set +# CONFIG_SECURITY_TOMOYO is not set +# CONFIG_SECURITY_APPARMOR is not set +# CONFIG_SECURITY_YAMA is not set +# CONFIG_IMA is not set +CONFIG_DEFAULT_SECURITY_SELINUX=y +# CONFIG_DEFAULT_SECURITY_DAC is not set +CONFIG_DEFAULT_SECURITY="selinux" +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_BLKCIPHER=y +CONFIG_CRYPTO_BLKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG2=y +# CONFIG_CRYPTO_MANAGER is not set +# CONFIG_CRYPTO_MANAGER2 is not set +# CONFIG_CRYPTO_USER is not set +# CONFIG_CRYPTO_GF128MUL is not set +# CONFIG_CRYPTO_NULL is not set +# CONFIG_CRYPTO_PCRYPT is not set +CONFIG_CRYPTO_WORKQUEUE=y +# CONFIG_CRYPTO_CRYPTD is not set +# CONFIG_CRYPTO_AUTHENC is not set +# CONFIG_CRYPTO_TEST is not set + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_SEQIV is not set + +# +# Block modes +# +# CONFIG_CRYPTO_CBC is not set +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +# CONFIG_CRYPTO_ECB is not set +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_PCBC is not set +# CONFIG_CRYPTO_XTS is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +# CONFIG_CRYPTO_HMAC is not set +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=y +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_MD4 is not set +# CONFIG_CRYPTO_MD5 is not set +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD128 is not set +# CONFIG_CRYPTO_RMD160 is not set +# CONFIG_CRYPTO_RMD256 is not set +# CONFIG_CRYPTO_RMD320 is not set +# CONFIG_CRYPTO_SHA1 is not set +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +# CONFIG_CRYPTO_SHA256_SSSE3 is not set +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +# CONFIG_CRYPTO_SHA256 is not set +# CONFIG_CRYPTO_SHA512 is not set +# CONFIG_CRYPTO_TGR192 is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_X86_64 is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_ANUBIS is not set +CONFIG_CRYPTO_ARC4=y +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +# CONFIG_CRYPTO_DES is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_KHAZAD is not set +# CONFIG_CRYPTO_SALSA20 is not set +# CONFIG_CRYPTO_SALSA20_X86_64 is not set +# CONFIG_CRYPTO_SEED is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_TEA is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +# CONFIG_CRYPTO_DEFLATE is not set +# CONFIG_CRYPTO_ZLIB is not set +# CONFIG_CRYPTO_LZO is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_PADLOCK is not set +CONFIG_HAVE_KVM=y +# CONFIG_VIRTUALIZATION is not set +# CONFIG_BINARY_PRINTF is not set + +# +# Library routines +# +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_GENERIC_IO=y +# CONFIG_CRC_CCITT is not set +CONFIG_CRC16=y +# CONFIG_CRC_T10DIF is not set +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +# CONFIG_XZ_DEC is not set +# CONFIG_XZ_DEC_BCJ is not set +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT=y +CONFIG_HAS_DMA=y +CONFIG_CHECK_SIGNATURE=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_NLATTR=y +CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y +CONFIG_AVERAGE=y +# CONFIG_CORDIC is not set +# CONFIG_DDR is not set +CONFIG_UCS2_STRING=y diff --git a/kernle.config/ThinkPad-E530c/config-3.10.1-gentoo b/kernle.config/ThinkPad-E530c/config-3.10.1-gentoo new file mode 100644 index 0000000..e4353d1 --- /dev/null +++ b/kernle.config/ThinkPad-E530c/config-3.10.1-gentoo @@ -0,0 +1,2509 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 3.10.1-gentoo Kernel Configuration +# +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_HAVE_LATENCYTOP_SUPPORT=y +CONFIG_MMU=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_GENERIC_ISA_DMA=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_ARCH_MAY_HAVE_PC_FDC=y +CONFIG_RWSEM_XCHGADD_ALGORITHM=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_CPU_AUTOPROBE=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ZONE_DMA32=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_HAVE_INTEL_TXT=y +CONFIG_X86_64_SMP=y +CONFIG_X86_HT=y +CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-rdi -fcall-saved-rsi -fcall-saved-rdx -fcall-saved-rcx -fcall-saved-r8 -fcall-saved-r9 -fcall-saved-r10 -fcall-saved-r11" +CONFIG_ARCH_CPU_PROBE_RELEASE=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_EXTABLE_SORT=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +CONFIG_CROSS_COMPILE="" +CONFIG_LOCALVERSION="" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_KERNEL_GZIP=y +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +# CONFIG_KERNEL_XZ is not set +# CONFIG_KERNEL_LZO is not set +CONFIG_DEFAULT_HOSTNAME="(funtoo)" +# CONFIG_SWAP is not set +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +CONFIG_FHANDLE=y +CONFIG_AUDIT=y +CONFIG_AUDITSYSCALL=y +CONFIG_AUDIT_WATCH=y +CONFIG_AUDIT_TREE=y +# CONFIG_AUDIT_LOGINUID_IMMUTABLE is not set +CONFIG_HAVE_GENERIC_HARDIRQS=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_HARDIRQS=y +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_DATA=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +# CONFIG_NO_HZ_IDLE is not set +CONFIG_NO_HZ_FULL=y +CONFIG_NO_HZ_FULL_ALL=y +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y + +# +# CPU/Task time and stats accounting +# +CONFIG_VIRT_CPU_ACCOUNTING=y +CONFIG_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +# CONFIG_TASKSTATS is not set + +# +# RCU Subsystem +# +CONFIG_TREE_PREEMPT_RCU=y +CONFIG_PREEMPT_RCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_CONTEXT_TRACKING=y +CONFIG_RCU_USER_QS=y +CONFIG_CONTEXT_TRACKING_FORCE=y +CONFIG_RCU_FANOUT=64 +CONFIG_RCU_FANOUT_LEAF=16 +# CONFIG_RCU_FANOUT_EXACT is not set +# CONFIG_RCU_FAST_NO_HZ is not set +# CONFIG_TREE_RCU_TRACE is not set +CONFIG_RCU_BOOST=y +CONFIG_RCU_BOOST_PRIO=1 +CONFIG_RCU_BOOST_DELAY=500 +CONFIG_RCU_NOCB_CPU=y +CONFIG_RCU_NOCB_CPU_ALL=y +# CONFIG_IKCONFIG is not set +CONFIG_LOG_BUF_SHIFT=18 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANTS_PROT_NUMA_PROT_NONE=y +# CONFIG_NUMA_BALANCING is not set +# CONFIG_CGROUPS is not set +# CONFIG_CHECKPOINT_RESTORE is not set +CONFIG_NAMESPACES=y +CONFIG_UTS_NS=y +CONFIG_IPC_NS=y +# CONFIG_USER_NS is not set +CONFIG_PID_NS=y +CONFIG_NET_NS=y +CONFIG_UIDGID_CONVERTED=y +# CONFIG_UIDGID_STRICT_TYPE_CHECKS is not set +# CONFIG_SCHED_AUTOGROUP is not set +# CONFIG_SYSFS_DEPRECATED is not set +# CONFIG_RELAY is not set +# CONFIG_BLK_DEV_INITRD is not set +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_SYSCTL=y +CONFIG_ANON_INODES=y +CONFIG_HAVE_UID16=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HOTPLUG=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_EXPERT=y +CONFIG_UID16=y +# CONFIG_SYSCTL_SYSCALL is not set +# CONFIG_KALLSYMS is not set +# CONFIG_PRINTK is not set +# CONFIG_BUG is not set +CONFIG_PCSPKR_PLATFORM=y +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_PCI_QUIRKS=y +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +CONFIG_VM_EVENT_COUNTERS=y +# CONFIG_COMPAT_BRK is not set +# CONFIG_SLAB is not set +# CONFIG_SLUB is not set +CONFIG_SLOB=y +# CONFIG_PROFILING is not set +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +# CONFIG_KPROBES is not set +CONFIG_JUMP_LABEL=y +# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_ATTRS=y +CONFIG_USE_GENERIC_SMP_HELPERS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_DMA_API_DEBUG=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y +CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_SECCOMP_FILTER=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_OLD_SIGSUSPEND3=y +CONFIG_COMPAT_OLD_SIGACTION=y + +# +# GCOV-based kernel profiling +# +# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +CONFIG_MODULES=y +# CONFIG_MODULE_FORCE_LOAD is not set +CONFIG_MODULE_UNLOAD=y +# CONFIG_MODULE_FORCE_UNLOAD is not set +# CONFIG_MODVERSIONS is not set +# CONFIG_MODULE_SRCVERSION_ALL is not set +# CONFIG_MODULE_SIG is not set +CONFIG_STOP_MACHINE=y +CONFIG_BLOCK=y +CONFIG_BLK_DEV_BSG=y +# CONFIG_BLK_DEV_BSGLIB is not set +# CONFIG_BLK_DEV_INTEGRITY is not set + +# +# Partition Types +# +CONFIG_PARTITION_ADVANCED=y +# CONFIG_ACORN_PARTITION is not set +# CONFIG_OSF_PARTITION is not set +# CONFIG_AMIGA_PARTITION is not set +# CONFIG_ATARI_PARTITION is not set +# CONFIG_MAC_PARTITION is not set +CONFIG_MSDOS_PARTITION=y +# CONFIG_BSD_DISKLABEL is not set +# CONFIG_MINIX_SUBPARTITION is not set +# CONFIG_SOLARIS_X86_PARTITION is not set +# CONFIG_UNIXWARE_DISKLABEL is not set +# CONFIG_LDM_PARTITION is not set +# CONFIG_SGI_PARTITION is not set +# CONFIG_ULTRIX_PARTITION is not set +# CONFIG_SUN_PARTITION is not set +# CONFIG_KARMA_PARTITION is not set +CONFIG_EFI_PARTITION=y +# CONFIG_SYSV68_PARTITION is not set +CONFIG_BLOCK_COMPAT=y + +# +# IO Schedulers +# +CONFIG_IOSCHED_NOOP=y +CONFIG_IOSCHED_DEADLINE=y +CONFIG_IOSCHED_CFQ=y +# CONFIG_IOSCHED_BFQ is not set +# CONFIG_DEFAULT_DEADLINE is not set +CONFIG_DEFAULT_CFQ=y +# CONFIG_DEFAULT_NOOP is not set +CONFIG_DEFAULT_IOSCHED="cfq" +CONFIG_UNINLINE_SPIN_UNLOCK=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_FREEZER=y + +# +# Processor type and features +# +CONFIG_ZONE_DMA=y +CONFIG_SMP=y +# CONFIG_X86_MPPARSE is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +# CONFIG_X86_INTEL_LPSS is not set +CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y +CONFIG_SCHED_OMIT_FRAME_POINTER=y +# CONFIG_HYPERVISOR_GUEST is not set +CONFIG_NO_BOOTMEM=y +# CONFIG_MEMTEST is not set +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +CONFIG_MCORE2=y +# CONFIG_MATOM is not set +# CONFIG_GENERIC_CPU is not set +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_INTEL_USERCOPY=y +CONFIG_X86_USE_PPRO_CHECKSUM=y +CONFIG_X86_P6_NOP=y +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_PROCESSOR_SELECT=y +CONFIG_CPU_SUP_INTEL=y +# CONFIG_CPU_SUP_AMD is not set +# CONFIG_CPU_SUP_CENTAUR is not set +CONFIG_HPET_TIMER=y +CONFIG_HPET_EMULATE_RTC=y +CONFIG_DMI=y +# CONFIG_CALGARY_IOMMU is not set +CONFIG_SWIOTLB=y +CONFIG_IOMMU_HELPER=y +# CONFIG_MAXSMP is not set +CONFIG_NR_CPUS=4 +# CONFIG_SCHED_SMT is not set +CONFIG_SCHED_MC=y +# CONFIG_PREEMPT_NONE is not set +# CONFIG_PREEMPT_VOLUNTARY is not set +CONFIG_PREEMPT=y +CONFIG_PREEMPT_COUNT=y +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y +CONFIG_X86_MCE=y +CONFIG_X86_MCE_INTEL=y +# CONFIG_X86_MCE_AMD is not set +CONFIG_X86_MCE_THRESHOLD=y +# CONFIG_X86_MCE_INJECT is not set +CONFIG_X86_THERMAL_VECTOR=y +# CONFIG_I8K is not set +# CONFIG_MICROCODE is not set +CONFIG_X86_MSR=y +CONFIG_X86_CPUID=y +CONFIG_ARCH_PHYS_ADDR_T_64BIT=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_DIRECT_GBPAGES=y +CONFIG_NUMA=y +# CONFIG_AMD_NUMA is not set +CONFIG_X86_64_ACPI_NUMA=y +CONFIG_NODES_SPAN_OTHER_NODES=y +# CONFIG_NUMA_EMU is not set +CONFIG_NODES_SHIFT=4 +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_NEED_MULTIPLE_NODES=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_MEMBLOCK=y +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_ARCH_DISCARD_MEMBLOCK=y +# CONFIG_MOVABLE_NODE is not set +# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_PAGEFLAGS_EXTENDED=y +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_COMPACTION=y +CONFIG_MIGRATION=y +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_ZONE_DMA_FLAG=1 +CONFIG_BOUNCE=y +CONFIG_VIRT_TO_BUS=y +CONFIG_KSM=y +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +# CONFIG_MEMORY_FAILURE is not set +CONFIG_TRANSPARENT_HUGEPAGE=y +# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y +CONFIG_CROSS_MEMORY_ATTACH=y +# CONFIG_CLEANCACHE is not set +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_X86_RESERVE_LOW=64 +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +CONFIG_X86_SMAP=y +CONFIG_EFI=y +CONFIG_EFI_STUB=y +CONFIG_SECCOMP=y +# CONFIG_CC_STACKPROTECTOR is not set +# CONFIG_HZ_100 is not set +# CONFIG_HZ_250 is not set +# CONFIG_HZ_300 is not set +CONFIG_HZ_1000=y +CONFIG_HZ=1000 +CONFIG_SCHED_HRTICK=y +# CONFIG_KEXEC is not set +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +# CONFIG_RELOCATABLE is not set +CONFIG_PHYSICAL_ALIGN=0x1000000 +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +# CONFIG_COMPAT_VDSO is not set +# CONFIG_CMDLINE_BOOL is not set +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_USE_PERCPU_NUMA_NODE_ID=y + +# +# Power management and ACPI options +# +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +# CONFIG_PM_AUTOSLEEP is not set +# CONFIG_PM_WAKELOCKS is not set +# CONFIG_PM_RUNTIME is not set +CONFIG_PM=y +# CONFIG_PM_DEBUG is not set +CONFIG_ACPI=y +CONFIG_ACPI_SLEEP=y +# CONFIG_ACPI_PROCFS is not set +# CONFIG_ACPI_PROCFS_POWER is not set +# CONFIG_ACPI_EC_DEBUGFS is not set +# CONFIG_ACPI_PROC_EVENT is not set +CONFIG_ACPI_AC=y +CONFIG_ACPI_BATTERY=y +CONFIG_ACPI_BUTTON=y +CONFIG_ACPI_VIDEO=y +CONFIG_ACPI_FAN=y +# CONFIG_ACPI_DOCK is not set +CONFIG_ACPI_I2C=y +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_HOTPLUG_CPU=y +# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set +CONFIG_ACPI_THERMAL=y +CONFIG_ACPI_NUMA=y +# CONFIG_ACPI_CUSTOM_DSDT is not set +CONFIG_ACPI_BLACKLIST_YEAR=0 +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_PCI_SLOT is not set +CONFIG_X86_PM_TIMER=y +CONFIG_ACPI_CONTAINER=y +# CONFIG_ACPI_SBS is not set +# CONFIG_ACPI_HED is not set +# CONFIG_ACPI_BGRT is not set +# CONFIG_ACPI_APEI is not set +# CONFIG_SFI is not set + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +CONFIG_CPU_FREQ_TABLE=y +CONFIG_CPU_FREQ_GOV_COMMON=y +# CONFIG_CPU_FREQ_STAT is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set +CONFIG_CPU_FREQ_GOV_USERSPACE=y +CONFIG_CPU_FREQ_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set + +# +# x86 CPU frequency scaling drivers +# +# CONFIG_X86_INTEL_PSTATE is not set +# CONFIG_X86_PCC_CPUFREQ is not set +CONFIG_X86_ACPI_CPUFREQ=y +# CONFIG_X86_POWERNOW_K8 is not set +# CONFIG_X86_SPEEDSTEP_CENTRINO is not set +# CONFIG_X86_P4_CLOCKMOD is not set + +# +# shared options +# +# CONFIG_X86_SPEEDSTEP_LIB is not set +CONFIG_CPU_IDLE=y +# CONFIG_CPU_IDLE_MULTIPLE_DRIVERS is not set +CONFIG_CPU_IDLE_GOV_LADDER=y +# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set +# CONFIG_INTEL_IDLE is not set + +# +# Memory power savings +# +# CONFIG_I7300_IDLE is not set + +# +# Bus options (PCI etc.) +# +CONFIG_PCI=y +CONFIG_PCI_DIRECT=y +# CONFIG_PCI_MMCONFIG is not set +CONFIG_PCI_DOMAINS=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +CONFIG_PCIEPORTBUS=y +# CONFIG_PCIEAER is not set +CONFIG_PCIEASPM=y +# CONFIG_PCIEASPM_DEBUG is not set +# CONFIG_PCIEASPM_DEFAULT is not set +# CONFIG_PCIEASPM_POWERSAVE is not set +CONFIG_PCIEASPM_PERFORMANCE=y +CONFIG_ARCH_SUPPORTS_MSI=y +CONFIG_PCI_MSI=y +# CONFIG_PCI_DEBUG is not set +# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set +# CONFIG_PCI_STUB is not set +CONFIG_HT_IRQ=y +# CONFIG_PCI_IOV is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_PASID is not set +# CONFIG_PCI_IOAPIC is not set +CONFIG_PCI_LABEL=y +CONFIG_ISA_DMA_API=y +# CONFIG_PCCARD is not set +# CONFIG_HOTPLUG_PCI is not set +# CONFIG_RAPIDIO is not set + +# +# Executable file formats / Emulations +# +CONFIG_BINFMT_ELF=y +CONFIG_COMPAT_BINFMT_ELF=y +CONFIG_ARCH_BINFMT_ELF_RANDOMIZE_PIE=y +CONFIG_BINFMT_SCRIPT=y +# CONFIG_HAVE_AOUT is not set +# CONFIG_BINFMT_MISC is not set +# CONFIG_COREDUMP is not set +CONFIG_IA32_EMULATION=y +# CONFIG_IA32_AOUT is not set +# CONFIG_X86_X32 is not set +CONFIG_COMPAT=y +CONFIG_COMPAT_FOR_U64_ALIGNMENT=y +CONFIG_SYSVIPC_COMPAT=y +CONFIG_HAVE_TEXT_POKE_SMP=y +CONFIG_X86_DEV_DMA_OPS=y +CONFIG_NET=y + +# +# Networking options +# +CONFIG_PACKET=y +# CONFIG_PACKET_DIAG is not set +CONFIG_UNIX=y +# CONFIG_UNIX_DIAG is not set +CONFIG_XFRM=y +CONFIG_XFRM_ALGO=y +CONFIG_XFRM_USER=y +# CONFIG_XFRM_SUB_POLICY is not set +# CONFIG_XFRM_MIGRATE is not set +# CONFIG_XFRM_STATISTICS is not set +# CONFIG_NET_KEY is not set +CONFIG_INET=y +CONFIG_IP_MULTICAST=y +# CONFIG_IP_ADVANCED_ROUTER is not set +CONFIG_IP_PNP=y +# CONFIG_IP_PNP_DHCP is not set +# CONFIG_IP_PNP_BOOTP is not set +# CONFIG_IP_PNP_RARP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +# CONFIG_NET_IP_TUNNEL is not set +# CONFIG_IP_MROUTE is not set +# CONFIG_ARPD is not set +# CONFIG_SYN_COOKIES is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +# CONFIG_INET_XFRM_TUNNEL is not set +# CONFIG_INET_TUNNEL is not set +# CONFIG_INET_XFRM_MODE_TRANSPORT is not set +# CONFIG_INET_XFRM_MODE_TUNNEL is not set +# CONFIG_INET_XFRM_MODE_BEET is not set +CONFIG_INET_LRO=y +# CONFIG_INET_DIAG is not set +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set +# CONFIG_IPV6 is not set +CONFIG_NETWORK_SECMARK=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +# CONFIG_NETFILTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +CONFIG_HAVE_NET_DSA=y +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_IPX is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +# CONFIG_NETLINK_MMAP is not set +# CONFIG_NETLINK_DIAG is not set +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +CONFIG_BQL=y +# CONFIG_BPF_JIT is not set + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_IRDA is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +CONFIG_WIRELESS=y +CONFIG_CFG80211=y +# CONFIG_NL80211_TESTMODE is not set +# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set +# CONFIG_CFG80211_REG_DEBUG is not set +# CONFIG_CFG80211_CERTIFICATION_ONUS is not set +CONFIG_CFG80211_DEFAULT_PS=y +# CONFIG_CFG80211_INTERNAL_REGDB is not set +# CONFIG_CFG80211_WEXT is not set +# CONFIG_LIB80211 is not set +CONFIG_MAC80211=y +CONFIG_MAC80211_HAS_RC=y +# CONFIG_MAC80211_RC_PID is not set +CONFIG_MAC80211_RC_MINSTREL=y +CONFIG_MAC80211_RC_MINSTREL_HT=y +CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y +CONFIG_MAC80211_RC_DEFAULT="minstrel_ht" +# CONFIG_MAC80211_MESH is not set +# CONFIG_MAC80211_LEDS is not set +# CONFIG_MAC80211_MESSAGE_TRACING is not set +# CONFIG_MAC80211_DEBUG_MENU is not set +# CONFIG_WIMAX is not set +# CONFIG_RFKILL is not set +# CONFIG_NET_9P is not set +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +CONFIG_HAVE_BPF_JIT=y + +# +# Device Drivers +# + +# +# Generic Driver Options +# +CONFIG_UEVENT_HELPER_PATH="" +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y +CONFIG_FW_LOADER=y +# CONFIG_FIRMWARE_IN_KERNEL is not set +CONFIG_EXTRA_FIRMWARE="" +# CONFIG_FW_LOADER_USER_HELPER is not set +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_SYS_HYPERVISOR is not set +# CONFIG_GENERIC_CPU_DEVICES is not set +CONFIG_DMA_SHARED_BUFFER=y + +# +# Bus devices +# +CONFIG_CONNECTOR=y +CONFIG_PROC_EVENTS=y +# CONFIG_MTD is not set +# CONFIG_PARPORT is not set +CONFIG_PNP=y +# CONFIG_PNP_DEBUG_MESSAGES is not set + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +# CONFIG_BLK_DEV_FD is not set +# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set +# CONFIG_BLK_CPQ_DA is not set +# CONFIG_BLK_CPQ_CISS_DA is not set +# CONFIG_BLK_DEV_DAC960 is not set +# CONFIG_BLK_DEV_UMEM is not set +# CONFIG_BLK_DEV_COW_COMMON is not set +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=4 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set +# CONFIG_BLK_DEV_DRBD is not set +# CONFIG_BLK_DEV_NBD is not set +# CONFIG_BLK_DEV_NVME is not set +# CONFIG_BLK_DEV_SX8 is not set +# CONFIG_BLK_DEV_RAM is not set +# CONFIG_CDROM_PKTCDVD is not set +# CONFIG_ATA_OVER_ETH is not set +# CONFIG_BLK_DEV_HD is not set +# CONFIG_BLK_DEV_RBD is not set +# CONFIG_BLK_DEV_RSXX is not set + +# +# Misc devices +# +# CONFIG_SENSORS_LIS3LV02D is not set +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +# CONFIG_INTEL_MID_PTI is not set +# CONFIG_SGI_IOC4 is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ATMEL_SSC is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1780 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_BMP085_I2C is not set +# CONFIG_PCH_PHUB is not set +# CONFIG_USB_SWITCH_FSA9480 is not set +# CONFIG_SRAM is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +# CONFIG_EEPROM_AT24 is not set +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_SENSORS_LIS3_I2C is not set + +# +# Altera FPGA firmware download module +# +# CONFIG_ALTERA_STAPL is not set +# CONFIG_VMWARE_VMCI is not set +CONFIG_HAVE_IDE=y +# CONFIG_IDE is not set + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# CONFIG_RAID_ATTRS is not set +CONFIG_SCSI=y +CONFIG_SCSI_DMA=y +# CONFIG_SCSI_TGT is not set +# CONFIG_SCSI_NETLINK is not set +# CONFIG_SCSI_PROC_FS is not set + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=y +# CONFIG_CHR_DEV_ST is not set +# CONFIG_CHR_DEV_OSST is not set +# CONFIG_BLK_DEV_SR is not set +# CONFIG_CHR_DEV_SG is not set +# CONFIG_CHR_DEV_SCH is not set +# CONFIG_SCSI_MULTI_LUN is not set +# CONFIG_SCSI_CONSTANTS is not set +# CONFIG_SCSI_LOGGING is not set +# CONFIG_SCSI_SCAN_ASYNC is not set + +# +# SCSI Transports +# +CONFIG_SCSI_SPI_ATTRS=y +# CONFIG_SCSI_FC_ATTRS is not set +# CONFIG_SCSI_ISCSI_ATTRS is not set +# CONFIG_SCSI_SAS_ATTRS is not set +# CONFIG_SCSI_SAS_LIBSAS is not set +# CONFIG_SCSI_SRP_ATTRS is not set +# CONFIG_SCSI_LOWLEVEL is not set +# CONFIG_SCSI_DH is not set +# CONFIG_SCSI_OSD_INITIATOR is not set +CONFIG_ATA=y +# CONFIG_ATA_NONSTANDARD is not set +# CONFIG_ATA_VERBOSE_ERROR is not set +CONFIG_ATA_ACPI=y +# CONFIG_SATA_ZPODD is not set +CONFIG_SATA_PMP=y + +# +# Controllers with non-SFF native interface +# +CONFIG_SATA_AHCI=y +# CONFIG_SATA_AHCI_PLATFORM is not set +# CONFIG_SATA_INIC162X is not set +# CONFIG_SATA_ACARD_AHCI is not set +# CONFIG_SATA_SIL24 is not set +# CONFIG_ATA_SFF is not set +# CONFIG_MD is not set +# CONFIG_TARGET_CORE is not set +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# CONFIG_I2O is not set +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +# CONFIG_DUMMY is not set +# CONFIG_EQUALIZER is not set +# CONFIG_NET_FC is not set +CONFIG_MII=y +# CONFIG_NET_TEAM is not set +# CONFIG_MACVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_NETCONSOLE is not set +# CONFIG_NETPOLL is not set +# CONFIG_NET_POLL_CONTROLLER is not set +# CONFIG_TUN is not set +# CONFIG_VETH is not set +# CONFIG_ARCNET is not set + +# +# CAIF transport drivers +# + +# +# Distributed Switch Architecture drivers +# +# CONFIG_NET_DSA_MV88E6XXX is not set +# CONFIG_NET_DSA_MV88E6060 is not set +# CONFIG_NET_DSA_MV88E6XXX_NEED_PPU is not set +# CONFIG_NET_DSA_MV88E6131 is not set +# CONFIG_NET_DSA_MV88E6123_61_65 is not set +CONFIG_ETHERNET=y +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_CADENCE is not set +# CONFIG_NET_VENDOR_BROADCOM is not set +# CONFIG_NET_VENDOR_BROCADE is not set +# CONFIG_NET_CALXEDA_XGMAC is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EXAR is not set +# CONFIG_NET_VENDOR_HP is not set +# CONFIG_NET_VENDOR_INTEL is not set +# CONFIG_IP1000 is not set +# CONFIG_JME is not set +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_FEALNX is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_ETHOC is not set +# CONFIG_NET_PACKET_ENGINE is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +CONFIG_NET_VENDOR_REALTEK=y +# CONFIG_8139CP is not set +# CONFIG_8139TOO is not set +CONFIG_R8169=m +# CONFIG_NET_VENDOR_RDC is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_SFC is not set +# CONFIG_NET_VENDOR_SMSC is not set +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +# CONFIG_PHYLIB is not set +# CONFIG_PPP is not set +# CONFIG_SLIP is not set + +# +# USB Network Adapters +# +# CONFIG_USB_CATC is not set +# CONFIG_USB_KAWETH is not set +# CONFIG_USB_PEGASUS is not set +# CONFIG_USB_RTL8150 is not set +# CONFIG_USB_RTL8152 is not set +# CONFIG_USB_USBNET is not set +# CONFIG_USB_IPHETH is not set +CONFIG_WLAN=y +# CONFIG_LIBERTAS_THINFIRM is not set +# CONFIG_AIRO is not set +# CONFIG_ATMEL is not set +# CONFIG_AT76C50X_USB is not set +# CONFIG_PRISM54 is not set +# CONFIG_USB_ZD1201 is not set +# CONFIG_USB_NET_RNDIS_WLAN is not set +# CONFIG_RTL8180 is not set +# CONFIG_RTL8187 is not set +# CONFIG_ADM8211 is not set +# CONFIG_MAC80211_HWSIM is not set +# CONFIG_MWL8K is not set +# CONFIG_ATH_CARDS is not set +# CONFIG_B43 is not set +# CONFIG_B43LEGACY is not set +# CONFIG_BRCMFMAC is not set +# CONFIG_HOSTAP is not set +# CONFIG_IPW2100 is not set +# CONFIG_IWLWIFI is not set +# CONFIG_IWL4965 is not set +# CONFIG_IWL3945 is not set +# CONFIG_LIBERTAS is not set +# CONFIG_P54_COMMON is not set +# CONFIG_RT2X00 is not set +CONFIG_RTLWIFI=y +# CONFIG_RTLWIFI_DEBUG is not set +CONFIG_RTL8192CE=m +# CONFIG_RTL8192SE is not set +# CONFIG_RTL8192DE is not set +# CONFIG_RTL8723AE is not set +# CONFIG_RTL8188EE is not set +# CONFIG_RTL8192CU is not set +CONFIG_RTL8192C_COMMON=m +# CONFIG_WL_TI is not set +# CONFIG_ZD1211RW is not set +# CONFIG_MWIFIEX is not set + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +# CONFIG_VMXNET3 is not set +# CONFIG_ISDN is not set + +# +# Input device support +# +CONFIG_INPUT=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_POLLDEV is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +# CONFIG_INPUT_MOUSEDEV is not set +# CONFIG_INPUT_JOYDEV is not set +CONFIG_INPUT_EVDEV=y +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +# CONFIG_KEYBOARD_ADP5588 is not set +# CONFIG_KEYBOARD_ADP5589 is not set +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_QT1070 is not set +# CONFIG_KEYBOARD_QT2160 is not set +# CONFIG_KEYBOARD_LKKBD is not set +# CONFIG_KEYBOARD_TCA6416 is not set +# CONFIG_KEYBOARD_TCA8418 is not set +# CONFIG_KEYBOARD_LM8323 is not set +# CONFIG_KEYBOARD_LM8333 is not set +# CONFIG_KEYBOARD_MAX7359 is not set +# CONFIG_KEYBOARD_MCS is not set +# CONFIG_KEYBOARD_MPR121 is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_OPENCORES is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_XTKBD is not set +# CONFIG_INPUT_MOUSE is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_TABLET is not set +# CONFIG_INPUT_TOUCHSCREEN is not set +# CONFIG_INPUT_MISC is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=y +# CONFIG_SERIO_CT82C710 is not set +# CONFIG_SERIO_PCIPS2 is not set +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_GAMEPORT is not set + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +CONFIG_VT_HW_CONSOLE_BINDING=y +CONFIG_UNIX98_PTYS=y +# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set +# CONFIG_LEGACY_PTYS is not set +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_NOZOMI is not set +# CONFIG_N_GSM is not set +# CONFIG_TRACE_SINK is not set + +# +# KCopy +# +CONFIG_KCOPY=y +# CONFIG_DEVKMEM is not set + +# +# Serial drivers +# +# CONFIG_SERIAL_8250 is not set +CONFIG_FIX_EARLYCON_MEM=y + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_MFD_HSU is not set +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_TIMBERDALE is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_PCH_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_TTY_PRINTK is not set +# CONFIG_IPMI_HANDLER is not set +CONFIG_HW_RANDOM=y +CONFIG_HW_RANDOM_TIMERIOMEM=y +CONFIG_HW_RANDOM_INTEL=y +# CONFIG_HW_RANDOM_AMD is not set +# CONFIG_HW_RANDOM_VIA is not set +CONFIG_NVRAM=y +# CONFIG_R3964 is not set +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +# CONFIG_RAW_DRIVER is not set +CONFIG_HPET=y +# CONFIG_HPET_MMAP is not set +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +CONFIG_DEVPORT=y +CONFIG_I2C=y +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_COMPAT=y +# CONFIG_I2C_CHARDEV is not set +# CONFIG_I2C_MUX is not set +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_ALGOBIT=y + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +CONFIG_I2C_I801=y +CONFIG_I2C_ISCH=y +# CONFIG_I2C_ISMT is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EG20T is not set +# CONFIG_I2C_INTEL_MID is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +# CONFIG_I2C_PXA_PCI is not set +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_DIOLAN_U2C is not set +# CONFIG_I2C_PARPORT_LIGHT is not set +# CONFIG_I2C_TAOS_EVM is not set +# CONFIG_I2C_TINY_USB is not set + +# +# Other I2C/SMBus bus drivers +# +# CONFIG_I2C_STUB is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# CONFIG_SPI is not set + +# +# Qualcomm MSM SSBI bus support +# +# CONFIG_SSBI is not set +# CONFIG_HSI is not set + +# +# PPS support +# +# CONFIG_PPS is not set + +# +# PPS generators support +# + +# +# PTP clock support +# +# CONFIG_PTP_1588_CLOCK is not set + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# CONFIG_PTP_1588_CLOCK_PCH is not set +CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y +CONFIG_GPIO_DEVRES=y +# CONFIG_GPIOLIB is not set +# CONFIG_W1 is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +# CONFIG_PDA_POWER is not set +# CONFIG_TEST_POWER is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_DS2782 is not set +# CONFIG_BATTERY_SBS is not set +# CONFIG_BATTERY_BQ27x00 is not set +# CONFIG_BATTERY_MAX17040 is not set +# CONFIG_BATTERY_MAX17042 is not set +# CONFIG_CHARGER_MAX8903 is not set +# CONFIG_CHARGER_LP8727 is not set +# CONFIG_CHARGER_BQ2415X is not set +# CONFIG_CHARGER_SMB347 is not set +# CONFIG_BATTERY_GOLDFISH is not set +# CONFIG_POWER_RESET is not set +# CONFIG_POWER_AVS is not set +CONFIG_HWMON=y +# CONFIG_HWMON_VID is not set +# CONFIG_HWMON_DEBUG_CHIP is not set + +# +# Native drivers +# +# CONFIG_SENSORS_ABITUGURU is not set +# CONFIG_SENSORS_ABITUGURU3 is not set +# CONFIG_SENSORS_AD7414 is not set +# CONFIG_SENSORS_AD7418 is not set +# CONFIG_SENSORS_ADM1021 is not set +# CONFIG_SENSORS_ADM1025 is not set +# CONFIG_SENSORS_ADM1026 is not set +# CONFIG_SENSORS_ADM1029 is not set +# CONFIG_SENSORS_ADM1031 is not set +# CONFIG_SENSORS_ADM9240 is not set +# CONFIG_SENSORS_ADT7410 is not set +# CONFIG_SENSORS_ADT7411 is not set +# CONFIG_SENSORS_ADT7462 is not set +# CONFIG_SENSORS_ADT7470 is not set +# CONFIG_SENSORS_ADT7475 is not set +# CONFIG_SENSORS_ASC7621 is not set +# CONFIG_SENSORS_K8TEMP is not set +# CONFIG_SENSORS_K10TEMP is not set +# CONFIG_SENSORS_FAM15H_POWER is not set +# CONFIG_SENSORS_ASB100 is not set +# CONFIG_SENSORS_ATXP1 is not set +# CONFIG_SENSORS_DS620 is not set +# CONFIG_SENSORS_DS1621 is not set +# CONFIG_SENSORS_I5K_AMB is not set +# CONFIG_SENSORS_F71805F is not set +# CONFIG_SENSORS_F71882FG is not set +# CONFIG_SENSORS_F75375S is not set +# CONFIG_SENSORS_FSCHMD is not set +# CONFIG_SENSORS_G760A is not set +# CONFIG_SENSORS_GL518SM is not set +# CONFIG_SENSORS_GL520SM is not set +# CONFIG_SENSORS_HIH6130 is not set +# CONFIG_SENSORS_CORETEMP is not set +# CONFIG_SENSORS_IT87 is not set +# CONFIG_SENSORS_JC42 is not set +# CONFIG_SENSORS_LINEAGE is not set +# CONFIG_SENSORS_LM63 is not set +# CONFIG_SENSORS_LM73 is not set +# CONFIG_SENSORS_LM75 is not set +# CONFIG_SENSORS_LM77 is not set +# CONFIG_SENSORS_LM78 is not set +# CONFIG_SENSORS_LM80 is not set +# CONFIG_SENSORS_LM83 is not set +# CONFIG_SENSORS_LM85 is not set +# CONFIG_SENSORS_LM87 is not set +# CONFIG_SENSORS_LM90 is not set +# CONFIG_SENSORS_LM92 is not set +# CONFIG_SENSORS_LM93 is not set +# CONFIG_SENSORS_LTC4151 is not set +# CONFIG_SENSORS_LTC4215 is not set +# CONFIG_SENSORS_LTC4245 is not set +# CONFIG_SENSORS_LTC4261 is not set +# CONFIG_SENSORS_LM95234 is not set +# CONFIG_SENSORS_LM95241 is not set +# CONFIG_SENSORS_LM95245 is not set +# CONFIG_SENSORS_MAX16065 is not set +# CONFIG_SENSORS_MAX1619 is not set +# CONFIG_SENSORS_MAX1668 is not set +# CONFIG_SENSORS_MAX197 is not set +# CONFIG_SENSORS_MAX6639 is not set +# CONFIG_SENSORS_MAX6642 is not set +# CONFIG_SENSORS_MAX6650 is not set +# CONFIG_SENSORS_MAX6697 is not set +# CONFIG_SENSORS_MCP3021 is not set +# CONFIG_SENSORS_NCT6775 is not set +# CONFIG_SENSORS_NTC_THERMISTOR is not set +# CONFIG_SENSORS_PC87360 is not set +# CONFIG_SENSORS_PC87427 is not set +# CONFIG_SENSORS_PCF8591 is not set +# CONFIG_PMBUS is not set +# CONFIG_SENSORS_SHT21 is not set +# CONFIG_SENSORS_SIS5595 is not set +# CONFIG_SENSORS_SMM665 is not set +# CONFIG_SENSORS_DME1737 is not set +# CONFIG_SENSORS_EMC1403 is not set +# CONFIG_SENSORS_EMC2103 is not set +# CONFIG_SENSORS_EMC6W201 is not set +# CONFIG_SENSORS_SMSC47M1 is not set +# CONFIG_SENSORS_SMSC47M192 is not set +# CONFIG_SENSORS_SMSC47B397 is not set +# CONFIG_SENSORS_SCH56XX_COMMON is not set +# CONFIG_SENSORS_ADS1015 is not set +# CONFIG_SENSORS_ADS7828 is not set +# CONFIG_SENSORS_AMC6821 is not set +# CONFIG_SENSORS_INA209 is not set +# CONFIG_SENSORS_INA2XX is not set +# CONFIG_SENSORS_THMC50 is not set +# CONFIG_SENSORS_TMP102 is not set +# CONFIG_SENSORS_TMP401 is not set +# CONFIG_SENSORS_TMP421 is not set +# CONFIG_SENSORS_VIA_CPUTEMP is not set +# CONFIG_SENSORS_VIA686A is not set +# CONFIG_SENSORS_VT1211 is not set +# CONFIG_SENSORS_VT8231 is not set +# CONFIG_SENSORS_W83781D is not set +# CONFIG_SENSORS_W83791D is not set +# CONFIG_SENSORS_W83792D is not set +# CONFIG_SENSORS_W83793 is not set +# CONFIG_SENSORS_W83795 is not set +# CONFIG_SENSORS_W83L785TS is not set +# CONFIG_SENSORS_W83L786NG is not set +# CONFIG_SENSORS_W83627HF is not set +# CONFIG_SENSORS_W83627EHF is not set +# CONFIG_SENSORS_APPLESMC is not set + +# +# ACPI drivers +# +# CONFIG_SENSORS_ACPI_POWER is not set +# CONFIG_SENSORS_ATK0110 is not set +CONFIG_THERMAL=y +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +# CONFIG_THERMAL_GOV_FAIR_SHARE is not set +CONFIG_THERMAL_GOV_STEP_WISE=y +# CONFIG_THERMAL_GOV_USER_SPACE is not set +# CONFIG_CPU_THERMAL is not set +# CONFIG_THERMAL_EMULATION is not set +# CONFIG_INTEL_POWERCLAMP is not set +# CONFIG_WATCHDOG is not set +CONFIG_SSB_POSSIBLE=y + +# +# Sonics Silicon Backplane +# +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y + +# +# Broadcom specific AMBA +# +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +CONFIG_MFD_CORE=y +# CONFIG_MFD_CS5535 is not set +# CONFIG_MFD_AS3711 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_CROS_EC is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_LPC_ICH is not set +CONFIG_LPC_SCH=y +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX77686 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_VIPERBOARD is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RTSX_PCI is not set +# CONFIG_MFD_RC5T583 is not set +# CONFIG_MFD_SEC_CORE is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SMSC is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_STMPE is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TPS65217 is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TC3589X is not set +# CONFIG_MFD_TMIO is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +# CONFIG_REGULATOR is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +CONFIG_AGP=y +CONFIG_AGP_INTEL=y +# CONFIG_AGP_SIS is not set +# CONFIG_AGP_VIA is not set +# CONFIG_VGA_ARB is not set +# CONFIG_VGA_SWITCHEROO is not set +CONFIG_DRM=y +CONFIG_DRM_KMS_HELPER=y +CONFIG_DRM_LOAD_EDID_FIRMWARE=y + +# +# I2C encoder or helper chips +# +# CONFIG_DRM_I2C_CH7006 is not set +# CONFIG_DRM_I2C_SIL164 is not set +# CONFIG_DRM_I2C_NXP_TDA998X is not set +# CONFIG_DRM_TDFX is not set +# CONFIG_DRM_R128 is not set +# CONFIG_DRM_RADEON is not set +# CONFIG_DRM_NOUVEAU is not set +CONFIG_DRM_I915=y +CONFIG_DRM_I915_KMS=y +# CONFIG_DRM_MGA is not set +# CONFIG_DRM_SIS is not set +# CONFIG_DRM_VIA is not set +# CONFIG_DRM_SAVAGE is not set +# CONFIG_DRM_VMWGFX is not set +# CONFIG_DRM_GMA500 is not set +# CONFIG_DRM_UDL is not set +# CONFIG_DRM_AST is not set +# CONFIG_DRM_MGAG200 is not set +# CONFIG_DRM_CIRRUS_QEMU is not set +# CONFIG_DRM_QXL is not set +# CONFIG_VGASTATE is not set +CONFIG_VIDEO_OUTPUT_CONTROL=y +CONFIG_HDMI=y +CONFIG_FB=y +CONFIG_FIRMWARE_EDID=y +# CONFIG_FB_DDC is not set +# CONFIG_FB_BOOT_VESA_SUPPORT is not set +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set +# CONFIG_FB_SYS_FILLRECT is not set +# CONFIG_FB_SYS_COPYAREA is not set +# CONFIG_FB_SYS_IMAGEBLIT is not set +# CONFIG_FB_FOREIGN_ENDIAN is not set +# CONFIG_FB_SYS_FOPS is not set +# CONFIG_FB_SVGALIB is not set +# CONFIG_FB_MACMODES is not set +# CONFIG_FB_BACKLIGHT is not set +# CONFIG_FB_MODE_HELPERS is not set +# CONFIG_FB_TILEBLITTING is not set + +# +# Frame buffer hardware drivers +# +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_PM2 is not set +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_ARC is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_IMSTT is not set +# CONFIG_FB_VGA16 is not set +# CONFIG_FB_UVESA is not set +# CONFIG_FB_VESA is not set +CONFIG_FB_EFI=y +# CONFIG_FB_N411 is not set +# CONFIG_FB_HGA is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_RIVA is not set +# CONFIG_FB_I740 is not set +# CONFIG_FB_LE80578 is not set +# CONFIG_FB_MATROX is not set +# CONFIG_FB_RADEON is not set +# CONFIG_FB_ATY128 is not set +# CONFIG_FB_ATY is not set +# CONFIG_FB_S3 is not set +# CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SIS is not set +# CONFIG_FB_VIA is not set +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_KYRO is not set +# CONFIG_FB_3DFX is not set +# CONFIG_FB_VOODOO1 is not set +# CONFIG_FB_VT8623 is not set +# CONFIG_FB_TRIDENT is not set +# CONFIG_FB_ARK is not set +# CONFIG_FB_PM3 is not set +# CONFIG_FB_CARMINE is not set +# CONFIG_FB_GEODE is not set +# CONFIG_FB_TMIO is not set +# CONFIG_FB_SMSCUFX is not set +# CONFIG_FB_UDL is not set +# CONFIG_FB_GOLDFISH is not set +# CONFIG_FB_VIRTUAL is not set +# CONFIG_FB_METRONOME is not set +# CONFIG_FB_MB862XX is not set +# CONFIG_FB_BROADSHEET is not set +# CONFIG_FB_AUO_K190X is not set +# CONFIG_EXYNOS_VIDEO is not set +CONFIG_BACKLIGHT_LCD_SUPPORT=y +# CONFIG_LCD_CLASS_DEVICE is not set +CONFIG_BACKLIGHT_CLASS_DEVICE=y +# CONFIG_BACKLIGHT_GENERIC is not set +# CONFIG_BACKLIGHT_APPLE is not set +# CONFIG_BACKLIGHT_SAHARA is not set +# CONFIG_BACKLIGHT_ADP8860 is not set +# CONFIG_BACKLIGHT_ADP8870 is not set +# CONFIG_BACKLIGHT_LM3630 is not set +# CONFIG_BACKLIGHT_LM3639 is not set +# CONFIG_BACKLIGHT_LP855X is not set + +# +# Console display driver support +# +CONFIG_VGA_CONSOLE=y +CONFIG_VGACON_SOFT_SCROLLBACK=y +CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=128 +CONFIG_DUMMY_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set +# CONFIG_FB_CON_DECOR is not set +# CONFIG_FONTS is not set +CONFIG_FONT_8x8=y +CONFIG_FONT_8x16=y +# CONFIG_LOGO is not set +CONFIG_SOUND=y +CONFIG_SOUND_OSS_CORE=y +CONFIG_SOUND_OSS_CORE_PRECLAIM=y +CONFIG_SND=y +CONFIG_SND_TIMER=y +CONFIG_SND_PCM=y +CONFIG_SND_HWDEP=y +CONFIG_SND_SEQUENCER=y +CONFIG_SND_SEQ_DUMMY=y +CONFIG_SND_OSSEMUL=y +CONFIG_SND_MIXER_OSS=y +CONFIG_SND_PCM_OSS=y +CONFIG_SND_PCM_OSS_PLUGINS=y +CONFIG_SND_SEQUENCER_OSS=y +CONFIG_SND_HRTIMER=y +CONFIG_SND_SEQ_HRTIMER_DEFAULT=y +CONFIG_SND_DYNAMIC_MINORS=y +# CONFIG_SND_SUPPORT_OLD_API is not set +# CONFIG_SND_VERBOSE_PROCFS is not set +# CONFIG_SND_VERBOSE_PRINTK is not set +# CONFIG_SND_DEBUG is not set +CONFIG_SND_VMASTER=y +CONFIG_SND_KCTL_JACK=y +CONFIG_SND_DMA_SGBUF=y +# CONFIG_SND_RAWMIDI_SEQ is not set +# CONFIG_SND_OPL3_LIB_SEQ is not set +# CONFIG_SND_OPL4_LIB_SEQ is not set +# CONFIG_SND_SBAWE_SEQ is not set +# CONFIG_SND_EMU10K1_SEQ is not set +# CONFIG_SND_DRIVERS is not set +CONFIG_SND_PCI=y +# CONFIG_SND_AD1889 is not set +# CONFIG_SND_ALS300 is not set +# CONFIG_SND_ALS4000 is not set +# CONFIG_SND_ALI5451 is not set +# CONFIG_SND_ASIHPI is not set +# CONFIG_SND_ATIIXP is not set +# CONFIG_SND_ATIIXP_MODEM is not set +# CONFIG_SND_AU8810 is not set +# CONFIG_SND_AU8820 is not set +# CONFIG_SND_AU8830 is not set +# CONFIG_SND_AW2 is not set +# CONFIG_SND_AZT3328 is not set +# CONFIG_SND_BT87X is not set +# CONFIG_SND_CA0106 is not set +# CONFIG_SND_CMIPCI is not set +# CONFIG_SND_OXYGEN is not set +# CONFIG_SND_CS4281 is not set +# CONFIG_SND_CS46XX is not set +# CONFIG_SND_CS5530 is not set +# CONFIG_SND_CS5535AUDIO is not set +# CONFIG_SND_CTXFI is not set +# CONFIG_SND_DARLA20 is not set +# CONFIG_SND_GINA20 is not set +# CONFIG_SND_LAYLA20 is not set +# CONFIG_SND_DARLA24 is not set +# CONFIG_SND_GINA24 is not set +# CONFIG_SND_LAYLA24 is not set +# CONFIG_SND_MONA is not set +# CONFIG_SND_MIA is not set +# CONFIG_SND_ECHO3G is not set +# CONFIG_SND_INDIGO is not set +# CONFIG_SND_INDIGOIO is not set +# CONFIG_SND_INDIGODJ is not set +# CONFIG_SND_INDIGOIOX is not set +# CONFIG_SND_INDIGODJX is not set +# CONFIG_SND_EMU10K1 is not set +# CONFIG_SND_EMU10K1X is not set +# CONFIG_SND_ENS1370 is not set +# CONFIG_SND_ENS1371 is not set +# CONFIG_SND_ES1938 is not set +# CONFIG_SND_ES1968 is not set +# CONFIG_SND_FM801 is not set +CONFIG_SND_HDA_INTEL=y +CONFIG_SND_HDA_PREALLOC_SIZE=64 +CONFIG_SND_HDA_HWDEP=y +# CONFIG_SND_HDA_RECONFIG is not set +# CONFIG_SND_HDA_INPUT_BEEP is not set +# CONFIG_SND_HDA_INPUT_JACK is not set +# CONFIG_SND_HDA_PATCH_LOADER is not set +CONFIG_SND_HDA_CODEC_REALTEK=y +CONFIG_SND_HDA_CODEC_ANALOG=y +CONFIG_SND_HDA_CODEC_SIGMATEL=y +CONFIG_SND_HDA_CODEC_VIA=y +CONFIG_SND_HDA_CODEC_HDMI=y +CONFIG_SND_HDA_CODEC_CIRRUS=y +CONFIG_SND_HDA_CODEC_CONEXANT=y +CONFIG_SND_HDA_CODEC_CA0110=y +CONFIG_SND_HDA_CODEC_CA0132=y +# CONFIG_SND_HDA_CODEC_CA0132_DSP is not set +CONFIG_SND_HDA_CODEC_CMEDIA=y +CONFIG_SND_HDA_CODEC_SI3054=y +CONFIG_SND_HDA_GENERIC=y +CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0 +# CONFIG_SND_HDSP is not set +# CONFIG_SND_HDSPM is not set +# CONFIG_SND_ICE1712 is not set +# CONFIG_SND_ICE1724 is not set +# CONFIG_SND_INTEL8X0 is not set +# CONFIG_SND_INTEL8X0M is not set +# CONFIG_SND_KORG1212 is not set +# CONFIG_SND_LOLA is not set +# CONFIG_SND_LX6464ES is not set +# CONFIG_SND_MAESTRO3 is not set +# CONFIG_SND_MIXART is not set +# CONFIG_SND_NM256 is not set +# CONFIG_SND_PCXHR is not set +# CONFIG_SND_RIPTIDE is not set +# CONFIG_SND_RME32 is not set +# CONFIG_SND_RME96 is not set +# CONFIG_SND_RME9652 is not set +# CONFIG_SND_SONICVIBES is not set +# CONFIG_SND_TRIDENT is not set +# CONFIG_SND_VIA82XX is not set +# CONFIG_SND_VIA82XX_MODEM is not set +# CONFIG_SND_VIRTUOSO is not set +# CONFIG_SND_VX222 is not set +# CONFIG_SND_YMFPCI is not set +# CONFIG_SND_USB is not set +# CONFIG_SND_SOC is not set +# CONFIG_SOUND_PRIME is not set + +# +# HID support +# +CONFIG_HID=y +# CONFIG_HID_BATTERY_STRENGTH is not set +# CONFIG_HIDRAW is not set +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_APPLEIR is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_PRODIKEYS is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_HOLTEK is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_UCLOGIC is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LENOVO_TPKBD is not set +# CONFIG_HID_LOGITECH is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTRIG is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_PS3REMOTE is not set +# CONFIG_HID_ROCCAT is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SONY is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THINGM is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_WACOM is not set +# CONFIG_HID_WIIMOTE is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set + +# +# USB HID support +# +CONFIG_USB_HID=y +# CONFIG_HID_PID is not set +# CONFIG_USB_HIDDEV is not set + +# +# I2C HID support +# +# CONFIG_I2C_HID is not set +CONFIG_USB_ARCH_HAS_OHCI=y +CONFIG_USB_ARCH_HAS_EHCI=y +CONFIG_USB_ARCH_HAS_XHCI=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=y +# CONFIG_USB_DEBUG is not set +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_DYNAMIC_MINORS is not set +# CONFIG_USB_OTG_WHITELIST is not set +# CONFIG_USB_OTG_BLACKLIST_HUB is not set +# CONFIG_USB_MON is not set +# CONFIG_USB_WUSB_CBAF is not set + +# +# USB Host Controller Drivers +# +# CONFIG_USB_C67X00_HCD is not set +CONFIG_USB_XHCI_HCD=y +# CONFIG_USB_XHCI_HCD_DEBUGGING is not set +CONFIG_USB_EHCI_HCD=y +# CONFIG_USB_EHCI_ROOT_HUB_TT is not set +# CONFIG_USB_EHCI_TT_NEWSCHED is not set +CONFIG_USB_EHCI_PCI=y +# CONFIG_USB_EHCI_HCD_PLATFORM is not set +# CONFIG_USB_OXU210HP_HCD is not set +# CONFIG_USB_ISP116X_HCD is not set +# CONFIG_USB_ISP1760_HCD is not set +# CONFIG_USB_ISP1362_HCD is not set +CONFIG_USB_OHCI_HCD=y +# CONFIG_USB_OHCI_HCD_PLATFORM is not set +# CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set +# CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_UHCI_HCD=y +# CONFIG_USB_SL811_HCD is not set +# CONFIG_USB_R8A66597_HCD is not set + +# +# USB Device Class drivers +# +# CONFIG_USB_ACM is not set +# CONFIG_USB_PRINTER is not set +# CONFIG_USB_WDM is not set +# CONFIG_USB_TMC is not set + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# +CONFIG_USB_STORAGE=y +# CONFIG_USB_STORAGE_DEBUG is not set +# CONFIG_USB_STORAGE_REALTEK is not set +# CONFIG_USB_STORAGE_DATAFAB is not set +# CONFIG_USB_STORAGE_FREECOM is not set +# CONFIG_USB_STORAGE_ISD200 is not set +# CONFIG_USB_STORAGE_USBAT is not set +# CONFIG_USB_STORAGE_SDDR09 is not set +# CONFIG_USB_STORAGE_SDDR55 is not set +# CONFIG_USB_STORAGE_JUMPSHOT is not set +# CONFIG_USB_STORAGE_ALAUDA is not set +# CONFIG_USB_STORAGE_ONETOUCH is not set +# CONFIG_USB_STORAGE_KARMA is not set +# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set +# CONFIG_USB_STORAGE_ENE_UB6250 is not set + +# +# USB Imaging devices +# +# CONFIG_USB_MDC800 is not set +# CONFIG_USB_MICROTEK is not set +# CONFIG_USB_DWC3 is not set +# CONFIG_USB_CHIPIDEA is not set + +# +# USB port drivers +# +# CONFIG_USB_SERIAL is not set + +# +# USB Miscellaneous drivers +# +# CONFIG_USB_EMI62 is not set +# CONFIG_USB_EMI26 is not set +# CONFIG_USB_ADUTUX is not set +# CONFIG_USB_SEVSEG is not set +# CONFIG_USB_RIO500 is not set +# CONFIG_USB_LEGOTOWER is not set +# CONFIG_USB_LCD is not set +# CONFIG_USB_LED is not set +# CONFIG_USB_CYPRESS_CY7C63 is not set +# CONFIG_USB_CYTHERM is not set +# CONFIG_USB_IDMOUSE is not set +# CONFIG_USB_FTDI_ELAN is not set +# CONFIG_USB_APPLEDISPLAY is not set +# CONFIG_USB_SISUSBVGA is not set +# CONFIG_USB_LD is not set +# CONFIG_USB_TRANCEVIBRATOR is not set +# CONFIG_USB_IOWARRIOR is not set +# CONFIG_USB_TEST is not set +# CONFIG_USB_ISIGHTFW is not set +# CONFIG_USB_YUREX is not set +# CONFIG_USB_EZUSB_FX2 is not set +# CONFIG_USB_HSIC_USB3503 is not set +# CONFIG_USB_PHY is not set +# CONFIG_USB_GADGET is not set +# CONFIG_UWB is not set +# CONFIG_MMC is not set +# CONFIG_MEMSTICK is not set +CONFIG_NEW_LEDS=y +CONFIG_LEDS_CLASS=y + +# +# LED drivers +# +# CONFIG_LEDS_LM3530 is not set +# CONFIG_LEDS_LM3642 is not set +# CONFIG_LEDS_PCA9532 is not set +# CONFIG_LEDS_LP3944 is not set +# CONFIG_LEDS_LP5521 is not set +# CONFIG_LEDS_LP5523 is not set +# CONFIG_LEDS_LP5562 is not set +# CONFIG_LEDS_CLEVO_MAIL is not set +# CONFIG_LEDS_PCA955X is not set +# CONFIG_LEDS_PCA9633 is not set +# CONFIG_LEDS_BD2802 is not set +# CONFIG_LEDS_INTEL_SS4200 is not set +# CONFIG_LEDS_DELL_NETBOOKS is not set +# CONFIG_LEDS_TCA6507 is not set +# CONFIG_LEDS_LM355x is not set +# CONFIG_LEDS_OT200 is not set +# CONFIG_LEDS_BLINKM is not set + +# +# LED Triggers +# +# CONFIG_LEDS_TRIGGERS is not set +# CONFIG_ACCESSIBILITY is not set +# CONFIG_INFINIBAND is not set +CONFIG_EDAC=y +CONFIG_EDAC_LEGACY_SYSFS=y +# CONFIG_EDAC_DEBUG is not set +# CONFIG_EDAC_MM_EDAC is not set +CONFIG_RTC_LIB=y +CONFIG_RTC_CLASS=y +CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +# CONFIG_RTC_DEBUG is not set + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +# CONFIG_RTC_DRV_TEST is not set + +# +# I2C RTC drivers +# +# CONFIG_RTC_DRV_DS1307 is not set +# CONFIG_RTC_DRV_DS1374 is not set +# CONFIG_RTC_DRV_DS1672 is not set +# CONFIG_RTC_DRV_DS3232 is not set +# CONFIG_RTC_DRV_MAX6900 is not set +# CONFIG_RTC_DRV_RS5C372 is not set +# CONFIG_RTC_DRV_ISL1208 is not set +# CONFIG_RTC_DRV_ISL12022 is not set +# CONFIG_RTC_DRV_X1205 is not set +# CONFIG_RTC_DRV_PCF8523 is not set +# CONFIG_RTC_DRV_PCF8563 is not set +# CONFIG_RTC_DRV_PCF8583 is not set +# CONFIG_RTC_DRV_M41T80 is not set +# CONFIG_RTC_DRV_BQ32K is not set +# CONFIG_RTC_DRV_S35390A is not set +# CONFIG_RTC_DRV_FM3130 is not set +# CONFIG_RTC_DRV_RX8581 is not set +# CONFIG_RTC_DRV_RX8025 is not set +# CONFIG_RTC_DRV_EM3027 is not set +# CONFIG_RTC_DRV_RV3029C2 is not set + +# +# SPI RTC drivers +# + +# +# Platform RTC drivers +# +CONFIG_RTC_DRV_CMOS=y +# CONFIG_RTC_DRV_DS1286 is not set +# CONFIG_RTC_DRV_DS1511 is not set +# CONFIG_RTC_DRV_DS1553 is not set +# CONFIG_RTC_DRV_DS1742 is not set +# CONFIG_RTC_DRV_STK17TA8 is not set +# CONFIG_RTC_DRV_M48T86 is not set +# CONFIG_RTC_DRV_M48T35 is not set +# CONFIG_RTC_DRV_M48T59 is not set +# CONFIG_RTC_DRV_MSM6242 is not set +# CONFIG_RTC_DRV_BQ4802 is not set +# CONFIG_RTC_DRV_RP5C01 is not set +# CONFIG_RTC_DRV_V3020 is not set +# CONFIG_RTC_DRV_DS2404 is not set + +# +# on-CPU RTC drivers +# + +# +# HID Sensor RTC drivers +# +# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set + +# +# DMA Devices +# +# CONFIG_INTEL_MID_DMAC is not set +# CONFIG_INTEL_IOATDMA is not set +# CONFIG_DW_DMAC is not set +# CONFIG_TIMB_DMA is not set +# CONFIG_PCH_DMA is not set +CONFIG_DMA_ACPI=y +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VFIO is not set +# CONFIG_VIRT_DRIVERS is not set + +# +# Virtio drivers +# +# CONFIG_VIRTIO_PCI is not set +# CONFIG_VIRTIO_MMIO is not set + +# +# Microsoft Hyper-V guest support +# +# CONFIG_STAGING is not set +CONFIG_X86_PLATFORM_DEVICES=y +# CONFIG_ACER_WMI is not set +# CONFIG_ACERHDF is not set +# CONFIG_ASUS_LAPTOP is not set +# CONFIG_CHROMEOS_LAPTOP is not set +# CONFIG_DELL_WMI is not set +# CONFIG_DELL_WMI_AIO is not set +# CONFIG_FUJITSU_LAPTOP is not set +# CONFIG_FUJITSU_TABLET is not set +# CONFIG_HP_ACCEL is not set +# CONFIG_HP_WMI is not set +# CONFIG_PANASONIC_LAPTOP is not set +CONFIG_THINKPAD_ACPI=y +CONFIG_THINKPAD_ACPI_ALSA_SUPPORT=y +# CONFIG_THINKPAD_ACPI_DEBUGFACILITIES is not set +# CONFIG_THINKPAD_ACPI_DEBUG is not set +# CONFIG_THINKPAD_ACPI_UNSAFE_LEDS is not set +CONFIG_THINKPAD_ACPI_VIDEO=y +CONFIG_THINKPAD_ACPI_HOTKEY_POLL=y +# CONFIG_SENSORS_HDAPS is not set +# CONFIG_INTEL_MENLOW is not set +CONFIG_ACPI_WMI=y +# CONFIG_MSI_WMI is not set +# CONFIG_TOPSTAR_LAPTOP is not set +# CONFIG_ACPI_TOSHIBA is not set +# CONFIG_TOSHIBA_BT_RFKILL is not set +# CONFIG_ACPI_CMPC is not set +# CONFIG_INTEL_IPS is not set +# CONFIG_IBM_RTL is not set +# CONFIG_XO15_EBOOK is not set +# CONFIG_SAMSUNG_LAPTOP is not set +CONFIG_MXM_WMI=y +# CONFIG_SAMSUNG_Q10 is not set +# CONFIG_APPLE_GMUX is not set +# CONFIG_PVPANIC is not set + +# +# Hardware Spinlock drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_I8253_LOCK=y +CONFIG_CLKBLD_I8253=y +# CONFIG_MAILBOX is not set +CONFIG_IOMMU_API=y +CONFIG_IOMMU_SUPPORT=y +# CONFIG_AMD_IOMMU is not set +CONFIG_DMAR_TABLE=y +CONFIG_INTEL_IOMMU=y +# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set +CONFIG_INTEL_IOMMU_FLOPPY_WA=y +# CONFIG_IRQ_REMAP is not set + +# +# Remoteproc drivers +# +# CONFIG_STE_MODEM_RPROC is not set + +# +# Rpmsg drivers +# +# CONFIG_PM_DEVFREQ is not set +# CONFIG_EXTCON is not set +# CONFIG_MEMORY is not set +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +# CONFIG_PWM is not set +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set + +# +# Firmware Drivers +# +# CONFIG_EDD is not set +CONFIG_FIRMWARE_MEMMAP=y +# CONFIG_DELL_RBU is not set +# CONFIG_DCDBAS is not set +CONFIG_DMIID=y +# CONFIG_DMI_SYSFS is not set +# CONFIG_ISCSI_IBFT_FIND is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +CONFIG_EFI_VARS=y + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +CONFIG_EXT4_FS=y +# CONFIG_EXT4_USE_FOR_EXT23 is not set +CONFIG_EXT4_FS_POSIX_ACL=y +CONFIG_EXT4_FS_SECURITY=y +# CONFIG_EXT4_DEBUG is not set +CONFIG_JBD2=y +CONFIG_FS_MBCACHE=y +# CONFIG_REISERFS_FS is not set +# CONFIG_JFS_FS is not set +# CONFIG_XFS_FS is not set +# CONFIG_GFS2_FS is not set +# CONFIG_BTRFS_FS is not set +# CONFIG_NILFS2_FS is not set +CONFIG_FS_POSIX_ACL=y +CONFIG_EXPORTFS=y +CONFIG_FILE_LOCKING=y +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +# CONFIG_QUOTA is not set +# CONFIG_QUOTACTL is not set +# CONFIG_AUTOFS4_FS is not set +# CONFIG_FUSE_FS is not set +CONFIG_GENERIC_ACL=y + +# +# Caches +# +# CONFIG_FSCACHE is not set + +# +# CD-ROM/DVD Filesystems +# +CONFIG_ISO9660_FS=y +# CONFIG_JOLIET is not set +# CONFIG_ZISOFS is not set +# CONFIG_UDF_FS is not set + +# +# DOS/FAT/NT Filesystems +# +CONFIG_FAT_FS=y +# CONFIG_MSDOS_FS is not set +CONFIG_VFAT_FS=y +CONFIG_FAT_DEFAULT_CODEPAGE=936 +CONFIG_FAT_DEFAULT_IOCHARSET="cp936" +CONFIG_NTFS_FS=m +# CONFIG_NTFS_DEBUG is not set +CONFIG_NTFS_RW=y + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +# CONFIG_PROC_KCORE is not set +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +# CONFIG_HUGETLBFS is not set +# CONFIG_HUGETLB_PAGE is not set +# CONFIG_CONFIGFS_FS is not set +# CONFIG_MISC_FILESYSTEMS is not set +# CONFIG_NETWORK_FILESYSTEMS is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="utf8" +CONFIG_NLS_CODEPAGE_437=y +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +CONFIG_NLS_CODEPAGE_936=y +CONFIG_NLS_CODEPAGE_950=y +CONFIG_NLS_CODEPAGE_932=y +CONFIG_NLS_CODEPAGE_949=y +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +CONFIG_NLS_ASCII=y +CONFIG_NLS_ISO8859_1=y +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +CONFIG_NLS_UTF8=y + +# +# Kernel hacking +# +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_DEFAULT_MESSAGE_LOGLEVEL=1 +CONFIG_ENABLE_WARN_DEPRECATED=y +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_FRAME_WARN=2048 +# CONFIG_MAGIC_SYSRQ is not set +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_READABLE_ASM is not set +# CONFIG_UNUSED_SYMBOLS is not set +# CONFIG_DEBUG_FS is not set +# CONFIG_HEADERS_CHECK is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_DEBUG_KERNEL=y +# CONFIG_DEBUG_SHIRQ is not set +# CONFIG_LOCKUP_DETECTOR is not set +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +# CONFIG_DETECT_HUNG_TASK is not set +# CONFIG_SCHED_DEBUG is not set +# CONFIG_SCHEDSTATS is not set +# CONFIG_TIMER_STATS is not set +# CONFIG_DEBUG_OBJECTS is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_PREEMPT is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_RT_MUTEX_TESTER is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_DEBUG_KOBJECT is not set +# CONFIG_DEBUG_INFO is not set +# CONFIG_DEBUG_VM is not set +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_WRITECOUNT is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +# CONFIG_DEBUG_LIST is not set +# CONFIG_TEST_LIST_SORT is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_CREDENTIALS is not set +CONFIG_ARCH_WANT_FRAME_POINTERS=y +# CONFIG_FRAME_POINTER is not set + +# +# RCU Debugging +# +# CONFIG_PROVE_RCU_DELAY is not set +# CONFIG_SPARSE_RCU_POINTER is not set +# CONFIG_RCU_TORTURE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=60 +# CONFIG_RCU_CPU_STALL_VERBOSE is not set +# CONFIG_RCU_CPU_STALL_INFO is not set +# CONFIG_RCU_TRACE is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +# CONFIG_LATENCYTOP is not set +CONFIG_ARCH_HAS_DEBUG_STRICT_USER_COPY_CHECKS=y +# CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set +# CONFIG_DEBUG_PAGEALLOC is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=y +CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_DMA_API_DEBUG is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_SAMPLES is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_HAVE_ARCH_KMEMCHECK=y +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_STRICT_DEVMEM is not set +# CONFIG_X86_VERBOSE_BOOTUP is not set +# CONFIG_EARLY_PRINTK is not set +# CONFIG_DEBUG_STACKOVERFLOW is not set +# CONFIG_X86_PTDUMP is not set +# CONFIG_DEBUG_RODATA is not set +# CONFIG_DEBUG_SET_MODULE_RONX is not set +# CONFIG_DEBUG_NX_TEST is not set +# CONFIG_DEBUG_TLBFLUSH is not set +# CONFIG_IOMMU_STRESS is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +CONFIG_IO_DELAY_TYPE_0X80=0 +CONFIG_IO_DELAY_TYPE_0XED=1 +CONFIG_IO_DELAY_TYPE_UDELAY=2 +CONFIG_IO_DELAY_TYPE_NONE=3 +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +CONFIG_DEFAULT_IO_DELAY_TYPE=0 +# CONFIG_CPA_DEBUG is not set +# CONFIG_OPTIMIZE_INLINING is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set + +# +# Security options +# +# CONFIG_KEYS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITY is not set +# CONFIG_SECURITYFS is not set +# CONFIG_INTEL_TXT is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_DEFAULT_SECURITY="" +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_BLKCIPHER=y +CONFIG_CRYPTO_BLKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG2=y +# CONFIG_CRYPTO_MANAGER is not set +# CONFIG_CRYPTO_MANAGER2 is not set +# CONFIG_CRYPTO_USER is not set +# CONFIG_CRYPTO_GF128MUL is not set +# CONFIG_CRYPTO_NULL is not set +# CONFIG_CRYPTO_PCRYPT is not set +CONFIG_CRYPTO_WORKQUEUE=y +# CONFIG_CRYPTO_CRYPTD is not set +# CONFIG_CRYPTO_AUTHENC is not set +# CONFIG_CRYPTO_TEST is not set + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_SEQIV is not set + +# +# Block modes +# +# CONFIG_CRYPTO_CBC is not set +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +# CONFIG_CRYPTO_ECB is not set +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_PCBC is not set +# CONFIG_CRYPTO_XTS is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +# CONFIG_CRYPTO_HMAC is not set +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=y +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_MD4 is not set +# CONFIG_CRYPTO_MD5 is not set +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD128 is not set +# CONFIG_CRYPTO_RMD160 is not set +# CONFIG_CRYPTO_RMD256 is not set +# CONFIG_CRYPTO_RMD320 is not set +# CONFIG_CRYPTO_SHA1 is not set +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +# CONFIG_CRYPTO_SHA256_SSSE3 is not set +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +# CONFIG_CRYPTO_SHA256 is not set +# CONFIG_CRYPTO_SHA512 is not set +# CONFIG_CRYPTO_TGR192 is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_X86_64 is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_ANUBIS is not set +CONFIG_CRYPTO_ARC4=y +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +# CONFIG_CRYPTO_DES is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_KHAZAD is not set +# CONFIG_CRYPTO_SALSA20 is not set +# CONFIG_CRYPTO_SALSA20_X86_64 is not set +# CONFIG_CRYPTO_SEED is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_TEA is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +# CONFIG_CRYPTO_DEFLATE is not set +# CONFIG_CRYPTO_ZLIB is not set +# CONFIG_CRYPTO_LZO is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_PADLOCK is not set +CONFIG_HAVE_KVM=y +# CONFIG_VIRTUALIZATION is not set +# CONFIG_BINARY_PRINTF is not set + +# +# Library routines +# +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_GENERIC_IO=y +# CONFIG_CRC_CCITT is not set +CONFIG_CRC16=y +# CONFIG_CRC_T10DIF is not set +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +# CONFIG_XZ_DEC is not set +# CONFIG_XZ_DEC_BCJ is not set +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT=y +CONFIG_HAS_DMA=y +CONFIG_CHECK_SIGNATURE=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_NLATTR=y +CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y +CONFIG_AVERAGE=y +# CONFIG_CORDIC is not set +# CONFIG_DDR is not set +CONFIG_UCS2_STRING=y diff --git a/kernle.config/alienware-alpha/4.16.7-sgima0f.conf b/kernle.config/alienware-alpha/4.16.7-sgima0f.conf new file mode 100755 index 0000000..51051a4 --- /dev/null +++ b/kernle.config/alienware-alpha/4.16.7-sgima0f.conf @@ -0,0 +1,3067 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 4.16.7 Kernel Configuration +# +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_RWSEM_XCHGADD_ALGORITHM=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ZONE_DMA32=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_HAVE_INTEL_TXT=y +CONFIG_X86_64_SMP=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_EXTABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +CONFIG_CROSS_COMPILE="" +# CONFIG_COMPILE_TEST is not set +CONFIG_LOCALVERSION="-sgima0f" +CONFIG_LOCALVERSION_AUTO=y +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +# CONFIG_KERNEL_GZIP is not set +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +CONFIG_KERNEL_XZ=y +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +CONFIG_DEFAULT_HOSTNAME="Alpha" +# CONFIG_SWAP is not set +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +# CONFIG_CROSS_MEMORY_ATTACH is not set +# CONFIG_USELIB is not set +# CONFIG_AUDIT is not set +CONFIG_HAVE_ARCH_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y +CONFIG_GENERIC_IRQ_RESERVATION_MODE=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_DATA=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +CONFIG_NO_HZ_IDLE=y +# CONFIG_NO_HZ_FULL is not set +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +# CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_TASKSTATS=y +CONFIG_TASK_DELAY_ACCT=y +# CONFIG_TASK_XACCT is not set +CONFIG_CPU_ISOLATION=y + +# +# RCU Subsystem +# +CONFIG_PREEMPT_RCU=y +CONFIG_RCU_EXPERT=y +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +CONFIG_TASKS_RCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +CONFIG_RCU_FANOUT=64 +CONFIG_RCU_FANOUT_LEAF=16 +# CONFIG_RCU_FAST_NO_HZ is not set +# CONFIG_RCU_BOOST is not set +# CONFIG_RCU_NOCB_CPU is not set +# CONFIG_BUILD_BIN2C is not set +# CONFIG_IKCONFIG is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=17 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_ARCH_SUPPORTS_INT128=y +CONFIG_CGROUPS=y +# CONFIG_MEMCG is not set +# CONFIG_BLK_CGROUP is not set +CONFIG_CGROUP_SCHED=y +CONFIG_FAIR_GROUP_SCHED=y +CONFIG_CFS_BANDWIDTH=y +# CONFIG_RT_GROUP_SCHED is not set +CONFIG_CGROUP_PIDS=y +# CONFIG_CGROUP_RDMA is not set +# CONFIG_CGROUP_FREEZER is not set +# CONFIG_CPUSETS is not set +# CONFIG_CGROUP_DEVICE is not set +# CONFIG_CGROUP_CPUACCT is not set +# CONFIG_CGROUP_PERF is not set +CONFIG_CGROUP_BPF=y +# CONFIG_CGROUP_DEBUG is not set +CONFIG_SOCK_CGROUP_DATA=y +CONFIG_NAMESPACES=y +CONFIG_UTS_NS=y +CONFIG_IPC_NS=y +CONFIG_USER_NS=y +CONFIG_PID_NS=y +CONFIG_NET_NS=y +CONFIG_SCHED_AUTOGROUP=y +# CONFIG_SYSFS_DEPRECATED is not set +# CONFIG_RELAY is not set +CONFIG_BLK_DEV_INITRD=y +CONFIG_INITRAMFS_SOURCE="" +# CONFIG_RD_GZIP is not set +# CONFIG_RD_BZIP2 is not set +# CONFIG_RD_LZMA is not set +CONFIG_RD_XZ=y +# CONFIG_RD_LZO is not set +# CONFIG_RD_LZ4 is not set +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_SYSCTL=y +CONFIG_ANON_INODES=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_BPF=y +CONFIG_EXPERT=y +CONFIG_MULTIUSER=y +# CONFIG_SGETMASK_SYSCALL is not set +# CONFIG_SYSFS_SYSCALL is not set +# CONFIG_SYSCTL_SYSCALL is not set +CONFIG_FHANDLE=y +CONFIG_POSIX_TIMERS=y +CONFIG_PRINTK=y +CONFIG_PRINTK_NMI=y +# CONFIG_BUG is not set +# CONFIG_PCSPKR_PLATFORM is not set +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_MEMBARRIER=y +CONFIG_CHECKPOINT_RESTORE=y +# CONFIG_KALLSYMS is not set +CONFIG_BPF_SYSCALL=y +# CONFIG_USERFAULTFD is not set +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# CONFIG_VM_EVENT_COUNTERS is not set +# CONFIG_SLUB_DEBUG is not set +# CONFIG_COMPAT_BRK is not set +# CONFIG_SLAB is not set +CONFIG_SLUB=y +# CONFIG_SLOB is not set +# CONFIG_SLAB_MERGE_DEFAULT is not set +# CONFIG_SLAB_FREELIST_RANDOM is not set +# CONFIG_SLAB_FREELIST_HARDENED is not set +CONFIG_SLUB_CPU_PARTIAL=y +CONFIG_SYSTEM_DATA_VERIFICATION=y +# CONFIG_PROFILING is not set +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +CONFIG_JUMP_LABEL=y +# CONFIG_STATIC_KEYS_SELFTEST is not set +# CONFIG_UPROBES is not set +# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_CLK=y +CONFIG_HAVE_DMA_API_DEBUG=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_RCU_TABLE_FREE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_SECCOMP_FILTER=y +CONFIG_HAVE_GCC_PLUGINS=y +# CONFIG_GCC_PLUGINS is not set +CONFIG_HAVE_CC_STACKPROTECTOR=y +CONFIG_CC_STACKPROTECTOR_NONE=y +# CONFIG_CC_STACKPROTECTOR_REGULAR is not set +# CONFIG_CC_STACKPROTECTOR_STRONG is not set +# CONFIG_CC_STACKPROTECTOR_AUTO is not set +CONFIG_THIN_ARCHIVES=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_COPY_THREAD_TLS=y +CONFIG_HAVE_STACK_VALIDATION=y +# CONFIG_HAVE_ARCH_HASH is not set +# CONFIG_ISA_BUS_API is not set +# CONFIG_CPU_NO_EFFICIENT_FFS is not set +CONFIG_HAVE_ARCH_VMAP_STACK=y +# CONFIG_VMAP_STACK is not set +# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set +# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_ARCH_HAS_PHYS_TO_DMA=y +CONFIG_ARCH_HAS_REFCOUNT=y +# CONFIG_REFCOUNT_FULL is not set + +# +# GCOV-based kernel profiling +# +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +# CONFIG_MODULES is not set +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_BLOCK=y +CONFIG_BLK_SCSI_REQUEST=y +CONFIG_BLK_DEV_BSG=y +# CONFIG_BLK_DEV_BSGLIB is not set +# CONFIG_BLK_DEV_INTEGRITY is not set +# CONFIG_BLK_DEV_ZONED is not set +# CONFIG_BLK_CMDLINE_PARSER is not set +CONFIG_BLK_WBT=y +CONFIG_BLK_WBT_SQ=y +# CONFIG_BLK_WBT_MQ is not set +# CONFIG_BLK_SED_OPAL is not set + +# +# Partition Types +# +CONFIG_PARTITION_ADVANCED=y +# CONFIG_ACORN_PARTITION is not set +# CONFIG_AIX_PARTITION is not set +# CONFIG_OSF_PARTITION is not set +# CONFIG_AMIGA_PARTITION is not set +# CONFIG_ATARI_PARTITION is not set +# CONFIG_MAC_PARTITION is not set +CONFIG_MSDOS_PARTITION=y +# CONFIG_BSD_DISKLABEL is not set +# CONFIG_MINIX_SUBPARTITION is not set +# CONFIG_SOLARIS_X86_PARTITION is not set +# CONFIG_UNIXWARE_DISKLABEL is not set +# CONFIG_LDM_PARTITION is not set +# CONFIG_SGI_PARTITION is not set +# CONFIG_ULTRIX_PARTITION is not set +# CONFIG_SUN_PARTITION is not set +# CONFIG_KARMA_PARTITION is not set +CONFIG_EFI_PARTITION=y +# CONFIG_SYSV68_PARTITION is not set +# CONFIG_CMDLINE_PARTITION is not set +CONFIG_BLK_MQ_PCI=y + +# +# IO Schedulers +# +CONFIG_IOSCHED_NOOP=y +# CONFIG_IOSCHED_DEADLINE is not set +CONFIG_IOSCHED_CFQ=y +CONFIG_DEFAULT_CFQ=y +# CONFIG_DEFAULT_NOOP is not set +CONFIG_DEFAULT_IOSCHED="cfq" +# CONFIG_MQ_IOSCHED_DEADLINE is not set +# CONFIG_MQ_IOSCHED_KYBER is not set +# CONFIG_IOSCHED_BFQ is not set +CONFIG_ASN1=y +CONFIG_UNINLINE_SPIN_UNLOCK=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y +CONFIG_FREEZER=y + +# +# Processor type and features +# +CONFIG_ZONE_DMA=y +CONFIG_SMP=y +CONFIG_X86_FEATURE_NAMES=y +CONFIG_X86_FAST_FEATURE_TESTS=y +# CONFIG_X86_X2APIC is not set +# CONFIG_X86_MPPARSE is not set +# CONFIG_GOLDFISH is not set +CONFIG_RETPOLINE=y +# CONFIG_INTEL_RDT is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +# CONFIG_X86_INTEL_LPSS is not set +# CONFIG_X86_AMD_PLATFORM_DEVICE is not set +# CONFIG_IOSF_MBI is not set +CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y +CONFIG_SCHED_OMIT_FRAME_POINTER=y +# CONFIG_HYPERVISOR_GUEST is not set +CONFIG_NO_BOOTMEM=y +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +CONFIG_MCORE2=y +# CONFIG_MATOM is not set +# CONFIG_GENERIC_CPU is not set +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_INTEL_USERCOPY=y +CONFIG_X86_USE_PPRO_CHECKSUM=y +CONFIG_X86_P6_NOP=y +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_PROCESSOR_SELECT=y +CONFIG_CPU_SUP_INTEL=y +# CONFIG_CPU_SUP_AMD is not set +# CONFIG_CPU_SUP_CENTAUR is not set +CONFIG_HPET_TIMER=y +CONFIG_HPET_EMULATE_RTC=y +CONFIG_DMI=y +# CONFIG_CALGARY_IOMMU is not set +CONFIG_SWIOTLB=y +CONFIG_IOMMU_HELPER=y +# CONFIG_MAXSMP is not set +CONFIG_NR_CPUS_RANGE_BEGIN=2 +CONFIG_NR_CPUS_RANGE_END=512 +CONFIG_NR_CPUS_DEFAULT=64 +CONFIG_NR_CPUS=4 +# CONFIG_SCHED_SMT is not set +CONFIG_SCHED_MC=y +CONFIG_SCHED_MC_PRIO=y +# CONFIG_PREEMPT_NONE is not set +# CONFIG_PREEMPT_VOLUNTARY is not set +CONFIG_PREEMPT=y +CONFIG_PREEMPT_COUNT=y +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y +CONFIG_X86_MCE=y +# CONFIG_X86_MCELOG_LEGACY is not set +# CONFIG_X86_MCE_INTEL is not set + +# +# Performance monitoring +# +# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set +# CONFIG_PERF_EVENTS_INTEL_RAPL is not set +# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set +# CONFIG_VM86 is not set +# CONFIG_X86_VSYSCALL_EMULATION is not set +# CONFIG_I8K is not set +CONFIG_MICROCODE=y +CONFIG_MICROCODE_INTEL=y +# CONFIG_MICROCODE_AMD is not set +CONFIG_MICROCODE_OLD_INTERFACE=y +# CONFIG_X86_MSR is not set +# CONFIG_X86_CPUID is not set +# CONFIG_X86_5LEVEL is not set +CONFIG_ARCH_PHYS_ADDR_T_64BIT=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_X86_DIRECT_GBPAGES=y +CONFIG_ARCH_HAS_MEM_ENCRYPT=y +# CONFIG_NUMA is not set +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_MEMBLOCK=y +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_HAVE_GENERIC_GUP=y +CONFIG_ARCH_DISCARD_MEMBLOCK=y +# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +CONFIG_COMPACTION=y +CONFIG_MIGRATION=y +CONFIG_ARCH_ENABLE_THP_MIGRATION=y +CONFIG_PHYS_ADDR_T_64BIT=y +# CONFIG_BOUNCE is not set +CONFIG_VIRT_TO_BUS=y +CONFIG_MMU_NOTIFIER=y +# CONFIG_KSM is not set +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +# CONFIG_MEMORY_FAILURE is not set +CONFIG_TRANSPARENT_HUGEPAGE=y +CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y +# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set +CONFIG_ARCH_WANTS_THP_SWAP=y +CONFIG_THP_SWAP=y +CONFIG_TRANSPARENT_HUGE_PAGECACHE=y +CONFIG_CLEANCACHE=y +# CONFIG_CMA is not set +# CONFIG_MEM_SOFT_DIRTY is not set +# CONFIG_ZPOOL is not set +# CONFIG_ZBUD is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_ZONE_DEVICE=y +CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y +CONFIG_ARCH_HAS_PKEYS=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_BENCHMARK is not set +# CONFIG_X86_PMEM_LEGACY is not set +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_X86_RESERVE_LOW=640 +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=1 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +CONFIG_X86_SMAP=y +CONFIG_X86_INTEL_UMIP=y +# CONFIG_X86_INTEL_MPX is not set +CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y +CONFIG_EFI=y +CONFIG_EFI_STUB=y +# CONFIG_EFI_MIXED is not set +CONFIG_SECCOMP=y +# CONFIG_HZ_100 is not set +# CONFIG_HZ_250 is not set +# CONFIG_HZ_300 is not set +CONFIG_HZ_1000=y +CONFIG_HZ=1000 +CONFIG_SCHED_HRTICK=y +# CONFIG_KEXEC is not set +# CONFIG_KEXEC_FILE is not set +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +CONFIG_RANDOMIZE_BASE=y +CONFIG_X86_NEED_RELOCS=y +CONFIG_PHYSICAL_ALIGN=0x200000 +CONFIG_RANDOMIZE_MEMORY=y +CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0x0 +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +# CONFIG_LEGACY_VSYSCALL_EMULATE is not set +CONFIG_LEGACY_VSYSCALL_NONE=y +# CONFIG_CMDLINE_BOOL is not set +# CONFIG_MODIFY_LDT_SYSCALL is not set +CONFIG_HAVE_LIVEPATCH=y +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y + +# +# Power management and ACPI options +# +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +CONFIG_PM_AUTOSLEEP=y +# CONFIG_PM_WAKELOCKS is not set +CONFIG_PM=y +# CONFIG_PM_DEBUG is not set +CONFIG_PM_CLK=y +# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_SPCR_TABLE=y +CONFIG_ACPI_LPIT=y +CONFIG_ACPI_SLEEP=y +# CONFIG_ACPI_PROCFS_POWER is not set +# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set +# CONFIG_ACPI_EC_DEBUGFS is not set +# CONFIG_ACPI_AC is not set +# CONFIG_ACPI_BATTERY is not set +CONFIG_ACPI_BUTTON=y +CONFIG_ACPI_VIDEO=y +# CONFIG_ACPI_FAN is not set +# CONFIG_ACPI_DOCK is not set +CONFIG_ACPI_CPU_FREQ_PSS=y +CONFIG_ACPI_PROCESSOR_CSTATE=y +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_CPPC_LIB=y +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_HOTPLUG_CPU=y +CONFIG_ACPI_PROCESSOR_AGGREGATOR=y +CONFIG_ACPI_THERMAL=y +# CONFIG_ACPI_CUSTOM_DSDT is not set +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_PCI_SLOT is not set +CONFIG_ACPI_CONTAINER=y +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_SBS is not set +# CONFIG_ACPI_HED is not set +# CONFIG_ACPI_BGRT is not set +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +# CONFIG_ACPI_NFIT is not set +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +# CONFIG_ACPI_APEI is not set +# CONFIG_DPTF_POWER is not set +# CONFIG_PMIC_OPREGION is not set +# CONFIG_ACPI_CONFIGFS is not set +CONFIG_X86_PM_TIMER=y +# CONFIG_SFI is not set + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +# CONFIG_CPU_FREQ_STAT is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +# CONFIG_CPU_FREQ_GOV_PERFORMANCE is not set +CONFIG_CPU_FREQ_GOV_POWERSAVE=y +# CONFIG_CPU_FREQ_GOV_USERSPACE is not set +# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set + +# +# CPU frequency scaling drivers +# +CONFIG_X86_INTEL_PSTATE=y +# CONFIG_X86_PCC_CPUFREQ is not set +# CONFIG_X86_ACPI_CPUFREQ is not set +# CONFIG_X86_SPEEDSTEP_CENTRINO is not set +# CONFIG_X86_P4_CLOCKMOD is not set + +# +# shared options +# +# CONFIG_X86_SPEEDSTEP_LIB is not set + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +# CONFIG_CPU_IDLE_GOV_LADDER is not set +CONFIG_CPU_IDLE_GOV_MENU=y +# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set +CONFIG_INTEL_IDLE=y + +# +# Bus options (PCI etc.) +# +CONFIG_PCI=y +CONFIG_PCI_DIRECT=y +CONFIG_PCI_MMCONFIG=y +CONFIG_PCI_DOMAINS=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +CONFIG_PCIEPORTBUS=y +CONFIG_PCIEAER=y +# CONFIG_PCIE_ECRC is not set +# CONFIG_PCIEAER_INJECT is not set +CONFIG_PCIEASPM=y +# CONFIG_PCIEASPM_DEBUG is not set +# CONFIG_PCIEASPM_DEFAULT is not set +CONFIG_PCIEASPM_POWERSAVE=y +# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +CONFIG_PCIE_PME=y +# CONFIG_PCIE_DPC is not set +CONFIG_PCIE_PTM=y +CONFIG_PCI_BUS_ADDR_T_64BIT=y +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_QUIRKS=y +# CONFIG_PCI_DEBUG is not set +# CONFIG_PCI_STUB is not set +CONFIG_PCI_ATS=y +CONFIG_PCI_LOCKLESS_CONFIG=y +# CONFIG_PCI_IOV is not set +# CONFIG_PCI_PRI is not set +CONFIG_PCI_PASID=y +CONFIG_PCI_LABEL=y +# CONFIG_HOTPLUG_PCI is not set + +# +# Cadence PCIe controllers support +# + +# +# DesignWare PCI Core Support +# +# CONFIG_PCIE_DW_PLAT is not set + +# +# PCI host controller drivers +# +# CONFIG_VMD is not set + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# CONFIG_ISA_BUS is not set +# CONFIG_ISA_DMA_API is not set +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set +# CONFIG_X86_SYSFB is not set + +# +# Executable file formats / Emulations +# +CONFIG_BINFMT_ELF=y +CONFIG_ELFCORE=y +CONFIG_BINFMT_SCRIPT=y +# CONFIG_HAVE_AOUT is not set +# CONFIG_BINFMT_MISC is not set +# CONFIG_COREDUMP is not set +# CONFIG_IA32_EMULATION is not set +# CONFIG_X86_X32 is not set +CONFIG_X86_DEV_DMA_OPS=y +CONFIG_NET=y +CONFIG_NET_INGRESS=y + +# +# Networking options +# +CONFIG_PACKET=y +# CONFIG_PACKET_DIAG is not set +CONFIG_UNIX=y +# CONFIG_UNIX_DIAG is not set +# CONFIG_TLS is not set +# CONFIG_XFRM_USER is not set +# CONFIG_NET_KEY is not set +CONFIG_INET=y +# CONFIG_IP_MULTICAST is not set +# CONFIG_IP_ADVANCED_ROUTER is not set +# CONFIG_IP_PNP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +# CONFIG_NET_IP_TUNNEL is not set +# CONFIG_SYN_COOKIES is not set +# CONFIG_NET_UDP_TUNNEL is not set +# CONFIG_NET_FOU is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +# CONFIG_INET_XFRM_TUNNEL is not set +# CONFIG_INET_TUNNEL is not set +# CONFIG_INET_XFRM_MODE_TRANSPORT is not set +# CONFIG_INET_XFRM_MODE_TUNNEL is not set +# CONFIG_INET_XFRM_MODE_BEET is not set +# CONFIG_INET_DIAG is not set +CONFIG_TCP_CONG_ADVANCED=y +# CONFIG_TCP_CONG_BIC is not set +# CONFIG_TCP_CONG_CUBIC is not set +# CONFIG_TCP_CONG_WESTWOOD is not set +# CONFIG_TCP_CONG_HTCP is not set +# CONFIG_TCP_CONG_HSTCP is not set +# CONFIG_TCP_CONG_HYBLA is not set +# CONFIG_TCP_CONG_VEGAS is not set +# CONFIG_TCP_CONG_NV is not set +# CONFIG_TCP_CONG_SCALABLE is not set +# CONFIG_TCP_CONG_LP is not set +# CONFIG_TCP_CONG_VENO is not set +# CONFIG_TCP_CONG_YEAH is not set +# CONFIG_TCP_CONG_ILLINOIS is not set +# CONFIG_TCP_CONG_DCTCP is not set +# CONFIG_TCP_CONG_CDG is not set +CONFIG_TCP_CONG_BBR=y +CONFIG_DEFAULT_BBR=y +# CONFIG_DEFAULT_RENO is not set +CONFIG_DEFAULT_TCP_CONG="bbr" +# CONFIG_TCP_MD5SIG is not set +CONFIG_IPV6=y +# CONFIG_IPV6_ROUTER_PREF is not set +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +# CONFIG_IPV6_MIP6 is not set +# CONFIG_IPV6_ILA is not set +# CONFIG_INET6_XFRM_TUNNEL is not set +# CONFIG_INET6_TUNNEL is not set +# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set +# CONFIG_INET6_XFRM_MODE_TUNNEL is not set +# CONFIG_INET6_XFRM_MODE_BEET is not set +# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set +# CONFIG_IPV6_SIT is not set +# CONFIG_IPV6_TUNNEL is not set +# CONFIG_IPV6_FOU is not set +# CONFIG_IPV6_FOU_TUNNEL is not set +# CONFIG_IPV6_MULTIPLE_TABLES is not set +# CONFIG_IPV6_MROUTE is not set +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_NETWORK_SECMARK is not set +# CONFIG_NET_PTP_CLASSIFY is not set +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +CONFIG_NETFILTER=y +CONFIG_NETFILTER_ADVANCED=y + +# +# Core Netfilter Configuration +# +CONFIG_NETFILTER_INGRESS=y +CONFIG_NETFILTER_NETLINK=y +# CONFIG_NETFILTER_NETLINK_ACCT is not set +# CONFIG_NETFILTER_NETLINK_QUEUE is not set +# CONFIG_NETFILTER_NETLINK_LOG is not set +CONFIG_NF_CONNTRACK=y +# CONFIG_NF_LOG_NETDEV is not set +# CONFIG_NF_CONNTRACK_MARK is not set +# CONFIG_NF_CONNTRACK_PROCFS is not set +# CONFIG_NF_CONNTRACK_EVENTS is not set +# CONFIG_NF_CONNTRACK_TIMEOUT is not set +# CONFIG_NF_CONNTRACK_TIMESTAMP is not set +# CONFIG_NF_CT_PROTO_DCCP is not set +# CONFIG_NF_CT_PROTO_SCTP is not set +# CONFIG_NF_CT_PROTO_UDPLITE is not set +# CONFIG_NF_CONNTRACK_AMANDA is not set +# CONFIG_NF_CONNTRACK_FTP is not set +# CONFIG_NF_CONNTRACK_H323 is not set +# CONFIG_NF_CONNTRACK_IRC is not set +# CONFIG_NF_CONNTRACK_NETBIOS_NS is not set +# CONFIG_NF_CONNTRACK_SNMP is not set +# CONFIG_NF_CONNTRACK_PPTP is not set +# CONFIG_NF_CONNTRACK_SANE is not set +# CONFIG_NF_CONNTRACK_SIP is not set +# CONFIG_NF_CONNTRACK_TFTP is not set +# CONFIG_NF_CT_NETLINK is not set +# CONFIG_NF_CT_NETLINK_TIMEOUT is not set +CONFIG_NF_TABLES=y +CONFIG_NF_TABLES_INET=y +# CONFIG_NF_TABLES_NETDEV is not set +# CONFIG_NFT_EXTHDR is not set +CONFIG_NFT_META=y +CONFIG_NFT_RT=y +# CONFIG_NFT_NUMGEN is not set +CONFIG_NFT_CT=y +CONFIG_NFT_SET_RBTREE=y +# CONFIG_NFT_SET_HASH is not set +# CONFIG_NFT_SET_BITMAP is not set +CONFIG_NFT_COUNTER=y +CONFIG_NFT_LOG=y +CONFIG_NFT_LIMIT=y +# CONFIG_NFT_NAT is not set +# CONFIG_NFT_OBJREF is not set +# CONFIG_NFT_QUOTA is not set +CONFIG_NFT_REJECT=y +CONFIG_NFT_REJECT_INET=y +CONFIG_NFT_HASH=y +# CONFIG_NF_FLOW_TABLE is not set +# CONFIG_NETFILTER_XTABLES is not set +# CONFIG_IP_SET is not set +# CONFIG_IP_VS is not set + +# +# IP: Netfilter Configuration +# +CONFIG_NF_DEFRAG_IPV4=y +CONFIG_NF_CONNTRACK_IPV4=y +# CONFIG_NF_SOCKET_IPV4 is not set +CONFIG_NF_TABLES_IPV4=y +CONFIG_NFT_CHAIN_ROUTE_IPV4=y +CONFIG_NFT_REJECT_IPV4=y +# CONFIG_NFT_DUP_IPV4 is not set +# CONFIG_NFT_FIB_IPV4 is not set +# CONFIG_NF_TABLES_ARP is not set +# CONFIG_NF_DUP_IPV4 is not set +# CONFIG_NF_LOG_ARP is not set +# CONFIG_NF_LOG_IPV4 is not set +CONFIG_NF_REJECT_IPV4=y +# CONFIG_NF_NAT_IPV4 is not set +# CONFIG_IP_NF_IPTABLES is not set +# CONFIG_IP_NF_ARPTABLES is not set + +# +# IPv6: Netfilter Configuration +# +CONFIG_NF_DEFRAG_IPV6=y +CONFIG_NF_CONNTRACK_IPV6=y +# CONFIG_NF_SOCKET_IPV6 is not set +CONFIG_NF_TABLES_IPV6=y +CONFIG_NFT_CHAIN_ROUTE_IPV6=y +CONFIG_NFT_REJECT_IPV6=y +# CONFIG_NFT_DUP_IPV6 is not set +# CONFIG_NFT_FIB_IPV6 is not set +# CONFIG_NF_DUP_IPV6 is not set +CONFIG_NF_REJECT_IPV6=y +# CONFIG_NF_LOG_IPV6 is not set +# CONFIG_NF_NAT_IPV6 is not set +# CONFIG_IP6_NF_IPTABLES is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +CONFIG_HAVE_NET_DSA=y +# CONFIG_NET_DSA is not set +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_6LOWPAN is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_DNS_RESOLVER is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +# CONFIG_NETLINK_DIAG is not set +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_NET_NCSI is not set +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +# CONFIG_CGROUP_NET_PRIO is not set +# CONFIG_CGROUP_NET_CLASSID is not set +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +# CONFIG_BPF_STREAM_PARSER is not set +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +CONFIG_BT=y +CONFIG_BT_BREDR=y +CONFIG_BT_RFCOMM=y +# CONFIG_BT_RFCOMM_TTY is not set +# CONFIG_BT_BNEP is not set +CONFIG_BT_HIDP=y +CONFIG_BT_HS=y +# CONFIG_BT_LE is not set +# CONFIG_BT_SELFTEST is not set + +# +# Bluetooth device drivers +# +CONFIG_BT_INTEL=y +CONFIG_BT_HCIBTUSB=y +# CONFIG_BT_HCIBTUSB_AUTOSUSPEND is not set +# CONFIG_BT_HCIBTUSB_BCM is not set +# CONFIG_BT_HCIBTUSB_RTL is not set +CONFIG_BT_HCIUART=y +CONFIG_BT_HCIUART_H4=y +# CONFIG_BT_HCIUART_BCSP is not set +# CONFIG_BT_HCIUART_ATH3K is not set +# CONFIG_BT_HCIUART_3WIRE is not set +# CONFIG_BT_HCIUART_QCA is not set +# CONFIG_BT_HCIUART_AG6XX is not set +# CONFIG_BT_HCIUART_MRVL is not set +# CONFIG_BT_HCIBCM203X is not set +# CONFIG_BT_HCIBPA10X is not set +# CONFIG_BT_HCIBFUSB is not set +# CONFIG_BT_HCIVHCI is not set +# CONFIG_BT_MRVL is not set +# CONFIG_BT_ATH3K is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +# CONFIG_STREAM_PARSER is not set +CONFIG_WIRELESS=y +CONFIG_CFG80211=y +# CONFIG_NL80211_TESTMODE is not set +# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set +# CONFIG_CFG80211_CERTIFICATION_ONUS is not set +CONFIG_CFG80211_REQUIRE_SIGNED_REGDB=y +CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS=y +# CONFIG_CFG80211_DEFAULT_PS is not set +CONFIG_CFG80211_CRDA_SUPPORT=y +# CONFIG_CFG80211_WEXT is not set +# CONFIG_LIB80211 is not set +CONFIG_MAC80211=y +CONFIG_MAC80211_HAS_RC=y +CONFIG_MAC80211_RC_MINSTREL=y +CONFIG_MAC80211_RC_MINSTREL_HT=y +# CONFIG_MAC80211_RC_MINSTREL_VHT is not set +CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y +CONFIG_MAC80211_RC_DEFAULT="minstrel_ht" +# CONFIG_MAC80211_MESH is not set +# CONFIG_MAC80211_MESSAGE_TRACING is not set +# CONFIG_MAC80211_DEBUG_MENU is not set +CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 +# CONFIG_WIMAX is not set +CONFIG_RFKILL=y +# CONFIG_RFKILL_INPUT is not set +# CONFIG_NET_9P is not set +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +# CONFIG_DST_CACHE is not set +# CONFIG_GRO_CELLS is not set +# CONFIG_NET_DEVLINK is not set +CONFIG_MAY_USE_DEVLINK=y +CONFIG_HAVE_EBPF_JIT=y + +# +# Device Drivers +# + +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y +CONFIG_FW_LOADER=y +CONFIG_EXTRA_FIRMWARE="iwlwifi-3160-17.ucode intel-ucode/06-3c-03 regulatory.db regulatory.db.p7s" +CONFIG_EXTRA_FIRMWARE_DIR="/lib64/firmware" +# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set +CONFIG_WANT_DEV_COREDUMP=y +# CONFIG_ALLOW_DEV_COREDUMP is not set +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +# CONFIG_SYS_HYPERVISOR is not set +# CONFIG_GENERIC_CPU_DEVICES is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +CONFIG_REGMAP=y +CONFIG_REGMAP_I2C=y +CONFIG_DMA_SHARED_BUFFER=y +# CONFIG_DMA_FENCE_TRACE is not set + +# +# Bus devices +# +CONFIG_CONNECTOR=y +CONFIG_PROC_EVENTS=y +# CONFIG_MTD is not set +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +# CONFIG_PNP_DEBUG_MESSAGES is not set + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +# CONFIG_BLK_DEV_NULL_BLK is not set +# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set +# CONFIG_BLK_DEV_DAC960 is not set +# CONFIG_BLK_DEV_UMEM is not set +# CONFIG_BLK_DEV_COW_COMMON is not set +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=0 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set +# CONFIG_BLK_DEV_DRBD is not set +# CONFIG_BLK_DEV_NBD is not set +# CONFIG_BLK_DEV_SKD is not set +# CONFIG_BLK_DEV_SX8 is not set +# CONFIG_BLK_DEV_RAM is not set +# CONFIG_CDROM_PKTCDVD is not set +# CONFIG_ATA_OVER_ETH is not set +# CONFIG_BLK_DEV_RBD is not set +# CONFIG_BLK_DEV_RSXX is not set + +# +# NVME Support +# +# CONFIG_BLK_DEV_NVME is not set +# CONFIG_NVME_FC is not set + +# +# Misc devices +# +# CONFIG_SENSORS_LIS3LV02D is not set +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +# CONFIG_SGI_IOC4 is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_USB_SWITCH_FSA9480 is not set +# CONFIG_SRAM is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_MISC_RTSX is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +# CONFIG_EEPROM_AT24 is not set +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_SENSORS_LIS3_I2C is not set +# CONFIG_ALTERA_STAPL is not set +# CONFIG_INTEL_MEI is not set +# CONFIG_INTEL_MEI_ME is not set +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_VMWARE_VMCI is not set + +# +# Intel MIC & related support +# + +# +# Intel MIC Bus Driver +# +# CONFIG_INTEL_MIC_BUS is not set + +# +# SCIF Bus Driver +# +# CONFIG_SCIF_BUS is not set + +# +# VOP Bus Driver +# +# CONFIG_VOP_BUS is not set + +# +# Intel MIC Host Driver +# + +# +# Intel MIC Card Driver +# + +# +# SCIF Driver +# + +# +# Intel MIC Coprocessor State Management (COSM) Drivers +# + +# +# VOP Driver +# +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_CXL_BASE is not set +# CONFIG_CXL_AFU_DRIVER_OPS is not set +# CONFIG_CXL_LIB is not set +# CONFIG_OCXL_BASE is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_MISC_RTSX_USB is not set +CONFIG_HAVE_IDE=y +# CONFIG_IDE is not set + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# CONFIG_RAID_ATTRS is not set +CONFIG_SCSI=y +CONFIG_SCSI_DMA=y +# CONFIG_SCSI_NETLINK is not set +# CONFIG_SCSI_MQ_DEFAULT is not set +# CONFIG_SCSI_PROC_FS is not set + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=y +# CONFIG_CHR_DEV_ST is not set +# CONFIG_CHR_DEV_OSST is not set +# CONFIG_BLK_DEV_SR is not set +# CONFIG_CHR_DEV_SG is not set +# CONFIG_CHR_DEV_SCH is not set +# CONFIG_SCSI_CONSTANTS is not set +# CONFIG_SCSI_LOGGING is not set +CONFIG_SCSI_SCAN_ASYNC=y + +# +# SCSI Transports +# +# CONFIG_SCSI_SPI_ATTRS is not set +# CONFIG_SCSI_FC_ATTRS is not set +# CONFIG_SCSI_ISCSI_ATTRS is not set +# CONFIG_SCSI_SAS_ATTRS is not set +# CONFIG_SCSI_SAS_LIBSAS is not set +# CONFIG_SCSI_SRP_ATTRS is not set +# CONFIG_SCSI_LOWLEVEL is not set +# CONFIG_SCSI_DH is not set +# CONFIG_SCSI_OSD_INITIATOR is not set +CONFIG_ATA=y +# CONFIG_ATA_NONSTANDARD is not set +# CONFIG_ATA_VERBOSE_ERROR is not set +CONFIG_ATA_ACPI=y +# CONFIG_SATA_ZPODD is not set +# CONFIG_SATA_PMP is not set + +# +# Controllers with non-SFF native interface +# +CONFIG_SATA_AHCI=y +CONFIG_SATA_MOBILE_LPM_POLICY=0 +# CONFIG_SATA_AHCI_PLATFORM is not set +# CONFIG_SATA_INIC162X is not set +# CONFIG_SATA_ACARD_AHCI is not set +# CONFIG_SATA_SIL24 is not set +# CONFIG_ATA_SFF is not set +# CONFIG_MD is not set +# CONFIG_TARGET_CORE is not set +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +# CONFIG_NET_CORE is not set +# CONFIG_ARCNET is not set + +# +# CAIF transport drivers +# + +# +# Distributed Switch Architecture drivers +# +# CONFIG_ETHERNET is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +# CONFIG_MDIO_DEVICE is not set +# CONFIG_MDIO_BUS is not set +# CONFIG_PHYLIB is not set +# CONFIG_PPP is not set +# CONFIG_SLIP is not set +# CONFIG_USB_NET_DRIVERS is not set +CONFIG_WLAN=y +# CONFIG_WIRELESS_WDS is not set +# CONFIG_WLAN_VENDOR_ADMTEK is not set +# CONFIG_WLAN_VENDOR_ATH is not set +# CONFIG_WLAN_VENDOR_ATMEL is not set +# CONFIG_WLAN_VENDOR_BROADCOM is not set +# CONFIG_WLAN_VENDOR_CISCO is not set +CONFIG_WLAN_VENDOR_INTEL=y +# CONFIG_IPW2100 is not set +# CONFIG_IPW2200 is not set +# CONFIG_IWL4965 is not set +# CONFIG_IWL3945 is not set +CONFIG_IWLWIFI=y +# CONFIG_IWLDVM is not set +CONFIG_IWLMVM=y +# CONFIG_IWLWIFI_BCAST_FILTERING is not set +# CONFIG_IWLWIFI_PCIE_RTPM is not set + +# +# Debugging Options +# +# CONFIG_IWLWIFI_DEBUG is not set +# CONFIG_WLAN_VENDOR_INTERSIL is not set +# CONFIG_WLAN_VENDOR_MARVELL is not set +# CONFIG_WLAN_VENDOR_MEDIATEK is not set +# CONFIG_WLAN_VENDOR_RALINK is not set +# CONFIG_WLAN_VENDOR_REALTEK is not set +# CONFIG_WLAN_VENDOR_RSI is not set +# CONFIG_WLAN_VENDOR_ST is not set +# CONFIG_WLAN_VENDOR_TI is not set +# CONFIG_WLAN_VENDOR_ZYDAS is not set +# CONFIG_WLAN_VENDOR_QUANTENNA is not set +# CONFIG_MAC80211_HWSIM is not set +# CONFIG_USB_NET_RNDIS_WLAN is not set + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +# CONFIG_ISDN is not set +# CONFIG_NVM is not set + +# +# Input device support +# +CONFIG_INPUT=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_POLLDEV is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +# CONFIG_INPUT_MOUSEDEV is not set +# CONFIG_INPUT_JOYDEV is not set +CONFIG_INPUT_EVDEV=y +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +# CONFIG_INPUT_KEYBOARD is not set +# CONFIG_INPUT_MOUSE is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_TABLET is not set +# CONFIG_INPUT_TOUCHSCREEN is not set +# CONFIG_INPUT_MISC is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +# CONFIG_SERIO is not set +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +# CONFIG_GAMEPORT is not set + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +# CONFIG_CONSOLE_TRANSLATIONS is not set +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +CONFIG_VT_HW_CONSOLE_BINDING=y +CONFIG_UNIX98_PTYS=y +# CONFIG_LEGACY_PTYS is not set +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_NOZOMI is not set +# CONFIG_N_GSM is not set +# CONFIG_TRACE_SINK is not set +# CONFIG_DEVMEM is not set +# CONFIG_DEVKMEM is not set + +# +# Serial drivers +# +# CONFIG_SERIAL_8250 is not set + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_UARTLITE is not set +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_DEV_BUS is not set +# CONFIG_TTY_PRINTK is not set +# CONFIG_IPMI_HANDLER is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +CONFIG_HW_RANDOM_INTEL=y +# CONFIG_HW_RANDOM_AMD is not set +# CONFIG_HW_RANDOM_VIA is not set +# CONFIG_NVRAM is not set +# CONFIG_R3964 is not set +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +# CONFIG_RAW_DRIVER is not set +CONFIG_HPET=y +# CONFIG_HPET_MMAP is not set +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +# CONFIG_DEVPORT is not set +# CONFIG_XILLYBUS is not set + +# +# I2C support +# +CONFIG_I2C=y +# CONFIG_ACPI_I2C_OPREGION is not set +CONFIG_I2C_BOARDINFO=y +# CONFIG_I2C_COMPAT is not set +# CONFIG_I2C_CHARDEV is not set +# CONFIG_I2C_MUX is not set +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_ALGOBIT=y + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_I801 is not set +CONFIG_I2C_ISCH=y +# CONFIG_I2C_ISMT is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +# CONFIG_I2C_PXA_PCI is not set +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_DIOLAN_U2C is not set +# CONFIG_I2C_PARPORT_LIGHT is not set +# CONFIG_I2C_ROBOTFUZZ_OSIF is not set +# CONFIG_I2C_TAOS_EVM is not set +# CONFIG_I2C_TINY_USB is not set + +# +# Other I2C/SMBus bus drivers +# +# CONFIG_I2C_MLXCPLD is not set +# CONFIG_I2C_SLAVE is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# CONFIG_SPI is not set +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +# CONFIG_PPS is not set + +# +# PTP clock support +# +# CONFIG_PTP_1588_CLOCK is not set + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# CONFIG_PINCTRL is not set +# CONFIG_GPIOLIB is not set +# CONFIG_W1 is not set +# CONFIG_POWER_AVS is not set +# CONFIG_POWER_RESET is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +# CONFIG_PDA_POWER is not set +# CONFIG_TEST_POWER is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_DS2782 is not set +# CONFIG_BATTERY_SBS is not set +# CONFIG_CHARGER_SBS is not set +# CONFIG_BATTERY_BQ27XXX is not set +# CONFIG_BATTERY_MAX17040 is not set +# CONFIG_BATTERY_MAX17042 is not set +# CONFIG_CHARGER_MAX8903 is not set +# CONFIG_CHARGER_LP8727 is not set +# CONFIG_CHARGER_BQ2415X is not set +# CONFIG_CHARGER_SMB347 is not set +# CONFIG_BATTERY_GAUGE_LTC2941 is not set +# CONFIG_HWMON is not set +CONFIG_THERMAL=y +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +CONFIG_THERMAL_WRITABLE_TRIPS=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set +# CONFIG_THERMAL_GOV_FAIR_SHARE is not set +CONFIG_THERMAL_GOV_STEP_WISE=y +# CONFIG_THERMAL_GOV_BANG_BANG is not set +# CONFIG_THERMAL_GOV_USER_SPACE is not set +# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set +# CONFIG_THERMAL_EMULATION is not set +# CONFIG_INTEL_POWERCLAMP is not set +# CONFIG_INTEL_SOC_DTS_THERMAL is not set + +# +# ACPI INT340X thermal drivers +# +# CONFIG_INT340X_THERMAL is not set +CONFIG_INTEL_PCH_THERMAL=y +# CONFIG_WATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +CONFIG_MFD_CORE=y +# CONFIG_MFD_AS3711 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_BCM590XX is not set +# CONFIG_MFD_BD9571MWV is not set +# CONFIG_MFD_AXP20X_I2C is not set +# CONFIG_MFD_CROS_EC is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_DLN2 is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set +# CONFIG_LPC_ICH is not set +CONFIG_LPC_SCH=y +# CONFIG_INTEL_SOC_PMIC_CHTWC is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_MFD_VIPERBOARD is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RC5T583 is not set +# CONFIG_MFD_SEC_CORE is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SMSC is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TPS68470 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TMIO is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +# CONFIG_REGULATOR is not set +# CONFIG_RC_CORE is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +# CONFIG_AGP is not set +# CONFIG_VGA_ARB is not set +# CONFIG_VGA_SWITCHEROO is not set +CONFIG_DRM=y +# CONFIG_DRM_DP_AUX_CHARDEV is not set +# CONFIG_DRM_DEBUG_MM is not set +# CONFIG_DRM_DEBUG_MM_SELFTEST is not set +CONFIG_DRM_KMS_HELPER=y +CONFIG_DRM_KMS_FB_HELPER=y +CONFIG_DRM_FBDEV_EMULATION=y +CONFIG_DRM_FBDEV_OVERALLOC=100 +# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set +CONFIG_DRM_TTM=y +CONFIG_DRM_VM=y + +# +# I2C encoder or helper chips +# +# CONFIG_DRM_I2C_CH7006 is not set +# CONFIG_DRM_I2C_SIL164 is not set +# CONFIG_DRM_I2C_NXP_TDA998X is not set +# CONFIG_DRM_RADEON is not set +# CONFIG_DRM_AMDGPU is not set + +# +# ACP (Audio CoProcessor) Configuration +# + +# +# AMD Library routines +# +# CONFIG_CHASH is not set +CONFIG_DRM_NOUVEAU=y +CONFIG_NOUVEAU_DEBUG=3 +CONFIG_NOUVEAU_DEBUG_DEFAULT=3 +# CONFIG_NOUVEAU_DEBUG_MMU is not set +# CONFIG_DRM_NOUVEAU_BACKLIGHT is not set +# CONFIG_DRM_I915 is not set +# CONFIG_DRM_VGEM is not set +# CONFIG_DRM_VMWGFX is not set +# CONFIG_DRM_GMA500 is not set +# CONFIG_DRM_UDL is not set +# CONFIG_DRM_AST is not set +# CONFIG_DRM_MGAG200 is not set +# CONFIG_DRM_CIRRUS_QEMU is not set +# CONFIG_DRM_QXL is not set +# CONFIG_DRM_BOCHS is not set +CONFIG_DRM_PANEL=y + +# +# Display Panels +# +CONFIG_DRM_BRIDGE=y +CONFIG_DRM_PANEL_BRIDGE=y + +# +# Display Interface Bridges +# +# CONFIG_DRM_ANALOGIX_ANX78XX is not set +# CONFIG_DRM_HISI_HIBMC is not set +# CONFIG_DRM_TINYDRM is not set +# CONFIG_DRM_LEGACY is not set +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y +# CONFIG_DRM_LIB_RANDOM is not set + +# +# Frame buffer Devices +# +CONFIG_FB=y +# CONFIG_FIRMWARE_EDID is not set +CONFIG_FB_CMDLINE=y +CONFIG_FB_NOTIFY=y +# CONFIG_FB_DDC is not set +# CONFIG_FB_BOOT_VESA_SUPPORT is not set +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set +CONFIG_FB_SYS_FILLRECT=y +CONFIG_FB_SYS_COPYAREA=y +CONFIG_FB_SYS_IMAGEBLIT=y +# CONFIG_FB_PROVIDE_GET_FB_UNMAPPED_AREA is not set +# CONFIG_FB_FOREIGN_ENDIAN is not set +CONFIG_FB_SYS_FOPS=y +CONFIG_FB_DEFERRED_IO=y +# CONFIG_FB_SVGALIB is not set +# CONFIG_FB_MACMODES is not set +# CONFIG_FB_BACKLIGHT is not set +# CONFIG_FB_MODE_HELPERS is not set +# CONFIG_FB_TILEBLITTING is not set + +# +# Frame buffer hardware drivers +# +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_PM2 is not set +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_ARC is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_IMSTT is not set +# CONFIG_FB_VGA16 is not set +# CONFIG_FB_UVESA is not set +# CONFIG_FB_VESA is not set +# CONFIG_FB_EFI is not set +# CONFIG_FB_N411 is not set +# CONFIG_FB_HGA is not set +# CONFIG_FB_OPENCORES is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_RIVA is not set +# CONFIG_FB_I740 is not set +# CONFIG_FB_LE80578 is not set +# CONFIG_FB_MATROX is not set +# CONFIG_FB_RADEON is not set +# CONFIG_FB_ATY128 is not set +# CONFIG_FB_ATY is not set +# CONFIG_FB_S3 is not set +# CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SIS is not set +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_KYRO is not set +# CONFIG_FB_3DFX is not set +# CONFIG_FB_VOODOO1 is not set +# CONFIG_FB_VT8623 is not set +# CONFIG_FB_TRIDENT is not set +# CONFIG_FB_ARK is not set +# CONFIG_FB_PM3 is not set +# CONFIG_FB_CARMINE is not set +# CONFIG_FB_SMSCUFX is not set +# CONFIG_FB_UDL is not set +# CONFIG_FB_IBM_GXT4500 is not set +# CONFIG_FB_VIRTUAL is not set +# CONFIG_FB_METRONOME is not set +# CONFIG_FB_MB862XX is not set +# CONFIG_FB_BROADSHEET is not set +# CONFIG_FB_AUO_K190X is not set +# CONFIG_FB_SIMPLE is not set +# CONFIG_FB_SM712 is not set +CONFIG_BACKLIGHT_LCD_SUPPORT=y +# CONFIG_LCD_CLASS_DEVICE is not set +CONFIG_BACKLIGHT_CLASS_DEVICE=y +# CONFIG_BACKLIGHT_GENERIC is not set +# CONFIG_BACKLIGHT_APPLE is not set +# CONFIG_BACKLIGHT_PM8941_WLED is not set +# CONFIG_BACKLIGHT_SAHARA is not set +# CONFIG_BACKLIGHT_ADP8860 is not set +# CONFIG_BACKLIGHT_ADP8870 is not set +# CONFIG_BACKLIGHT_LM3639 is not set +# CONFIG_BACKLIGHT_LV5207LP is not set +# CONFIG_BACKLIGHT_BD6107 is not set +# CONFIG_BACKLIGHT_ARCXCNN is not set +# CONFIG_VGASTATE is not set +CONFIG_HDMI=y + +# +# Console display driver support +# +# CONFIG_VGA_CONSOLE is not set +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=240 +CONFIG_DUMMY_CONSOLE_ROWS=68 +CONFIG_FRAMEBUFFER_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set +# CONFIG_LOGO is not set +CONFIG_SOUND=y +# CONFIG_SOUND_OSS_CORE is not set +CONFIG_SND=y +CONFIG_SND_TIMER=y +CONFIG_SND_PCM=y +CONFIG_SND_HWDEP=y +CONFIG_SND_RAWMIDI=y +CONFIG_SND_JACK=y +CONFIG_SND_JACK_INPUT_DEV=y +# CONFIG_SND_OSSEMUL is not set +# CONFIG_SND_PCM_TIMER is not set +CONFIG_SND_HRTIMER=y +# CONFIG_SND_DYNAMIC_MINORS is not set +# CONFIG_SND_SUPPORT_OLD_API is not set +# CONFIG_SND_PROC_FS is not set +# CONFIG_SND_VERBOSE_PRINTK is not set +# CONFIG_SND_DEBUG is not set +CONFIG_SND_VMASTER=y +CONFIG_SND_DMA_SGBUF=y +# CONFIG_SND_SEQUENCER is not set +# CONFIG_SND_OPL3_LIB_SEQ is not set +# CONFIG_SND_OPL4_LIB_SEQ is not set +# CONFIG_SND_DRIVERS is not set +CONFIG_SND_PCI=y +# CONFIG_SND_AD1889 is not set +# CONFIG_SND_ALS300 is not set +# CONFIG_SND_ALI5451 is not set +# CONFIG_SND_ASIHPI is not set +# CONFIG_SND_ATIIXP is not set +# CONFIG_SND_ATIIXP_MODEM is not set +# CONFIG_SND_AU8810 is not set +# CONFIG_SND_AU8820 is not set +# CONFIG_SND_AU8830 is not set +# CONFIG_SND_AW2 is not set +# CONFIG_SND_AZT3328 is not set +# CONFIG_SND_BT87X is not set +# CONFIG_SND_CA0106 is not set +# CONFIG_SND_CMIPCI is not set +# CONFIG_SND_OXYGEN is not set +# CONFIG_SND_CS4281 is not set +# CONFIG_SND_CS46XX is not set +# CONFIG_SND_CTXFI is not set +# CONFIG_SND_DARLA20 is not set +# CONFIG_SND_GINA20 is not set +# CONFIG_SND_LAYLA20 is not set +# CONFIG_SND_DARLA24 is not set +# CONFIG_SND_GINA24 is not set +# CONFIG_SND_LAYLA24 is not set +# CONFIG_SND_MONA is not set +# CONFIG_SND_MIA is not set +# CONFIG_SND_ECHO3G is not set +# CONFIG_SND_INDIGO is not set +# CONFIG_SND_INDIGOIO is not set +# CONFIG_SND_INDIGODJ is not set +# CONFIG_SND_INDIGOIOX is not set +# CONFIG_SND_INDIGODJX is not set +# CONFIG_SND_EMU10K1 is not set +# CONFIG_SND_EMU10K1_SEQ is not set +# CONFIG_SND_EMU10K1X is not set +# CONFIG_SND_ENS1370 is not set +# CONFIG_SND_ENS1371 is not set +# CONFIG_SND_ES1938 is not set +# CONFIG_SND_ES1968 is not set +# CONFIG_SND_FM801 is not set +# CONFIG_SND_HDSP is not set +# CONFIG_SND_HDSPM is not set +# CONFIG_SND_ICE1712 is not set +# CONFIG_SND_ICE1724 is not set +# CONFIG_SND_INTEL8X0 is not set +# CONFIG_SND_INTEL8X0M is not set +# CONFIG_SND_KORG1212 is not set +# CONFIG_SND_LOLA is not set +# CONFIG_SND_LX6464ES is not set +# CONFIG_SND_MAESTRO3 is not set +# CONFIG_SND_MIXART is not set +# CONFIG_SND_NM256 is not set +# CONFIG_SND_PCXHR is not set +# CONFIG_SND_RIPTIDE is not set +# CONFIG_SND_RME32 is not set +# CONFIG_SND_RME96 is not set +# CONFIG_SND_RME9652 is not set +# CONFIG_SND_SE6X is not set +# CONFIG_SND_SONICVIBES is not set +# CONFIG_SND_TRIDENT is not set +# CONFIG_SND_VIA82XX is not set +# CONFIG_SND_VIA82XX_MODEM is not set +# CONFIG_SND_VIRTUOSO is not set +# CONFIG_SND_VX222 is not set +# CONFIG_SND_YMFPCI is not set + +# +# HD-Audio +# +CONFIG_SND_HDA=y +CONFIG_SND_HDA_INTEL=y +# CONFIG_SND_HDA_HWDEP is not set +# CONFIG_SND_HDA_RECONFIG is not set +# CONFIG_SND_HDA_INPUT_BEEP is not set +# CONFIG_SND_HDA_PATCH_LOADER is not set +# CONFIG_SND_HDA_CODEC_REALTEK is not set +# CONFIG_SND_HDA_CODEC_ANALOG is not set +# CONFIG_SND_HDA_CODEC_SIGMATEL is not set +# CONFIG_SND_HDA_CODEC_VIA is not set +CONFIG_SND_HDA_CODEC_HDMI=y +# CONFIG_SND_HDA_CODEC_CIRRUS is not set +# CONFIG_SND_HDA_CODEC_CONEXANT is not set +# CONFIG_SND_HDA_CODEC_CA0110 is not set +# CONFIG_SND_HDA_CODEC_CA0132 is not set +# CONFIG_SND_HDA_CODEC_CMEDIA is not set +# CONFIG_SND_HDA_CODEC_SI3054 is not set +# CONFIG_SND_HDA_GENERIC is not set +CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0 +CONFIG_SND_HDA_CORE=y +CONFIG_SND_HDA_PREALLOC_SIZE=4096 +CONFIG_SND_USB=y +CONFIG_SND_USB_AUDIO=y +# CONFIG_SND_USB_UA101 is not set +# CONFIG_SND_USB_USX2Y is not set +# CONFIG_SND_USB_CAIAQ is not set +# CONFIG_SND_USB_US122L is not set +# CONFIG_SND_USB_6FIRE is not set +# CONFIG_SND_USB_HIFACE is not set +# CONFIG_SND_BCD2000 is not set +# CONFIG_SND_USB_POD is not set +# CONFIG_SND_USB_PODHD is not set +# CONFIG_SND_USB_TONEPORT is not set +# CONFIG_SND_USB_VARIAX is not set +# CONFIG_SND_SOC is not set +# CONFIG_SND_X86 is not set + +# +# HID support +# +CONFIG_HID=y +# CONFIG_HID_BATTERY_STRENGTH is not set +# CONFIG_HIDRAW is not set +CONFIG_UHID=y +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACCUTOUCH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_APPLEIR is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_BETOP_FF is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_PRODIKEYS is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_ELO is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_HOLTEK is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_UCLOGIC is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_JABRA is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_LOGITECH is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_NTRIG is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PENMOUNT is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_RETRODE is not set +# CONFIG_HID_ROCCAT is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_WACOM is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set + +# +# USB HID support +# +CONFIG_USB_HID=y +# CONFIG_HID_PID is not set +CONFIG_USB_HIDDEV=y + +# +# I2C HID support +# +# CONFIG_I2C_HID is not set + +# +# Intel ISH HID support +# +# CONFIG_INTEL_ISH_HID is not set +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=y +CONFIG_USB_PCI=y +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_DYNAMIC_MINORS is not set +# CONFIG_USB_OTG is not set +# CONFIG_USB_OTG_WHITELIST is not set +# CONFIG_USB_OTG_BLACKLIST_HUB is not set +# CONFIG_USB_MON is not set +# CONFIG_USB_WUSB_CBAF is not set + +# +# USB Host Controller Drivers +# +# CONFIG_USB_C67X00_HCD is not set +CONFIG_USB_XHCI_HCD=y +# CONFIG_USB_XHCI_DBGCAP is not set +CONFIG_USB_XHCI_PCI=y +# CONFIG_USB_XHCI_PLATFORM is not set +CONFIG_USB_EHCI_HCD=y +CONFIG_USB_EHCI_ROOT_HUB_TT=y +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHCI_PCI=y +# CONFIG_USB_EHCI_HCD_PLATFORM is not set +# CONFIG_USB_OXU210HP_HCD is not set +# CONFIG_USB_ISP116X_HCD is not set +# CONFIG_USB_ISP1362_HCD is not set +# CONFIG_USB_FOTG210_HCD is not set +# CONFIG_USB_OHCI_HCD is not set +# CONFIG_USB_UHCI_HCD is not set +# CONFIG_USB_SL811_HCD is not set +# CONFIG_USB_R8A66597_HCD is not set +# CONFIG_USB_HCD_TEST_MODE is not set + +# +# USB Device Class drivers +# +# CONFIG_USB_ACM is not set +# CONFIG_USB_PRINTER is not set +# CONFIG_USB_WDM is not set +# CONFIG_USB_TMC is not set + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# +CONFIG_USB_STORAGE=y +# CONFIG_USB_STORAGE_DEBUG is not set +# CONFIG_USB_STORAGE_REALTEK is not set +# CONFIG_USB_STORAGE_DATAFAB is not set +# CONFIG_USB_STORAGE_FREECOM is not set +# CONFIG_USB_STORAGE_ISD200 is not set +# CONFIG_USB_STORAGE_USBAT is not set +# CONFIG_USB_STORAGE_SDDR09 is not set +# CONFIG_USB_STORAGE_SDDR55 is not set +# CONFIG_USB_STORAGE_JUMPSHOT is not set +# CONFIG_USB_STORAGE_ALAUDA is not set +# CONFIG_USB_STORAGE_ONETOUCH is not set +# CONFIG_USB_STORAGE_KARMA is not set +# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set +# CONFIG_USB_STORAGE_ENE_UB6250 is not set +# CONFIG_USB_UAS is not set + +# +# USB Imaging devices +# +# CONFIG_USB_MDC800 is not set +# CONFIG_USB_MICROTEK is not set +# CONFIG_USBIP_CORE is not set +# CONFIG_USB_MUSB_HDRC is not set +# CONFIG_USB_DWC3 is not set +# CONFIG_USB_DWC2 is not set +# CONFIG_USB_CHIPIDEA is not set +# CONFIG_USB_ISP1760 is not set + +# +# USB port drivers +# +# CONFIG_USB_SERIAL is not set + +# +# USB Miscellaneous drivers +# +# CONFIG_USB_EMI62 is not set +# CONFIG_USB_EMI26 is not set +# CONFIG_USB_ADUTUX is not set +# CONFIG_USB_SEVSEG is not set +# CONFIG_USB_RIO500 is not set +# CONFIG_USB_LEGOTOWER is not set +# CONFIG_USB_LCD is not set +# CONFIG_USB_CYPRESS_CY7C63 is not set +# CONFIG_USB_CYTHERM is not set +# CONFIG_USB_IDMOUSE is not set +# CONFIG_USB_FTDI_ELAN is not set +# CONFIG_USB_APPLEDISPLAY is not set +# CONFIG_USB_SISUSBVGA is not set +# CONFIG_USB_LD is not set +# CONFIG_USB_TRANCEVIBRATOR is not set +# CONFIG_USB_IOWARRIOR is not set +# CONFIG_USB_TEST is not set +# CONFIG_USB_EHSET_TEST_FIXTURE is not set +# CONFIG_USB_ISIGHTFW is not set +# CONFIG_USB_YUREX is not set +# CONFIG_USB_EZUSB_FX2 is not set +# CONFIG_USB_HUB_USB251XB is not set +# CONFIG_USB_HSIC_USB3503 is not set +# CONFIG_USB_HSIC_USB4604 is not set +# CONFIG_USB_LINK_LAYER_TEST is not set +# CONFIG_USB_CHAOSKEY is not set + +# +# USB Physical Layer drivers +# +# CONFIG_USB_PHY is not set +# CONFIG_NOP_USB_XCEIV is not set +# CONFIG_USB_ISP1301 is not set +# CONFIG_USB_GADGET is not set +# CONFIG_TYPEC is not set +# CONFIG_USB_ULPI_BUS is not set +# CONFIG_UWB is not set +# CONFIG_MMC is not set +# CONFIG_MEMSTICK is not set +# CONFIG_NEW_LEDS is not set +# CONFIG_ACCESSIBILITY is not set +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +# CONFIG_EDAC is not set +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +CONFIG_RTC_CLASS=y +# CONFIG_RTC_HCTOSYS is not set +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_SYSTOHC_DEVICE="rtc0" +# CONFIG_RTC_DEBUG is not set +# CONFIG_RTC_NVMEM is not set + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +# CONFIG_RTC_DRV_TEST is not set + +# +# I2C RTC drivers +# +# CONFIG_RTC_DRV_ABB5ZES3 is not set +# CONFIG_RTC_DRV_ABX80X is not set +# CONFIG_RTC_DRV_DS1307 is not set +# CONFIG_RTC_DRV_DS1374 is not set +# CONFIG_RTC_DRV_DS1672 is not set +# CONFIG_RTC_DRV_MAX6900 is not set +# CONFIG_RTC_DRV_RS5C372 is not set +# CONFIG_RTC_DRV_ISL1208 is not set +# CONFIG_RTC_DRV_ISL12022 is not set +# CONFIG_RTC_DRV_X1205 is not set +# CONFIG_RTC_DRV_PCF8523 is not set +# CONFIG_RTC_DRV_PCF85063 is not set +# CONFIG_RTC_DRV_PCF85363 is not set +# CONFIG_RTC_DRV_PCF8563 is not set +# CONFIG_RTC_DRV_PCF8583 is not set +# CONFIG_RTC_DRV_M41T80 is not set +# CONFIG_RTC_DRV_BQ32K is not set +# CONFIG_RTC_DRV_S35390A is not set +# CONFIG_RTC_DRV_FM3130 is not set +# CONFIG_RTC_DRV_RX8010 is not set +# CONFIG_RTC_DRV_RX8581 is not set +# CONFIG_RTC_DRV_RX8025 is not set +# CONFIG_RTC_DRV_EM3027 is not set +# CONFIG_RTC_DRV_RV8803 is not set + +# +# SPI RTC drivers +# +CONFIG_RTC_I2C_AND_SPI=y + +# +# SPI and I2C RTC drivers +# +# CONFIG_RTC_DRV_DS3232 is not set +# CONFIG_RTC_DRV_PCF2127 is not set +# CONFIG_RTC_DRV_RV3029C2 is not set + +# +# Platform RTC drivers +# +CONFIG_RTC_DRV_CMOS=y +# CONFIG_RTC_DRV_DS1286 is not set +# CONFIG_RTC_DRV_DS1511 is not set +# CONFIG_RTC_DRV_DS1553 is not set +# CONFIG_RTC_DRV_DS1685_FAMILY is not set +# CONFIG_RTC_DRV_DS1742 is not set +# CONFIG_RTC_DRV_DS2404 is not set +# CONFIG_RTC_DRV_STK17TA8 is not set +# CONFIG_RTC_DRV_M48T86 is not set +# CONFIG_RTC_DRV_M48T35 is not set +# CONFIG_RTC_DRV_M48T59 is not set +# CONFIG_RTC_DRV_MSM6242 is not set +# CONFIG_RTC_DRV_BQ4802 is not set +# CONFIG_RTC_DRV_RP5C01 is not set +# CONFIG_RTC_DRV_V3020 is not set + +# +# on-CPU RTC drivers +# +# CONFIG_RTC_DRV_FTRTC010 is not set + +# +# HID Sensor RTC drivers +# +# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set +# CONFIG_DMADEVICES is not set + +# +# DMABUF options +# +CONFIG_SYNC_FILE=y +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VFIO is not set +# CONFIG_VIRT_DRIVERS is not set +# CONFIG_VIRTIO_MENU is not set + +# +# Microsoft Hyper-V guest support +# +# CONFIG_HYPERV_TSCPAGE is not set +# CONFIG_STAGING is not set +CONFIG_X86_PLATFORM_DEVICES=y +# CONFIG_ACER_WIRELESS is not set +# CONFIG_ACERHDF is not set +# CONFIG_ASUS_LAPTOP is not set +# CONFIG_DELL_SMBIOS is not set +# CONFIG_DELL_WMI is not set +# CONFIG_DELL_WMI_AIO is not set +# CONFIG_DELL_SMO8800 is not set +# CONFIG_DELL_RBTN is not set +# CONFIG_FUJITSU_LAPTOP is not set +# CONFIG_FUJITSU_TABLET is not set +# CONFIG_GPD_POCKET_FAN is not set +# CONFIG_HP_WIRELESS is not set +# CONFIG_HP_WMI is not set +# CONFIG_PANASONIC_LAPTOP is not set +# CONFIG_SONY_LAPTOP is not set +# CONFIG_THINKPAD_ACPI is not set +# CONFIG_SENSORS_HDAPS is not set +# CONFIG_INTEL_MENLOW is not set +# CONFIG_ASUS_WIRELESS is not set +CONFIG_ACPI_WMI=y +# CONFIG_WMI_BMOF is not set +# CONFIG_INTEL_WMI_THUNDERBOLT is not set +# CONFIG_MSI_WMI is not set +# CONFIG_PEAQ_WMI is not set +# CONFIG_TOPSTAR_LAPTOP is not set +# CONFIG_TOSHIBA_BT_RFKILL is not set +# CONFIG_TOSHIBA_HAPS is not set +# CONFIG_TOSHIBA_WMI is not set +# CONFIG_ACPI_CMPC is not set +# CONFIG_INTEL_HID_EVENT is not set +# CONFIG_INTEL_VBTN is not set +# CONFIG_INTEL_IPS is not set +# CONFIG_INTEL_PMC_CORE is not set +# CONFIG_IBM_RTL is not set +# CONFIG_SAMSUNG_LAPTOP is not set +CONFIG_MXM_WMI=y +# CONFIG_INTEL_OAKTRAIL is not set +# CONFIG_SAMSUNG_Q10 is not set +# CONFIG_APPLE_GMUX is not set +# CONFIG_INTEL_RST is not set +CONFIG_INTEL_SMARTCONNECT=y +# CONFIG_PVPANIC is not set +# CONFIG_INTEL_PMC_IPC is not set +# CONFIG_SURFACE_PRO3_BUTTON is not set +# CONFIG_INTEL_PUNIT_IPC is not set +# CONFIG_MLX_PLATFORM is not set +# CONFIG_INTEL_TURBO_MAX_3 is not set +CONFIG_PMC_ATOM=y +# CONFIG_CHROME_PLATFORMS is not set +# CONFIG_MELLANOX_PLATFORM is not set +CONFIG_CLKDEV_LOOKUP=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Common Clock Framework +# +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CS2000_CP is not set +# CONFIG_COMMON_CLK_NXP is not set +# CONFIG_COMMON_CLK_PXA is not set +# CONFIG_COMMON_CLK_PIC32 is not set +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_CLKBLD_I8253=y +# CONFIG_ATMEL_PIT is not set +# CONFIG_SH_TIMER_CMT is not set +# CONFIG_SH_TIMER_MTU2 is not set +# CONFIG_SH_TIMER_TMU is not set +# CONFIG_EM_TIMER_STI is not set +CONFIG_MAILBOX=y +CONFIG_PCC=y +# CONFIG_ALTERA_MBOX is not set +CONFIG_IOMMU_API=y +CONFIG_IOMMU_SUPPORT=y + +# +# Generic IOMMU Pagetable Support +# +CONFIG_IOMMU_IOVA=y +# CONFIG_AMD_IOMMU is not set +CONFIG_DMAR_TABLE=y +CONFIG_INTEL_IOMMU=y +CONFIG_INTEL_IOMMU_SVM=y +CONFIG_INTEL_IOMMU_DEFAULT_ON=y +CONFIG_INTEL_IOMMU_FLOPPY_WA=y +CONFIG_IRQ_REMAP=y + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set + +# +# Rpmsg drivers +# +# CONFIG_RPMSG_QCOM_GLINK_RPM is not set +# CONFIG_RPMSG_VIRTIO is not set +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# + +# +# Broadcom SoC drivers +# + +# +# i.MX SoC drivers +# + +# +# Qualcomm SoC drivers +# +# CONFIG_SUNXI_SRAM is not set +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# CONFIG_XILINX_VCU is not set +# CONFIG_PM_DEVFREQ is not set +# CONFIG_EXTCON is not set +# CONFIG_MEMORY is not set +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +# CONFIG_PWM is not set + +# +# IRQ chip support +# +CONFIG_ARM_GIC_MAX_NR=1 +# CONFIG_ARM_GIC_V3_ITS is not set +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set +# CONFIG_FMC is not set + +# +# PHY Subsystem +# +# CONFIG_GENERIC_PHY is not set +# CONFIG_BCM_KONA_USB2_PHY is not set +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_POWERCAP is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +CONFIG_RAS=y +# CONFIG_THUNDERBOLT is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# CONFIG_LIBNVDIMM is not set +# CONFIG_DAX is not set +# CONFIG_NVMEM is not set +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# CONFIG_FPGA is not set +# CONFIG_FSI is not set +# CONFIG_UNISYS_VISORBUS is not set +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set + +# +# Firmware Drivers +# +# CONFIG_EDD is not set +# CONFIG_FIRMWARE_MEMMAP is not set +# CONFIG_DELL_RBU is not set +# CONFIG_DCDBAS is not set +CONFIG_DMIID=y +# CONFIG_DMI_SYSFS is not set +CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y +# CONFIG_ISCSI_IBFT_FIND is not set +# CONFIG_FW_CFG_SYSFS is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +# CONFIG_EFI_VARS is not set +CONFIG_EFI_ESRT=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_RUNTIME_WRAPPERS=y +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +# CONFIG_APPLE_PROPERTIES is not set +# CONFIG_RESET_ATTACK_MITIGATION is not set +# CONFIG_EFI_DEV_PATH_PARSER is not set + +# +# Tegra firmware driver +# + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +CONFIG_ZFS=y +CONFIG_FS_IOMAP=y +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +CONFIG_EXT4_FS=y +# CONFIG_EXT4_USE_FOR_EXT2 is not set +CONFIG_EXT4_FS_POSIX_ACL=y +# CONFIG_EXT4_FS_SECURITY is not set +# CONFIG_EXT4_ENCRYPTION is not set +# CONFIG_EXT4_DEBUG is not set +CONFIG_JBD2=y +# CONFIG_JBD2_DEBUG is not set +CONFIG_FS_MBCACHE=y +# CONFIG_REISERFS_FS is not set +# CONFIG_JFS_FS is not set +# CONFIG_XFS_FS is not set +# CONFIG_GFS2_FS is not set +# CONFIG_BTRFS_FS is not set +# CONFIG_NILFS2_FS is not set +# CONFIG_F2FS_FS is not set +# CONFIG_FS_DAX is not set +CONFIG_FS_POSIX_ACL=y +CONFIG_EXPORTFS=y +# CONFIG_EXPORTFS_BLOCK_OPS is not set +CONFIG_FILE_LOCKING=y +# CONFIG_MANDATORY_FILE_LOCKING is not set +# CONFIG_FS_ENCRYPTION is not set +CONFIG_FSNOTIFY=y +# CONFIG_DNOTIFY is not set +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +# CONFIG_QUOTA is not set +# CONFIG_QUOTACTL is not set +CONFIG_AUTOFS4_FS=y +CONFIG_FUSE_FS=y +CONFIG_CUSE=y +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set + +# +# CD-ROM/DVD Filesystems +# +# CONFIG_ISO9660_FS is not set +# CONFIG_UDF_FS is not set + +# +# DOS/FAT/NT Filesystems +# +CONFIG_FAT_FS=y +# CONFIG_MSDOS_FS is not set +CONFIG_VFAT_FS=y +CONFIG_FAT_DEFAULT_CODEPAGE=936 +CONFIG_FAT_DEFAULT_IOCHARSET="utf8" +CONFIG_FAT_DEFAULT_UTF8=y +CONFIG_NTFS_FS=y +# CONFIG_NTFS_DEBUG is not set +# CONFIG_NTFS_RW is not set + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +# CONFIG_PROC_KCORE is not set +CONFIG_PROC_SYSCTL=y +# CONFIG_PROC_PAGE_MONITOR is not set +CONFIG_PROC_CHILDREN=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +# CONFIG_HUGETLBFS is not set +# CONFIG_HUGETLB_PAGE is not set +# CONFIG_CONFIGFS_FS is not set +# CONFIG_EFIVAR_FS is not set +# CONFIG_MISC_FILESYSTEMS is not set +# CONFIG_NETWORK_FILESYSTEMS is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="utf8" +CONFIG_NLS_CODEPAGE_437=y +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +CONFIG_NLS_CODEPAGE_936=y +CONFIG_NLS_CODEPAGE_950=y +CONFIG_NLS_CODEPAGE_932=y +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +CONFIG_NLS_ASCII=y +CONFIG_NLS_ISO8859_1=y +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +CONFIG_NLS_UTF8=y + +# +# Kernel hacking +# +CONFIG_TRACE_IRQFLAGS_SUPPORT=y + +# +# printk and dmesg options +# +# CONFIG_PRINTK_TIME is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=6 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +# CONFIG_BOOT_PRINTK_DELAY is not set + +# +# Compile-time checks and compiler options +# +# CONFIG_DEBUG_INFO is not set +# CONFIG_ENABLE_WARN_DEPRECATED is not set +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_FRAME_WARN=2048 +CONFIG_STRIP_ASM_SYMS=y +# CONFIG_READABLE_ASM is not set +# CONFIG_UNUSED_SYMBOLS is not set +# CONFIG_PAGE_OWNER is not set +# CONFIG_DEBUG_FS is not set +# CONFIG_HEADERS_CHECK is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set +CONFIG_STACK_VALIDATION=y +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# CONFIG_MAGIC_SYSRQ is not set +CONFIG_DEBUG_KERNEL=y + +# +# Memory Debugging +# +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_POISONING is not set +# CONFIG_DEBUG_RODATA_TEST is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_SLUB_STATS is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_DEBUG_VM is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_HAVE_DEBUG_STACKOVERFLOW=y +# CONFIG_DEBUG_STACKOVERFLOW is not set +CONFIG_HAVE_ARCH_KASAN=y +# CONFIG_KASAN is not set +CONFIG_ARCH_HAS_KCOV=y +# CONFIG_KCOV is not set +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Lockups and Hangs +# +# CONFIG_SOFTLOCKUP_DETECTOR is not set +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +# CONFIG_HARDLOCKUP_DETECTOR is not set +# CONFIG_DETECT_HUNG_TASK is not set +# CONFIG_WQ_WATCHDOG is not set +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=30 +# CONFIG_SCHED_DEBUG is not set +CONFIG_SCHED_INFO=y +# CONFIG_SCHEDSTATS is not set +# CONFIG_SCHED_STACK_END_CHECK is not set +# CONFIG_DEBUG_TIMEKEEPING is not set +# CONFIG_DEBUG_PREEMPT is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# CONFIG_STACKTRACE is not set +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_PI_LIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_PROVE_RCU is not set +# CONFIG_TORTURE_TEST is not set +# CONFIG_RCU_PERF_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_DMA_API_DEBUG is not set +# CONFIG_RUNTIME_TESTING_MENU is not set +# CONFIG_MEMTEST is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# CONFIG_SAMPLES is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set +# CONFIG_UBSAN is not set +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +# CONFIG_X86_VERBOSE_BOOTUP is not set +# CONFIG_EARLY_PRINTK is not set +# CONFIG_X86_PTDUMP_CORE is not set +# CONFIG_X86_PTDUMP is not set +# CONFIG_EFI_PGT_DUMP is not set +# CONFIG_DEBUG_WX is not set +# CONFIG_DOUBLEFAULT is not set +# CONFIG_DEBUG_TLBFLUSH is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +CONFIG_IO_DELAY_TYPE_0X80=0 +CONFIG_IO_DELAY_TYPE_0XED=1 +CONFIG_IO_DELAY_TYPE_UDELAY=2 +CONFIG_IO_DELAY_TYPE_NONE=3 +# CONFIG_IO_DELAY_0X80 is not set +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +CONFIG_IO_DELAY_NONE=y +CONFIG_DEFAULT_IO_DELAY_TYPE=3 +# CONFIG_CPA_DEBUG is not set +# CONFIG_OPTIMIZE_INLINING is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +# CONFIG_X86_DEBUG_FPU is not set +# CONFIG_PUNIT_ATOM_DEBUG is not set +CONFIG_UNWINDER_ORC=y +# CONFIG_UNWINDER_FRAME_POINTER is not set +# CONFIG_UNWINDER_GUESS is not set + +# +# Security options +# +CONFIG_KEYS=y +# CONFIG_PERSISTENT_KEYRINGS is not set +# CONFIG_BIG_KEYS is not set +# CONFIG_ENCRYPTED_KEYS is not set +# CONFIG_KEY_DH_OPERATIONS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITY is not set +# CONFIG_SECURITYFS is not set +# CONFIG_PAGE_TABLE_ISOLATION is not set +# CONFIG_INTEL_TXT is not set +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +# CONFIG_HARDENED_USERCOPY is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_DEFAULT_SECURITY="" +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +# CONFIG_CRYPTO_FIPS is not set +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_BLKCIPHER=y +CONFIG_CRYPTO_BLKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_RNG_DEFAULT=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_AKCIPHER=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_KPP=y +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_RSA=y +# CONFIG_CRYPTO_DH is not set +CONFIG_CRYPTO_ECDH=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +# CONFIG_CRYPTO_USER is not set +# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set +CONFIG_CRYPTO_GF128MUL=y +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +# CONFIG_CRYPTO_PCRYPT is not set +CONFIG_CRYPTO_WORKQUEUE=y +CONFIG_CRYPTO_CRYPTD=y +# CONFIG_CRYPTO_MCRYPTD is not set +CONFIG_CRYPTO_AUTHENC=y +CONFIG_CRYPTO_SIMD=y +CONFIG_CRYPTO_GLUE_HELPER_X86=y + +# +# Authenticated Encryption with Associated Data +# +CONFIG_CRYPTO_CCM=y +CONFIG_CRYPTO_GCM=y +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +CONFIG_CRYPTO_SEQIV=y +# CONFIG_CRYPTO_ECHAINIV is not set + +# +# Block modes +# +# CONFIG_CRYPTO_CBC is not set +CONFIG_CRYPTO_CTR=y +# CONFIG_CRYPTO_CTS is not set +CONFIG_CRYPTO_ECB=y +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_PCBC is not set +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set + +# +# Hash modes +# +CONFIG_CRYPTO_CMAC=y +CONFIG_CRYPTO_HMAC=y +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=y +CONFIG_CRYPTO_CRC32C_INTEL=y +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_CRCT10DIF is not set +CONFIG_CRYPTO_GHASH=y +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_MD4 is not set +# CONFIG_CRYPTO_MD5 is not set +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD128 is not set +# CONFIG_CRYPTO_RMD160 is not set +# CONFIG_CRYPTO_RMD256 is not set +# CONFIG_CRYPTO_RMD320 is not set +CONFIG_CRYPTO_SHA1=y +CONFIG_CRYPTO_SHA1_SSSE3=y +CONFIG_CRYPTO_SHA256_SSSE3=y +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +# CONFIG_CRYPTO_SHA1_MB is not set +# CONFIG_CRYPTO_SHA256_MB is not set +# CONFIG_CRYPTO_SHA512_MB is not set +CONFIG_CRYPTO_SHA256=y +# CONFIG_CRYPTO_SHA512 is not set +# CONFIG_CRYPTO_SHA3 is not set +# CONFIG_CRYPTO_SM3 is not set +# CONFIG_CRYPTO_TGR192 is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_TI is not set +CONFIG_CRYPTO_AES_X86_64=y +CONFIG_CRYPTO_AES_NI_INTEL=y +# CONFIG_CRYPTO_ANUBIS is not set +CONFIG_CRYPTO_ARC4=y +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +CONFIG_CRYPTO_DES=y +CONFIG_CRYPTO_DES3_EDE_X86_64=y +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_KHAZAD is not set +# CONFIG_CRYPTO_SALSA20 is not set +# CONFIG_CRYPTO_SALSA20_X86_64 is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SEED is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_TEA is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +# CONFIG_CRYPTO_DEFLATE is not set +# CONFIG_CRYPTO_LZO is not set +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +CONFIG_CRYPTO_DRBG_MENU=y +CONFIG_CRYPTO_DRBG_HMAC=y +# CONFIG_CRYPTO_DRBG_HASH is not set +# CONFIG_CRYPTO_DRBG_CTR is not set +CONFIG_CRYPTO_DRBG=y +CONFIG_CRYPTO_JITTERENTROPY=y +CONFIG_CRYPTO_USER_API=y +CONFIG_CRYPTO_USER_API_HASH=y +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +# CONFIG_CRYPTO_USER_API_RNG is not set +# CONFIG_CRYPTO_USER_API_AEAD is not set +CONFIG_CRYPTO_HASH_INFO=y +# CONFIG_CRYPTO_HW is not set +CONFIG_ASYMMETRIC_KEY_TYPE=y +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y +CONFIG_X509_CERTIFICATE_PARSER=y +CONFIG_PKCS7_MESSAGE_PARSER=y +# CONFIG_PKCS7_TEST_KEY is not set +# CONFIG_SIGNED_PE_FILE_VERIFICATION is not set + +# +# Certificates for signature checking +# +CONFIG_SYSTEM_TRUSTED_KEYRING=y +CONFIG_SYSTEM_TRUSTED_KEYS="" +# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set +# CONFIG_SECONDARY_TRUSTED_KEYRING is not set +# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set +CONFIG_HAVE_KVM=y +# CONFIG_VIRTUALIZATION is not set +# CONFIG_BINARY_PRINTF is not set + +# +# Library routines +# +CONFIG_BITREVERSE=y +# CONFIG_HAVE_ARCH_BITREVERSE is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +# CONFIG_CRC_CCITT is not set +CONFIG_CRC16=y +# CONFIG_CRC_T10DIF is not set +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +CONFIG_XZ_DEC_POWERPC=y +CONFIG_XZ_DEC_IA64=y +CONFIG_XZ_DEC_ARM=y +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_SPARC=y +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_DECOMPRESS_XZ=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_RADIX_TREE_MULTIORDER=y +CONFIG_ASSOCIATIVE_ARRAY=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_SGL_ALLOC=y +# CONFIG_DMA_DIRECT_OPS is not set +# CONFIG_DMA_VIRT_OPS is not set +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +CONFIG_NLATTR=y +CONFIG_CLZ_TAB=y +# CONFIG_CORDIC is not set +# CONFIG_DDR is not set +# CONFIG_IRQ_POLL is not set +CONFIG_MPILIB=y +CONFIG_OID_REGISTRY=y +CONFIG_UCS2_STRING=y +CONFIG_FONT_SUPPORT=y +# CONFIG_FONTS is not set +CONFIG_FONT_8x8=y +CONFIG_FONT_8x16=y +# CONFIG_SG_SPLIT is not set +CONFIG_SG_POOL=y +CONFIG_ARCH_HAS_SG_CHAIN=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_SBITMAP=y +# CONFIG_STRING_SELFTEST is not set +CONFIG_SPL=y diff --git a/kernle.config/alienware-alpha/README.md b/kernle.config/alienware-alpha/README.md new file mode 100644 index 0000000..042b981 --- /dev/null +++ b/kernle.config/alienware-alpha/README.md @@ -0,0 +1,25 @@ +### Fetures + +[EFI stub kernel](https://wiki.gentoo.org/wiki/EFI_stub_kernel) + + CONFIG_CMDLINE="root=/dev/sda5 init=/usr/lib/systemd/systemd" + +kernel only, all mods builtin, buitlin firware + + CONFIG_EXTRA_FIRMWARE="iwlwifi-3160-17.ucode" + +builtin mt7601u usb wifi adaptor drvier + + CONFIG_MT7601U=y + +buitlin srs-hg1 usb DAC drvier + + CONFIG_SND_USB_AUDIO=y + +no netfilter support + +no relteck ether driver support + +hid-generic 0003:2516:0057.0003: device has no listeners, quittin +g + CONFIG_USB_HIDDEV=y diff --git a/kernle.config/alienware-alpha/System.map-4.16.0-sgima0f b/kernle.config/alienware-alpha/System.map-4.16.0-sgima0f new file mode 100755 index 0000000..62dc9db --- /dev/null +++ b/kernle.config/alienware-alpha/System.map-4.16.0-sgima0f @@ -0,0 +1,51798 @@ +0000000000000000 D __per_cpu_start +0000000000000000 D irq_stack_union +0000000000004000 D cpu_debug_store +0000000000005000 D cpu_tss_rw +0000000000008000 D gdt_page +0000000000009000 d exception_stacks +000000000000e000 d entry_stack_storage +000000000000f000 D cpu_llc_id +000000000000f008 D cpu_llc_shared_map +000000000000f010 D cpu_core_map +000000000000f018 D cpu_sibling_map +000000000000f020 D cpu_info +000000000000f110 D cpu_number +000000000000f118 D this_cpu_off +000000000000f120 D x86_cpu_to_acpiid +000000000000f124 D x86_cpu_to_apicid +000000000000f126 D x86_bios_cpu_apicid +000000000000f128 D sched_core_priority +000000000000f140 d cpu_loops_per_jiffy +000000000000f160 d pmc_prev_left +000000000000f360 D cpu_hw_events +0000000000011000 d bts_ctx +0000000000014000 d insn_buffer +0000000000014020 d pt_ctx +00000000000140c8 D rsp_scratch +00000000000140d0 D irq_regs +00000000000140e0 d update_debug_stack +00000000000140e8 d nmi_cr2 +00000000000140f0 d nmi_state +00000000000140f8 d last_nmi_rip +0000000000014100 d swallow_nmi +0000000000014110 d nmi_stats +0000000000014120 D vector_irq +0000000000014920 d cpu_devices +0000000000014c00 d bp_per_reg +0000000000014c20 d cpu_debugreg +0000000000014c40 D cpu_dr7 +0000000000014c48 D __tss_limit_invalid +0000000000014c50 D msr_misc_features_shadow +0000000000014c58 d in_kernel_fpu +0000000000014c60 D fpu_fpregs_owner_ctx +0000000000014c80 d debug_stack_addr +0000000000014c88 D debug_stack_usage +0000000000014c8c D debug_idt_ctr +0000000000014c90 D __preempt_count +0000000000014c94 D irq_count +0000000000014c98 D irq_stack_ptr +0000000000014ca0 D orig_ist +0000000000014d00 D current_task +0000000000014d20 d samples +0000000000014d40 d mce_timer +0000000000014d68 d mce_next_interval +0000000000014d80 d mces_seen +0000000000014e00 D injectm +0000000000014e78 D mce_poll_banks +0000000000014e80 D mce_poll_count +0000000000014e84 D mce_exception_count +0000000000014e88 D mce_device +0000000000014e90 d cmci_storm_state +0000000000014e94 d cmci_storm_cnt +0000000000014e98 d cmci_time_stamp +0000000000014ea0 d cmci_backoff_cnt +0000000000014ea8 d mce_banks_owned +0000000000014ec0 d thermal_state +0000000000014fc0 d tsc_adjust +0000000000015000 d lapic_events +0000000000015100 d cleanup_list +0000000000015108 d cpu_hpet_dev +0000000000015110 D process_counts +0000000000015120 d __percpu_rwsem_rc_cpu_hotplug_lock +0000000000015140 d cpuhp_state +00000000000151c0 d tasklet_hi_vec +00000000000151d0 d tasklet_vec +00000000000151e0 D ksoftirqd +00000000000151e8 d wq_rr_cpu_last +00000000000151f0 d cpu_hotplug_state +00000000000151f8 d idle_threads +0000000000015200 D kernel_cpustat +0000000000015260 D kstat +0000000000015290 D select_idle_mask +0000000000015298 D load_balance_mask +00000000000152a0 d local_cpu_mask +00000000000152b0 d rt_pull_head +00000000000152c0 d rt_push_head +00000000000152d0 d local_cpu_mask_dl +00000000000152e0 d dl_pull_head +00000000000152f0 d dl_push_head +0000000000015300 D sd_asym +0000000000015308 D sd_numa +0000000000015310 D sd_llc_shared +0000000000015318 D sd_llc_id +000000000001531c D sd_llc_size +0000000000015320 D sd_llc +0000000000015328 D cpufreq_update_util_data +0000000000015330 d wake_up_klogd_work +0000000000015348 d printk_pending +0000000000015360 d nmi_print_seq +0000000000017360 d printk_context +0000000000017380 d safe_print_seq +0000000000019380 d tasks_rcu_exit_srcu_srcu_data +00000000000194c0 D srcu_online +00000000000194e0 d rcu_dynticks +0000000000019540 d timer_bases +000000000001ba40 D hrtimer_bases +000000000001bc80 d tick_percpu_dev +000000000001bf50 D tick_cpu_device +000000000001bf60 d tick_cpu_sched +000000000001c040 d cgrp_dfl_root_cpu_stat +000000000001c080 d cgroup_cpu_stat_lock +000000000001c0a0 d cpu_stopper +000000000001c100 d listener_array +000000000001c138 d taskstats_seqnum +000000000001c140 d lazy_list +000000000001c148 d raised_list +000000000001c150 d bpf_user_rnd_state +000000000001c160 D bpf_prog_active +000000000001c180 d nop_txn_flags +000000000001c1a0 d swevent_htable +000000000001c1e0 d perf_throttled_seq +000000000001c1e8 d perf_throttled_count +000000000001c1f0 d sched_cb_list +000000000001c200 d active_ctx_list +000000000001c210 d running_sample_length +000000000001c220 d pmu_sb_events +000000000001c238 d perf_sched_cb_usages +000000000001c23c d perf_cgroup_events +000000000001c240 D __perf_regs +000000000001c4e0 d callchain_recursion +000000000001c4f0 d bp_cpuinfo +000000000001c520 d boot_nodestats +000000000001c540 d boot_pageset +000000000001c5a0 D pcpu_drain +000000000001c5c0 d bdp_ratelimits +000000000001c5c4 D dirty_throttle_leaks +000000000001c5e0 d lru_add_drain_work +000000000001c600 d activate_page_pvecs +000000000001c680 d lru_lazyfree_pvecs +000000000001c700 d lru_deactivate_file_pvecs +000000000001c780 d lru_rotate_pvecs +000000000001c800 d lru_add_pvec +000000000001c880 d vmstat_work +000000000001c8e0 d vmap_block_queue +000000000001c900 d vfree_deferred +000000000001c940 d srcu_srcu_data +000000000001ca80 d nr_dentry_unused +000000000001ca88 d nr_dentry +000000000001ca90 d last_ino +000000000001ca98 d nr_unused +000000000001caa0 d nr_inodes +000000000001cac0 d bh_accounting +000000000001cae0 d bh_lrus +000000000001cb60 d __percpu_rwsem_rc_file_rwsem +000000000001cb70 d file_lock_list +000000000001cb80 d blk_cpu_done +000000000001cb90 d net_rand_state +000000000001cba0 d iommu_hash_common +000000000001cba8 d processor_device_array +000000000001cbb0 D processors +000000000001cbc0 d acpi_cstate +000000000001cc10 d acpi_cpuidle_device +000000000001cc18 d cpufreq_thermal_reduction_pctg +000000000001cc20 d cpc_desc_ptr +000000000001cc28 d cpu_pcc_subspace_idx +000000000001cc40 d batched_entropy_u32 +000000000001cca0 d batched_entropy_u64 +000000000001cd00 d irq_randomness +000000000001cd20 d proc_event_counts +000000000001cd40 d device_links_srcu_srcu_data +000000000001ce80 d cpu_sys_devices +000000000001ce90 d ci_index_dev +000000000001ce98 d ci_cache_dev +000000000001cea0 d ci_cpu_cacheinfo +000000000001cec0 d wakeup_srcu_srcu_data +000000000001d000 d scsi_format_log +000000000001e008 d cpufreq_cpu_data +000000000001e020 D cpuidle_dev +000000000001e190 D cpuidle_devices +000000000001e1a0 d menu_devices +000000000001e220 d napi_alloc_cache +000000000001e440 d netdev_alloc_cache +000000000001e460 D flush_works +000000000001e480 D xmit_recursion +000000000001e4a0 d redirect_info +000000000001e4c0 d bpf_sp +000000000001e6c0 D nf_skb_duplicated +000000000001e6d0 d nft_prandom_state +000000000001e6e0 d nft_counter_seq +000000000001e700 d rt_cache_stat +000000000001e720 d tsq_tasklet +000000000001e758 D ida_bitmap +000000000001e760 d radix_tree_preloads +000000000001e780 D irq_stat +000000000001e7c0 d cyc2ns +000000000001e800 D cpu_tlbstate +000000000001e8c0 d cpu_worker_pools +000000000001efc0 D runqueues +000000000001fac0 d sched_clock_data +000000000001fb00 d osq_node +000000000001fb40 d mcs_nodes +000000000001fb80 d rcu_preempt_data +000000000001fd40 d rcu_bh_data +000000000001ff00 d rcu_sched_data +00000000000200c0 d csd_data +0000000000020100 d call_single_queue +0000000000020140 d cfd_data +0000000000020180 D softnet_data +0000000000020340 d rt_uncached_list +0000000000020380 d rt6_uncached_list +0000000000020398 D __per_cpu_end +0000000001000000 A phys_startup_64 +ffffffff81000000 T _stext +ffffffff81000000 T _text +ffffffff81000000 T startup_64 +ffffffff81000030 T secondary_startup_64 +ffffffff810000e0 T verify_cpu +ffffffff810001e0 T start_cpu0 +ffffffff810001f0 T __startup_64 +ffffffff81000330 T __startup_secondary_64 +ffffffff81000340 t run_init_process +ffffffff81000370 t try_to_run_init_process +ffffffff810003a0 t match_dev_by_uuid +ffffffff810003d0 t rootfs_mount +ffffffff81000410 T name_to_dev_t +ffffffff81000860 W calibration_delay_done +ffffffff81000870 T calibrate_delay +ffffffff81000e33 T ___preempt_schedule +ffffffff81000e4b T ___preempt_schedule_notrace +ffffffff81000e80 t exit_to_usermode_loop +ffffffff81000ef0 t syscall_slow_exit_work +ffffffff81000fa0 T prepare_exit_to_usermode +ffffffff81001000 T syscall_return_slowpath +ffffffff81001080 T do_syscall_64 +ffffffff810012e0 t vdso_mremap +ffffffff81001320 t vgetcpu_cpu_init +ffffffff81001370 t vvar_fault +ffffffff810013d0 t vdso_fault +ffffffff81001450 t map_vdso +ffffffff81001570 t vgetcpu_online +ffffffff81001590 T map_vdso_once +ffffffff81001630 T arch_setup_additional_pages +ffffffff810016e0 T update_vsyscall_tz +ffffffff81001700 T update_vsyscall +ffffffff81001830 t x86_pmu_extra_regs +ffffffff810018b0 t x86_pmu_disable +ffffffff81001900 t collect_events +ffffffff810019a0 t x86_pmu_prepare_cpu +ffffffff810019e0 t x86_pmu_dead_cpu +ffffffff81001a00 t x86_pmu_starting_cpu +ffffffff81001a20 t x86_pmu_dying_cpu +ffffffff81001a40 t x86_pmu_read +ffffffff81001a50 t x86_pmu_event_idx +ffffffff81001a90 t x86_pmu_sched_task +ffffffff81001ab0 T events_sysfs_show +ffffffff81001b00 t x86_pmu_commit_txn +ffffffff81001bd0 t x86_pmu_add +ffffffff81001cb0 t x86_pmu_start_txn +ffffffff81001ce0 t allocate_fake_cpuc +ffffffff81001d50 t x86_pmu_online_cpu +ffffffff81001da0 t set_attr_rdpmc +ffffffff81001e40 t get_attr_rdpmc +ffffffff81001e60 t max_precise_show +ffffffff81001ed0 t refresh_pce +ffffffff81001f30 t x86_pmu_cancel_txn +ffffffff81001f80 t x86_pmu_event_unmapped +ffffffff81001fb0 t perf_event_nmi_handler +ffffffff81001ff0 t perf_events_lapic_init.part.9 +ffffffff81002010 t x86_pmu_event_mapped +ffffffff81002050 T x86_perf_event_update +ffffffff810020c0 T x86_pmu_stop +ffffffff81002140 t x86_pmu_del +ffffffff81002290 T x86_reserve_hardware +ffffffff81002420 t x86_pmu_event_init +ffffffff81002650 T x86_release_hardware +ffffffff810026f0 t hw_perf_event_destroy +ffffffff81002700 T x86_add_exclusive +ffffffff810027c0 T x86_del_exclusive +ffffffff810027f0 T hw_perf_lbr_event_destroy +ffffffff81002800 T x86_setup_perfctr +ffffffff81002980 T x86_pmu_max_precise +ffffffff810029d0 T x86_pmu_hw_config +ffffffff81002bb0 T x86_pmu_disable_all +ffffffff81002c70 T x86_pmu_enable_all +ffffffff81002d00 T perf_assign_events +ffffffff81002f60 T x86_schedule_events +ffffffff810031e0 T x86_perf_event_set_period +ffffffff81003320 t x86_pmu_start +ffffffff810033b0 t x86_pmu_enable +ffffffff81003680 T x86_pmu_enable_event +ffffffff810036e0 T perf_event_print_debug +ffffffff81003960 T x86_pmu_handle_irq +ffffffff81003ae0 T perf_events_lapic_init +ffffffff81003b00 T events_ht_sysfs_show +ffffffff81003b30 T x86_event_sysfs_show +ffffffff81003c70 T perf_check_microcode +ffffffff81003c90 T arch_perf_update_userpage +ffffffff81003d50 T perf_callchain_kernel +ffffffff81003e30 T perf_callchain_user +ffffffff81003f60 T perf_instruction_pointer +ffffffff81003ff0 T perf_misc_flags +ffffffff81004050 T perf_get_x86_pmu_capability +ffffffff81004090 t clear_APIC_ibs +ffffffff810040c0 t x86_pmu_amd_ibs_dying_cpu +ffffffff810040d0 t perf_ibs_suspend +ffffffff810040e0 t force_ibs_eilvt_setup +ffffffff81004290 t setup_APIC_ibs +ffffffff810042e0 t x86_pmu_amd_ibs_starting_cpu +ffffffff810042f0 t perf_ibs_resume +ffffffff81004310 T get_ibs_caps +ffffffff81004320 t test_aperfmperf +ffffffff81004330 t test_ptsc +ffffffff81004340 t test_irperf +ffffffff81004350 t test_therm_status +ffffffff81004360 t msr_event_init +ffffffff810043d0 t msr_event_start +ffffffff81004410 t msr_event_add +ffffffff81004420 t msr_event_update +ffffffff810044b0 t msr_event_stop +ffffffff810044c0 t event_show +ffffffff810044e0 t test_intel +ffffffff81004520 t msr_event_del +ffffffff81004530 t x86_pmu_disable_event +ffffffff81004550 t intel_pmu_event_map +ffffffff81004560 t intel_pebs_aliases_core2 +ffffffff810045a0 t intel_pebs_aliases_snb +ffffffff81004630 t intel_guest_get_msrs +ffffffff810046a0 t bdw_limit_period +ffffffff81004710 t intel_stop_scheduling +ffffffff81004760 t intel_commit_scheduling +ffffffff810047d0 t intel_start_scheduling +ffffffff81004820 t frontend_show +ffffffff81004850 t ldlat_show +ffffffff81004880 t offcore_rsp_show +ffffffff810048b0 t in_tx_cp_show +ffffffff810048d0 t in_tx_show +ffffffff810048f0 t cmask_show +ffffffff81004920 t inv_show +ffffffff81004940 t any_show +ffffffff81004960 t pc_show +ffffffff81004980 t edge_show +ffffffff810049a0 t umask_show +ffffffff810049c0 t event_show +ffffffff810049e0 T intel_event_sysfs_show +ffffffff810049f0 t core_guest_get_msrs +ffffffff81004b00 t core_pmu_enable_all +ffffffff81004b90 t branches_show +ffffffff81004bb0 t pmu_name_show +ffffffff81004bd0 t free_excl_cntrs +ffffffff81004c30 t freeze_on_smi_store +ffffffff81004cb0 t freeze_on_smi_show +ffffffff81004cd0 t intel_pmu_sched_task +ffffffff81004cf0 t intel_pmu_del_event +ffffffff81004d20 t intel_pmu_add_event +ffffffff81004d50 t intel_pmu_enable_event +ffffffff81004f00 t __intel_pmu_disable_all +ffffffff81004f40 t intel_pmu_disable_all +ffffffff81004f50 t intel_pmu_cpu_dying +ffffffff81004fb0 t core_pmu_enable_event +ffffffff81004fc0 t intel_pmu_disable_event +ffffffff810050a0 t __intel_shared_reg_get_constraints.isra.1 +ffffffff81005240 t __intel_shared_reg_put_constraints.isra.2.part.3 +ffffffff81005260 t intel_put_event_constraints +ffffffff810053b0 t intel_pebs_aliases_ivb.part.5 +ffffffff810053b0 t intel_pebs_aliases_skl.part.6 +ffffffff81005440 t intel_pebs_aliases_ivb +ffffffff810054f0 t intel_pebs_aliases_skl +ffffffff81005540 t flip_smm_bit +ffffffff81005560 t intel_pmu_cpu_starting +ffffffff81005730 t intel_pmu_hw_config +ffffffff81005890 t hsw_hw_config +ffffffff81005920 t intel_snb_check_microcode +ffffffff810059f0 t intel_get_event_constraints +ffffffff81005d60 t hsw_get_event_constraints +ffffffff81005d90 t glp_get_event_constraints +ffffffff81005db0 t __intel_pmu_enable_all.constprop.16 +ffffffff81005e20 t intel_pmu_nhm_enable_all +ffffffff81005f30 t intel_pmu_enable_all +ffffffff81005f40 T intel_pmu_save_and_restart +ffffffff81005f80 t intel_pmu_handle_irq +ffffffff810063c0 T x86_get_event_constraints +ffffffff81006420 T perf_guest_get_msrs +ffffffff81006440 T allocate_shared_regs +ffffffff81006490 t intel_pmu_cpu_prepare +ffffffff81006581 t check_msr +ffffffff81006630 t bts_event_read +ffffffff81006640 t __bts_event_start +ffffffff81006790 t bts_update +ffffffff81006840 t bts_event_stop +ffffffff81006960 t bts_event_del +ffffffff81006970 t bts_buffer_free_aux +ffffffff81006980 t bts_buffer_setup_aux +ffffffff81006bd0 t bts_event_init +ffffffff81006c60 t bts_event_destroy +ffffffff81006c70 t bts_buffer_reset.part.2 +ffffffff81006e50 t bts_event_start +ffffffff81006f10 t bts_event_add +ffffffff81006f80 T intel_bts_enable_local +ffffffff81006fb0 T intel_bts_disable_local +ffffffff81006ff0 T intel_bts_interrupt +ffffffff81007100 t ds_clear_cea +ffffffff81007160 t dsfree_pages +ffffffff81007180 t release_pebs_buffer +ffffffff81007210 t release_bts_buffer +ffffffff81007270 t pebs_update_state +ffffffff81007300 t dsalloc_pages.isra.1 +ffffffff81007350 t intel_pmu_pebs_fixup_ip.isra.2 +ffffffff810074c0 t setup_pebs_sample_data +ffffffff810078e0 t __intel_pmu_pebs_event +ffffffff81007b30 t intel_pmu_drain_pebs_nhm +ffffffff81007da0 t intel_pmu_drain_pebs_core +ffffffff81007e20 t ds_update_cea.constprop.4 +ffffffff81007ec0 T init_debug_store_on_cpu +ffffffff81007f00 T fini_debug_store_on_cpu +ffffffff81007f30 T release_ds_buffers +ffffffff81008010 T reserve_ds_buffers +ffffffff81008400 T intel_pmu_enable_bts +ffffffff81008450 T intel_pmu_disable_bts +ffffffff81008490 T intel_pmu_drain_bts_buffer +ffffffff810086a0 T intel_pebs_constraints +ffffffff81008700 T intel_pmu_pebs_sched_task +ffffffff81008750 T intel_pmu_pebs_add +ffffffff810087b0 T intel_pmu_pebs_enable +ffffffff81008870 T intel_pmu_pebs_del +ffffffff810088d0 T intel_pmu_pebs_disable +ffffffff810089a0 T intel_pmu_pebs_enable_all +ffffffff810089d0 T intel_pmu_pebs_disable_all +ffffffff81008a00 T perf_restore_debug_store +ffffffff81008a30 t knc_pmu_event_map +ffffffff81008a40 t knc_pmu_disable_all +ffffffff81008a60 t knc_pmu_enable_all +ffffffff81008a80 t knc_pmu_disable_event +ffffffff81008ab0 t knc_pmu_enable_event +ffffffff81008ae0 t cmask_show +ffffffff81008b10 t inv_show +ffffffff81008b30 t edge_show +ffffffff81008b50 t umask_show +ffffffff81008b70 t event_show +ffffffff81008b90 t knc_pmu_handle_irq +ffffffff81008d50 t branch_type +ffffffff81009060 T intel_pmu_lbr_reset +ffffffff810090e0 T lbr_from_signext_quirk_wr +ffffffff81009110 T intel_pmu_lbr_sched_task +ffffffff81009310 T intel_pmu_lbr_add +ffffffff810093a0 T intel_pmu_lbr_del +ffffffff81009410 T intel_pmu_lbr_enable_all +ffffffff810094d0 T intel_pmu_lbr_disable_all +ffffffff81009510 T intel_pmu_lbr_read +ffffffff81009a20 T intel_pmu_setup_lbr_filter +ffffffff81009ba0 T intel_pmu_lbr_init_hsw +ffffffff81009c20 T intel_pmu_lbr_init_knl +ffffffff81009c70 t p4_pmu_event_map +ffffffff81009cb0 t p4_pmu_disable_event +ffffffff81009cd0 t p4_pmu_enable_event +ffffffff81009d80 t ht_show +ffffffff81009da0 t escr_show +ffffffff81009dd0 t cccr_show +ffffffff81009df0 t p4_pmu_disable_all +ffffffff81009e50 t p4_pmu_enable_all +ffffffff81009ea0 t p4_pmu_handle_irq +ffffffff8100a090 t p4_pmu_schedule_events +ffffffff8100a510 t p4_hw_config +ffffffff8100a7d0 t p6_pmu_event_map +ffffffff8100a7e0 t p6_pmu_disable_all +ffffffff8100a800 t p6_pmu_enable_all +ffffffff8100a820 t p6_pmu_disable_event +ffffffff8100a840 t p6_pmu_enable_event +ffffffff8100a860 t cmask_show +ffffffff8100a890 t inv_show +ffffffff8100a8b0 t pc_show +ffffffff8100a8d0 t edge_show +ffffffff8100a8f0 t umask_show +ffffffff8100a910 t event_show +ffffffff8100a930 t pt_config_stop +ffffffff8100a980 t pt_config_buffer +ffffffff8100a9e0 t pt_topa_dump +ffffffff8100aa50 t pt_read_offset +ffffffff8100aa90 t pt_buffer_reset_offsets +ffffffff8100ab30 t pt_event_addr_filters_sync +ffffffff8100abd0 t pt_event_read +ffffffff8100abe0 t pt_update_head +ffffffff8100ac60 t psb_period_show +ffffffff8100ac90 t cyc_thresh_show +ffffffff8100acc0 t mtc_period_show +ffffffff8100acf0 t branch_show +ffffffff8100ad10 t ptw_show +ffffffff8100ad30 t noretcomp_show +ffffffff8100ad50 t tsc_show +ffffffff8100ad70 t mtc_show +ffffffff8100ad90 t fup_on_ptw_show +ffffffff8100adb0 t pwr_evt_show +ffffffff8100add0 t cyc_show +ffffffff8100adf0 t pt_show +ffffffff8100ae10 t pt_buffer_reset_markers +ffffffff8100af30 t pt_handle_status +ffffffff8100b1d0 t pt_config +ffffffff8100b340 t pt_event_start +ffffffff8100b3e0 t pt_event_stop +ffffffff8100b480 t pt_event_del +ffffffff8100b490 t pt_event_addr_filters_validate +ffffffff8100b550 t pt_buffer_fini_topa +ffffffff8100b5a0 t pt_buffer_free_aux +ffffffff8100b5c0 t pt_event_destroy +ffffffff8100b5f0 t pt_cap_show +ffffffff8100b640 t pt_event_add +ffffffff8100b690 t topa_insert_table +ffffffff8100b750 t pt_event_init +ffffffff8100ba00 t pt_timing_attr_show +ffffffff8100ba50 t topa_alloc.isra.1.constprop.13 +ffffffff8100bae0 t pt_buffer_setup_aux +ffffffff8100be40 T intel_pt_interrupt +ffffffff8100bf20 T intel_pt_handle_vmx +ffffffff8100bf80 T cpu_emergency_stop_pt +ffffffff8100bfb0 T __show_regs +ffffffff8100c1b0 T release_thread +ffffffff8100c1c0 T start_thread +ffffffff8100c240 T __switch_to +ffffffff8100c580 T set_personality_64bit +ffffffff8100c5e0 T set_personality_ia32 +ffffffff8100c5f0 T do_arch_prctl_64 +ffffffff8100c7a0 T copy_thread_tls +ffffffff8100c9b0 T SyS_arch_prctl +ffffffff8100c9b0 T sys_arch_prctl +ffffffff8100c9f0 T KSTK_ESP +ffffffff8100ca00 T setup_sigcontext +ffffffff8100cb30 T do_signal +ffffffff8100d050 T signal_fault +ffffffff8100d100 T sys_rt_sigreturn +ffffffff8100d340 t do_trap +ffffffff8100d480 t do_error_trap +ffffffff8100d540 t math_error +ffffffff8100d650 T ist_enter +ffffffff8100d670 T ist_exit +ffffffff8100d690 T ist_begin_non_atomic +ffffffff8100d6c0 T ist_end_non_atomic +ffffffff8100d6d0 T is_valid_bugaddr +ffffffff8100d730 T fixup_bug +ffffffff8100d740 T do_divide_error +ffffffff8100d760 T do_overflow +ffffffff8100d780 T do_invalid_op +ffffffff8100d7a0 T do_coprocessor_segment_overrun +ffffffff8100d7c0 T do_invalid_TSS +ffffffff8100d7e0 T do_segment_not_present +ffffffff8100d800 T do_stack_segment +ffffffff8100d820 T do_alignment_check +ffffffff8100d840 T do_double_fault +ffffffff8100d8c0 T do_bounds +ffffffff8100d940 T do_general_protection +ffffffff8100dab0 T do_int3 +ffffffff8100db60 T sync_regs +ffffffff8100db90 T fixup_bad_iret +ffffffff8100dbe0 T do_debug +ffffffff8100dd30 T do_coprocessor_error +ffffffff8100dd40 T do_simd_coprocessor_error +ffffffff8100dd50 T do_spurious_interrupt_bug +ffffffff8100dd60 T do_device_not_available +ffffffff8100dd90 t idt_setup_from_table +ffffffff8100de40 t set_intr_gate +ffffffff8100de90 T idt_invalidate +ffffffff8100deb0 T alloc_intr_gate +ffffffff8100ded0 t dummy_handler +ffffffff8100dee0 T ack_bad_irq +ffffffff8100df20 T arch_show_interrupts +ffffffff8100e6e0 T arch_irq_stat_cpu +ffffffff8100e770 T arch_irq_stat +ffffffff8100e780 T kvm_set_posted_intr_wakeup_handler +ffffffff8100e7a0 T smp_kvm_posted_intr_ipi +ffffffff8100e7f0 T smp_kvm_posted_intr_wakeup_ipi +ffffffff8100e840 T smp_kvm_posted_intr_nested_ipi +ffffffff8100e890 T fixup_irqs +ffffffff8100e990 T handle_irq +ffffffff8100e9b0 T stack_type_name +ffffffff8100e9e0 T get_stack_info +ffffffff8100eb40 T show_regs +ffffffff8100eca0 t timer_interrupt +ffffffff8100ecc0 T profile_pc +ffffffff8100ed20 T SyS_ioperm +ffffffff8100ed20 T sys_ioperm +ffffffff8100ef90 T SyS_iopl +ffffffff8100ef90 T sys_iopl +ffffffff8100f010 T in_task_stack +ffffffff8100f050 T in_entry_stack +ffffffff8100f0a0 T show_iret_regs +ffffffff8100f0e0 t show_regs_if_on_stack +ffffffff8100f150 T show_trace_log_lvl +ffffffff8100f480 T show_stack +ffffffff8100f4c0 T show_stack_regs +ffffffff8100f4e0 T oops_begin +ffffffff8100f570 T oops_end +ffffffff8100f5f0 T __die +ffffffff8100f6a0 T die +ffffffff8100f6e0 t nmi_max_handler +ffffffff8100f740 t nmi_handle +ffffffff8100f7d0 T __register_nmi_handler +ffffffff8100f8a0 T unregister_nmi_handler +ffffffff8100f930 T do_nmi +ffffffff8100fca0 T stop_nmi +ffffffff8100fcb0 T restart_nmi +ffffffff8100fcc0 T local_touch_nmi +ffffffff8100fcd0 t dump_kernel_offset +ffffffff8100fd20 T arch_show_smap +ffffffff8100fd40 t is_ISA_range +ffffffff8100fd60 t default_get_nmi_reason +ffffffff8100fd70 T x86_init_noop +ffffffff8100fd80 T x86_op_int_noop +ffffffff8100fd90 t default_nmi_init +ffffffff8100fda0 T iommu_shutdown_noop +ffffffff8100fdb0 T arch_setup_msi_irqs +ffffffff8100fdc0 T arch_teardown_msi_irqs +ffffffff8100fdd0 T arch_teardown_msi_irq +ffffffff8100fde0 T arch_restore_msi_irqs +ffffffff8100fdf0 t mask_8259A_irq +ffffffff8100fe40 t disable_8259A_irq +ffffffff8100fe50 t unmask_8259A_irq +ffffffff8100fea0 t enable_8259A_irq +ffffffff8100feb0 t i8259A_irq_pending +ffffffff8100ff00 t i8259A_suspend +ffffffff8100ff30 t i8259A_shutdown +ffffffff8100ff40 t mask_8259A +ffffffff8100ff70 t unmask_8259A +ffffffff8100ffa0 t legacy_pic_noop +ffffffff8100ffb0 t legacy_pic_uint_noop +ffffffff8100ffc0 t legacy_pic_int_noop +ffffffff8100ffd0 t legacy_pic_irq_pending_noop +ffffffff8100ffe0 t legacy_pic_probe +ffffffff8100fff0 t mask_and_ack_8259A +ffffffff810100d0 t probe_8259A +ffffffff81010140 t make_8259A_irq +ffffffff81010190 t init_8259A +ffffffff810102a0 t i8259A_resume +ffffffff810102d0 t bug_at +ffffffff810102f0 T arch_jump_label_transform +ffffffff810103b0 T arch_irq_work_raise +ffffffff810103f0 t match_id +ffffffff81010450 t find_oprom +ffffffff810105b0 T pci_map_biosrom +ffffffff810105d0 T pci_unmap_biosrom +ffffffff810105e0 T pci_biosrom_size +ffffffff81010600 t get_align_mask.part.0 +ffffffff81010620 t get_align_bits +ffffffff81010640 T align_vdso_addr +ffffffff81010670 T SyS_mmap +ffffffff81010670 T sys_mmap +ffffffff81010690 T arch_get_unmapped_area +ffffffff81010870 T arch_get_unmapped_area_topdown +ffffffff81010a40 t boot_params_data_read +ffffffff81010a60 t version_show +ffffffff81010a80 t get_setup_data_paddr +ffffffff81010b00 t type_show +ffffffff81010b90 t setup_data_data_read +ffffffff81010c90 T e820__mapped_any +ffffffff81010ce0 T e820__get_entry_type +ffffffff81010d50 t via_no_dac +ffffffff81010d80 T dma_generic_alloc_coherent +ffffffff81010e90 T dma_generic_free_coherent +ffffffff81010eb0 T arch_dma_alloc_attrs +ffffffff81010f20 T arch_dma_supported +ffffffff81010f80 T x86_dma_supported +ffffffff81010f90 t force_disable_hpet_msi +ffffffff81010fa0 t ich_force_enable_hpet +ffffffff81011110 t old_ich_force_enable_hpet +ffffffff81011220 t old_ich_force_enable_hpet_user +ffffffff81011230 t amd_disable_seq_and_redirect_scrub +ffffffff810112a0 t vt8237_force_enable_hpet +ffffffff810113c0 t ati_force_enable_hpet +ffffffff81011580 t quirk_intel_brickland_xeon_ras_cap +ffffffff810115b0 t quirk_intel_purley_xeon_ras_cap +ffffffff810115f0 t quirk_intel_irqbalance +ffffffff81011690 t e6xx_force_enable_hpet +ffffffff810116e0 t nvidia_force_enable_hpet +ffffffff81011780 T force_hpet_resume +ffffffff81011910 T arch_register_cpu +ffffffff81011a30 T arch_unregister_cpu +ffffffff81011a50 t do_sync_core +ffffffff81011a70 T alternatives_text_reserved +ffffffff81011ad0 T text_poke +ffffffff81011cb0 T alternatives_enable_smp +ffffffff81011de0 T poke_int3_handler +ffffffff81011e20 T text_poke_bp +ffffffff81011ee0 t nommu_mapping_error +ffffffff81011ef0 t check_addr +ffffffff81011f40 t nommu_map_page +ffffffff81011f80 t nommu_map_sg +ffffffff81012010 T encode_dr7 +ffffffff81012040 T decode_dr7 +ffffffff81012070 T arch_install_hw_breakpoint +ffffffff81012190 T arch_uninstall_hw_breakpoint +ffffffff81012250 T arch_check_bp_in_kernelspace +ffffffff81012290 T arch_bp_generic_fields +ffffffff81012310 T arch_validate_hwbkpt_settings +ffffffff81012440 T aout_dump_debugregs +ffffffff81012510 T flush_ptrace_hw_breakpoint +ffffffff81012560 T hw_breakpoint_restore +ffffffff810125b0 T hw_breakpoint_exceptions_notify +ffffffff810126f0 T hw_breakpoint_pmu_read +ffffffff81012700 t read_tsc +ffffffff81012710 t tsc_read_refs +ffffffff81012790 t tsc_cs_tick_stable +ffffffff810127b0 t tsc_resume +ffffffff810127c0 t tsc_cs_mark_unstable +ffffffff810127f0 T cyc2ns_read_begin +ffffffff81012840 T cyc2ns_read_end +ffffffff81012860 t set_cyc2ns_scale +ffffffff81012980 t tsc_refine_calibration_work +ffffffff81012ba0 T native_sched_clock +ffffffff81012ba0 T sched_clock +ffffffff81012c50 T native_sched_clock_from_tsc +ffffffff81012cd0 T using_native_sched_clock +ffffffff81012ce0 T check_tsc_unstable +ffffffff81012cf0 T native_calibrate_tsc +ffffffff81012da0 T native_calibrate_cpu +ffffffff81013320 T recalibrate_cpu_khz +ffffffff81013330 T tsc_save_sched_clock_state +ffffffff81013350 T tsc_restore_sched_clock_state +ffffffff810133f0 T mark_tsc_unstable +ffffffff81013450 t time_cpufreq_notifier +ffffffff81013520 T unsynchronized_tsc +ffffffff81013580 T convert_art_to_tsc +ffffffff810135d0 T calibrate_delay_is_known +ffffffff81013640 T cpu_khz_from_msr +ffffffff81013730 T native_io_delay +ffffffff81013760 T mach_set_rtc_mmss +ffffffff810137d0 T mach_get_cmos_time +ffffffff81013920 T rtc_cmos_read +ffffffff81013930 T rtc_cmos_write +ffffffff81013940 T update_persistent_clock +ffffffff81013970 T read_persistent_clock +ffffffff81013980 T arch_remove_reservations +ffffffff81013a80 t enable_cpuid +ffffffff81013ad0 t amd_e400_idle +ffffffff81013b00 T arch_dup_task_struct +ffffffff81013b30 T exit_thread +ffffffff81013bd0 T flush_thread +ffffffff81013c10 T disable_TSC +ffffffff81013c60 T get_tsc_mode +ffffffff81013c90 T set_tsc_mode +ffffffff81013d00 T arch_setup_new_exec +ffffffff81013d20 T __switch_to_xtra +ffffffff81013ef0 T arch_cpu_idle_enter +ffffffff81013f00 T arch_cpu_idle_dead +ffffffff81013f10 T arch_cpu_idle +ffffffff81013f20 T stop_this_cpu +ffffffff81013f60 T select_idle_routine +ffffffff81014020 T amd_e400_c1e_apic_setup +ffffffff81014050 T arch_align_stack +ffffffff810140a0 T arch_randomize_brk +ffffffff810140c0 T get_wchan +ffffffff810141c0 T do_arch_prctl_common +ffffffff81014260 t fpu__init_cpu_generic +ffffffff81014290 T fpu__init_cpu +ffffffff810142a0 T irq_fpu_usable +ffffffff810142e0 T __kernel_fpu_begin +ffffffff81014330 T __kernel_fpu_end +ffffffff81014390 T kernel_fpu_begin +ffffffff810143a0 T kernel_fpu_end +ffffffff810143c0 T fpu__save +ffffffff81014400 T fpstate_init +ffffffff81014440 T fpu__copy +ffffffff81014490 T fpu__initialize +ffffffff810144b0 T fpu__prepare_read +ffffffff810144f0 T fpu__prepare_write +ffffffff81014510 T fpu__restore +ffffffff81014580 T fpu__drop +ffffffff810145d0 T fpu__clear +ffffffff81014680 T fpu__exception_code +ffffffff810146e0 T regset_fpregs_active +ffffffff810146f0 T regset_xregset_fpregs_active +ffffffff81014700 T xfpregs_get +ffffffff81014780 T xfpregs_set +ffffffff81014820 T xstateregs_get +ffffffff81014960 T xstateregs_set +ffffffff81014a80 T copy_fpstate_to_sigframe +ffffffff81014be0 T fpu__restore_sig +ffffffff81014dd0 T fpu__alloc_mathframe +ffffffff81014e10 T fpu__init_prepare_fx_sw_frame +ffffffff81014e40 t fpu__init_cpu_xstate.part.1 +ffffffff81014ea0 T fpu__xstate_clear_all_cpu_caps +ffffffff81014eb0 T cpu_has_xfeatures +ffffffff81014f10 T fpstate_sanitize_xstate +ffffffff81015030 T fpu__init_cpu_xstate +ffffffff81015050 T using_compacted_format +ffffffff81015060 T validate_xstate_header +ffffffff810150a0 T fpu__resume_cpu +ffffffff810150d0 T __raw_xsave_addr +ffffffff81015100 T get_xsave_addr +ffffffff81015150 T get_xsave_field_ptr +ffffffff810151c0 T arch_set_user_pkey_access +ffffffff81015230 T copy_xstate_to_kernel +ffffffff81015580 T copy_xstate_to_user +ffffffff81015730 T copy_kernel_to_xstate +ffffffff81015870 T copy_user_to_xstate +ffffffff8101599a t __xstate_dump_leaves.part.0 +ffffffff810159e0 t ptrace_triggered +ffffffff81015a20 t ioperm_active +ffffffff81015a30 t ioperm_get +ffffffff81015af0 t putreg +ffffffff81015d00 t ptrace_register_breakpoint +ffffffff81015db0 t ptrace_set_breakpoint_addr +ffffffff81015eb0 t ptrace_modify_breakpoint +ffffffff81015fb0 t genregs_set +ffffffff81016060 t getreg +ffffffff81016170 t genregs_get +ffffffff81016200 T regs_query_register_offset +ffffffff81016240 T regs_query_register_name +ffffffff81016270 T ptrace_disable +ffffffff81016280 T arch_ptrace +ffffffff81016660 T task_user_regset_view +ffffffff81016670 T user_single_step_siginfo +ffffffff810166e0 T send_sigtrap +ffffffff81016760 T convert_ip_to_linear +ffffffff81016770 T set_task_blockstep +ffffffff810167c0 t enable_step +ffffffff81016900 T user_enable_single_step +ffffffff81016910 T user_enable_block_step +ffffffff81016920 T user_disable_single_step +ffffffff81016960 t cpuid4_cache_lookup_regs +ffffffff81016b80 t _init_cache_level +ffffffff81016bc0 t _populate_cache_leaves +ffffffff81016fc0 T init_amd_cacheinfo +ffffffff81017030 T init_intel_cacheinfo +ffffffff81017500 T init_cache_level +ffffffff81017530 T populate_cache_leaves +ffffffff81017560 T init_scattered_cpuid_features +ffffffff810175f0 T get_scattered_cpuid_leaf +ffffffff81017660 T detect_extended_topology +ffffffff810177d0 t bsp_resume +ffffffff810177f0 t get_cpu_vendor +ffffffff810178a0 t filter_cpuid_features +ffffffff81017920 t detect_ht.part.6 +ffffffff81017a80 t cpu_detect.part.7 +ffffffff81017af0 T load_percpu_segment +ffffffff81017b20 T load_direct_gdt +ffffffff81017b50 T load_fixmap_gdt +ffffffff81017b80 T switch_to_new_gdt +ffffffff81017bc0 T cpu_detect_cache_sizes +ffffffff81017c30 t default_init +ffffffff81017c40 T detect_ht +ffffffff81017c60 T cpu_detect +ffffffff81017c90 T get_cpu_cap +ffffffff81017e60 t identify_cpu +ffffffff81018300 T identify_secondary_cpu +ffffffff81018380 T print_cpu_info +ffffffff81018440 T syscall_init +ffffffff810184f0 T is_debug_stack +ffffffff81018520 T debug_stack_set_zero +ffffffff81018550 T debug_stack_reset +ffffffff81018590 T cpu_init +ffffffff81018910 T microcode_check +ffffffff810189f0 T x86_init_rdrand +ffffffff81018a40 T x86_match_cpu +ffffffff81018ad0 T retpoline_module_ok +ffffffff81018b00 T cpu_show_meltdown +ffffffff81018b80 T cpu_show_spectre_v1 +ffffffff81018c00 T cpu_show_spectre_v2 +ffffffff81018ca0 t aperfmperf_snapshot_khz +ffffffff81018d30 t aperfmperf_snapshot_cpu +ffffffff81018da0 T aperfmperf_get_khz +ffffffff81018df0 T arch_freq_prepare_all +ffffffff81018e70 T arch_freq_get_on_cpu +ffffffff81018ee0 t do_clear_cpu_cap +ffffffff81018fc0 T clear_cpu_cap +ffffffff81018fd0 T setup_clear_cpu_cap +ffffffff81018fe0 t c_stop +ffffffff81018ff0 t show_cpuinfo +ffffffff810193c0 t c_start +ffffffff81019400 t c_next +ffffffff81019450 t intel_detect_tlb +ffffffff810198c0 t init_intel_energy_perf.part.4 +ffffffff81019950 t intel_bsp_resume +ffffffff81019970 T check_mpx_erratum +ffffffff810199b0 t early_init_intel +ffffffff81019d10 t init_intel +ffffffff81019fe0 t ctl_reg +ffffffff81019ff0 t status_reg +ffffffff8101a000 t addr_reg +ffffffff8101a010 t misc_reg +ffffffff8101a020 t smca_ctl_reg +ffffffff8101a030 t smca_status_reg +ffffffff8101a040 t smca_addr_reg +ffffffff8101a050 t smca_misc_reg +ffffffff8101a060 t msr_to_offset +ffffffff8101a0e0 t mce_adjust_timer_default +ffffffff8101a0f0 t __mcheck_cpu_init_clear_banks +ffffffff8101a170 t mce_disable_error_reporting +ffffffff8101a1d0 t mce_syscore_suspend +ffffffff8101a1f0 t mce_syscore_shutdown +ffffffff8101a200 t __print_mce +ffffffff8101a350 t mce_default_notifier +ffffffff8101a370 t unexpected_machine_check +ffffffff8101a390 t print_mce +ffffffff8101a3c0 t __start_timer +ffffffff8101a400 t mce_start_timer +ffffffff8101a430 t __mcheck_cpu_init_timer +ffffffff8101a460 t __mce_disable_bank +ffffffff8101a480 t mce_timer_delete_all +ffffffff8101a4c0 t set_cmci_disabled +ffffffff8101a550 t set_ignore_ce +ffffffff8101a5f0 t set_bank +ffffffff8101a640 t mce_device_release +ffffffff8101a650 t mce_cpu_dead +ffffffff8101a670 t show_bank +ffffffff8101a690 t mce_usable_address.isra.1 +ffffffff8101a6e0 t quirk_sandybridge_ifu +ffffffff8101a730 t mce_rdmsrl +ffffffff8101a770 t mce_read_aux +ffffffff8101a870 t mce_schedule_work.part.7 +ffffffff8101a890 t mce_irq_work_cb +ffffffff8101a8a0 t mce_panic +ffffffff8101a9f0 t mce_timed_out +ffffffff8101aa50 t store_int_with_restart +ffffffff8101aac0 t srao_decode_notifier +ffffffff8101ab50 t mce_wrmsrl.constprop.24 +ffffffff8101ab90 T mce_setup +ffffffff8101ac50 T mce_log +ffffffff8101ac70 T mce_inject_log +ffffffff8101aca0 T mce_register_decode_chain +ffffffff8101acd0 T mce_unregister_decode_chain +ffffffff8101acf0 T mce_available +ffffffff8101ad20 t mce_cpu_pre_down +ffffffff8101ae50 t mce_enable_ce +ffffffff8101ae90 t mce_disable_cmci +ffffffff8101aeb0 t mce_cpu_online +ffffffff8101b0f0 T mce_is_memory_error +ffffffff8101b140 T machine_check_poll +ffffffff8101b310 t __mcheck_cpu_init_generic +ffffffff8101b380 t mce_syscore_resume +ffffffff8101b3b0 t mce_cpu_restart +ffffffff8101b3e0 T memory_failure +ffffffff8101b400 T mce_timer_kick +ffffffff8101b440 T mce_notify_irq +ffffffff8101b490 T do_machine_check +ffffffff8101bf50 t mce_timer_fn +ffffffff8101c010 t mce_first_notifier +ffffffff8101c030 T do_mce +ffffffff8101c040 T mcheck_cpu_init +ffffffff8101c500 T mcheck_cpu_clear +ffffffff8101c520 T mce_disable_bank +ffffffff8101c56a t wait_for_panic +ffffffff8101c5aa t memory_failure.part.17 +ffffffff8101c5b0 t mce_severity_intel +ffffffff8101c6d0 t mce_severity_amd +ffffffff8101c780 T mce_gen_pool_prepare_records +ffffffff8101c810 T mce_gen_pool_process +ffffffff8101c870 T mce_gen_pool_empty +ffffffff8101c880 T mce_gen_pool_add +ffffffff8101c970 T mce_gen_pool_init +ffffffff8101c9f0 t cmci_toggle_interrupt_mode +ffffffff8101ca90 t cmci_discover +ffffffff8101cc50 t lmce_supported +ffffffff8101cca0 t cmci_supported +ffffffff8101cd00 t cmci_rediscover_work_func +ffffffff8101cd20 t __cmci_disable_bank +ffffffff8101cd70 t intel_threshold_interrupt +ffffffff8101ce30 T mce_intel_cmci_poll +ffffffff8101ce80 T mce_intel_hcpu_update +ffffffff8101ceb0 T cmci_recheck +ffffffff8101cf00 T cmci_intel_adjust_timer +ffffffff8101cfb0 T cmci_clear +ffffffff8101d010 T cmci_rediscover +ffffffff8101d040 T cmci_reenable +ffffffff8101d060 T cmci_disable_bank +ffffffff8101d0b0 T mce_intel_feature_init +ffffffff8101d1b0 T mce_intel_feature_clear +ffffffff8101d1e0 t default_threshold_interrupt +ffffffff8101d200 t thermal_throttle_offline +ffffffff8101d220 t therm_throt_device_show_core_throttle_count +ffffffff8101d280 t therm_throt_device_show_package_power_limit_count +ffffffff8101d2e0 t therm_throt_device_show_package_throttle_count +ffffffff8101d340 t therm_throt_device_show_core_power_limit_count +ffffffff8101d3a0 t thermal_throttle_online +ffffffff8101d450 t unexpected_thermal_interrupt +ffffffff8101d470 t therm_throt_process +ffffffff8101d580 t intel_thermal_interrupt +ffffffff8101d830 t intel_thermal_supported +ffffffff8101d860 T intel_init_thermal +ffffffff8101dab0 t mtrr_save +ffffffff8101db10 t mtrr_restore +ffffffff8101db90 t mtrr_rendezvous_handler +ffffffff8101dbf0 T mtrr_add_page +ffffffff8101e050 T mtrr_add +ffffffff8101e0b0 T mtrr_del_page +ffffffff8101e250 T mtrr_del +ffffffff8101e2b0 T arch_phys_wc_add +ffffffff8101e320 T arch_phys_wc_del +ffffffff8101e340 T arch_phys_wc_index +ffffffff8101e360 T mtrr_ap_init +ffffffff8101e3d0 T mtrr_save_state +ffffffff8101e410 T set_mtrr_aps_delayed_init +ffffffff8101e440 T mtrr_aps_init +ffffffff8101e4b0 T mtrr_bp_restore +ffffffff8101e4e0 t mtrr_close +ffffffff8101e560 t mtrr_open +ffffffff8101e590 t mtrr_seq_show +ffffffff8101e690 t mtrr_write +ffffffff8101e8c0 t mtrr_file_add.constprop.1 +ffffffff8101e980 t mtrr_ioctl +ffffffff8101edb0 T mtrr_attrib_to_str +ffffffff8101edd0 T generic_get_free_region +ffffffff8101ee40 t generic_have_wrcomb +ffffffff8101ee50 T generic_validate_add_page +ffffffff8101ef10 t generic_get_mtrr +ffffffff8101f020 t check_type_overlap +ffffffff8101f070 t mtrr_type_lookup_variable +ffffffff8101f200 T mtrr_type_lookup +ffffffff8101f360 T fill_mtrr_var_range +ffffffff8101f380 T mtrr_wrmsr +ffffffff8101f3b0 t prepare_set +ffffffff8101f440 t post_set +ffffffff8101f4a0 t generic_set_mtrr +ffffffff8101f570 t generic_set_all +ffffffff8101f7f0 t get_fixed_ranges.constprop.5 +ffffffff8101f900 T mtrr_save_fixed_ranges +ffffffff8101f920 T positive_have_wrcomb +ffffffff8101f930 t collect_cpu_info_local +ffffffff8101f960 t apply_microcode_local +ffffffff8101f980 t mc_device_remove +ffffffff8101f9d0 t mc_cpu_down_prep +ffffffff8101f9f0 t pf_show +ffffffff8101fa20 t version_show +ffffffff8101fa50 t collect_cpu_info +ffffffff8101fad0 t apply_microcode_on_target +ffffffff8101fb00 t __wait_for_cpus +ffffffff8101fb80 t microcode_open +ffffffff8101fbb0 t microcode_write +ffffffff8101fc90 t microcode_init_cpu +ffffffff8101fd10 t mc_cpu_online +ffffffff8101fd70 t mc_device_add +ffffffff8101fdc0 t reload_store +ffffffff8101fee0 t __reload_late +ffffffff8101ffa0 T reload_ucode_amd +ffffffff8101ffb0 T get_builtin_firmware +ffffffff81020010 T load_ucode_ap +ffffffff81020080 T find_microcode_in_initrd +ffffffff810200b0 T reload_early_microcode +ffffffff81020130 t mc_bp_resume +ffffffff81020180 t find_matching_signature +ffffffff81020200 t find_patch +ffffffff81020260 t microcode_sanity_check +ffffffff81020460 t collect_cpu_info +ffffffff81020520 t apply_microcode_intel +ffffffff81020680 t get_ucode_fw +ffffffff81020690 t memdup_patch +ffffffff810206e0 t save_microcode_patch +ffffffff810207f0 t generic_load_microcode +ffffffff81020a40 t get_ucode_user +ffffffff81020a50 t collect_cpu_info_early +ffffffff81020b00 t scan_microcode +ffffffff81020d40 t load_builtin_intel_microcode +ffffffff81020db0 t __load_ucode_intel +ffffffff81020e70 t is_blacklisted +ffffffff81020f00 t request_microcode_fw +ffffffff81020fb0 t print_ucode_info.isra.2.part.3 +ffffffff81020fe0 t apply_microcode_early +ffffffff810210d0 t request_microcode_user +ffffffff81021110 T load_ucode_intel_ap +ffffffff81021160 T reload_ucode_intel +ffffffff81021190 T avail_to_resrv_perfctr_nmi_bit +ffffffff810211b0 T reserve_perfctr_nmi +ffffffff81021240 T release_perfctr_nmi +ffffffff810212c0 T reserve_evntsel_nmi +ffffffff81021350 T release_evntsel_nmi +ffffffff810213d0 t acpi_register_gsi_pic +ffffffff810213f0 t acpi_unregister_gsi_ioapic +ffffffff81021430 t acpi_register_gsi_ioapic +ffffffff81021490 t acpi_register_lapic +ffffffff81021510 T acpi_gsi_to_irq +ffffffff810215a0 T acpi_isa_irq_to_gsi +ffffffff810215d0 T acpi_register_gsi +ffffffff810215e0 T acpi_unregister_gsi +ffffffff81021600 T acpi_map_cpu +ffffffff81021640 T acpi_unmap_cpu +ffffffff81021670 T acpi_register_ioapic +ffffffff81021740 T acpi_unregister_ioapic +ffffffff81021770 T acpi_ioapic_registered +ffffffff810217a0 T __acpi_acquire_global_lock +ffffffff810217d0 T __acpi_release_global_lock +ffffffff810217f0 T x86_acpi_enter_sleep_state +ffffffff81021800 T x86_acpi_suspend_lowlevel +ffffffff81021900 T wakeup_long64 +ffffffff81021957 t bogus_64_magic +ffffffff81021960 T do_suspend_lowlevel +ffffffff81021a80 T cpc_ffh_supported +ffffffff81021a90 T cpc_read_ffh +ffffffff81021af0 T cpc_write_ffh +ffffffff81021b70 t acpi_processor_ffh_cstate_probe_cpu +ffffffff81021c10 T acpi_processor_power_init_bm_check +ffffffff81021c80 T acpi_processor_ffh_cstate_probe +ffffffff81021d30 t native_machine_power_off +ffffffff81021d60 t crash_nmi_callback +ffffffff81021d90 T machine_real_restart +ffffffff81021e00 t native_machine_restart +ffffffff81021e40 T native_machine_shutdown +ffffffff81021e70 t native_machine_halt +ffffffff81021e90 t vmxoff_nmi +ffffffff81021ed0 W mach_reboot_fixups +ffffffff81021ee0 T machine_power_off +ffffffff81021ef0 T machine_shutdown +ffffffff81021f00 T machine_emergency_restart +ffffffff81021f20 T machine_restart +ffffffff81021f30 T machine_halt +ffffffff81021f40 T nmi_shootdown_cpus +ffffffff81021fe0 t native_machine_emergency_restart +ffffffff81022200 T run_crash_ipi_callback +ffffffff81022220 T nmi_panic_self_stop +ffffffff81022240 T native_send_call_func_single_ipi +ffffffff81022260 T native_send_call_func_ipi +ffffffff810222d0 t native_smp_send_reschedule +ffffffff81022300 t smp_stop_nmi_callback +ffffffff81022360 t native_stop_other_cpus +ffffffff810224b0 T smp_reboot_interrupt +ffffffff81022520 t cpu_cpu_mask +ffffffff81022530 t x86_core_flags +ffffffff81022550 T cpu_coregroup_mask +ffffffff81022570 t wakeup_cpu0_nmi +ffffffff810225a0 T arch_update_cpu_topology +ffffffff810225b0 T topology_phys_to_logical_pkg +ffffffff81022610 T topology_update_package_map +ffffffff81022670 T smp_store_cpu_info +ffffffff810226c0 T set_cpu_sibling_map +ffffffff81022a50 t start_secondary +ffffffff81022b90 T __inquire_remote_apic +ffffffff81022ce0 T wakeup_secondary_cpu_via_nmi +ffffffff81022d90 T common_cpu_up +ffffffff81022dd0 T native_cpu_up +ffffffff81023530 T arch_disable_smp_support +ffffffff81023540 T arch_enable_nonboot_cpus_begin +ffffffff81023550 T arch_enable_nonboot_cpus_end +ffffffff81023560 T cpu_disable_common +ffffffff81023740 T native_cpu_disable +ffffffff81023770 T common_cpu_die +ffffffff810237c0 T native_cpu_die +ffffffff810237d0 T play_dead_common +ffffffff810237e0 T hlt_play_dead +ffffffff81023810 T native_play_dead +ffffffff81023910 t check_tsc_warp +ffffffff81023a30 T mark_tsc_async_resets +ffffffff81023a60 T tsc_verify_tsc_adjust +ffffffff81023b00 T tsc_store_and_check_tsc_adjust +ffffffff81023c50 T check_tsc_sync_source +ffffffff81023df0 T check_tsc_sync_target +ffffffff81023f30 t lapic_next_event +ffffffff81023f50 t lapic_next_deadline +ffffffff81023f70 t lapic_timer_shutdown +ffffffff81023fd0 t lapic_timer_broadcast +ffffffff81023ff0 t hsx_deadline_rev +ffffffff81024020 t bdx_deadline_rev +ffffffff81024040 t skx_deadline_rev +ffffffff81024070 t __setup_APIC_LVTT +ffffffff81024160 t lapic_setup_esr +ffffffff81024260 t __lapic_update_tsc_freq +ffffffff81024290 t setup_APIC_timer +ffffffff81024380 t lapic_timer_set_oneshot +ffffffff810243a0 t set_multi +ffffffff810243d0 t lapic_resume +ffffffff81024660 t lapic_timer_set_periodic +ffffffff81024680 T native_apic_wait_icr_idle +ffffffff810246a0 T native_safe_apic_wait_icr_idle +ffffffff810246f0 T native_apic_icr_write +ffffffff81024730 T native_apic_icr_read +ffffffff81024770 T lapic_get_maxlvt +ffffffff81024790 T setup_APIC_eilvt +ffffffff810248e0 T lapic_update_tsc_freq +ffffffff810248f0 T setup_secondary_APIC_clock +ffffffff81024900 T setup_profiling_timer +ffffffff81024910 T clear_local_APIC +ffffffff81024bc0 t disable_local_APIC.part.6 +ffffffff81024c00 t lapic_suspend +ffffffff81024de0 T disable_local_APIC +ffffffff81024e00 T lapic_shutdown +ffffffff81024e40 T setup_local_APIC +ffffffff810251b0 T apic_ap_setup +ffffffff810251d0 T disconnect_bsp_APIC +ffffffff81025290 T generic_processor_info +ffffffff81025560 T hard_smp_processor_id +ffffffff81025590 T apic_is_clustered_box +ffffffff810255c0 T apic_default_calc_apicid +ffffffff810255e0 T apic_flat_calc_apicid +ffffffff810255f0 T default_check_apicid_used +ffffffff81025600 T default_ioapic_phys_id_map +ffffffff81025620 T default_cpu_present_to_apicid +ffffffff81025660 T default_check_phys_apicid_present +ffffffff81025680 T default_apic_id_valid +ffffffff81025690 t physid_set_mask_of_physid +ffffffff810256d0 t noop_init_apic_ldr +ffffffff810256e0 t noop_send_IPI +ffffffff810256f0 t noop_send_IPI_mask +ffffffff81025700 t noop_send_IPI_allbutself +ffffffff81025710 t noop_apic_icr_write +ffffffff81025720 t noop_wakeup_secondary_cpu +ffffffff81025730 t noop_safe_apic_wait_icr_idle +ffffffff81025740 t noop_apic_icr_read +ffffffff81025750 t noop_phys_pkg_id +ffffffff81025760 t noop_get_apic_id +ffffffff81025770 t noop_probe +ffffffff81025780 t noop_apic_id_registered +ffffffff81025790 t noop_apic_read +ffffffff810257a0 t noop_apic_write +ffffffff810257b0 t noop_send_IPI_mask_allbutself +ffffffff810257c0 t noop_send_IPI_all +ffffffff810257d0 t noop_send_IPI_self +ffffffff810257e0 t noop_apic_wait_icr_idle +ffffffff810257f0 T __default_send_IPI_shortcut +ffffffff81025830 T __default_send_IPI_dest_field +ffffffff810258a0 T default_send_IPI_single_phys +ffffffff810258d0 T default_send_IPI_mask_sequence_phys +ffffffff81025930 T default_send_IPI_mask_allbutself_phys +ffffffff810259a0 T default_send_IPI_single +ffffffff810259e0 t __send_cleanup_vector +ffffffff81025a70 t free_moved_vector +ffffffff81025af0 t __irq_complete_move +ffffffff81025b10 t apic_chip_data.part.0 +ffffffff81025b30 t apic_update_irq_cfg +ffffffff81025ba0 t vector_assign_managed_shutdown +ffffffff81025bd0 t apic_retrigger_irq +ffffffff81025c20 t clear_irq_vector +ffffffff81025d00 t apic_update_vector +ffffffff81025db0 t reserve_irq_vector_locked +ffffffff81025df0 t x86_vector_deactivate +ffffffff81025e60 t assign_vector_locked +ffffffff81025f00 t x86_vector_free_irqs +ffffffff81025fe0 T apic_ack_edge +ffffffff81026030 t assign_managed_vector.isra.2 +ffffffff810260f0 t x86_vector_activate +ffffffff810262a0 t apic_set_affinity +ffffffff81026330 t x86_vector_alloc_irqs +ffffffff810265d0 T lock_vector_lock +ffffffff810265e0 T unlock_vector_lock +ffffffff810265f0 T init_irq_alloc_info +ffffffff81026620 T copy_irq_alloc_info +ffffffff81026680 T irqd_cfg +ffffffff81026690 T irq_cfg +ffffffff810266b0 T lapic_assign_legacy_vector +ffffffff810266d0 T lapic_online +ffffffff81026740 T lapic_offline +ffffffff81026770 T send_cleanup_vector +ffffffff81026780 T irq_complete_move +ffffffff810267a0 T irq_force_complete_move +ffffffff81026810 T lapic_can_unplug_cpu +ffffffff810268a0 t nmi_raise_cpu_backtrace +ffffffff810268c0 t nmi_cpu_backtrace_handler +ffffffff810268d0 T arch_trigger_cpumask_backtrace +ffffffff810268e0 t __ioapic_read_entry +ffffffff81026920 t ioapic_read_entry +ffffffff81026960 t ioapic_write_entry +ffffffff810269f0 t ioapic_mask_entry +ffffffff81026a70 t io_apic_modify_irq +ffffffff81026af0 t io_apic_sync +ffffffff81026b30 t mask_ioapic_irq +ffffffff81026b70 t unmask_ioapic_irq +ffffffff81026bb0 T save_ioapic_entries +ffffffff81026c40 t startup_ioapic_irq +ffffffff81026cc0 t mask_lapic_irq +ffffffff81026d00 t unmask_lapic_irq +ffffffff81026d40 t ack_lapic_irq +ffffffff81026d60 T mp_irqdomain_deactivate +ffffffff81026d70 t irq_trigger +ffffffff81026dc0 t __add_pin_to_irq_node +ffffffff81026e50 t mp_register_handler +ffffffff81026ea0 t mp_check_pin_attr +ffffffff81026f50 t ioapic_configure_entry +ffffffff81026ff0 t ioapic_set_affinity +ffffffff81027050 T mp_irqdomain_activate +ffffffff81027080 t mp_irqdomain_create +ffffffff810271d0 t alloc_isa_irq_from_domain.isra.1 +ffffffff810272a0 t __eoi_ioapic_pin +ffffffff810273a0 t eoi_ioapic_pin +ffffffff810273f0 t ioapic_ir_ack_level +ffffffff81027420 t ioapic_ack_level +ffffffff81027550 t clear_IO_APIC_pin +ffffffff81027670 t clear_IO_APIC +ffffffff810276c0 T mp_irqdomain_free +ffffffff81027780 T mpc_ioapic_id +ffffffff81027790 T mpc_ioapic_addr +ffffffff810277a0 T disable_ioapic_support +ffffffff810277c0 T mp_save_irq +ffffffff81027870 T native_io_apic_read +ffffffff810278a0 T mask_ioapic_entries +ffffffff81027920 T restore_ioapic_entries +ffffffff81027990 t ioapic_resume +ffffffff81027a50 T ioapic_set_alloc_attr +ffffffff81027aa0 T mp_unmap_irq +ffffffff81027b00 T ioapic_zap_locks +ffffffff81027b10 T native_disable_io_apic +ffffffff81027bb0 T disable_IO_APIC +ffffffff81027bd0 T arch_dynirq_lower_bound +ffffffff81027bf0 T mp_find_ioapic +ffffffff81027c40 T acpi_get_override_irq +ffffffff81027d50 t mp_map_pin_to_irq +ffffffff81028010 t pin_2_irq +ffffffff81028080 T IO_APIC_get_PCI_irq_vector +ffffffff81028270 T mp_irqdomain_alloc +ffffffff81028500 T mp_map_gsi_to_irq +ffffffff810285d0 T mp_find_ioapic_pin +ffffffff81028600 T mp_register_ioapic +ffffffff81028b40 T mp_unregister_ioapic +ffffffff81028c90 T mp_ioapic_registered +ffffffff81028cd0 T mp_irqdomain_ioapic_idx +ffffffff81028cd5 t io_apic_print_entries +ffffffff81028e2c t alloc_ioapic_saved_registers.part.0 +ffffffff81028e70 t pci_msi_get_hwirq +ffffffff81028e80 t dmar_msi_get_hwirq +ffffffff81028e90 t hpet_msi_get_hwirq +ffffffff81028ea0 T pci_msi_set_desc +ffffffff81028ec0 t irq_msi_compose_msg +ffffffff81028f10 t dmar_msi_write_msg +ffffffff81028f20 t dmar_msi_init +ffffffff81028f50 t hpet_msi_write_msg +ffffffff81028f60 t hpet_msi_free +ffffffff81028f70 t hpet_msi_init +ffffffff81028fc0 T pci_msi_prepare +ffffffff81029010 T native_setup_msi_irqs +ffffffff81029070 T native_teardown_msi_irq +ffffffff81029080 T arch_create_remap_msi_irq_domain +ffffffff810290d0 T dmar_alloc_hwirq +ffffffff810291b0 T dmar_free_hwirq +ffffffff810291c0 T hpet_create_irq_domain +ffffffff810292e0 T hpet_assign_irq +ffffffff81029350 t default_inquire_remote_apic +ffffffff81029360 t native_apic_mem_write +ffffffff81029370 t native_apic_mem_read +ffffffff81029380 t flat_acpi_madt_oem_check +ffffffff81029390 T flat_init_apic_ldr +ffffffff81029400 t flat_get_apic_id +ffffffff81029410 t set_apic_id +ffffffff81029420 t flat_apic_id_registered +ffffffff81029450 t flat_phys_pkg_id +ffffffff81029460 t flat_probe +ffffffff81029470 t physflat_init_apic_ldr +ffffffff81029480 t physflat_probe +ffffffff810294b0 t _flat_send_IPI_mask +ffffffff810294d0 t flat_send_IPI_allbutself +ffffffff81029540 t flat_send_IPI_mask_allbutself +ffffffff81029570 t flat_send_IPI_mask +ffffffff81029580 t physflat_send_IPI_all +ffffffff81029590 t physflat_send_IPI_allbutself +ffffffff810295a0 t flat_send_IPI_all +ffffffff810295d0 t physflat_acpi_madt_oem_check +ffffffff81029650 T apic_send_IPI_self +ffffffff81029660 T trace_clock_x86_tsc +ffffffff81029670 t hpet_restart_counter +ffffffff810296c0 t hpet_legacy_shutdown +ffffffff810296e0 t hpet_legacy_set_oneshot +ffffffff81029710 t hpet_legacy_next_event +ffffffff81029750 t hpet_msi_shutdown +ffffffff81029780 t hpet_msi_set_oneshot +ffffffff810297b0 t hpet_msi_next_event +ffffffff81029800 t _hpet_print_config +ffffffff81029930 t hpet_resume_counter +ffffffff81029940 t hpet_cpuhp_dead +ffffffff81029990 t hpet_msi_resume +ffffffff81029a30 t hpet_work +ffffffff81029c10 t hpet_cpuhp_online +ffffffff81029ca0 t hpet_interrupt_handler +ffffffff81029cd0 t read_hpet +ffffffff81029d70 t hpet_set_periodic.isra.4 +ffffffff81029e30 t hpet_legacy_set_periodic +ffffffff81029e40 t hpet_msi_set_periodic +ffffffff81029e60 t hpet_legacy_resume +ffffffff81029ea0 T hpet_readl +ffffffff81029eb0 T is_hpet_enabled +ffffffff81029ed0 T hpet_msi_unmask +ffffffff81029f10 T hpet_msi_mask +ffffffff81029f50 T hpet_msi_write +ffffffff81029f90 T hpet_msi_read +ffffffff81029fd0 T hpet_disable +ffffffff8102a0a0 T hpet_register_irq_handler +ffffffff8102a0e0 T hpet_unregister_irq_handler +ffffffff8102a120 T hpet_rtc_timer_init +ffffffff8102a1f0 T hpet_mask_rtc_irq_bit +ffffffff8102a250 T hpet_set_rtc_irq_bit +ffffffff8102a2b0 T hpet_set_alarm_time +ffffffff8102a300 T hpet_set_periodic_freq +ffffffff8102a370 T hpet_rtc_dropped_irq +ffffffff8102a390 T hpet_rtc_interrupt +ffffffff8102a6aa t hpet_reserve_platform_timers +ffffffff8102a79a t hpet_msi_capability_lookup +ffffffff8102a910 T x86_swiotlb_alloc_coherent +ffffffff8102a950 T x86_swiotlb_free_coherent +ffffffff8102a9b0 T efifb_setup_from_dmi +ffffffff8102aa20 T perf_reg_value +ffffffff8102aa40 T perf_reg_validate +ffffffff8102aa60 T perf_reg_abi +ffffffff8102aa80 T perf_get_regs_user +ffffffff8102aba0 t sched_itmt_update_handler +ffffffff8102ac40 T sched_set_itmt_support +ffffffff8102acc0 T sched_clear_itmt_support +ffffffff8102ad40 T arch_asym_cpu_priority +ffffffff8102ad60 T sched_set_itmt_core_prio +ffffffff8102ade0 t umip_printk +ffffffff8102aea0 T fixup_umip_exception +ffffffff8102b1cd t force_sig_info_umip_fault +ffffffff8102b260 t __orc_find +ffffffff8102b2d0 t orc_sort_swap +ffffffff8102b330 t stack_access_ok +ffffffff8102b380 t orc_sort_cmp +ffffffff8102b3d0 T unwind_get_return_address +ffffffff8102b400 T unwind_get_return_address_ptr +ffffffff8102b430 T unwind_next_frame +ffffffff8102ba50 T __unwind_start +ffffffff8102bc10 t cmp_range +ffffffff8102bc20 t get_fam10h_pci_mmconf_base +ffffffff8102bf20 T fam10h_check_enable_mmcfg +ffffffff8102bfd0 t vsmp_apic_post_init +ffffffff8102bff0 t apicid_phys_pkg_id +ffffffff8102c000 T pfn_range_is_mapped +ffffffff8102c040 T devmem_is_allowed +ffffffff8102c080 T free_init_pages +ffffffff8102c100 T update_cache_mode_entry +ffffffff8102c140 t fill_pud +ffffffff8102c1f0 t fill_pmd +ffffffff8102c2c0 t fill_pte +ffffffff8102c3b0 t __set_pte_vaddr +ffffffff8102c440 t ident_pmd_init.isra.0 +ffffffff8102c4b0 t ident_pud_init +ffffffff8102c640 T kernel_ident_mapping_init +ffffffff8102c7b0 T sync_global_pgds +ffffffff8102c900 T set_pte_vaddr_p4d +ffffffff8102c920 T set_pte_vaddr_pud +ffffffff8102c940 T set_pte_vaddr +ffffffff8102c980 T set_kernel_text_rw +ffffffff8102c9c0 T set_kernel_text_ro +ffffffff8102ca00 T mark_rodata_ro +ffffffff8102caf0 T kern_addr_valid +ffffffff8102ccd0 T memory_block_size_bytes +ffffffff8102cd30 t spurious_fault +ffffffff8102cf00 t vmalloc_fault +ffffffff8102d100 t dump_pagetable +ffffffff8102d310 t pgtable_bad +ffffffff8102d3a0 t is_prefetch.isra.4.part.5 +ffffffff8102d4f0 t force_sig_info_fault.constprop.7 +ffffffff8102d560 t no_context +ffffffff8102d880 t __bad_area_nosemaphore +ffffffff8102da00 t bad_area_nosemaphore +ffffffff8102da10 t __bad_area +ffffffff8102da90 t bad_area_access_error +ffffffff8102db30 t bad_area +ffffffff8102db70 t mm_fault_error +ffffffff8102dcb0 t __do_page_fault +ffffffff8102e100 T vmalloc_sync_all +ffffffff8102e130 T do_page_fault +ffffffff8102e140 t __ioremap_res_check +ffffffff8102e250 t __ioremap_caller +ffffffff8102e4f0 T ioremap_change_attr +ffffffff8102e520 T ioremap_nocache +ffffffff8102e530 T ioremap_uc +ffffffff8102e540 T ioremap_wc +ffffffff8102e550 T ioremap_wt +ffffffff8102e560 T ioremap_cache +ffffffff8102e570 T ioremap_prot +ffffffff8102e5b0 T iounmap +ffffffff8102e650 T xlate_dev_mem_ptr +ffffffff8102e680 T unxlate_dev_mem_ptr +ffffffff8102e690 T arch_memremap_can_ram_remap +ffffffff8102e6a0 T phys_mem_access_encrypted +ffffffff8102e6b0 T ex_handler_fault +ffffffff8102e6d0 T ex_handler_default +ffffffff8102e6f0 T ex_handler_refcount +ffffffff8102e760 T ex_handler_fprestore +ffffffff8102e7a0 T ex_handler_ext +ffffffff8102e7d0 T ex_handler_rdmsr_unsafe +ffffffff8102e840 T ex_handler_wrmsr_unsafe +ffffffff8102e8a0 T ex_handler_clear_fs +ffffffff8102e8d0 T ex_has_fault_handler +ffffffff8102e900 T fixup_exception +ffffffff8102e940 t __cpa_flush_all +ffffffff8102e9f0 t alloc_pmd_page +ffffffff8102ea40 t alloc_pte_page +ffffffff8102ea90 t unmap_pte_range +ffffffff8102eb80 t try_to_free_pmd_page +ffffffff8102ebb0 t __cpa_flush_range +ffffffff8102ec50 t populate_pte.isra.2 +ffffffff8102ed10 t populate_pmd +ffffffff8102efd0 t __unmap_pmd_range.part.3 +ffffffff8102f010 t unmap_pmd_range +ffffffff8102f210 t populate_pgd +ffffffff8102f6b0 t __cpa_process_fault.part.4 +ffffffff8102f710 T update_page_count +ffffffff8102f740 T arch_report_meminfo +ffffffff8102f7a0 T clflush_cache_range +ffffffff8102f7d0 T arch_invalidate_pmem +ffffffff8102f7e0 T lookup_address_in_pgd +ffffffff8102f920 t _lookup_address_cpa.isra.6 +ffffffff8102f950 t __change_page_attr_set_clr +ffffffff81030610 t change_page_attr_set_clr +ffffffff810309e0 t _set_memory_array +ffffffff81030b70 t _set_pages_array +ffffffff81030c80 T lookup_address +ffffffff81030cb0 T lookup_pmd_address +ffffffff81030d70 T slow_virt_to_phys +ffffffff81030e30 T _set_memory_uc +ffffffff81030e60 T set_memory_uc +ffffffff81030f20 T set_memory_array_uc +ffffffff81030f30 T set_memory_array_wc +ffffffff81030f40 T set_memory_array_wt +ffffffff81030f50 T _set_memory_wc +ffffffff81030fb0 T set_memory_wc +ffffffff81031070 T _set_memory_wt +ffffffff810310a0 T set_memory_wt +ffffffff81031160 T _set_memory_wb +ffffffff81031190 T set_memory_wb +ffffffff81031210 T set_memory_array_wb +ffffffff810312a0 T set_memory_x +ffffffff810312e0 T set_memory_nx +ffffffff81031320 T set_memory_ro +ffffffff81031350 T set_memory_rw +ffffffff81031380 T set_memory_np +ffffffff810313b0 T set_memory_4k +ffffffff810313e0 T set_memory_encrypted +ffffffff810313f0 T set_memory_decrypted +ffffffff81031400 T set_pages_uc +ffffffff81031420 T set_pages_array_uc +ffffffff81031430 T set_pages_array_wc +ffffffff81031440 T set_pages_array_wt +ffffffff81031450 T set_pages_wb +ffffffff81031470 T set_pages_array_wb +ffffffff810314e0 T set_pages_x +ffffffff81031500 T set_pages_nx +ffffffff81031520 T set_pages_ro +ffffffff81031560 T set_pages_rw +ffffffff810315a0 T kernel_map_pages_in_pgd +ffffffff810316c0 T task_size_32bit +ffffffff810316e0 T task_size_64bit +ffffffff810316f0 T arch_mmap_rnd +ffffffff81031730 T arch_pick_mmap_layout +ffffffff81031860 T get_mmap_base +ffffffff81031880 T arch_vma_name +ffffffff81031890 T mmap_address_hint_valid +ffffffff810318f0 T valid_phys_addr_range +ffffffff81031930 T valid_mmap_phys_addr_range +ffffffff81031950 t pagerange_is_ram_callback +ffffffff81031990 t __init_cache_modes +ffffffff81031a10 t pat_pagerange_is_ram +ffffffff81031a80 t lookup_memtype +ffffffff81031b40 t pat_disable.part.1 +ffffffff81031b60 T pat_disable +ffffffff81031b80 T pat_enabled +ffffffff81031b90 T init_cache_modes +ffffffff81031be0 T pat_init +ffffffff81031cd0 T reserve_memtype +ffffffff81032050 T free_memtype +ffffffff81032180 T pat_pfn_immune_to_uc_mtrr +ffffffff810321a0 T io_free_memtype +ffffffff810321b0 T arch_io_free_memtype_wc +ffffffff810321c0 T phys_mem_access_prot +ffffffff810321e0 T phys_mem_access_prot_allowed +ffffffff81032260 T kernel_map_sync_memtype +ffffffff810323a0 T io_reserve_memtype +ffffffff81032470 T arch_io_reserve_memtype_wc +ffffffff81032490 t reserve_pfn_range +ffffffff810326d0 T track_pfn_copy +ffffffff81032730 T track_pfn_remap +ffffffff81032820 T track_pfn_insert +ffffffff81032860 T untrack_pfn +ffffffff810328f0 T untrack_pfn_moved +ffffffff81032900 T pgprot_writecombine +ffffffff81032910 T pgprot_writethrough +ffffffff81032920 T pte_alloc_one_kernel +ffffffff81032930 T pte_alloc_one +ffffffff81032970 T ___pte_free_tlb +ffffffff810329a0 T ___pmd_free_tlb +ffffffff810329e0 T ___pud_free_tlb +ffffffff81032a20 T pgd_page_get_mm +ffffffff81032a30 T pgd_alloc +ffffffff81032b30 T pgd_free +ffffffff81032bc0 T ptep_set_access_flags +ffffffff81032be0 T pmdp_set_access_flags +ffffffff81032c00 T pudp_set_access_flags +ffffffff81032c20 T ptep_test_and_clear_young +ffffffff81032c40 T pmdp_test_and_clear_young +ffffffff81032c80 T pudp_test_and_clear_young +ffffffff81032cc0 T ptep_clear_flush_young +ffffffff81032cf0 T pmdp_clear_flush_young +ffffffff81032d40 T __native_set_fixmap +ffffffff81032d70 T native_set_fixmap +ffffffff81032d90 T pud_set_huge +ffffffff81032e10 T pmd_set_huge +ffffffff81032ed0 T pud_clear_huge +ffffffff81032f00 T pmd_clear_huge +ffffffff81032f40 T pmd_free_pte_page +ffffffff81032f90 T pud_free_pmd_page +ffffffff81033020 T __virt_addr_valid +ffffffff810330b0 T x86_configure_nx +ffffffff81033100 t load_new_mm_cr3 +ffffffff810331b0 t do_kernel_range_flush +ffffffff81033250 t do_flush_tlb_all +ffffffff810332f0 T clear_asid_other +ffffffff81033330 T switch_mm_irqs_off +ffffffff81033580 T switch_mm +ffffffff81033590 T leave_mm +ffffffff810335c0 t flush_tlb_func_common.constprop.4 +ffffffff810336f0 t flush_tlb_func_remote +ffffffff81033720 T enter_lazy_tlb +ffffffff81033760 T initialize_tlbstate_and_flush +ffffffff81033830 T native_flush_tlb_others +ffffffff81033850 T flush_tlb_mm_range +ffffffff81033950 T flush_tlb_all +ffffffff81033970 T flush_tlb_kernel_range +ffffffff810339d0 T arch_tlbbatch_flush +ffffffff81033a90 T get_cpu_entry_area +ffffffff81033ab0 T cea_set_pte +ffffffff81033ad0 t memtype_rb_augment_cb_rotate +ffffffff81033b10 t memtype_rb_insert.constprop.2 +ffffffff81033b90 t memtype_rb_match.constprop.3 +ffffffff81033c70 T rbt_memtype_check_insert +ffffffff81033e10 T rbt_memtype_erase +ffffffff81034340 T rbt_memtype_lookup +ffffffff810343c0 T __execute_only_pkey +ffffffff810344e0 T __arch_override_mprotect_pkey +ffffffff81034550 T copy_init_pkru_to_fpregs +ffffffff81034590 T glue_ecb_crypt_128bit +ffffffff81034760 T glue_cbc_encrypt_128bit +ffffffff810348b0 T glue_cbc_decrypt_128bit +ffffffff81034b30 T glue_ctr_crypt_128bit +ffffffff81034e40 T glue_xts_crypt_128bit +ffffffff81035030 T glue_xts_req_128bit +ffffffff810351e0 T glue_xts_crypt_128bit_one +ffffffff81035250 T aes_enc_blk +ffffffff81035e70 T aes_dec_blk +ffffffff81036aa0 t aes_encrypt +ffffffff81036ab0 t aes_decrypt +ffffffff81036ac0 T crypto_aes_encrypt_x86 +ffffffff81036ad0 T crypto_aes_decrypt_x86 +ffffffff81036ae0 T des3_ede_x86_64_crypt_blk +ffffffff810381f0 T des3_ede_x86_64_crypt_blk_3way +ffffffff8103c1d0 t des3_ede_x86_encrypt +ffffffff8103c1e0 t des3_ede_x86_decrypt +ffffffff8103c1f0 t ecb_crypt +ffffffff8103c2a0 t ecb_decrypt +ffffffff8103c2f0 t ecb_encrypt +ffffffff8103c340 t cbc_encrypt +ffffffff8103c460 t cbc_decrypt +ffffffff8103c600 t ctr_crypt +ffffffff8103c850 t des3_ede_x86_setkey +ffffffff8103c8a0 T aesni_gcm_dec +ffffffff8103c932 t _initial_num_blocks_is_3_decrypt +ffffffff8103c954 t _get_AAD_blocks3dec +ffffffff8103ca48 t _get_AAD_rest3dec +ffffffff8103ca68 t _read_next_byte_32 +ffffffff8103ca88 t _read_lt8_32 +ffffffff8103ca8a t _read_next_byte_lt8_32 +ffffffff8103ca9d t _done_read_partial_block_32 +ffffffff8103cb76 t _get_AAD_done3dec +ffffffff8103cbdf t aes_loop_initial_dec3 +ffffffff8103d339 t aes_loop_pre_dec3 +ffffffff8103d35e t aes_loop_pre_dec_done3 +ffffffff8103d3f9 t _initial_blocks_done3dec +ffffffff8103d402 t _initial_num_blocks_is_2_decrypt +ffffffff8103d424 t _get_AAD_blocks2dec +ffffffff8103d518 t _get_AAD_rest2dec +ffffffff8103d538 t _read_next_byte_618 +ffffffff8103d558 t _read_lt8_618 +ffffffff8103d55a t _read_next_byte_lt8_618 +ffffffff8103d56d t _done_read_partial_block_618 +ffffffff8103d646 t _get_AAD_done2dec +ffffffff8103d69b t aes_loop_initial_dec2 +ffffffff8103dcf6 t aes_loop_pre_dec2 +ffffffff8103dd1b t aes_loop_pre_dec_done2 +ffffffff8103ddb6 t _initial_blocks_done2dec +ffffffff8103ddbf t _initial_num_blocks_is_1_decrypt +ffffffff8103dde1 t _get_AAD_blocks1dec +ffffffff8103ded5 t _get_AAD_rest1dec +ffffffff8103def5 t _read_next_byte_1161 +ffffffff8103df15 t _read_lt8_1161 +ffffffff8103df17 t _read_next_byte_lt8_1161 +ffffffff8103df2a t _done_read_partial_block_1161 +ffffffff8103e003 t _get_AAD_done1dec +ffffffff8103e044 t aes_loop_initial_dec1 +ffffffff8103e5a0 t aes_loop_pre_dec1 +ffffffff8103e5c5 t aes_loop_pre_dec_done1 +ffffffff8103e660 t _initial_blocks_done1dec +ffffffff8103e669 t _initial_num_blocks_is_0_decrypt +ffffffff8103e68c t _get_AAD_blocks0dec +ffffffff8103e782 t _get_AAD_rest0dec +ffffffff8103e7a2 t _read_next_byte_1661 +ffffffff8103e7c2 t _read_lt8_1661 +ffffffff8103e7c4 t _read_next_byte_lt8_1661 +ffffffff8103e7d7 t _done_read_partial_block_1661 +ffffffff8103e8b1 t _get_AAD_done0dec +ffffffff8103ed0c t aes_loop_pre_dec0 +ffffffff8103ed31 t aes_loop_pre_dec_done0 +ffffffff8103edcc t _initial_blocks_decrypted +ffffffff8103edcc t _initial_blocks_done0dec +ffffffff8103ede0 t _decrypt_by_4 +ffffffff8103f04b t aes_loop_par_dec +ffffffff8103f070 t aes_loop_par_dec_done +ffffffff8103f1d1 t _four_cipher_left_decrypt +ffffffff8103f373 t _zero_cipher_left_decrypt +ffffffff8103f3ab t _esb_loop_2556 +ffffffff8103f3e3 t _read_next_byte_2569 +ffffffff8103f401 t _read_lt8_2569 +ffffffff8103f403 t _read_next_byte_lt8_2569 +ffffffff8103f416 t _done_read_partial_block_2569 +ffffffff8103f538 t _less_than_8_bytes_left_decrypt +ffffffff8103f54a t _multiple_of_16_bytes_decrypt +ffffffff8103f667 t _esb_loop_2680 +ffffffff8103f687 t _return_T_decrypt +ffffffff8103f69b t _T_8_decrypt +ffffffff8103f6b6 t _T_4_decrypt +ffffffff8103f6d0 t _T_123_decrypt +ffffffff8103f6eb t _T_1_decrypt +ffffffff8103f6f0 t _T_16_decrypt +ffffffff8103f6f5 t _return_T_done_decrypt +ffffffff8103f700 T aesni_gcm_enc +ffffffff8103f792 t _initial_num_blocks_is_3_encrypt +ffffffff8103f7b4 t _get_AAD_blocks3enc +ffffffff8103f8a8 t _get_AAD_rest3enc +ffffffff8103f8c8 t _read_next_byte_2735 +ffffffff8103f8e8 t _read_lt8_2735 +ffffffff8103f8ea t _read_next_byte_lt8_2735 +ffffffff8103f8fd t _done_read_partial_block_2735 +ffffffff8103f9d6 t _get_AAD_done3enc +ffffffff8103fa3c t aes_loop_initial_enc3 +ffffffff81040187 t aes_loop_pre_enc3 +ffffffff810401ac t aes_loop_pre_enc_done3 +ffffffff81040233 t _initial_blocks_done3enc +ffffffff8104023c t _initial_num_blocks_is_2_encrypt +ffffffff8104025e t _get_AAD_blocks2enc +ffffffff81040352 t _get_AAD_rest2enc +ffffffff81040372 t _read_next_byte_3321 +ffffffff81040392 t _read_lt8_3321 +ffffffff81040394 t _read_next_byte_lt8_3321 +ffffffff810403a7 t _done_read_partial_block_3321 +ffffffff81040480 t _get_AAD_done2enc +ffffffff810404d3 t aes_loop_initial_enc2 +ffffffff81040b24 t aes_loop_pre_enc2 +ffffffff81040b49 t aes_loop_pre_enc_done2 +ffffffff81040bd0 t _initial_blocks_done2enc +ffffffff81040bd9 t _initial_num_blocks_is_1_encrypt +ffffffff81040bfb t _get_AAD_blocks1enc +ffffffff81040cef t _get_AAD_rest1enc +ffffffff81040d0f t _read_next_byte_3864 +ffffffff81040d2f t _read_lt8_3864 +ffffffff81040d31 t _read_next_byte_lt8_3864 +ffffffff81040d44 t _done_read_partial_block_3864 +ffffffff81040e1d t _get_AAD_done1enc +ffffffff81040e5d t aes_loop_initial_enc1 +ffffffff810413b4 t aes_loop_pre_enc1 +ffffffff810413d9 t aes_loop_pre_enc_done1 +ffffffff81041460 t _initial_blocks_done1enc +ffffffff81041469 t _initial_num_blocks_is_0_encrypt +ffffffff8104148c t _get_AAD_blocks0enc +ffffffff81041582 t _get_AAD_rest0enc +ffffffff810415a2 t _read_next_byte_4364 +ffffffff810415c2 t _read_lt8_4364 +ffffffff810415c4 t _read_next_byte_lt8_4364 +ffffffff810415d7 t _done_read_partial_block_4364 +ffffffff810416b1 t _get_AAD_done0enc +ffffffff81041b0c t aes_loop_pre_enc0 +ffffffff81041b31 t aes_loop_pre_enc_done0 +ffffffff81041bb8 t _initial_blocks_done0enc +ffffffff81041bb8 t _initial_blocks_encrypted +ffffffff81041bcc t _encrypt_by_4_encrypt +ffffffff81041e37 t aes_loop_par_enc +ffffffff81041e5c t aes_loop_par_enc_done +ffffffff81041fa9 t _four_cipher_left_encrypt +ffffffff8104214b t _zero_cipher_left_encrypt +ffffffff81042183 t _esb_loop_5259 +ffffffff810421bb t _read_next_byte_5272 +ffffffff810421d9 t _read_lt8_5272 +ffffffff810421db t _read_next_byte_lt8_5272 +ffffffff810421ee t _done_read_partial_block_5272 +ffffffff81042317 t _less_than_8_bytes_left_encrypt +ffffffff81042329 t _multiple_of_16_bytes_encrypt +ffffffff81042446 t _esb_loop_5389 +ffffffff81042468 t _return_T_encrypt +ffffffff8104247c t _T_8_encrypt +ffffffff81042497 t _T_4_encrypt +ffffffff810424b1 t _T_123_encrypt +ffffffff810424cc t _T_1_encrypt +ffffffff810424d1 t _T_16_encrypt +ffffffff810424d6 t _return_T_done_encrypt +ffffffff810424e0 t _key_expansion_128 +ffffffff810424e0 t _key_expansion_256a +ffffffff81042504 t _key_expansion_192a +ffffffff81042550 t _key_expansion_192b +ffffffff81042588 t _key_expansion_256b +ffffffff810425b0 T aesni_set_key +ffffffff81042790 T aesni_enc +ffffffff810427a4 t _aesni_enc1 +ffffffff81042850 t _aesni_enc4 +ffffffff810429e0 T aesni_dec +ffffffff810429fc t _aesni_dec1 +ffffffff81042aa8 t _aesni_dec4 +ffffffff81042c40 T aesni_ecb_enc +ffffffff81042cc0 T aesni_ecb_dec +ffffffff81042d40 T aesni_cbc_enc +ffffffff81042d80 T aesni_cbc_dec +ffffffff81042e30 t _aesni_inc_init +ffffffff81042e58 t _aesni_inc +ffffffff81042e80 T aesni_ctr_enc +ffffffff81042f40 T aesni_xts_crypt8 +ffffffff810431a0 t common_rfc4106_set_authsize +ffffffff810431d0 t generic_gcmaes_set_authsize +ffffffff81043200 t __aes_decrypt +ffffffff81043210 t __aes_encrypt +ffffffff81043220 t aesni_xts_tweak +ffffffff81043230 t aes_decrypt +ffffffff81043280 t aes_encrypt +ffffffff810432d0 t aes_set_key_common +ffffffff81043340 t aes_set_key +ffffffff81043350 t aesni_skcipher_setkey +ffffffff81043370 t xts_decrypt +ffffffff810433a0 t xts_encrypt +ffffffff810433d0 t aesni_xts_dec +ffffffff810433e0 t aesni_xts_enc +ffffffff810433f0 t aesni_xts_dec8 +ffffffff81043400 t aesni_xts_enc8 +ffffffff81043410 t xts_aesni_setkey +ffffffff810434b0 t ctr_crypt +ffffffff810435e0 t cbc_decrypt +ffffffff810436a0 t cbc_encrypt +ffffffff81043760 t ecb_decrypt +ffffffff81043820 t ecb_encrypt +ffffffff810438e0 t rfc4106_exit +ffffffff810438f0 t generic_gcmaes_exit +ffffffff81043900 t generic_gcmaes_init +ffffffff81043930 t rfc4106_init +ffffffff81043960 t rfc4106_set_hash_subkey +ffffffff810439f0 t generic_gcmaes_set_key +ffffffff81043a40 t common_rfc4106_set_key +ffffffff81043aa0 t gcmaes_wrapper_decrypt +ffffffff81043b30 t gcmaes_wrapper_encrypt +ffffffff81043bb0 t gcmaes_wrapper_set_authsize +ffffffff81043bc0 t gcmaes_wrapper_set_key +ffffffff81043bd0 t aesni_ctr_enc_avx_tfm +ffffffff81043c10 t aesni_gcm_dec_avx +ffffffff81043cc0 t aesni_gcm_enc_avx +ffffffff81043d70 t aesni_gcm_dec_avx2 +ffffffff81043e70 t aesni_gcm_enc_avx2 +ffffffff81043f70 t gcmaes_decrypt.constprop.4 +ffffffff81044230 t helper_rfc4106_decrypt +ffffffff810442e0 t generic_gcmaes_decrypt +ffffffff81044340 t gcmaes_encrypt.constprop.5 +ffffffff810445b0 t helper_rfc4106_encrypt +ffffffff81044660 t generic_gcmaes_encrypt +ffffffff810446c0 t crypto_fpu_setkey +ffffffff81044700 t crypto_fpu_decrypt +ffffffff810447f0 t crypto_fpu_encrypt +ffffffff810448e0 t crypto_fpu_exit_tfm +ffffffff810448f0 t crypto_fpu_init_tfm +ffffffff81044920 t crypto_fpu_create +ffffffff81044b30 t crypto_fpu_free +ffffffff81044b50 T crypto_fpu_exit +ffffffff81044b60 T aesni_gcm_precomp_avx_gen2 +ffffffff81045040 T aesni_gcm_enc_avx_gen2 +ffffffff810450b3 t _initial_num_blocks_is_78 +ffffffff810450cf t _get_AAD_blocks9 +ffffffff810451a0 t _get_AAD_rest89 +ffffffff810451c5 t _get_AAD_rest49 +ffffffff810451eb t _get_AAD_rest09 +ffffffff81045200 t _get_AAD_rest_final9 +ffffffff810452a4 t _get_AAD_done9 +ffffffff81045db5 t _initial_blocks_done9 +ffffffff81045dbe t _initial_num_blocks_is_68 +ffffffff81045dda t _get_AAD_blocks418 +ffffffff81045eab t _get_AAD_rest8418 +ffffffff81045ed0 t _get_AAD_rest4418 +ffffffff81045ef6 t _get_AAD_rest0418 +ffffffff81045f0b t _get_AAD_rest_final418 +ffffffff81045faf t _get_AAD_done418 +ffffffff810469bc t _initial_blocks_done418 +ffffffff810469c5 t _initial_num_blocks_is_58 +ffffffff810469e1 t _get_AAD_blocks784 +ffffffff81046ab2 t _get_AAD_rest8784 +ffffffff81046ad7 t _get_AAD_rest4784 +ffffffff81046afd t _get_AAD_rest0784 +ffffffff81046b12 t _get_AAD_rest_final784 +ffffffff81046bb6 t _get_AAD_done784 +ffffffff810474bf t _initial_blocks_done784 +ffffffff810474c8 t _initial_num_blocks_is_48 +ffffffff810474e4 t _get_AAD_blocks1107 +ffffffff810475b5 t _get_AAD_rest81107 +ffffffff810475da t _get_AAD_rest41107 +ffffffff81047600 t _get_AAD_rest01107 +ffffffff81047615 t _get_AAD_rest_final1107 +ffffffff810476b9 t _get_AAD_done1107 +ffffffff81047ebe t _initial_blocks_done1107 +ffffffff81047ec7 t _initial_num_blocks_is_38 +ffffffff81047ee3 t _get_AAD_blocks1387 +ffffffff81047fb4 t _get_AAD_rest81387 +ffffffff81047fd9 t _get_AAD_rest41387 +ffffffff81047fff t _get_AAD_rest01387 +ffffffff81048014 t _get_AAD_rest_final1387 +ffffffff810480b8 t _get_AAD_done1387 +ffffffff810487b9 t _initial_blocks_done1387 +ffffffff810487c2 t _initial_num_blocks_is_28 +ffffffff810487de t _get_AAD_blocks1624 +ffffffff810488af t _get_AAD_rest81624 +ffffffff810488d4 t _get_AAD_rest41624 +ffffffff810488fa t _get_AAD_rest01624 +ffffffff8104890f t _get_AAD_rest_final1624 +ffffffff810489b3 t _get_AAD_done1624 +ffffffff81048fb0 t _initial_blocks_done1624 +ffffffff81048fb9 t _initial_num_blocks_is_18 +ffffffff81048fd5 t _get_AAD_blocks1818 +ffffffff810490a6 t _get_AAD_rest81818 +ffffffff810490cb t _get_AAD_rest41818 +ffffffff810490f1 t _get_AAD_rest01818 +ffffffff81049106 t _get_AAD_rest_final1818 +ffffffff810491aa t _get_AAD_done1818 +ffffffff810496a3 t _initial_blocks_done1818 +ffffffff810496ac t _initial_num_blocks_is_08 +ffffffff810496c9 t _get_AAD_blocks1969 +ffffffff8104979c t _get_AAD_rest81969 +ffffffff810497c2 t _get_AAD_rest41969 +ffffffff810497e9 t _get_AAD_rest01969 +ffffffff810497fe t _get_AAD_rest_final1969 +ffffffff810498ab t _get_AAD_done1969 +ffffffff81049c96 t _initial_blocks_done1969 +ffffffff81049c96 t _initial_blocks_encrypted8 +ffffffff81049cc2 t _encrypt_by_8_new8 +ffffffff8104a276 t _encrypt_by_88 +ffffffff8104a872 t _eight_cipher_left8 +ffffffff8104aaac t _zero_cipher_left8 +ffffffff8104ab44 t _only_less_than_168 +ffffffff8104abb5 t _get_last_16_byte_loop8 +ffffffff8104abcf t _final_ghash_mul8 +ffffffff8104acb9 t _less_than_8_bytes_left8 +ffffffff8104accb t _multiple_of_16_bytes8 +ffffffff8104ade9 t _return_T8 +ffffffff8104adfd t _T_88 +ffffffff8104ae19 t _T_48 +ffffffff8104ae34 t _T_1238 +ffffffff8104ae4f t _T_18 +ffffffff8104ae54 t _T_168 +ffffffff8104ae59 t _return_T_done8 +ffffffff8104ae70 T aesni_gcm_dec_avx_gen2 +ffffffff8104aee3 t _initial_num_blocks_is_72229 +ffffffff8104aeff t _get_AAD_blocks2230 +ffffffff8104afd0 t _get_AAD_rest82230 +ffffffff8104aff5 t _get_AAD_rest42230 +ffffffff8104b01b t _get_AAD_rest02230 +ffffffff8104b030 t _get_AAD_rest_final2230 +ffffffff8104b0d4 t _get_AAD_done2230 +ffffffff8104bc23 t _initial_blocks_done2230 +ffffffff8104bc2c t _initial_num_blocks_is_62229 +ffffffff8104bc48 t _get_AAD_blocks2639 +ffffffff8104bd19 t _get_AAD_rest82639 +ffffffff8104bd3e t _get_AAD_rest42639 +ffffffff8104bd64 t _get_AAD_rest02639 +ffffffff8104bd79 t _get_AAD_rest_final2639 +ffffffff8104be1d t _get_AAD_done2639 +ffffffff8104c864 t _initial_blocks_done2639 +ffffffff8104c86d t _initial_num_blocks_is_52229 +ffffffff8104c889 t _get_AAD_blocks3005 +ffffffff8104c95a t _get_AAD_rest83005 +ffffffff8104c97f t _get_AAD_rest43005 +ffffffff8104c9a5 t _get_AAD_rest03005 +ffffffff8104c9ba t _get_AAD_rest_final3005 +ffffffff8104ca5e t _get_AAD_done3005 +ffffffff8104d39d t _initial_blocks_done3005 +ffffffff8104d3a6 t _initial_num_blocks_is_42229 +ffffffff8104d3c2 t _get_AAD_blocks3328 +ffffffff8104d493 t _get_AAD_rest83328 +ffffffff8104d4b8 t _get_AAD_rest43328 +ffffffff8104d4de t _get_AAD_rest03328 +ffffffff8104d4f3 t _get_AAD_rest_final3328 +ffffffff8104d597 t _get_AAD_done3328 +ffffffff8104ddce t _initial_blocks_done3328 +ffffffff8104ddd7 t _initial_num_blocks_is_32229 +ffffffff8104ddf3 t _get_AAD_blocks3608 +ffffffff8104dec4 t _get_AAD_rest83608 +ffffffff8104dee9 t _get_AAD_rest43608 +ffffffff8104df0f t _get_AAD_rest03608 +ffffffff8104df24 t _get_AAD_rest_final3608 +ffffffff8104dfc8 t _get_AAD_done3608 +ffffffff8104e6f7 t _initial_blocks_done3608 +ffffffff8104e700 t _initial_num_blocks_is_22229 +ffffffff8104e71c t _get_AAD_blocks3845 +ffffffff8104e7ed t _get_AAD_rest83845 +ffffffff8104e812 t _get_AAD_rest43845 +ffffffff8104e838 t _get_AAD_rest03845 +ffffffff8104e84d t _get_AAD_rest_final3845 +ffffffff8104e8f1 t _get_AAD_done3845 +ffffffff8104ef18 t _initial_blocks_done3845 +ffffffff8104ef21 t _initial_num_blocks_is_12229 +ffffffff8104ef3d t _get_AAD_blocks4039 +ffffffff8104f00e t _get_AAD_rest84039 +ffffffff8104f033 t _get_AAD_rest44039 +ffffffff8104f059 t _get_AAD_rest04039 +ffffffff8104f06e t _get_AAD_rest_final4039 +ffffffff8104f112 t _get_AAD_done4039 +ffffffff8104f631 t _initial_blocks_done4039 +ffffffff8104f63a t _initial_num_blocks_is_02229 +ffffffff8104f657 t _get_AAD_blocks4190 +ffffffff8104f72a t _get_AAD_rest84190 +ffffffff8104f750 t _get_AAD_rest44190 +ffffffff8104f777 t _get_AAD_rest04190 +ffffffff8104f78c t _get_AAD_rest_final4190 +ffffffff8104f839 t _get_AAD_done4190 +ffffffff8104fc45 t _initial_blocks_done4190 +ffffffff8104fc45 t _initial_blocks_encrypted2229 +ffffffff8104fc71 t _encrypt_by_8_new2229 +ffffffff8105025c t _encrypt_by_82229 +ffffffff8105088f t _eight_cipher_left2229 +ffffffff81050ac9 t _zero_cipher_left2229 +ffffffff81050b61 t _only_less_than_162229 +ffffffff81050bd2 t _get_last_16_byte_loop2229 +ffffffff81050bec t _final_ghash_mul2229 +ffffffff81050cd4 t _less_than_8_bytes_left2229 +ffffffff81050ce6 t _multiple_of_16_bytes2229 +ffffffff81050e04 t _return_T2229 +ffffffff81050e18 t _T_82229 +ffffffff81050e34 t _T_42229 +ffffffff81050e4f t _T_1232229 +ffffffff81050e6a t _T_12229 +ffffffff81050e6f t _T_162229 +ffffffff81050e74 t _return_T_done2229 +ffffffff81050e80 T aesni_gcm_precomp_avx_gen4 +ffffffff810511f0 T aesni_gcm_enc_avx_gen4 +ffffffff81051263 t _initial_num_blocks_is_74458 +ffffffff8105127f t _get_AAD_blocks4459 +ffffffff81051324 t _get_AAD_rest84459 +ffffffff81051349 t _get_AAD_rest44459 +ffffffff8105136f t _get_AAD_rest04459 +ffffffff81051384 t _get_AAD_rest_final4459 +ffffffff810513fc t _get_AAD_done4459 +ffffffff81051dd3 t _initial_blocks_done4459 +ffffffff81051ddc t _initial_num_blocks_is_64458 +ffffffff81051df8 t _get_AAD_blocks4868 +ffffffff81051e9d t _get_AAD_rest84868 +ffffffff81051ec2 t _get_AAD_rest44868 +ffffffff81051ee8 t _get_AAD_rest04868 +ffffffff81051efd t _get_AAD_rest_final4868 +ffffffff81051f75 t _get_AAD_done4868 +ffffffff81052874 t _initial_blocks_done4868 +ffffffff8105287d t _initial_num_blocks_is_54458 +ffffffff81052899 t _get_AAD_blocks5234 +ffffffff8105293e t _get_AAD_rest85234 +ffffffff81052963 t _get_AAD_rest45234 +ffffffff81052989 t _get_AAD_rest05234 +ffffffff8105299e t _get_AAD_rest_final5234 +ffffffff81052a16 t _get_AAD_done5234 +ffffffff8105323d t _initial_blocks_done5234 +ffffffff81053246 t _initial_num_blocks_is_44458 +ffffffff81053262 t _get_AAD_blocks5557 +ffffffff81053307 t _get_AAD_rest85557 +ffffffff8105332c t _get_AAD_rest45557 +ffffffff81053352 t _get_AAD_rest05557 +ffffffff81053367 t _get_AAD_rest_final5557 +ffffffff810533df t _get_AAD_done5557 +ffffffff81053b2e t _initial_blocks_done5557 +ffffffff81053b37 t _initial_num_blocks_is_34458 +ffffffff81053b53 t _get_AAD_blocks5837 +ffffffff81053bf8 t _get_AAD_rest85837 +ffffffff81053c1d t _get_AAD_rest45837 +ffffffff81053c43 t _get_AAD_rest05837 +ffffffff81053c58 t _get_AAD_rest_final5837 +ffffffff81053cd0 t _get_AAD_done5837 +ffffffff81054347 t _initial_blocks_done5837 +ffffffff81054350 t _initial_num_blocks_is_24458 +ffffffff8105436c t _get_AAD_blocks6074 +ffffffff81054411 t _get_AAD_rest86074 +ffffffff81054436 t _get_AAD_rest46074 +ffffffff8105445c t _get_AAD_rest06074 +ffffffff81054471 t _get_AAD_rest_final6074 +ffffffff810544e9 t _get_AAD_done6074 +ffffffff81054a88 t _initial_blocks_done6074 +ffffffff81054a91 t _initial_num_blocks_is_14458 +ffffffff81054aad t _get_AAD_blocks6268 +ffffffff81054b52 t _get_AAD_rest86268 +ffffffff81054b77 t _get_AAD_rest46268 +ffffffff81054b9d t _get_AAD_rest06268 +ffffffff81054bb2 t _get_AAD_rest_final6268 +ffffffff81054c2a t _get_AAD_done6268 +ffffffff810550f1 t _initial_blocks_done6268 +ffffffff810550fa t _initial_num_blocks_is_04458 +ffffffff81055117 t _get_AAD_blocks6419 +ffffffff810551be t _get_AAD_rest86419 +ffffffff810551e4 t _get_AAD_rest46419 +ffffffff8105520b t _get_AAD_rest06419 +ffffffff81055220 t _get_AAD_rest_final6419 +ffffffff8105529b t _get_AAD_done6419 +ffffffff81055686 t _initial_blocks_done6419 +ffffffff81055686 t _initial_blocks_encrypted4458 +ffffffff810556b2 t _encrypt_by_8_new4458 +ffffffff81055c0d t _encrypt_by_84458 +ffffffff810561b0 t _eight_cipher_left4458 +ffffffff810563e6 t _zero_cipher_left4458 +ffffffff8105647e t _only_less_than_164458 +ffffffff810564ef t _get_last_16_byte_loop4458 +ffffffff81056509 t _final_ghash_mul4458 +ffffffff810565c5 t _less_than_8_bytes_left4458 +ffffffff810565d7 t _multiple_of_16_bytes4458 +ffffffff810566c7 t _return_T4458 +ffffffff810566db t _T_84458 +ffffffff810566f7 t _T_44458 +ffffffff81056712 t _T_1234458 +ffffffff8105672d t _T_14458 +ffffffff81056732 t _T_164458 +ffffffff81056737 t _return_T_done4458 +ffffffff81056750 T aesni_gcm_dec_avx_gen4 +ffffffff810567c3 t _initial_num_blocks_is_76679 +ffffffff810567df t _get_AAD_blocks6680 +ffffffff81056884 t _get_AAD_rest86680 +ffffffff810568a9 t _get_AAD_rest46680 +ffffffff810568cf t _get_AAD_rest06680 +ffffffff810568e4 t _get_AAD_rest_final6680 +ffffffff8105695c t _get_AAD_done6680 +ffffffff81057371 t _initial_blocks_done6680 +ffffffff8105737a t _initial_num_blocks_is_66679 +ffffffff81057396 t _get_AAD_blocks7089 +ffffffff8105743b t _get_AAD_rest87089 +ffffffff81057460 t _get_AAD_rest47089 +ffffffff81057486 t _get_AAD_rest07089 +ffffffff8105749b t _get_AAD_rest_final7089 +ffffffff81057513 t _get_AAD_done7089 +ffffffff81057e4c t _initial_blocks_done7089 +ffffffff81057e55 t _initial_num_blocks_is_56679 +ffffffff81057e71 t _get_AAD_blocks7455 +ffffffff81057f16 t _get_AAD_rest87455 +ffffffff81057f3b t _get_AAD_rest47455 +ffffffff81057f61 t _get_AAD_rest07455 +ffffffff81057f76 t _get_AAD_rest_final7455 +ffffffff81057fee t _get_AAD_done7455 +ffffffff8105884b t _initial_blocks_done7455 +ffffffff81058854 t _initial_num_blocks_is_46679 +ffffffff81058870 t _get_AAD_blocks7778 +ffffffff81058915 t _get_AAD_rest87778 +ffffffff8105893a t _get_AAD_rest47778 +ffffffff81058960 t _get_AAD_rest07778 +ffffffff81058975 t _get_AAD_rest_final7778 +ffffffff810589ed t _get_AAD_done7778 +ffffffff8105916e t _initial_blocks_done7778 +ffffffff81059177 t _initial_num_blocks_is_36679 +ffffffff81059193 t _get_AAD_blocks8058 +ffffffff81059238 t _get_AAD_rest88058 +ffffffff8105925d t _get_AAD_rest48058 +ffffffff81059283 t _get_AAD_rest08058 +ffffffff81059298 t _get_AAD_rest_final8058 +ffffffff81059310 t _get_AAD_done8058 +ffffffff810599b5 t _initial_blocks_done8058 +ffffffff810599be t _initial_num_blocks_is_26679 +ffffffff810599da t _get_AAD_blocks8295 +ffffffff81059a7f t _get_AAD_rest88295 +ffffffff81059aa4 t _get_AAD_rest48295 +ffffffff81059aca t _get_AAD_rest08295 +ffffffff81059adf t _get_AAD_rest_final8295 +ffffffff81059b57 t _get_AAD_done8295 +ffffffff8105a120 t _initial_blocks_done8295 +ffffffff8105a129 t _initial_num_blocks_is_16679 +ffffffff8105a145 t _get_AAD_blocks8489 +ffffffff8105a1ea t _get_AAD_rest88489 +ffffffff8105a20f t _get_AAD_rest48489 +ffffffff8105a235 t _get_AAD_rest08489 +ffffffff8105a24a t _get_AAD_rest_final8489 +ffffffff8105a2c2 t _get_AAD_done8489 +ffffffff8105a7af t _initial_blocks_done8489 +ffffffff8105a7b8 t _initial_num_blocks_is_06679 +ffffffff8105a7d5 t _get_AAD_blocks8640 +ffffffff8105a87c t _get_AAD_rest88640 +ffffffff8105a8a2 t _get_AAD_rest48640 +ffffffff8105a8c9 t _get_AAD_rest08640 +ffffffff8105a8de t _get_AAD_rest_final8640 +ffffffff8105a959 t _get_AAD_done8640 +ffffffff8105ad65 t _initial_blocks_done8640 +ffffffff8105ad65 t _initial_blocks_encrypted6679 +ffffffff8105ad91 t _encrypt_by_8_new6679 +ffffffff8105b323 t _encrypt_by_86679 +ffffffff8105b8fd t _eight_cipher_left6679 +ffffffff8105bb33 t _zero_cipher_left6679 +ffffffff8105bbcb t _only_less_than_166679 +ffffffff8105bc3c t _get_last_16_byte_loop6679 +ffffffff8105bc56 t _final_ghash_mul6679 +ffffffff8105bd10 t _less_than_8_bytes_left6679 +ffffffff8105bd22 t _multiple_of_16_bytes6679 +ffffffff8105be12 t _return_T6679 +ffffffff8105be26 t _T_86679 +ffffffff8105be42 t _T_46679 +ffffffff8105be5d t _T_1236679 +ffffffff8105be78 t _T_16679 +ffffffff8105be7d t _T_166679 +ffffffff8105be82 t _return_T_done6679 +ffffffff8105be90 T aes_ctr_enc_128_avx_by8 +ffffffff8105d0e0 T aes_ctr_enc_192_avx_by8 +ffffffff8105e520 T aes_ctr_enc_256_avx_by8 +ffffffff8105fb50 t crc32c_intel_setkey +ffffffff8105fb70 t crc32c_intel_init +ffffffff8105fb80 t crc32c_intel_update +ffffffff8105fbd0 t crc32c_intel_finup +ffffffff8105fc30 t crc32c_intel_final +ffffffff8105fc40 t crc32c_intel_digest +ffffffff8105fca0 t crc32c_intel_cra_init +ffffffff8105fcb0 t __crc32c_pcl_intel_finup +ffffffff8105fd50 t crc32c_pcl_intel_digest +ffffffff8105fd60 t crc32c_pcl_intel_finup +ffffffff8105fd70 t crc32c_pcl_intel_update +ffffffff8105fe00 T crc_pcl +ffffffff8105fe20 t do_align +ffffffff8105fe29 t align_loop +ffffffff8105fe38 t proc_block +ffffffff8105fe44 t continue_block +ffffffff8105fe98 t full_block +ffffffff8105feb8 t crc_128 +ffffffff8105feb8 t crc_array +ffffffff8105fed6 t crc_127 +ffffffff8105fef4 t crc_126 +ffffffff8105ff12 t crc_125 +ffffffff8105ff30 t crc_124 +ffffffff8105ff4e t crc_123 +ffffffff8105ff6c t crc_122 +ffffffff8105ff8a t crc_121 +ffffffff8105ffa8 t crc_120 +ffffffff8105ffc6 t crc_119 +ffffffff8105ffe4 t crc_118 +ffffffff81060002 t crc_117 +ffffffff81060020 t crc_116 +ffffffff8106003e t crc_115 +ffffffff8106005c t crc_114 +ffffffff8106007a t crc_113 +ffffffff81060098 t crc_112 +ffffffff810600b6 t crc_111 +ffffffff810600d4 t crc_110 +ffffffff810600f2 t crc_109 +ffffffff81060110 t crc_108 +ffffffff8106012e t crc_107 +ffffffff8106014c t crc_106 +ffffffff8106016a t crc_105 +ffffffff81060188 t crc_104 +ffffffff810601a6 t crc_103 +ffffffff810601c4 t crc_102 +ffffffff810601e2 t crc_101 +ffffffff81060200 t crc_100 +ffffffff8106021e t crc_99 +ffffffff8106023c t crc_98 +ffffffff8106025a t crc_97 +ffffffff81060278 t crc_96 +ffffffff81060296 t crc_95 +ffffffff810602b4 t crc_94 +ffffffff810602d2 t crc_93 +ffffffff810602f0 t crc_92 +ffffffff8106030e t crc_91 +ffffffff8106032c t crc_90 +ffffffff8106034a t crc_89 +ffffffff81060368 t crc_88 +ffffffff81060386 t crc_87 +ffffffff810603a4 t crc_86 +ffffffff810603c2 t crc_85 +ffffffff810603e0 t crc_84 +ffffffff810603fe t crc_83 +ffffffff8106041c t crc_82 +ffffffff8106043a t crc_81 +ffffffff81060458 t crc_80 +ffffffff81060476 t crc_79 +ffffffff81060494 t crc_78 +ffffffff810604b2 t crc_77 +ffffffff810604d0 t crc_76 +ffffffff810604ee t crc_75 +ffffffff8106050c t crc_74 +ffffffff8106052a t crc_73 +ffffffff81060548 t crc_72 +ffffffff81060566 t crc_71 +ffffffff81060584 t crc_70 +ffffffff810605a2 t crc_69 +ffffffff810605c0 t crc_68 +ffffffff810605de t crc_67 +ffffffff810605fc t crc_66 +ffffffff8106061a t crc_65 +ffffffff81060638 t crc_64 +ffffffff81060656 t crc_63 +ffffffff81060674 t crc_62 +ffffffff81060692 t crc_61 +ffffffff810606b0 t crc_60 +ffffffff810606ce t crc_59 +ffffffff810606ec t crc_58 +ffffffff8106070a t crc_57 +ffffffff81060728 t crc_56 +ffffffff81060746 t crc_55 +ffffffff81060764 t crc_54 +ffffffff81060782 t crc_53 +ffffffff810607a0 t crc_52 +ffffffff810607be t crc_51 +ffffffff810607dc t crc_50 +ffffffff810607fa t crc_49 +ffffffff81060818 t crc_48 +ffffffff81060836 t crc_47 +ffffffff81060854 t crc_46 +ffffffff81060872 t crc_45 +ffffffff81060890 t crc_44 +ffffffff810608ae t crc_43 +ffffffff810608cc t crc_42 +ffffffff810608ea t crc_41 +ffffffff81060908 t crc_40 +ffffffff81060926 t crc_39 +ffffffff81060944 t crc_38 +ffffffff81060962 t crc_37 +ffffffff81060980 t crc_36 +ffffffff8106099e t crc_35 +ffffffff810609bc t crc_34 +ffffffff810609da t crc_33 +ffffffff810609f8 t crc_32 +ffffffff81060a16 t crc_31 +ffffffff81060a34 t crc_30 +ffffffff81060a52 t crc_29 +ffffffff81060a70 t crc_28 +ffffffff81060a8e t crc_27 +ffffffff81060aac t crc_26 +ffffffff81060aca t crc_25 +ffffffff81060ae8 t crc_24 +ffffffff81060b06 t crc_23 +ffffffff81060b24 t crc_22 +ffffffff81060b42 t crc_21 +ffffffff81060b60 t crc_20 +ffffffff81060b7e t crc_19 +ffffffff81060b9c t crc_18 +ffffffff81060bba t crc_17 +ffffffff81060bd8 t crc_16 +ffffffff81060bed t crc_15 +ffffffff81060c02 t crc_14 +ffffffff81060c17 t crc_13 +ffffffff81060c2c t crc_12 +ffffffff81060c41 t crc_11 +ffffffff81060c56 t crc_10 +ffffffff81060c6b t crc_9 +ffffffff81060c80 t crc_8 +ffffffff81060c95 t crc_7 +ffffffff81060caa t crc_6 +ffffffff81060cbf t crc_5 +ffffffff81060cd4 t crc_4 +ffffffff81060ce9 t crc_3 +ffffffff81060cfe t crc_2 +ffffffff81060d13 t crc_1 +ffffffff81060d68 t crc_0 +ffffffff81060d82 t less_than_24 +ffffffff81060daa t small +ffffffff81060dad t less_than_256 +ffffffff81060e2d t less_than_128 +ffffffff81060e6e t less_than_64 +ffffffff81060e93 t less_than_32 +ffffffff81060eaa t less_than_16 +ffffffff81060eba t less_than_8 +ffffffff81060ebc t less_than_8_post_shl1 +ffffffff81060eca t less_than_4 +ffffffff81060edb t less_than_2 +ffffffff81060ee5 t do_return +ffffffff81060ee5 t less_than_1 +ffffffff81060ef0 T sha1_transform_ssse3 +ffffffff81061ca0 T sha1_transform_avx +ffffffff81062920 t sha1_base_init +ffffffff81062950 t sha1_update +ffffffff81062ac0 t sha1_ni_update +ffffffff81062ad0 t sha1_avx2_update +ffffffff81062ae0 t sha1_avx_update +ffffffff81062af0 t sha1_ssse3_update +ffffffff81062b00 t sha1_apply_transform_avx2 +ffffffff81062b10 t sha1_finup +ffffffff81062de0 t sha1_ni_finup +ffffffff81062df0 t sha1_ni_final +ffffffff81062e10 t sha1_avx2_finup +ffffffff81062e20 t sha1_avx2_final +ffffffff81062e40 t sha1_avx_finup +ffffffff81062e50 t sha1_avx_final +ffffffff81062e70 t sha1_ssse3_finup +ffffffff81062e80 t sha1_ssse3_final +ffffffff81062e93 t avx_usable +ffffffff81062ec5 t unregister_sha1_avx +ffffffff81062edb t avx2_usable +ffffffff81062f13 t unregister_sha1_avx2 +ffffffff81062f40 T sha1_transform_avx2 +ffffffff81063420 t _loop +ffffffff81063460 t _begin +ffffffff810635e8 t _loop0 +ffffffff8106443e t _loop1 +ffffffff81064714 t _loop2 +ffffffff81064aaa t _loop3 +ffffffff81064dc0 t _end +ffffffff81064de0 T sha1_ni_transform +ffffffff81065040 T sha256_transform_ssse3 +ffffffff8106509c t loop0 +ffffffff810650e0 t loop1 +ffffffff810659dc t loop2 +ffffffff81065d32 t done_hash +ffffffff81065d40 T sha256_transform_avx +ffffffff81065d99 t loop0 +ffffffff81065de0 t loop1 +ffffffff81066668 t loop2 +ffffffff810669ee t done_hash +ffffffff81066a00 T sha256_transform_rorx +ffffffff81066a7a t loop0 +ffffffff81066ab9 t last_block_enter +ffffffff81066ad0 t loop1 +ffffffff81067362 t loop2 +ffffffff81067700 t loop3 +ffffffff81067a7d t do_last_block +ffffffff81067aa9 t only_one_block +ffffffff81067ae6 t done_hash +ffffffff81067b00 t sha224_base_init +ffffffff81067b50 t sha256_base_init +ffffffff81067ba0 t sha256_update +ffffffff81067d10 t sha256_ni_update +ffffffff81067d20 t sha256_avx2_update +ffffffff81067d30 t sha256_avx_update +ffffffff81067d40 t sha256_ssse3_update +ffffffff81067d50 t sha256_finup +ffffffff81068030 t sha256_ni_finup +ffffffff81068040 t sha256_ni_final +ffffffff81068060 t sha256_avx2_finup +ffffffff81068070 t sha256_avx2_final +ffffffff81068090 t sha256_avx_finup +ffffffff810680a0 t sha256_avx_final +ffffffff810680c0 t sha256_ssse3_finup +ffffffff810680d0 t sha256_ssse3_final +ffffffff810680e3 t unregister_sha256_ssse3.part.0 +ffffffff810680f4 t avx_usable +ffffffff81068126 t avx2_usable +ffffffff81068160 T sha256_ni_transform +ffffffff81068490 T efi_delete_dummy_variable +ffffffff810684f0 T efi_query_variable_store +ffffffff81068670 T efi_reboot_required +ffffffff81068690 T efi_poweroff_required +ffffffff810686b0 T efi_sync_low_kernel_mappings +ffffffff81068800 T efi_call +ffffffff81068890 t account_kernel_stack +ffffffff810688f0 t unshare_fd +ffffffff81068950 t sighand_ctor +ffffffff81068980 t mmdrop_async +ffffffff810689e0 t mm_init.isra.5 +ffffffff81068be0 T nr_processes +ffffffff81068c20 W arch_release_task_struct +ffffffff81068c30 W arch_release_thread_stack +ffffffff81068c40 T put_task_stack +ffffffff81068cc0 T free_task +ffffffff81068d00 T __mmdrop +ffffffff81068dc0 t mmdrop_async_fn +ffffffff81068dd0 T __put_task_struct +ffffffff81068e70 T set_task_stack_end_magic +ffffffff81068e80 T mm_alloc +ffffffff81068ed0 T mmput_async +ffffffff81068f30 T set_mm_exe_file +ffffffff81068f60 t mmput_async_fn +ffffffff81069020 T mmput +ffffffff810690e0 T get_mm_exe_file +ffffffff81069140 T get_task_exe_file +ffffffff81069190 T get_task_mm +ffffffff810691d0 T mm_access +ffffffff81069260 T mm_release +ffffffff81069350 T __cleanup_sighand +ffffffff81069370 t copy_process.part.10 +ffffffff8106aae0 T SyS_set_tid_address +ffffffff8106aae0 T sys_set_tid_address +ffffffff8106ab00 T fork_idle +ffffffff8106aba0 T _do_fork +ffffffff8106aec0 T kernel_thread +ffffffff8106aef0 T sys_fork +ffffffff8106af10 T sys_vfork +ffffffff8106af30 T SyS_clone +ffffffff8106af30 T sys_clone +ffffffff8106af40 T walk_process_tree +ffffffff8106b030 T SyS_unshare +ffffffff8106b030 T sys_unshare +ffffffff8106b390 T unshare_files +ffffffff8106b410 T sysctl_max_threads +ffffffff8106b500 t execdomains_proc_open +ffffffff8106b520 t execdomains_proc_show +ffffffff8106b530 T SyS_personality +ffffffff8106b530 T sys_personality +ffffffff8106b550 t no_blink +ffffffff8106b560 t do_oops_enter_exit.part.0 +ffffffff8106b620 t init_oops_id +ffffffff8106b650 W panic_smp_self_stop +ffffffff8106b670 W crash_smp_send_stop +ffffffff8106b6a0 T nmi_panic +ffffffff8106b6d0 T print_tainted +ffffffff8106b770 T test_taint +ffffffff8106b780 T get_taint +ffffffff8106b790 T add_taint +ffffffff8106b7c0 T oops_may_print +ffffffff8106b7d0 T oops_enter +ffffffff8106b7f0 T print_oops_end_marker +ffffffff8106b840 T oops_exit +ffffffff8106b860 T __warn +ffffffff8106b950 T __warn_printk +ffffffff8106b9c0 T refcount_error_report +ffffffff8106b9d3 T panic +ffffffff8106bbc0 t cpuhp_invoke_callback +ffffffff8106bd80 t cpuhp_should_run +ffffffff8106bda0 t cpuhp_create +ffffffff8106bdf0 t take_cpu_down +ffffffff8106be60 t takedown_cpu +ffffffff8106bf50 t __cpuhp_kick_ap +ffffffff8106bfa0 t cpuhp_kick_ap +ffffffff8106c010 t bringup_cpu +ffffffff8106c0b0 t cpuhp_issue_call +ffffffff8106c1c0 t cpuhp_complete_idle_dead +ffffffff8106c1d0 t cpuhp_thread_fun +ffffffff8106c2c0 t cpuhp_rollback_install +ffffffff8106c330 t write_cpuhp_fail +ffffffff8106c410 t show_cpuhp_fail +ffffffff8106c440 t show_cpuhp_target +ffffffff8106c470 t show_cpuhp_state +ffffffff8106c4a0 t show_cpuhp_states +ffffffff8106c540 t do_cpu_down +ffffffff8106c590 t _cpu_up +ffffffff8106c710 t do_cpu_up +ffffffff8106c780 t write_cpuhp_target +ffffffff8106c890 T cpu_maps_update_begin +ffffffff8106c8a0 T cpu_maps_update_done +ffffffff8106c8b0 T cpus_read_lock +ffffffff8106c8f0 T cpus_read_unlock +ffffffff8106c930 T cpus_write_lock +ffffffff8106c940 T cpus_write_unlock +ffffffff8106c950 T lockdep_assert_cpus_held +ffffffff8106c960 T cpu_hotplug_disable +ffffffff8106c980 T cpu_hotplug_enable +ffffffff8106c9b0 t cpu_hotplug_pm_callback +ffffffff8106c9f0 T clear_tasks_mm_cpumask +ffffffff8106ca60 T cpuhp_report_idle_dead +ffffffff8106cab0 T cpu_down +ffffffff8106cac0 T notify_cpu_starting +ffffffff8106cb20 T cpuhp_online_idle +ffffffff8106cb50 T cpu_up +ffffffff8106cb60 T freeze_secondary_cpus +ffffffff8106cc70 T enable_nonboot_cpus +ffffffff8106cd30 T __cpuhp_state_add_instance_cpuslocked +ffffffff8106ce40 T __cpuhp_state_add_instance +ffffffff8106ce70 T __cpuhp_setup_state_cpuslocked +ffffffff8106d130 T __cpuhp_setup_state +ffffffff8106d180 T __cpuhp_state_remove_instance +ffffffff8106d290 T __cpuhp_remove_state_cpuslocked +ffffffff8106d380 T __cpuhp_remove_state +ffffffff8106d3a0 T init_cpu_present +ffffffff8106d3b0 T init_cpu_possible +ffffffff8106d3c0 T init_cpu_online +ffffffff8106d3d0 t will_become_orphaned_pgrp +ffffffff8106d470 t delayed_put_task_struct +ffffffff8106d4a0 t kill_orphaned_pgrp +ffffffff8106d550 t task_stopped_code +ffffffff8106d5a0 t child_wait_callback +ffffffff8106d5f0 T release_task +ffffffff8106d9a0 t wait_consider_task +ffffffff8106e170 t do_wait +ffffffff8106e350 t kernel_waitid +ffffffff8106e400 T task_rcu_dereference +ffffffff8106e450 T rcuwait_wake_up +ffffffff8106e470 T is_current_pgrp_orphaned +ffffffff8106e4b0 T do_exit +ffffffff8106ef20 T complete_and_exit +ffffffff8106ef40 T SyS_exit +ffffffff8106ef40 T sys_exit +ffffffff8106ef50 T do_group_exit +ffffffff8106eff0 T SyS_exit_group +ffffffff8106eff0 T sys_exit_group +ffffffff8106f000 T __wake_up_parent +ffffffff8106f020 T SyS_waitid +ffffffff8106f020 T sys_waitid +ffffffff8106f160 T kernel_wait4 +ffffffff8106f270 T SyS_wait4 +ffffffff8106f270 T sys_wait4 +ffffffff8106f2f0 T SyS_waitpid +ffffffff8106f2f0 T sys_waitpid +ffffffff8106f300 W abort +ffffffff8106f310 t ksoftirqd_should_run +ffffffff8106f320 t __tasklet_hrtimer_trampoline +ffffffff8106f350 t tasklet_hi_action +ffffffff8106f400 t tasklet_action +ffffffff8106f4b0 t do_softirq.part.1 +ffffffff8106f4e0 t takeover_tasklets +ffffffff8106f610 T _local_bh_enable +ffffffff8106f620 T __local_bh_enable_ip +ffffffff8106f670 t run_ksoftirqd +ffffffff8106f690 T do_softirq +ffffffff8106f6b0 T irq_enter +ffffffff8106f700 T irq_exit +ffffffff8106f7b0 T raise_softirq_irqoff +ffffffff8106f7f0 T raise_softirq +ffffffff8106f840 T __raise_softirq_irqoff +ffffffff8106f860 T open_softirq +ffffffff8106f870 T __tasklet_schedule +ffffffff8106f8d0 T __tasklet_hi_schedule +ffffffff8106f930 t __hrtimer_tasklet_trampoline +ffffffff8106f950 T tasklet_init +ffffffff8106f970 T tasklet_kill +ffffffff8106f9c0 T tasklet_hrtimer_init +ffffffff8106fa10 T tasklet_kill_immediate +ffffffff8106faa0 t r_stop +ffffffff8106fab0 t __request_resource +ffffffff8106fb20 t __release_resource +ffffffff8106fbb0 t __is_ram +ffffffff8106fbc0 t simple_align_resource +ffffffff8106fbd0 t devm_resource_match +ffffffff8106fbe0 t devm_region_match +ffffffff8106fc10 t iomem_open +ffffffff8106fc40 t ioports_open +ffffffff8106fc70 t r_show +ffffffff8106fd20 t __insert_resource +ffffffff8106fde0 t next_resource.part.0 +ffffffff8106fe00 t r_next +ffffffff8106fe20 t r_start +ffffffff8106fe70 t find_next_iomem_res +ffffffff8106ff70 t __walk_iomem_res_desc +ffffffff8106fff0 t __release_child_resources.isra.2 +ffffffff81070060 t alloc_resource +ffffffff810700f0 t free_resource +ffffffff81070190 T release_child_resources +ffffffff810701c0 T request_resource_conflict +ffffffff81070200 T request_resource +ffffffff81070220 T release_resource +ffffffff81070250 t devm_resource_release +ffffffff81070260 T walk_iomem_res_desc +ffffffff81070290 T walk_system_ram_res +ffffffff810702d0 T walk_mem_res +ffffffff81070310 T walk_system_ram_range +ffffffff810703c0 W page_is_ram +ffffffff810703e0 T region_intersects +ffffffff81070560 t __find_resource +ffffffff81070750 t reallocate_resource +ffffffff810708e0 T allocate_resource +ffffffff810709b0 T lookup_resource +ffffffff81070a00 T insert_resource_conflict +ffffffff81070a40 T insert_resource +ffffffff81070a60 T insert_resource_expand_to_fit +ffffffff81070ae0 T remove_resource +ffffffff81070b10 T adjust_resource +ffffffff81070bd0 T resource_alignment +ffffffff81070c00 T __request_region +ffffffff81070d70 T __release_region +ffffffff81070e30 t devm_region_release +ffffffff81070e50 T devm_request_resource +ffffffff81070ee0 T devm_release_resource +ffffffff81070f00 T __devm_request_region +ffffffff81070fa0 T __devm_release_region +ffffffff81070ff0 T iomem_map_sanity_check +ffffffff810710a0 T iomem_is_exclusive +ffffffff81071140 T resource_list_create_entry +ffffffff81071170 T resource_list_free +ffffffff810711d0 t do_proc_douintvec_conv +ffffffff81071200 t proc_put_long +ffffffff81071290 t do_proc_dointvec_conv +ffffffff810712e0 t do_proc_dointvec_minmax_conv +ffffffff81071340 t do_proc_douintvec_minmax_conv +ffffffff81071390 t do_proc_dointvec_jiffies_conv +ffffffff810713f0 t do_proc_dopipe_max_size_conv +ffffffff81071420 t proc_first_pos_non_zero_ignore.isra.6.part.7 +ffffffff81071470 T proc_dostring +ffffffff81071660 t do_proc_dointvec_userhz_jiffies_conv +ffffffff810716d0 t do_proc_dointvec_ms_jiffies_conv +ffffffff81071730 t proc_get_long.constprop.10 +ffffffff810718c0 t __do_proc_doulongvec_minmax +ffffffff81071bf0 T proc_doulongvec_minmax +ffffffff81071c20 t proc_taint +ffffffff81071d80 t __do_proc_dointvec +ffffffff81072160 T proc_dointvec +ffffffff81072190 T proc_dointvec_minmax +ffffffff810721d0 t proc_dointvec_minmax_coredump +ffffffff810721e0 T proc_dointvec_jiffies +ffffffff81072210 t proc_dointvec_minmax_sysadmin +ffffffff81072290 t proc_do_cad_pid +ffffffff81072320 t __do_proc_douintvec +ffffffff81072560 t proc_dopipe_max_size +ffffffff81072590 T proc_douintvec +ffffffff810725c0 T proc_douintvec_minmax +ffffffff81072600 T proc_doulongvec_ms_jiffies_minmax +ffffffff81072630 T proc_dointvec_userhz_jiffies +ffffffff81072660 T proc_dointvec_ms_jiffies +ffffffff81072690 T proc_do_large_bitmap +ffffffff81072ae0 t do_sysctl.isra.1 +ffffffff81072c00 T SyS_sysctl +ffffffff81072c00 T sys_sysctl +ffffffff81072c90 t cap_validate_magic +ffffffff81072d80 t ns_capable_common +ffffffff81072e00 T SyS_capget +ffffffff81072e00 T sys_capget +ffffffff81072f70 T SyS_capset +ffffffff81072f70 T sys_capset +ffffffff81073100 T has_ns_capability +ffffffff81073140 T has_capability +ffffffff81073150 T has_ns_capability_noaudit +ffffffff81073190 T has_capability_noaudit +ffffffff810731a0 T ns_capable +ffffffff810731b0 T ns_capable_noaudit +ffffffff810731c0 T capable +ffffffff810731e0 T file_ns_capable +ffffffff81073200 T privileged_wrt_inode_uidgid +ffffffff81073230 T capable_wrt_inode_uidgid +ffffffff81073280 T ptracer_capable +ffffffff810732c0 t ptrace_peek_siginfo +ffffffff810734e0 t ptrace_resume +ffffffff81073600 t ptrace_has_cap +ffffffff81073640 t __ptrace_may_access +ffffffff81073740 t __ptrace_detach.part.3 +ffffffff81073800 T ptrace_access_vm +ffffffff810738c0 T __ptrace_link +ffffffff81073910 T __ptrace_unlink +ffffffff81073a30 T ptrace_may_access +ffffffff81073a70 T exit_ptrace +ffffffff81073b30 T ptrace_readdata +ffffffff81073bf0 T ptrace_writedata +ffffffff81073ca0 T ptrace_request +ffffffff810744c0 T SyS_ptrace +ffffffff810744c0 T sys_ptrace +ffffffff810749b0 T generic_ptrace_peekdata +ffffffff810749f0 T generic_ptrace_pokedata +ffffffff81074a20 t uid_hash_find +ffffffff81074a60 T find_user +ffffffff81074ab0 T free_uid +ffffffff81074b30 T alloc_uid +ffffffff81074c70 t recalc_sigpending_tsk +ffffffff81074cb0 t do_sigaltstack +ffffffff81074de0 t __sigqueue_alloc +ffffffff81074ec0 t __sigqueue_free.part.0 +ffffffff81074ef0 t __flush_itimer_signals +ffffffff81074f70 t __dequeue_signal +ffffffff81075110 t flush_sigqueue_mask +ffffffff81075190 t check_kill_permission +ffffffff81075270 T recalc_sigpending +ffffffff810752b0 T next_signal +ffffffff810752e0 T task_set_jobctl_pending +ffffffff81075340 T task_clear_jobctl_trapping +ffffffff81075380 T task_clear_jobctl_pending +ffffffff810753c0 t task_participate_group_stop +ffffffff81075420 T flush_sigqueue +ffffffff81075460 T flush_signals +ffffffff810754c0 T flush_itimer_signals +ffffffff81075520 T ignore_signals +ffffffff81075550 T flush_signal_handlers +ffffffff810755a0 T unhandled_signal +ffffffff810755e0 T dequeue_signal +ffffffff81075740 T signal_wake_up_state +ffffffff81075760 t retarget_shared_pending +ffffffff810757d0 t __set_task_blocked +ffffffff81075840 T recalc_sigpending_and_wake +ffffffff81075860 t ptrace_trap_notify +ffffffff810758a0 t prepare_signal +ffffffff81075b20 t complete_signal +ffffffff81075d30 t __send_signal +ffffffff81076160 t send_signal +ffffffff810761d0 t do_notify_parent_cldstop +ffffffff81076370 t ptrace_stop +ffffffff810765c0 t ptrace_do_notify +ffffffff81076650 t do_signal_stop +ffffffff81076810 T __group_send_sig_info +ffffffff81076820 T force_sig_info +ffffffff810768f0 T zap_other_threads +ffffffff81076960 T __lock_task_sighand +ffffffff810769e0 T do_send_sig_info +ffffffff81076a50 t do_send_specific +ffffffff81076ae0 t do_tkill +ffffffff81076b70 T group_send_sig_info +ffffffff81076bc0 T __kill_pgrp_info +ffffffff81076c40 T kill_pid_info +ffffffff81076cb0 T kill_pid_info_as_cred +ffffffff81076da0 T send_sig_info +ffffffff81076dc0 T send_sig +ffffffff81076df0 T force_sig +ffffffff81076e00 T force_sigsegv +ffffffff81076e60 T force_sig_fault +ffffffff81076eb0 T send_sig_fault +ffffffff81076f10 T force_sig_mceerr +ffffffff81076f70 T send_sig_mceerr +ffffffff81076fd0 T force_sig_bnderr +ffffffff81077040 T force_sig_pkuerr +ffffffff810770a0 T force_sig_ptrace_errno_trap +ffffffff81077100 T kill_pgrp +ffffffff81077140 T kill_pid +ffffffff81077160 T sigqueue_alloc +ffffffff81077190 T sigqueue_free +ffffffff81077200 T send_sigqueue +ffffffff81077340 T do_notify_parent +ffffffff81077580 T ptrace_notify +ffffffff810775f0 T get_signal +ffffffff81077b30 T exit_signals +ffffffff81077ce0 T sys_restart_syscall +ffffffff81077d00 T do_no_restart_syscall +ffffffff81077d10 T __set_current_blocked +ffffffff81077d60 T set_current_blocked +ffffffff81077d70 T signal_setup_done +ffffffff81077e00 T sigprocmask +ffffffff81077e70 T SyS_rt_sigprocmask +ffffffff81077e70 T sys_rt_sigprocmask +ffffffff81077f10 T SyS_rt_sigpending +ffffffff81077f10 T sys_rt_sigpending +ffffffff81077fb0 T siginfo_layout +ffffffff81078000 T copy_siginfo_to_user +ffffffff81078290 T SyS_rt_sigtimedwait +ffffffff81078290 T sys_rt_sigtimedwait +ffffffff81078550 T SyS_kill +ffffffff81078550 T sys_kill +ffffffff810786f0 T SyS_tgkill +ffffffff810786f0 T sys_tgkill +ffffffff81078710 T SyS_tkill +ffffffff81078710 T sys_tkill +ffffffff81078730 T SyS_rt_sigqueueinfo +ffffffff81078730 T sys_rt_sigqueueinfo +ffffffff810787c0 T SyS_rt_tgsigqueueinfo +ffffffff810787c0 T sys_rt_tgsigqueueinfo +ffffffff81078850 T kernel_sigaction +ffffffff810788f0 W sigaction_compat_abi +ffffffff81078900 T do_sigaction +ffffffff81078aa0 T SyS_sigaltstack +ffffffff81078aa0 T sys_sigaltstack +ffffffff81078b60 T restore_altstack +ffffffff81078bb0 T __save_altstack +ffffffff81078c30 T SyS_sigpending +ffffffff81078c30 T sys_sigpending +ffffffff81078c40 T SyS_sigprocmask +ffffffff81078c40 T sys_sigprocmask +ffffffff81078d10 T SyS_rt_sigaction +ffffffff81078d10 T sys_rt_sigaction +ffffffff81078dc0 T SyS_signal +ffffffff81078dc0 T sys_signal +ffffffff81078e00 T sys_pause +ffffffff81078e40 T SyS_rt_sigsuspend +ffffffff81078e40 T sys_rt_sigsuspend +ffffffff81078f00 t propagate_has_child_subreaper +ffffffff81078f40 t set_one_prio +ffffffff81078fe0 t prctl_set_auxv +ffffffff81079070 t prctl_set_mm_exe_file +ffffffff810791a0 t validate_prctl_map +ffffffff81079310 t prctl_set_mm_map +ffffffff81079530 t prctl_set_mm +ffffffff81079870 t set_user.isra.2 +ffffffff810798e0 t override_release.part.3 +ffffffff81079980 T SyS_setpriority +ffffffff81079980 T sys_setpriority +ffffffff81079be0 T SyS_getpriority +ffffffff81079be0 T sys_getpriority +ffffffff81079e60 T SyS_setregid +ffffffff81079e60 T sys_setregid +ffffffff81079fb0 T SyS_setgid +ffffffff81079fb0 T sys_setgid +ffffffff8107a060 T SyS_setreuid +ffffffff8107a060 T sys_setreuid +ffffffff8107a220 T SyS_setuid +ffffffff8107a220 T sys_setuid +ffffffff8107a310 T SyS_setresuid +ffffffff8107a310 T sys_setresuid +ffffffff8107a4e0 T SyS_getresuid +ffffffff8107a4e0 T sys_getresuid +ffffffff8107a580 T SyS_setresgid +ffffffff8107a580 T sys_setresgid +ffffffff8107a700 T SyS_getresgid +ffffffff8107a700 T sys_getresgid +ffffffff8107a790 T SyS_setfsuid +ffffffff8107a790 T sys_setfsuid +ffffffff8107a860 T SyS_setfsgid +ffffffff8107a860 T sys_setfsgid +ffffffff8107a910 T sys_getpid +ffffffff8107a930 T sys_gettid +ffffffff8107a950 T sys_getppid +ffffffff8107a980 T sys_getuid +ffffffff8107a9b0 T sys_geteuid +ffffffff8107a9e0 T sys_getgid +ffffffff8107aa10 T sys_getegid +ffffffff8107aa40 T SyS_times +ffffffff8107aa40 T sys_times +ffffffff8107aaf0 T SyS_setpgid +ffffffff8107aaf0 T sys_setpgid +ffffffff8107ac80 T SyS_getpgid +ffffffff8107ac80 T sys_getpgid +ffffffff8107ace0 T sys_getpgrp +ffffffff8107acf0 T SyS_getsid +ffffffff8107acf0 T sys_getsid +ffffffff8107ad50 T sys_setsid +ffffffff8107ae60 T SyS_newuname +ffffffff8107ae60 T sys_newuname +ffffffff8107aef0 T SyS_uname +ffffffff8107aef0 T sys_uname +ffffffff8107af90 T SyS_olduname +ffffffff8107af90 T sys_olduname +ffffffff8107b110 T SyS_sethostname +ffffffff8107b110 T sys_sethostname +ffffffff8107b260 T SyS_gethostname +ffffffff8107b260 T sys_gethostname +ffffffff8107b2e0 T SyS_setdomainname +ffffffff8107b2e0 T sys_setdomainname +ffffffff8107b430 T SyS_old_getrlimit +ffffffff8107b430 T sys_old_getrlimit +ffffffff8107b500 T do_prlimit +ffffffff8107b7e0 T SyS_getrlimit +ffffffff8107b7e0 T sys_getrlimit +ffffffff8107b830 T SyS_prlimit64 +ffffffff8107b830 T sys_prlimit64 +ffffffff8107ba30 T SyS_setrlimit +ffffffff8107ba30 T sys_setrlimit +ffffffff8107ba70 T getrusage +ffffffff8107be40 T SyS_getrusage +ffffffff8107be40 T sys_getrusage +ffffffff8107bec0 T SyS_umask +ffffffff8107bec0 T sys_umask +ffffffff8107bee0 T SyS_prctl +ffffffff8107bee0 T sys_prctl +ffffffff8107c2f0 T SyS_getcpu +ffffffff8107c2f0 T sys_getcpu +ffffffff8107c340 T SyS_sysinfo +ffffffff8107c340 T sys_sysinfo +ffffffff8107c440 t umh_complete +ffffffff8107c470 t call_usermodehelper_exec_async +ffffffff8107c5c0 t call_usermodehelper_exec_work +ffffffff8107c670 t proc_cap_handler +ffffffff8107c800 T usermodehelper_read_trylock +ffffffff8107c8d0 T usermodehelper_read_lock_wait +ffffffff8107c990 T usermodehelper_read_unlock +ffffffff8107c9a0 T __usermodehelper_set_disable_depth +ffffffff8107c9e0 T __usermodehelper_disable +ffffffff8107cae0 T call_usermodehelper_setup +ffffffff8107cb70 T call_usermodehelper_exec +ffffffff8107ccb0 T call_usermodehelper +ffffffff8107ccf0 t pwq_activate_delayed_work +ffffffff8107cdb0 t work_for_cpu_fn +ffffffff8107cdd0 t worker_enter_idle +ffffffff8107ce80 t pool_mayday_timeout +ffffffff8107cf80 t destroy_worker +ffffffff8107cfd0 t idle_worker_timeout +ffffffff8107d040 t insert_work +ffffffff8107d0a0 t pwq_adjust_max_active +ffffffff8107d170 t link_pwq +ffffffff8107d1c0 t apply_wqattrs_commit +ffffffff8107d250 t wq_clamp_max_active +ffffffff8107d2c0 t pr_cont_pool_info +ffffffff8107d310 t put_unbound_pool +ffffffff8107d4c0 t pwq_unbound_release_workfn +ffffffff8107d570 t wq_device_release +ffffffff8107d580 t rcu_free_pool +ffffffff8107d5b0 t rcu_free_wq +ffffffff8107d5f0 t rcu_free_pwq +ffffffff8107d610 t worker_attach_to_pool +ffffffff8107d680 t worker_detach_from_pool +ffffffff8107d710 t wq_barrier_func +ffffffff8107d720 t get_work_pool +ffffffff8107d750 t __queue_work +ffffffff8107da20 t __queue_delayed_work +ffffffff8107da60 t cwt_wakefn +ffffffff8107da80 t wq_unbound_cpumask_show +ffffffff8107dad0 t max_active_show +ffffffff8107db00 t per_cpu_show +ffffffff8107db30 t wq_numa_show +ffffffff8107db80 t wq_cpumask_show +ffffffff8107dbd0 t wq_nice_show +ffffffff8107dc20 t wq_pool_ids_show +ffffffff8107dca0 t alloc_worker.isra.2 +ffffffff8107dce0 t create_worker +ffffffff8107de50 t check_flush_dependency.isra.6.part.7 +ffffffff8107de80 t init_rescuer.part.10 +ffffffff8107df20 t flush_workqueue_prep_pwqs +ffffffff8107e000 t pr_cont_work +ffffffff8107e060 t wq_calc_node_cpumask.constprop.16 +ffffffff8107e070 T wq_worker_waking_up +ffffffff8107e090 T wq_worker_sleeping +ffffffff8107e0f0 T queue_work_on +ffffffff8107e110 t put_pwq +ffffffff8107e140 t put_pwq_unlocked.part.5 +ffffffff8107e160 t apply_wqattrs_cleanup +ffffffff8107e1a0 t pwq_dec_nr_in_flight +ffffffff8107e230 t process_one_work +ffffffff8107e510 t worker_thread +ffffffff8107e850 t try_to_grab_pending +ffffffff8107e960 t rescuer_thread +ffffffff8107ec70 T delayed_work_timer_fn +ffffffff8107ec80 T queue_delayed_work_on +ffffffff8107eca0 T mod_delayed_work_on +ffffffff8107ed00 T flush_workqueue +ffffffff8107eff0 T drain_workqueue +ffffffff8107f110 T flush_work +ffffffff8107f2a0 t __cancel_work_timer +ffffffff8107f3e0 T cancel_work_sync +ffffffff8107f3f0 T flush_delayed_work +ffffffff8107f420 T cancel_delayed_work +ffffffff8107f490 T cancel_delayed_work_sync +ffffffff8107f4a0 T schedule_on_each_cpu +ffffffff8107f580 T execute_in_process_context +ffffffff8107f5e0 T free_workqueue_attrs +ffffffff8107f5f0 T alloc_workqueue_attrs +ffffffff8107f630 t init_worker_pool +ffffffff8107f740 t alloc_unbound_pwq +ffffffff8107fa60 t wq_update_unbound_numa +ffffffff8107fa70 t apply_wqattrs_prepare +ffffffff8107fbd0 t apply_workqueue_attrs_locked +ffffffff8107fc30 t wq_sysfs_prep_attrs +ffffffff8107fc60 t wq_numa_store +ffffffff8107fd50 t wq_cpumask_store +ffffffff8107fe40 t wq_nice_store +ffffffff8107ff10 T apply_workqueue_attrs +ffffffff8107ff50 T workqueue_set_max_active +ffffffff8107ffd0 t max_active_store +ffffffff81080020 T current_work +ffffffff81080050 T current_is_workqueue_rescuer +ffffffff81080090 T workqueue_congested +ffffffff810800f0 T work_busy +ffffffff81080170 T set_worker_desc +ffffffff81080220 T print_worker_info +ffffffff81080380 T show_workqueue_state +ffffffff81080860 T destroy_workqueue +ffffffff810809b0 T workqueue_prepare_cpu +ffffffff81080a20 T workqueue_online_cpu +ffffffff81080bd0 T workqueue_offline_cpu +ffffffff81080d20 T work_on_cpu +ffffffff81080d80 T work_on_cpu_safe +ffffffff81080dd0 T freeze_workqueues_begin +ffffffff81080e50 T freeze_workqueues_busy +ffffffff81080f00 T thaw_workqueues +ffffffff81080f90 T workqueue_set_unbound_cpumask +ffffffff810810f0 t wq_unbound_cpumask_store +ffffffff81081160 T workqueue_sysfs_register +ffffffff810812b0 T __alloc_workqueue_key +ffffffff810816ae t init_pwq.part.8 +ffffffff810816b0 T put_pid +ffffffff810816f0 t delayed_put_pid +ffffffff81081700 T free_pid +ffffffff810817c0 t __change_pid +ffffffff81081830 T alloc_pid +ffffffff81081a90 T disable_pid_allocation +ffffffff81081ac0 T find_pid_ns +ffffffff81081ad0 T find_vpid +ffffffff81081b10 T attach_pid +ffffffff81081b60 T detach_pid +ffffffff81081b70 T change_pid +ffffffff81081bd0 T transfer_pid +ffffffff81081c50 T pid_task +ffffffff81081c80 T find_task_by_pid_ns +ffffffff81081cb0 T find_task_by_vpid +ffffffff81081d10 T find_get_task_by_vpid +ffffffff81081d40 T get_task_pid +ffffffff81081d80 T get_pid_task +ffffffff81081dd0 T find_get_pid +ffffffff81081e20 T pid_nr_ns +ffffffff81081e50 T pid_vnr +ffffffff81081ea0 T __task_pid_nr_ns +ffffffff81081f70 T task_active_pid_ns +ffffffff81081f90 T find_ge_pid +ffffffff81081fb0 T task_work_add +ffffffff81081ff0 T task_work_cancel +ffffffff81082070 T task_work_run +ffffffff81082110 T search_exception_tables +ffffffff81082140 T init_kernel_text +ffffffff81082160 T core_kernel_text +ffffffff810821a0 T core_kernel_data +ffffffff810821c0 T kernel_text_address +ffffffff81082220 T __kernel_text_address +ffffffff81082250 T func_ptr_is_kernel_text +ffffffff81082290 t module_attr_show +ffffffff810822c0 t module_attr_store +ffffffff810822f0 t uevent_filter +ffffffff81082300 T param_set_byte +ffffffff81082310 T param_get_byte +ffffffff81082330 T param_get_short +ffffffff81082350 T param_get_ushort +ffffffff81082370 T param_get_int +ffffffff81082390 T param_get_uint +ffffffff810823b0 T param_get_long +ffffffff810823d0 T param_get_ulong +ffffffff810823f0 T param_get_ullong +ffffffff81082410 T param_get_charp +ffffffff81082430 T param_get_string +ffffffff81082450 T param_set_short +ffffffff81082460 T param_set_ushort +ffffffff81082470 T param_set_int +ffffffff81082480 T param_set_uint +ffffffff81082490 T param_set_long +ffffffff810824a0 T param_set_ulong +ffffffff810824b0 T param_set_ullong +ffffffff810824c0 T param_set_copystring +ffffffff81082510 t maybe_kfree_parameter +ffffffff810825a0 T param_free_charp +ffffffff810825b0 t param_array_get +ffffffff81082670 T param_set_bool +ffffffff81082690 T param_set_bool_enable_only +ffffffff81082700 T param_set_invbool +ffffffff81082740 T param_set_bint +ffffffff81082780 T param_get_bool +ffffffff810827b0 T param_get_invbool +ffffffff810827e0 t param_attr_show +ffffffff81082840 t module_kobj_release +ffffffff81082850 t param_array_free +ffffffff810828a0 T param_set_charp +ffffffff81082990 t param_array_set +ffffffff81082aa0 t param_attr_store +ffffffff81082b30 T parameqn +ffffffff81082b80 T parameq +ffffffff81082be0 T parse_args +ffffffff81082ef0 T kernel_param_lock +ffffffff81082f00 T kernel_param_unlock +ffffffff81082f10 T destroy_params +ffffffff81082f50 T __modver_version_show +ffffffff81082f70 t kthread_flush_work_fn +ffffffff81082f80 t __kthread_parkme +ffffffff81082ff0 t __kthread_create_on_node +ffffffff81083140 t kthread +ffffffff81083260 T kthread_worker_fn +ffffffff810833c0 t __kthread_cancel_work +ffffffff81083440 t kthread_insert_work.part.1 +ffffffff81083450 t __kthread_bind_mask +ffffffff810834b0 t __kthread_create_worker +ffffffff810835b0 T free_kthread_struct +ffffffff810835c0 T kthread_should_stop +ffffffff810835e0 T kthread_should_park +ffffffff81083600 T kthread_freezable_should_stop +ffffffff81083650 T kthread_data +ffffffff81083660 T kthread_probe_data +ffffffff81083690 T kthread_parkme +ffffffff810836b0 T tsk_fork_get_node +ffffffff810836c0 T kthread_create_on_node +ffffffff81083700 T kthread_bind_mask +ffffffff81083710 T kthread_bind +ffffffff81083740 T kthread_create_on_cpu +ffffffff810837b0 T kthread_unpark +ffffffff81083820 T kthread_park +ffffffff81083860 T kthread_stop +ffffffff810838c0 T kthreadd +ffffffff810839f0 T __kthread_init_worker +ffffffff81083a40 T kthread_create_worker +ffffffff81083a90 T kthread_create_worker_on_cpu +ffffffff81083ad0 T kthread_queue_work +ffffffff81083b60 T kthread_delayed_work_timer_fn +ffffffff81083bf0 T __kthread_queue_delayed_work +ffffffff81083c60 T kthread_queue_delayed_work +ffffffff81083cd0 T kthread_flush_work +ffffffff81083da0 t __kthread_cancel_work_sync +ffffffff81083e30 T kthread_mod_delayed_work +ffffffff81083eb0 T kthread_cancel_work_sync +ffffffff81083ec0 T kthread_cancel_delayed_work_sync +ffffffff81083ed0 T kthread_flush_worker +ffffffff81083f30 T kthread_destroy_worker +ffffffff81083f60 W compat_sys_epoll_pwait +ffffffff81083f60 W compat_sys_fanotify_mark +ffffffff81083f60 W compat_sys_futex +ffffffff81083f60 W compat_sys_get_mempolicy +ffffffff81083f60 W compat_sys_get_robust_list +ffffffff81083f60 W compat_sys_getsockopt +ffffffff81083f60 W compat_sys_io_getevents +ffffffff81083f60 W compat_sys_io_setup +ffffffff81083f60 W compat_sys_io_submit +ffffffff81083f60 W compat_sys_ipc +ffffffff81083f60 W compat_sys_kexec_load +ffffffff81083f60 W compat_sys_keyctl +ffffffff81083f60 W compat_sys_lookup_dcookie +ffffffff81083f60 W compat_sys_mbind +ffffffff81083f60 W compat_sys_migrate_pages +ffffffff81083f60 W compat_sys_move_pages +ffffffff81083f60 W compat_sys_mq_getsetattr +ffffffff81083f60 W compat_sys_mq_notify +ffffffff81083f60 W compat_sys_mq_open +ffffffff81083f60 W compat_sys_mq_timedreceive +ffffffff81083f60 W compat_sys_mq_timedsend +ffffffff81083f60 W compat_sys_msgctl +ffffffff81083f60 W compat_sys_msgrcv +ffffffff81083f60 W compat_sys_msgsnd +ffffffff81083f60 W compat_sys_open_by_handle_at +ffffffff81083f60 W compat_sys_process_vm_readv +ffffffff81083f60 W compat_sys_process_vm_writev +ffffffff81083f60 W compat_sys_recv +ffffffff81083f60 W compat_sys_recvfrom +ffffffff81083f60 W compat_sys_recvmmsg +ffffffff81083f60 W compat_sys_recvmsg +ffffffff81083f60 W compat_sys_s390_ipc +ffffffff81083f60 W compat_sys_semctl +ffffffff81083f60 W compat_sys_semtimedop +ffffffff81083f60 W compat_sys_sendmmsg +ffffffff81083f60 W compat_sys_sendmsg +ffffffff81083f60 W compat_sys_set_mempolicy +ffffffff81083f60 W compat_sys_set_robust_list +ffffffff81083f60 W compat_sys_setsockopt +ffffffff81083f60 W compat_sys_shmat +ffffffff81083f60 W compat_sys_shmctl +ffffffff81083f60 W compat_sys_signalfd +ffffffff81083f60 W compat_sys_signalfd4 +ffffffff81083f60 W compat_sys_socketcall +ffffffff81083f60 W compat_sys_sysctl +ffffffff81083f60 W compat_sys_timerfd_gettime +ffffffff81083f60 W compat_sys_timerfd_settime +ffffffff81083f60 W ppc_rtas +ffffffff81083f60 W sys32_quotactl +ffffffff81083f60 W sys_chown16 +ffffffff81083f60 W sys_delete_module +ffffffff81083f60 W sys_fchown16 +ffffffff81083f60 W sys_finit_module +ffffffff81083f60 W sys_get_mempolicy +ffffffff81083f60 W sys_getegid16 +ffffffff81083f60 W sys_geteuid16 +ffffffff81083f60 W sys_getgid16 +ffffffff81083f60 W sys_getgroups16 +ffffffff81083f60 W sys_getresgid16 +ffffffff81083f60 W sys_getresuid16 +ffffffff81083f60 W sys_getuid16 +ffffffff81083f60 W sys_init_module +ffffffff81083f60 W sys_ipc +ffffffff81083f60 W sys_kexec_file_load +ffffffff81083f60 W sys_kexec_load +ffffffff81083f60 W sys_lchown16 +ffffffff81083f60 W sys_lookup_dcookie +ffffffff81083f60 W sys_mbind +ffffffff81083f60 W sys_migrate_pages +ffffffff81083f60 W sys_modify_ldt +ffffffff81083f60 W sys_move_pages +ffffffff81083f60 T sys_ni_syscall +ffffffff81083f60 W sys_pciconfig_iobase +ffffffff81083f60 W sys_pciconfig_read +ffffffff81083f60 W sys_pciconfig_write +ffffffff81083f60 W sys_process_vm_readv +ffffffff81083f60 W sys_process_vm_writev +ffffffff81083f60 W sys_quotactl +ffffffff81083f60 W sys_s390_pci_mmio_read +ffffffff81083f60 W sys_s390_pci_mmio_write +ffffffff81083f60 W sys_set_mempolicy +ffffffff81083f60 W sys_setfsgid16 +ffffffff81083f60 W sys_setfsuid16 +ffffffff81083f60 W sys_setgid16 +ffffffff81083f60 W sys_setgroups16 +ffffffff81083f60 W sys_setregid16 +ffffffff81083f60 W sys_setresgid16 +ffffffff81083f60 W sys_setresuid16 +ffffffff81083f60 W sys_setreuid16 +ffffffff81083f60 W sys_setuid16 +ffffffff81083f60 W sys_sgetmask +ffffffff81083f60 W sys_spu_create +ffffffff81083f60 W sys_spu_run +ffffffff81083f60 W sys_ssetmask +ffffffff81083f60 W sys_subpage_prot +ffffffff81083f60 W sys_swapoff +ffffffff81083f60 W sys_swapon +ffffffff81083f60 W sys_sysfs +ffffffff81083f60 W sys_uselib +ffffffff81083f60 W sys_userfaultfd +ffffffff81083f60 W sys_vm86 +ffffffff81083f60 W sys_vm86old +ffffffff81083f70 t create_new_namespaces +ffffffff81084120 T copy_namespaces +ffffffff810841c0 T free_nsproxy +ffffffff81084250 T unshare_nsproxy_namespaces +ffffffff810842f0 T switch_task_namespaces +ffffffff81084340 T exit_task_namespaces +ffffffff81084350 T SyS_setns +ffffffff81084350 T sys_setns +ffffffff81084420 t notifier_call_chain +ffffffff81084480 T atomic_notifier_chain_register +ffffffff810844d0 T atomic_notifier_chain_unregister +ffffffff81084540 T __atomic_notifier_call_chain +ffffffff81084590 T atomic_notifier_call_chain +ffffffff810845d0 T blocking_notifier_chain_register +ffffffff81084660 T blocking_notifier_chain_cond_register +ffffffff810846c0 T blocking_notifier_chain_unregister +ffffffff81084770 T __blocking_notifier_call_chain +ffffffff810847d0 T blocking_notifier_call_chain +ffffffff81084830 T raw_notifier_chain_register +ffffffff81084860 T raw_notifier_chain_unregister +ffffffff810848a0 T __raw_notifier_call_chain +ffffffff810848b0 T raw_notifier_call_chain +ffffffff810848c0 T srcu_notifier_chain_register +ffffffff81084960 T srcu_notifier_chain_unregister +ffffffff81084a30 T __srcu_notifier_call_chain +ffffffff81084aa0 T srcu_notifier_call_chain +ffffffff81084ab0 T srcu_init_notifier_head +ffffffff81084af0 T notify_die +ffffffff81084b30 T register_die_notifier +ffffffff81084b50 T unregister_die_notifier +ffffffff81084b60 t notes_read +ffffffff81084b80 t rcu_normal_store +ffffffff81084bb0 t rcu_expedited_store +ffffffff81084be0 t rcu_normal_show +ffffffff81084c00 t rcu_expedited_show +ffffffff81084c20 t uevent_seqnum_show +ffffffff81084c40 t fscaps_show +ffffffff81084c60 t put_cred_rcu +ffffffff81084d00 T __put_cred +ffffffff81084d40 T exit_creds +ffffffff81084d80 T get_task_cred +ffffffff81084dc0 T cred_alloc_blank +ffffffff81084de0 T prepare_creds +ffffffff81084e90 T prepare_exec_creds +ffffffff81084ed0 T copy_creds +ffffffff81084ff0 T commit_creds +ffffffff810851d0 T abort_creds +ffffffff810851f0 T override_creds +ffffffff81085210 T revert_creds +ffffffff81085240 T prepare_kernel_cred +ffffffff810852f0 T set_security_override +ffffffff81085300 T set_security_override_from_ctx +ffffffff81085310 T set_create_files_as +ffffffff81085340 t devm_unregister_reboot_notifier +ffffffff81085350 t run_cmd +ffffffff810853a0 T emergency_restart +ffffffff810853b0 T kernel_restart_prepare +ffffffff810853e0 T register_reboot_notifier +ffffffff810853f0 T unregister_reboot_notifier +ffffffff81085400 T devm_register_reboot_notifier +ffffffff81085480 T register_restart_handler +ffffffff81085490 T unregister_restart_handler +ffffffff810854a0 T do_kernel_restart +ffffffff810854c0 T migrate_to_reboot_cpu +ffffffff81085520 T kernel_restart +ffffffff81085570 t deferred_cad +ffffffff81085580 t reboot_work_func +ffffffff810855b0 T kernel_halt +ffffffff81085610 T kernel_power_off +ffffffff81085680 t poweroff_work_func +ffffffff810856c0 T SyS_reboot +ffffffff810856c0 T sys_reboot +ffffffff81085860 T ctrl_alt_del +ffffffff810858a0 T orderly_poweroff +ffffffff810858d0 T orderly_reboot +ffffffff810858f0 t lowest_in_progress +ffffffff81085970 t async_run_entry_fn +ffffffff81085a50 t __async_schedule +ffffffff81085bd0 T async_schedule +ffffffff81085be0 T async_schedule_domain +ffffffff81085bf0 T async_unregister_domain +ffffffff81085c20 T async_synchronize_cookie_domain +ffffffff81085cd0 T async_synchronize_full_domain +ffffffff81085ce0 T async_synchronize_full +ffffffff81085cf0 T async_synchronize_cookie +ffffffff81085d00 T current_is_async +ffffffff81085d40 t cmp_range +ffffffff81085d60 T add_range +ffffffff81085d90 T add_range_with_merge +ffffffff81085e70 T subtract_range +ffffffff81085f90 T clean_sort_range +ffffffff81086090 T sort_range +ffffffff810860b0 t smpboot_thread_fn +ffffffff81086280 t __smpboot_create_thread.part.1 +ffffffff81086340 t smpboot_destroy_threads.isra.3 +ffffffff810863c0 T idle_thread_get +ffffffff81086400 T smpboot_create_threads +ffffffff81086490 T smpboot_unpark_threads +ffffffff81086510 T smpboot_park_threads +ffffffff81086590 T smpboot_register_percpu_thread_cpumask +ffffffff81086670 T smpboot_unregister_percpu_thread +ffffffff810866d0 T smpboot_update_cpumask_percpu_thread +ffffffff810867d0 T cpu_report_state +ffffffff810867f0 T cpu_check_up_prepare +ffffffff81086830 T cpu_set_state_online +ffffffff81086850 T cpu_wait_death +ffffffff81086950 T cpu_report_death +ffffffff81086990 t set_lookup +ffffffff810869b0 t set_is_seen +ffffffff810869e0 t put_ucounts +ffffffff81086a40 t set_permissions +ffffffff81086a90 T setup_userns_sysctls +ffffffff81086b50 T retire_userns_sysctls +ffffffff81086b80 T inc_ucount +ffffffff81086d60 T dec_ucount +ffffffff81086db0 t gid_cmp +ffffffff81086dd0 T groups_alloc +ffffffff81086e20 T groups_free +ffffffff81086e30 T groups_sort +ffffffff81086e50 T groups_search +ffffffff81086e90 T set_groups +ffffffff81086ed0 T set_current_groups +ffffffff81086f00 T SyS_getgroups +ffffffff81086f00 T sys_getgroups +ffffffff81086fa0 T may_setgroups +ffffffff81086fe0 T SyS_setgroups +ffffffff81086fe0 T sys_setgroups +ffffffff81087120 T in_group_p +ffffffff81087180 T in_egroup_p +ffffffff810871e0 T tg_nop +ffffffff810871f0 t __balance_callback +ffffffff81087250 t put_prev_task_fake +ffffffff81087260 t cpu_shares_read_u64 +ffffffff81087270 t cpu_cfs_quota_read_s64 +ffffffff810872a0 t cpu_cfs_period_read_u64 +ffffffff810872d0 t cpu_weight_read_u64 +ffffffff810872f0 t cpu_weight_nice_read_s64 +ffffffff81087370 t tg_cfs_schedulable_down +ffffffff81087460 t __hrtick_start +ffffffff810874a0 t check_same_owner +ffffffff810874e0 t set_load_weight +ffffffff81087550 t finish_task_switch +ffffffff81087720 t __schedule_bug +ffffffff81087780 t sched_free_group +ffffffff810877b0 t cpu_cgroup_css_free +ffffffff810877c0 t sched_free_group_rcu +ffffffff810877d0 t sched_change_group +ffffffff81087890 t cpu_extra_stat_show +ffffffff810878d0 t cpu_cfs_stat_show +ffffffff81087930 t cpu_shares_write_u64 +ffffffff81087940 t cpu_weight_nice_write_s64 +ffffffff81087970 t cpu_weight_write_u64 +ffffffff810879b0 t cpu_max_show +ffffffff81087a50 t cpu_cgroup_can_attach +ffffffff81087ad0 t __sched_fork.isra.3 +ffffffff81087ba0 t update_rq_clock.part.4 +ffffffff81087bd0 t hrtick +ffffffff81087c30 t can_nice.part.14 +ffffffff81087c40 t set_rq_online.part.16 +ffffffff81087c90 t set_rq_offline.part.17 +ffffffff81087ce0 T __task_rq_lock +ffffffff81087d60 T task_rq_lock +ffffffff81087e10 t cpu_cgroup_fork +ffffffff81087e60 t __sched_setscheduler.constprop.19 +ffffffff81088660 t _sched_setscheduler +ffffffff810886d0 t do_sched_setscheduler +ffffffff81088760 T update_rq_clock +ffffffff81088770 T hrtick_start +ffffffff81088800 T wake_q_add +ffffffff81088830 T resched_curr +ffffffff810888a0 t set_user_nice.part.13 +ffffffff81088a50 T resched_cpu +ffffffff81088ac0 T get_nohz_timer_target +ffffffff81088c40 T wake_up_nohz_cpu +ffffffff81088cb0 T sched_avg_update +ffffffff81088d00 T walk_tg_tree_from +ffffffff81088db0 t tg_set_cfs_bandwidth +ffffffff81089010 t cpu_cfs_quota_write_s64 +ffffffff81089040 t cpu_cfs_period_write_u64 +ffffffff81089060 t cpu_max_write +ffffffff81089140 T activate_task +ffffffff810891e0 T deactivate_task +ffffffff81089290 T task_curr +ffffffff810892c0 T check_preempt_curr +ffffffff81089350 t ttwu_do_wakeup.isra.5 +ffffffff810893e0 t ttwu_do_activate.isra.6 +ffffffff81089450 T set_cpus_allowed_common +ffffffff81089480 T do_set_cpus_allowed +ffffffff810895c0 t select_fallback_rq +ffffffff810896c0 T set_task_cpu +ffffffff81089760 t move_queued_task.isra.9 +ffffffff81089880 t __set_cpus_allowed_ptr +ffffffff810899e0 T set_cpus_allowed_ptr +ffffffff810899f0 t __migrate_task.isra.10 +ffffffff81089a60 t __migrate_swap_task.part.12 +ffffffff81089ae0 t migrate_swap_stop +ffffffff81089cb0 t try_to_wake_up +ffffffff81089fd0 T wake_up_q +ffffffff8108a040 T migrate_swap +ffffffff8108a0c0 T wait_task_inactive +ffffffff8108a1e0 T kick_process +ffffffff8108a230 T sched_set_stop_task +ffffffff8108a2c0 T sched_ttwu_pending +ffffffff8108a360 t migration_cpu_stop +ffffffff8108a400 T wake_up_if_idle +ffffffff8108a4a0 T cpus_share_cache +ffffffff8108a4d0 T wake_up_process +ffffffff8108a4e0 T wake_up_state +ffffffff8108a4f0 T sched_fork +ffffffff8108a750 T to_ratio +ffffffff8108a780 T wake_up_new_task +ffffffff8108a920 T schedule_tail +ffffffff8108a980 T nr_running +ffffffff8108a9d0 T single_task_running +ffffffff8108a9f0 T nr_context_switches +ffffffff8108aa40 T nr_iowait +ffffffff8108aa90 T nr_iowait_cpu +ffffffff8108aab0 T get_iowait_load +ffffffff8108aae0 T sched_exec +ffffffff8108ab80 T task_sched_runtime +ffffffff8108ac30 T scheduler_tick +ffffffff8108ad00 T do_task_dead +ffffffff8108ad40 T default_wake_function +ffffffff8108ad50 T rt_mutex_setprio +ffffffff8108b020 T set_user_nice +ffffffff8108b050 T can_nice +ffffffff8108b080 T SyS_nice +ffffffff8108b080 T sys_nice +ffffffff8108b160 T task_prio +ffffffff8108b170 T idle_cpu +ffffffff8108b1c0 T scheduler_ipi +ffffffff8108b2c0 T idle_task +ffffffff8108b2e0 T sched_setscheduler +ffffffff8108b2f0 T sched_setattr +ffffffff8108b300 T sched_setattr_nocheck +ffffffff8108b310 T sched_setscheduler_nocheck +ffffffff8108b320 T SyS_sched_setscheduler +ffffffff8108b320 T sys_sched_setscheduler +ffffffff8108b340 T SyS_sched_setparam +ffffffff8108b340 T sys_sched_setparam +ffffffff8108b350 T SyS_sched_setattr +ffffffff8108b350 T sys_sched_setattr +ffffffff8108b4d0 T SyS_sched_getscheduler +ffffffff8108b4d0 T sys_sched_getscheduler +ffffffff8108b530 T SyS_sched_getparam +ffffffff8108b530 T sys_sched_getparam +ffffffff8108b5d0 T SyS_sched_getattr +ffffffff8108b5d0 T sys_sched_getattr +ffffffff8108b730 T sched_setaffinity +ffffffff8108b8c0 T SyS_sched_setaffinity +ffffffff8108b8c0 T sys_sched_setaffinity +ffffffff8108b910 T sched_getaffinity +ffffffff8108b990 T SyS_sched_getaffinity +ffffffff8108b990 T sys_sched_getaffinity +ffffffff8108ba00 T sys_sched_yield +ffffffff8108ba60 T __cond_resched_lock +ffffffff8108bab0 T io_schedule_prepare +ffffffff8108baf0 T io_schedule_finish +ffffffff8108bb20 T io_schedule +ffffffff8108bb50 T SyS_sched_get_priority_max +ffffffff8108bb50 T sys_sched_get_priority_max +ffffffff8108bb90 T SyS_sched_get_priority_min +ffffffff8108bb90 T sys_sched_get_priority_min +ffffffff8108bbd0 T SyS_sched_rr_get_interval +ffffffff8108bbd0 T sys_sched_rr_get_interval +ffffffff8108bcb0 T sched_show_task +ffffffff8108bdb0 T show_state_filter +ffffffff8108be60 T init_idle +ffffffff8108bfe0 T cpuset_cpumask_can_shrink +ffffffff8108c000 T task_can_attach +ffffffff8108c050 T idle_task_exit +ffffffff8108c0a0 T set_rq_online +ffffffff8108c0c0 T set_rq_offline +ffffffff8108c0e0 T sched_cpu_activate +ffffffff8108c190 T sched_cpu_deactivate +ffffffff8108c230 T sched_cpu_starting +ffffffff8108c280 T sched_cpu_dying +ffffffff8108c510 T in_sched_functions +ffffffff8108c540 T sched_create_group +ffffffff8108c5b0 t cpu_cgroup_css_alloc +ffffffff8108c5e0 T sched_online_group +ffffffff8108c690 t cpu_cgroup_css_online +ffffffff8108c6b0 T sched_destroy_group +ffffffff8108c6d0 T sched_offline_group +ffffffff8108c740 t cpu_cgroup_css_released +ffffffff8108c750 T sched_move_task +ffffffff8108c8a0 t cpu_cgroup_attach +ffffffff8108c8e0 T tg_set_cfs_quota +ffffffff8108c910 T tg_get_cfs_quota +ffffffff8108c940 T tg_set_cfs_period +ffffffff8108c960 T tg_get_cfs_period +ffffffff8108c990 T dump_cpu_task +ffffffff8108c9c0 t calc_load_n +ffffffff8108ca20 T get_avenrun +ffffffff8108ca60 T calc_load_fold_active +ffffffff8108ca90 T calc_load_nohz_start +ffffffff8108caf0 T calc_load_nohz_stop +ffffffff8108cb40 T calc_global_load +ffffffff8108cd30 T calc_global_load_tick +ffffffff8108cda0 t __sched_clock_work +ffffffff8108ce80 t sched_clock_local +ffffffff8108cf00 T sched_clock_init +ffffffff8108cf10 T sched_clock_stable +ffffffff8108cf20 T clear_sched_clock_stable +ffffffff8108cf60 T sched_clock_cpu +ffffffff8108d020 T sched_clock_tick +ffffffff8108d060 T sched_clock_tick_stable +ffffffff8108d090 T sched_clock_idle_sleep_event +ffffffff8108d0a0 T sched_clock_idle_wakeup_event +ffffffff8108d0c0 W running_clock +ffffffff8108d0d0 T account_user_time +ffffffff8108d160 T account_guest_time +ffffffff8108d1d0 T account_system_index_time +ffffffff8108d250 T account_system_time +ffffffff8108d2a0 T account_steal_time +ffffffff8108d2c0 T account_idle_time +ffffffff8108d300 T thread_group_cputime +ffffffff8108d430 T account_process_tick +ffffffff8108d4b0 T account_idle_ticks +ffffffff8108d4f0 T cputime_adjust +ffffffff8108d610 T task_cputime_adjusted +ffffffff8108d660 T thread_group_cputime_adjusted +ffffffff8108d6a0 t select_task_rq_idle +ffffffff8108d6b0 t pick_next_task_idle +ffffffff8108d6d0 t put_prev_task_idle +ffffffff8108d6e0 t task_tick_idle +ffffffff8108d6f0 t set_curr_task_idle +ffffffff8108d700 t get_rr_interval_idle +ffffffff8108d710 t prio_changed_idle +ffffffff8108d720 t switched_to_idle +ffffffff8108d730 t check_preempt_curr_idle +ffffffff8108d740 t dequeue_task_idle +ffffffff8108d770 t update_curr_idle +ffffffff8108d780 t update_min_vruntime +ffffffff8108d7e0 t account_entity_enqueue +ffffffff8108d850 t account_entity_dequeue +ffffffff8108d8b0 t attach_entity_load_avg +ffffffff8108d9a0 t tg_unthrottle_up +ffffffff8108d9e0 t tg_throttle_down +ffffffff8108da20 t update_cfs_rq_h_load +ffffffff8108db10 t update_sysctl +ffffffff8108db80 t __calc_delta +ffffffff8108dc70 t decay_load +ffffffff8108dcb0 t __accumulate_pelt_segments +ffffffff8108dd30 t can_migrate_task +ffffffff8108de70 t __enqueue_entity +ffffffff8108ded0 t __update_load_avg_blocked_se.isra.1 +ffffffff8108dff0 t __update_load_avg_se.isra.2 +ffffffff8108e190 t __update_load_avg_cfs_rq.isra.3 +ffffffff8108e2e0 t set_next_entity +ffffffff8108e7c0 t update_blocked_averages +ffffffff8108ef60 t clear_buddies +ffffffff8108f030 t wakeup_preempt_entity.isra.8 +ffffffff8108f070 t pick_next_entity +ffffffff8108f180 t select_task_rq_fair +ffffffff8108fde0 t propagate_entity_cfs_rq.isra.11 +ffffffff810902a0 t detach_entity_cfs_rq +ffffffff81090800 t detach_task_cfs_rq +ffffffff81090870 t switched_from_fair +ffffffff81090880 t attach_entity_cfs_rq +ffffffff81090d20 t attach_task_cfs_rq +ffffffff81090d70 t sched_slice.isra.12 +ffffffff81090e00 t get_rr_interval_fair +ffffffff81090e40 t prio_changed_fair +ffffffff81090e70 t switched_to_fair +ffffffff81090eb0 t rq_online_fair +ffffffff81090f40 t attach_task +ffffffff81090f90 t nohz_balance_exit_idle.part.28 +ffffffff81090fd0 t active_load_balance_cpu_stop +ffffffff810911c0 t cpu_load_update +ffffffff81091330 T sched_init_granularity +ffffffff81091340 T __pick_first_entity +ffffffff81091360 T init_entity_runnable_average +ffffffff810913c0 T post_init_entity_util_avg +ffffffff81091480 T set_task_rq_fair +ffffffff810914b0 t task_change_group_fair +ffffffff810915a0 T sync_entity_load_avg +ffffffff810915c0 T remove_entity_load_avg +ffffffff81091630 t task_dead_fair +ffffffff81091640 t migrate_task_rq_fair +ffffffff810916a0 T cfs_bandwidth_usage_inc +ffffffff810916b0 T cfs_bandwidth_usage_dec +ffffffff810916c0 T __refill_cfs_bandwidth_runtime +ffffffff810916f0 T init_cfs_bandwidth +ffffffff81091770 T start_cfs_bandwidth +ffffffff810917d0 t __account_cfs_rq_runtime +ffffffff81091900 t update_curr +ffffffff810919f0 t update_curr_fair +ffffffff81091a10 t reweight_entity +ffffffff81091b90 t update_cfs_group +ffffffff81091c60 T reweight_task +ffffffff81091ca0 t task_fork_fair +ffffffff81091da0 t yield_task_fair +ffffffff81091e10 t yield_to_task_fair +ffffffff81091e80 t dequeue_entity +ffffffff81092500 t dequeue_task_fair +ffffffff81092aa0 t check_preempt_wakeup +ffffffff81092c40 t task_tick_fair +ffffffff810931c0 t set_curr_task_fair +ffffffff81093210 t throttle_cfs_rq +ffffffff81093370 t check_cfs_rq_runtime +ffffffff810933c0 t put_prev_entity +ffffffff81093820 t put_prev_task_fair +ffffffff81093850 t enqueue_entity +ffffffff81093f70 t enqueue_task_fair +ffffffff81094500 T unthrottle_cfs_rq +ffffffff81094670 t rq_offline_fair +ffffffff81094700 t distribute_cfs_runtime +ffffffff81094800 t sched_cfs_slack_timer +ffffffff810948b0 t sched_cfs_period_timer +ffffffff81094a40 T cpu_load_update_nohz_start +ffffffff81094a60 T cpu_load_update_nohz_stop +ffffffff81094ad0 T cpu_load_update_active +ffffffff81094b20 T update_group_capacity +ffffffff81094d00 t find_busiest_group +ffffffff81095630 t load_balance +ffffffff81095e30 t pick_next_task_fair +ffffffff810962c0 t rebalance_domains +ffffffff81096560 t run_rebalance_domains +ffffffff81096700 T nohz_balance_exit_idle +ffffffff81096720 T set_cpu_sd_state_idle +ffffffff81096770 T nohz_balance_enter_idle +ffffffff810967e0 T update_max_interval +ffffffff81096810 T trigger_load_balance +ffffffff81096a50 T init_cfs_rq +ffffffff81096a80 T free_fair_sched_group +ffffffff81096b20 T online_fair_sched_group +ffffffff81096bf0 T unregister_fair_sched_group +ffffffff81096cd0 T init_tg_cfs_entry +ffffffff81096d80 T alloc_fair_sched_group +ffffffff81096eb0 T sched_group_set_shares +ffffffff81097460 t get_rr_interval_rt +ffffffff81097480 t update_rt_migration +ffffffff81097520 t do_balance_runtime +ffffffff81097640 t pick_next_pushable_task +ffffffff810976b0 t find_lowest_rq +ffffffff81097830 t push_rt_task +ffffffff81097a60 t push_rt_tasks +ffffffff81097a80 t set_curr_task_rt +ffffffff81097ae0 t rq_online_rt +ffffffff81097ba0 t switched_from_rt +ffffffff81097bf0 t prio_changed_rt +ffffffff81097c70 t switched_to_rt +ffffffff81097d10 t enqueue_top_rt_rq +ffffffff81097d70 t rq_offline_rt +ffffffff81097f80 t dequeue_top_rt_rq +ffffffff81097fb0 t dequeue_rt_stack +ffffffff81098180 t update_curr_rt +ffffffff81098390 t task_tick_rt +ffffffff810984c0 t dequeue_task_rt +ffffffff81098560 t select_task_rq_rt +ffffffff81098600 t task_woken_rt +ffffffff81098650 t pull_rt_task +ffffffff81098790 t pick_next_task_rt +ffffffff81098930 t enqueue_task_rt +ffffffff81098bd0 t yield_task_rt +ffffffff81098c50 t put_prev_task_rt +ffffffff81098cf0 t sched_rt_period_timer +ffffffff81099050 t check_preempt_curr_rt +ffffffff81099140 T init_rt_bandwidth +ffffffff81099170 T init_rt_rq +ffffffff81099200 T free_rt_sched_group +ffffffff81099210 T alloc_rt_sched_group +ffffffff81099220 T sched_rt_bandwidth_account +ffffffff81099250 T rto_push_irq_work_func +ffffffff81099320 T sched_rt_handler +ffffffff810994a0 T sched_rr_handler +ffffffff81099520 t task_fork_dl +ffffffff81099530 t pick_next_pushable_dl_task +ffffffff81099590 t replenish_dl_entity +ffffffff810996a0 t inactive_task_timer +ffffffff81099970 t check_preempt_curr_dl +ffffffff810999f0 t find_later_rq +ffffffff81099b70 t find_lock_later_rq +ffffffff81099cc0 t start_dl_timer +ffffffff81099d60 t update_dl_migration +ffffffff81099df0 t dequeue_pushable_dl_task +ffffffff81099e50 t set_curr_task_dl +ffffffff81099e70 t pull_dl_task +ffffffff8109a1a0 t task_non_contending +ffffffff8109a430 t rq_offline_dl +ffffffff8109a4a0 t rq_online_dl +ffffffff8109a520 t task_contending +ffffffff8109a5d0 t migrate_task_rq_dl +ffffffff8109a6c0 t prio_changed_dl +ffffffff8109a730 t select_task_rq_dl +ffffffff8109a7f0 t switched_to_dl +ffffffff8109a8c0 t enqueue_pushable_dl_task +ffffffff8109a950 t enqueue_task_dl +ffffffff8109ad70 t push_dl_task.part.10 +ffffffff8109af90 t dl_task_timer +ffffffff8109b170 t push_dl_tasks +ffffffff8109b190 t task_woken_dl +ffffffff8109b200 t __dequeue_dl_entity +ffffffff8109b2d0 t update_curr_dl +ffffffff8109b510 t task_tick_dl +ffffffff8109b520 t pick_next_task_dl +ffffffff8109b640 t yield_task_dl +ffffffff8109b670 t dequeue_task_dl +ffffffff8109b740 t set_cpus_allowed_dl +ffffffff8109b870 t put_prev_task_dl +ffffffff8109b8b0 t switched_from_dl +ffffffff8109b990 T dl_change_utilization +ffffffff8109ba80 T init_dl_bandwidth +ffffffff8109ba90 T init_dl_bw +ffffffff8109baf0 T init_dl_task_timer +ffffffff8109bb20 T grub_reclaim +ffffffff8109bb70 T init_dl_inactive_task_timer +ffffffff8109bba0 T sched_dl_global_validate +ffffffff8109bc70 T init_dl_rq_bw_ratio +ffffffff8109bcf0 T init_dl_rq +ffffffff8109bd50 T sched_dl_do_global +ffffffff8109be40 T sched_dl_overflow +ffffffff8109c130 T __setparam_dl +ffffffff8109c1a0 T __getparam_dl +ffffffff8109c1e0 T __checkparam_dl +ffffffff8109c230 T __dl_clear_params +ffffffff8109c280 T dl_param_changed +ffffffff8109c2c0 T dl_task_can_attach +ffffffff8109c400 T dl_cpuset_cpumask_can_shrink +ffffffff8109c4a0 T dl_cpu_busy +ffffffff8109c570 t __wake_up_common +ffffffff8109c690 t __wake_up_common_lock +ffffffff8109c720 T autoremove_wake_function +ffffffff8109c750 T __init_waitqueue_head +ffffffff8109c770 T add_wait_queue +ffffffff8109c7b0 T add_wait_queue_exclusive +ffffffff8109c7f0 T remove_wait_queue +ffffffff8109c840 T __wake_up +ffffffff8109c850 T __wake_up_locked +ffffffff8109c860 T __wake_up_locked_key +ffffffff8109c880 T __wake_up_locked_key_bookmark +ffffffff8109c8a0 T __wake_up_sync_key +ffffffff8109c8c0 T __wake_up_sync +ffffffff8109c8e0 T prepare_to_wait +ffffffff8109c950 T prepare_to_wait_exclusive +ffffffff8109c9c0 T init_wait_entry +ffffffff8109c9f0 T prepare_to_wait_event +ffffffff8109cae0 T do_wait_intr +ffffffff8109cb60 T do_wait_intr_irq +ffffffff8109cbe0 T finish_wait +ffffffff8109cc40 T wait_woken +ffffffff8109ccc0 T woken_wake_function +ffffffff8109ccd0 T wake_bit_function +ffffffff8109cd00 t wake_atomic_t_function +ffffffff8109cd30 T bit_waitqueue +ffffffff8109cd60 T __wake_up_bit +ffffffff8109cdb0 T wake_up_bit +ffffffff8109cdf0 T wake_up_atomic_t +ffffffff8109ce30 t swake_up_locked.part.0 +ffffffff8109ce60 T __init_swait_queue_head +ffffffff8109ce80 T swake_up_locked +ffffffff8109cea0 T swake_up +ffffffff8109ced0 T swake_up_all +ffffffff8109cf80 T __prepare_to_swait +ffffffff8109cfc0 T prepare_to_swait +ffffffff8109d040 T prepare_to_swait_event +ffffffff8109d080 T __finish_swait +ffffffff8109d0c0 T finish_swait +ffffffff8109d120 T complete +ffffffff8109d170 T complete_all +ffffffff8109d1b0 T try_wait_for_completion +ffffffff8109d200 T completion_done +ffffffff8109d230 t idle_inject_timer_fn +ffffffff8109d250 t call_cpuidle +ffffffff8109d280 T sched_idle_set_state +ffffffff8109d2a0 T cpu_idle_poll_ctrl +ffffffff8109d2c0 W arch_cpu_idle_prepare +ffffffff8109d2e0 W arch_cpu_idle_exit +ffffffff8109d310 t do_idle +ffffffff8109d4b0 T cpu_in_idle +ffffffff8109d4d0 T play_idle +ffffffff8109d590 T cpu_startup_entry +ffffffff8109d5b0 T cpupri_find +ffffffff8109d690 T cpupri_set +ffffffff8109d730 T cpupri_init +ffffffff8109d7c0 T cpupri_cleanup +ffffffff8109d7d0 t cpudl_heapify_up.isra.1 +ffffffff8109d870 t cpudl_heapify +ffffffff8109d970 T cpudl_find +ffffffff8109d9d0 T cpudl_clear +ffffffff8109da70 T cpudl_set +ffffffff8109db10 T cpudl_set_freecpu +ffffffff8109db20 T cpudl_clear_freecpu +ffffffff8109db30 T cpudl_init +ffffffff8109dba0 T cpudl_cleanup +ffffffff8109dbb0 t cpu_cpu_mask +ffffffff8109dbc0 t cpu_core_flags +ffffffff8109dbd0 t free_rootdomain +ffffffff8109dc00 t sd_degenerate +ffffffff8109dc40 t init_rootdomain +ffffffff8109dcd0 t free_sched_groups.part.2 +ffffffff8109dd30 t destroy_sched_domain +ffffffff8109dd80 t destroy_sched_domains_rcu +ffffffff8109dda0 T rq_attach_root +ffffffff8109de50 t cpu_attach_domain +ffffffff8109e0f0 t build_sched_domains +ffffffff8109ed70 T sched_get_rd +ffffffff8109ed80 T sched_put_rd +ffffffff8109eda0 T init_defrootdomain +ffffffff8109edc0 T group_balance_cpu +ffffffff8109ede0 T set_sched_topology +ffffffff8109ee10 T alloc_sched_domains +ffffffff8109ee20 T free_sched_domains +ffffffff8109ee30 T sched_init_domains +ffffffff8109eeb0 T partition_sched_domains +ffffffff8109f1a0 t select_task_rq_stop +ffffffff8109f1b0 t check_preempt_curr_stop +ffffffff8109f1c0 t pick_next_task_stop +ffffffff8109f210 t dequeue_task_stop +ffffffff8109f220 t set_curr_task_stop +ffffffff8109f240 t get_rr_interval_stop +ffffffff8109f250 t update_curr_stop +ffffffff8109f260 t prio_changed_stop +ffffffff8109f270 t switched_to_stop +ffffffff8109f280 t yield_task_stop +ffffffff8109f290 t put_prev_task_stop +ffffffff8109f320 t enqueue_task_stop +ffffffff8109f350 t task_tick_stop +ffffffff8109f360 t autogroup_move_group +ffffffff8109f460 T autogroup_free +ffffffff8109f470 T task_wants_autogroup +ffffffff8109f490 T sched_autogroup_exit_task +ffffffff8109f4a0 T sched_autogroup_create_attach +ffffffff8109f5c0 T sched_autogroup_detach +ffffffff8109f5d0 T sched_autogroup_fork +ffffffff8109f650 T sched_autogroup_exit +ffffffff8109f680 T proc_sched_autogroup_set_nice +ffffffff8109f800 T proc_sched_autogroup_show_task +ffffffff8109f8d0 T cpufreq_add_update_util_hook +ffffffff8109f910 T cpufreq_remove_update_util_hook +ffffffff8109f930 t ipi_mb +ffffffff8109f940 t membarrier_register_private_expedited +ffffffff8109f9b0 t membarrier_private_expedited +ffffffff8109fb00 T SyS_membarrier +ffffffff8109fb00 T sys_membarrier +ffffffff8109fd10 T housekeeping_any_cpu +ffffffff8109fd40 T housekeeping_cpumask +ffffffff8109fd70 T housekeeping_affine +ffffffff8109fd90 T housekeeping_test_cpu +ffffffff8109fdc0 t mutex_spin_on_owner +ffffffff8109fe60 T __mutex_init +ffffffff8109fe90 T atomic_dec_and_mutex_lock +ffffffff8109fed0 T down +ffffffff8109ff20 T down_interruptible +ffffffff8109ff70 T down_killable +ffffffff8109ffc0 T down_trylock +ffffffff8109fff0 T down_timeout +ffffffff810a0040 T up +ffffffff810a0090 T down_read_trylock +ffffffff810a00d0 T down_write_trylock +ffffffff810a0110 T up_read +ffffffff810a0130 T up_write +ffffffff810a0150 T downgrade_write +ffffffff810a0180 T __percpu_init_rwsem +ffffffff810a01e0 T percpu_free_rwsem +ffffffff810a0210 T __percpu_down_read +ffffffff810a0290 T __percpu_up_read +ffffffff810a02b0 T percpu_down_write +ffffffff810a0380 T percpu_up_write +ffffffff810a03a0 T in_lock_functions +ffffffff810a03c0 T osq_lock +ffffffff810a04b0 T osq_unlock +ffffffff810a0520 T queued_spin_lock_slowpath +ffffffff810a0690 t rt_mutex_enqueue +ffffffff810a0700 t rt_mutex_enqueue_pi +ffffffff810a0770 t rt_mutex_adjust_prio_chain +ffffffff810a0c40 t task_blocks_on_rt_mutex +ffffffff810a0e10 t remove_waiter +ffffffff810a0f90 t fixup_rt_mutex_waiters.part.0 +ffffffff810a0fb0 t try_to_take_rt_mutex +ffffffff810a10e0 t mark_wakeup_next_waiter +ffffffff810a1190 T rt_mutex_adjust_pi +ffffffff810a1210 T rt_mutex_init_waiter +ffffffff810a1230 T rt_mutex_postunlock +ffffffff810a1250 T rt_mutex_timed_lock +ffffffff810a1280 T rt_mutex_destroy +ffffffff810a1290 T __rt_mutex_init +ffffffff810a12b0 T rt_mutex_init_proxy_locked +ffffffff810a12e0 T rt_mutex_proxy_unlock +ffffffff810a1300 T __rt_mutex_start_proxy_lock +ffffffff810a1370 T rt_mutex_start_proxy_lock +ffffffff810a13b0 T rt_mutex_next_owner +ffffffff810a13d0 T rt_mutex_wait_proxy_lock +ffffffff810a1440 T rt_mutex_cleanup_proxy_lock +ffffffff810a14b0 t rwsem_spin_on_owner +ffffffff810a1510 t rwsem_optimistic_spin +ffffffff810a1640 t __rwsem_mark_wake.part.0 +ffffffff810a1780 t __rwsem_mark_wake.constprop.1 +ffffffff810a17b0 T __init_rwsem +ffffffff810a17e0 T rwsem_wake +ffffffff810a1880 T rwsem_downgrade_wake +ffffffff810a1900 T queued_read_lock_slowpath +ffffffff810a1960 T queued_write_lock_slowpath +ffffffff810a19d0 t pm_qos_power_read +ffffffff810a1ac0 T pm_qos_read_value +ffffffff810a1ad0 T pm_qos_update_target +ffffffff810a1ca0 t pm_qos_work_fn +ffffffff810a1cd0 t pm_qos_add_request.part.1 +ffffffff810a1d40 t pm_qos_power_open +ffffffff810a1df0 t pm_qos_update_request.part.2 +ffffffff810a1e30 t pm_qos_power_write +ffffffff810a1eb0 t pm_qos_remove_request.part.3 +ffffffff810a1f10 t pm_qos_power_release +ffffffff810a1f50 T pm_qos_update_flags +ffffffff810a2070 T pm_qos_request +ffffffff810a2090 T pm_qos_request_active +ffffffff810a20a0 T pm_qos_add_request +ffffffff810a20c0 T pm_qos_update_request +ffffffff810a20e0 T pm_qos_update_request_timeout +ffffffff810a2160 T pm_qos_remove_request +ffffffff810a2180 T pm_qos_add_notifier +ffffffff810a21a0 T pm_qos_remove_notifier +ffffffff810a21c0 t pm_async_store +ffffffff810a2200 t pm_freeze_timeout_store +ffffffff810a2240 t pm_freeze_timeout_show +ffffffff810a2260 t mem_sleep_show +ffffffff810a22e0 t pm_async_show +ffffffff810a2300 t state_show +ffffffff810a2360 t decode_state +ffffffff810a2420 t autosleep_store +ffffffff810a2490 t wakeup_count_show +ffffffff810a24d0 t autosleep_show +ffffffff810a2540 t mem_sleep_store +ffffffff810a2610 t wakeup_count_store +ffffffff810a2690 t state_store +ffffffff810a2720 T lock_system_sleep +ffffffff810a2740 T unlock_system_sleep +ffffffff810a2760 T register_pm_notifier +ffffffff810a2770 T unregister_pm_notifier +ffffffff810a2780 T __pm_notifier_call_chain +ffffffff810a27b0 T pm_notifier_call_chain +ffffffff810a27f0 t pm_vt_switch +ffffffff810a2870 T pm_vt_switch_required +ffffffff810a2910 T pm_vt_switch_unregister +ffffffff810a2990 T pm_prepare_console +ffffffff810a29d0 T pm_restore_console +ffffffff810a2a00 t try_to_freeze_tasks +ffffffff810a2d90 T thaw_processes +ffffffff810a2e80 T freeze_processes +ffffffff810a2f60 T thaw_kernel_threads +ffffffff810a3020 T freeze_kernel_threads +ffffffff810a3090 T s2idle_set_ops +ffffffff810a30b0 T s2idle_wake +ffffffff810a3110 T suspend_set_ops +ffffffff810a31b0 T suspend_valid_only_mem +ffffffff810a31c0 W arch_suspend_disable_irqs +ffffffff810a31d0 W arch_suspend_enable_irqs +ffffffff810a31e0 T suspend_devices_and_enter +ffffffff810a36d0 T pm_suspend +ffffffff810a3920 t queue_up_suspend_work.part.0 +ffffffff810a3940 t try_to_suspend +ffffffff810a3a00 T queue_up_suspend_work +ffffffff810a3a20 T pm_autosleep_state +ffffffff810a3a30 T pm_autosleep_lock +ffffffff810a3a40 T pm_autosleep_unlock +ffffffff810a3a50 T pm_autosleep_set_state +ffffffff810a3ae0 t log_make_free_space +ffffffff810a3c30 t devkmsg_poll +ffffffff810a3cb0 t devkmsg_llseek +ffffffff810a3d70 t msg_print_ext_body +ffffffff810a3ec0 t print_prefix +ffffffff810a4050 t msg_print_text +ffffffff810a4140 t syslog_print_all +ffffffff810a43c0 t log_store +ffffffff810a4650 t cont_flush +ffffffff810a46a0 t __control_devkmsg +ffffffff810a4730 t cont_add +ffffffff810a4820 t __up_console_sem.isra.3 +ffffffff810a4840 t __down_trylock_console_sem.isra.4 +ffffffff810a4870 t console_trylock.part.8 +ffffffff810a48a0 t __add_preferred_console.constprop.12 +ffffffff810a4930 t devkmsg_read +ffffffff810a4bf0 T devkmsg_sysctl_set_loglvl +ffffffff810a4cc0 T log_buf_addr_get +ffffffff810a4cd0 T log_buf_len_get +ffffffff810a4ce0 T vprintk +ffffffff810a4cf0 t devkmsg_release +ffffffff810a4d40 t check_syslog_permissions +ffffffff810a4dc0 t devkmsg_open +ffffffff810a4eb0 T do_syslog +ffffffff810a5330 T SyS_syslog +ffffffff810a5330 T sys_syslog +ffffffff810a5340 T add_preferred_console +ffffffff810a5350 T suspend_console +ffffffff810a53a0 T console_lock +ffffffff810a53d0 T console_trylock +ffffffff810a53f0 T is_console_locked +ffffffff810a5400 T wake_up_klogd +ffffffff810a5450 t console_unlock.part.9 +ffffffff810a58b0 T console_unlock +ffffffff810a58d0 T vprintk_emit +ffffffff810a5c40 t devkmsg_write +ffffffff810a5d80 T vprintk_default +ffffffff810a5da0 T resume_console +ffffffff810a5dd0 T console_unblank +ffffffff810a5e40 T console_flush_on_panic +ffffffff810a5e60 T console_device +ffffffff810a5f10 T console_stop +ffffffff810a5f50 T console_start +ffffffff810a5f90 T unregister_console +ffffffff810a60c0 T register_console +ffffffff810a6440 t console_cpu_notify +ffffffff810a6480 t wake_up_klogd_work_func +ffffffff810a64f0 T vprintk_deferred +ffffffff810a6550 T __printk_ratelimit +ffffffff810a6560 T printk_timed_ratelimit +ffffffff810a65a0 T kmsg_dump_register +ffffffff810a6610 T kmsg_dump_unregister +ffffffff810a6670 T kmsg_dump +ffffffff810a6730 T kmsg_dump_get_line_nolock +ffffffff810a67e0 T kmsg_dump_get_line +ffffffff810a6850 T kmsg_dump_get_buffer +ffffffff810a6ab0 T kmsg_dump_rewind_nolock +ffffffff810a6ae0 T kmsg_dump_rewind +ffffffff810a6b40 T dump_stack_print_info +ffffffff810a6be0 T show_regs_print_info +ffffffff810a6be5 T printk +ffffffff810a6c2b T printk_emit +ffffffff810a6c61 T printk_deferred +ffffffff810a6cb0 t __printk_safe_flush +ffffffff810a6e90 t printk_safe_log_store +ffffffff810a6f40 T printk_safe_flush +ffffffff810a6fb0 T printk_safe_flush_on_panic +ffffffff810a7000 T printk_nmi_enter +ffffffff810a7030 T printk_nmi_exit +ffffffff810a7040 T __printk_safe_enter +ffffffff810a7050 T __printk_safe_exit +ffffffff810a7060 T vprintk_func +ffffffff810a70b0 t irq_sysfs_add +ffffffff810a70f0 t irq_kobj_release +ffffffff810a7110 t actions_show +ffffffff810a71e0 t name_show +ffffffff810a7230 t chip_name_show +ffffffff810a7290 t type_show +ffffffff810a72f0 t hwirq_show +ffffffff810a7340 t delayed_free_desc +ffffffff810a7350 t free_desc +ffffffff810a73b0 t alloc_desc.isra.4 +ffffffff810a7540 T irq_to_desc +ffffffff810a7550 T irq_lock_sparse +ffffffff810a7560 T irq_unlock_sparse +ffffffff810a7570 T generic_handle_irq +ffffffff810a75a0 T irq_free_descs +ffffffff810a7610 T irq_get_next_irq +ffffffff810a7630 T __irq_get_desc_lock +ffffffff810a76b0 T __irq_put_desc_unlock +ffffffff810a76f0 T irq_set_percpu_devid_partition +ffffffff810a7780 T irq_set_percpu_devid +ffffffff810a7790 T irq_get_percpu_devid_partition +ffffffff810a77e0 T kstat_incr_irq_this_cpu +ffffffff810a7800 T kstat_irqs_cpu +ffffffff810a7840 t per_cpu_count_show +ffffffff810a78f0 T kstat_irqs +ffffffff810a7950 T kstat_irqs_usr +ffffffff810a7980 T handle_bad_irq +ffffffff810a7b90 T no_action +ffffffff810a7ba0 T __irq_wake_thread +ffffffff810a7bd0 T __handle_irq_event_percpu +ffffffff810a7c80 T handle_irq_event_percpu +ffffffff810a7cd0 T handle_irq_event +ffffffff810a7d20 t __synchronize_hardirq +ffffffff810a7d70 t irq_default_primary_handler +ffffffff810a7d80 t irq_nested_primary_handler +ffffffff810a7d90 t set_irq_wake_real +ffffffff810a7dd0 t irq_affinity_notify +ffffffff810a7e70 t __disable_irq_nosync +ffffffff810a7ee0 t setup_irq_thread +ffffffff810a7f80 t __free_percpu_irq +ffffffff810a8020 t irq_finalize_oneshot.part.2 +ffffffff810a80f0 t irq_forced_thread_fn +ffffffff810a8150 t irq_thread_fn +ffffffff810a81a0 t irq_thread_check_affinity +ffffffff810a81f0 t wake_threads_waitq +ffffffff810a8220 t irq_thread_dtor +ffffffff810a82b0 t irq_thread +ffffffff810a8420 t irq_forced_secondary_handler +ffffffff810a8430 T synchronize_hardirq +ffffffff810a8460 T synchronize_irq +ffffffff810a84d0 t __free_irq +ffffffff810a8720 T irq_can_set_affinity +ffffffff810a8750 T irq_can_set_affinity_usr +ffffffff810a8790 T irq_set_thread_affinity +ffffffff810a87b0 T irq_do_set_affinity +ffffffff810a8850 T irq_set_affinity_locked +ffffffff810a88e0 T __irq_set_affinity +ffffffff810a8940 T irq_set_affinity_hint +ffffffff810a89a0 T irq_set_affinity_notifier +ffffffff810a8a50 T irq_setup_affinity +ffffffff810a8b20 T irq_select_affinity_usr +ffffffff810a8b60 T irq_set_vcpu_affinity +ffffffff810a8bd0 T __disable_irq +ffffffff810a8bf0 T disable_irq_nosync +ffffffff810a8c00 T disable_irq +ffffffff810a8c20 T disable_hardirq +ffffffff810a8c40 T __enable_irq +ffffffff810a8c80 T enable_irq +ffffffff810a8cd0 T irq_set_irq_wake +ffffffff810a8da0 T can_request_irq +ffffffff810a8e00 T __irq_set_trigger +ffffffff810a8f20 t __setup_irq +ffffffff810a95c0 T irq_wake_thread +ffffffff810a9650 T setup_irq +ffffffff810a96d0 T remove_irq +ffffffff810a9700 T free_irq +ffffffff810a9760 T request_threaded_irq +ffffffff810a98a0 T request_any_context_irq +ffffffff810a9920 T enable_percpu_irq +ffffffff810a9990 T irq_percpu_is_enabled +ffffffff810a99e0 T disable_percpu_irq +ffffffff810a9a30 T remove_percpu_irq +ffffffff810a9a60 T free_percpu_irq +ffffffff810a9ad0 T setup_percpu_irq +ffffffff810a9b40 T __request_percpu_irq +ffffffff810a9c30 T irq_get_irqchip_state +ffffffff810a9cb0 T irq_set_irqchip_state +ffffffff810a9d30 T noirqdebug_setup +ffffffff810a9d50 t try_one_irq +ffffffff810a9e10 t poll_spurious_irqs +ffffffff810a9ea0 t __report_bad_irq +ffffffff810a9f50 T irq_wait_for_poll +ffffffff810a9fc0 T note_interrupt +ffffffff810aa240 T check_irq_resend +ffffffff810aa280 t bad_chained_irq +ffffffff810aa290 t irq_may_run +ffffffff810aa2d0 t mask_irq.part.1 +ffffffff810aa300 t __irq_disable +ffffffff810aa360 t unmask_irq.part.3 +ffffffff810aa390 T irq_set_chip +ffffffff810aa3e0 T irq_set_irq_type +ffffffff810aa430 T irq_set_handler_data +ffffffff810aa470 T irq_set_msi_desc_off +ffffffff810aa4d0 T irq_set_msi_desc +ffffffff810aa4e0 T irq_set_chip_data +ffffffff810aa520 T irq_get_irq_data +ffffffff810aa540 T irq_activate +ffffffff810aa560 T irq_shutdown +ffffffff810aa5d0 T irq_enable +ffffffff810aa630 t __irq_startup +ffffffff810aa680 T irq_startup +ffffffff810aa740 T irq_activate_and_startup +ffffffff810aa780 t __irq_do_set_handler +ffffffff810aa920 T irq_disable +ffffffff810aa930 T irq_percpu_enable +ffffffff810aa970 T irq_percpu_disable +ffffffff810aa9b0 T mask_irq +ffffffff810aa9d0 T unmask_irq +ffffffff810aa9f0 T unmask_threaded_irq +ffffffff810aaa30 T handle_nested_irq +ffffffff810aab10 T handle_simple_irq +ffffffff810aab80 T handle_untracked_irq +ffffffff810aac30 T handle_level_irq +ffffffff810aad20 T handle_fasteoi_irq +ffffffff810aae50 T handle_edge_irq +ffffffff810aafd0 T handle_percpu_irq +ffffffff810ab020 T handle_percpu_devid_irq +ffffffff810ab100 T __irq_set_handler +ffffffff810ab160 T irq_set_chained_handler_and_data +ffffffff810ab1c0 T irq_set_chip_and_handler_name +ffffffff810ab1f0 T irq_modify_status +ffffffff810ab2b0 T irq_cpu_online +ffffffff810ab350 T irq_cpu_offline +ffffffff810ab3f0 T irq_chip_enable_parent +ffffffff810ab410 T irq_chip_disable_parent +ffffffff810ab430 T irq_chip_ack_parent +ffffffff810ab450 T irq_chip_mask_parent +ffffffff810ab470 T irq_chip_unmask_parent +ffffffff810ab490 T irq_chip_eoi_parent +ffffffff810ab4b0 T irq_chip_set_affinity_parent +ffffffff810ab4d0 T irq_chip_set_type_parent +ffffffff810ab4f0 T irq_chip_retrigger_hierarchy +ffffffff810ab520 T irq_chip_set_vcpu_affinity_parent +ffffffff810ab540 T irq_chip_set_wake_parent +ffffffff810ab560 T irq_chip_compose_msi_msg +ffffffff810ab5b0 T irq_chip_pm_get +ffffffff810ab620 T irq_chip_pm_put +ffffffff810ab650 t noop +ffffffff810ab660 t noop_ret +ffffffff810ab670 t ack_bad +ffffffff810ab870 t devm_irq_match +ffffffff810ab890 t devm_irq_release +ffffffff810ab8a0 t devm_irq_desc_release +ffffffff810ab8b0 T devm_request_threaded_irq +ffffffff810ab970 T devm_request_any_context_irq +ffffffff810aba20 T devm_free_irq +ffffffff810aba60 T __devm_irq_alloc_descs +ffffffff810abb00 T probe_irq_on +ffffffff810abcc0 T probe_irq_mask +ffffffff810abd70 T probe_irq_off +ffffffff810abe30 t __irq_domain_deactivate_irq +ffffffff810abe70 t __irq_domain_activate_irq +ffffffff810abf00 T irq_domain_xlate_onetwocell +ffffffff810abf30 t irq_domain_free_irq_data +ffffffff810abf80 t irq_domain_fix_revmap +ffffffff810abfe0 t irq_domain_set_mapping.part.0 +ffffffff810ac020 t irq_domain_clear_mapping.part.1 +ffffffff810ac050 T __irq_domain_alloc_fwnode +ffffffff810ac120 T irq_domain_free_fwnode +ffffffff810ac150 T __irq_domain_add +ffffffff810ac340 T irq_domain_remove +ffffffff810ac3b0 T irq_domain_update_bus_token +ffffffff810ac430 T irq_find_matching_fwspec +ffffffff810ac4e0 T irq_domain_check_msi_remap +ffffffff810ac560 T irq_set_default_host +ffffffff810ac570 T irq_domain_disassociate +ffffffff810ac620 T irq_domain_associate +ffffffff810ac750 T irq_domain_add_simple +ffffffff810ac7f0 T irq_domain_add_legacy +ffffffff810ac870 T irq_domain_associate_many +ffffffff810ac8b0 T irq_create_direct_mapping +ffffffff810ac930 T irq_create_strict_mappings +ffffffff810ac990 T irq_find_mapping +ffffffff810aca40 T irq_domain_xlate_onecell +ffffffff810aca60 T irq_domain_xlate_twocell +ffffffff810aca80 T irq_domain_alloc_descs +ffffffff810acb10 T irq_create_mapping +ffffffff810acba0 T irq_domain_create_hierarchy +ffffffff810acbe0 T irq_domain_get_irq_data +ffffffff810acc10 T irq_domain_set_hwirq_and_chip +ffffffff810acc80 T irq_domain_set_info +ffffffff810accc0 T irq_domain_reset_irq_data +ffffffff810acce0 T irq_domain_free_irqs_common +ffffffff810acd80 T irq_domain_free_irqs_top +ffffffff810acdd0 T irq_domain_alloc_irqs_hierarchy +ffffffff810acde0 T __irq_domain_alloc_irqs +ffffffff810ad030 T irq_domain_push_irq +ffffffff810ad1e0 T irq_domain_pop_irq +ffffffff810ad340 T irq_domain_free_irqs +ffffffff810ad460 T irq_dispose_mapping +ffffffff810ad4b0 T irq_create_fwspec_mapping +ffffffff810ad700 T irq_create_of_mapping +ffffffff810ad770 T irq_domain_alloc_irqs_parent +ffffffff810ad790 T irq_domain_free_irqs_parent +ffffffff810ad7b0 T irq_domain_activate_irq +ffffffff810ad7f0 T irq_domain_deactivate_irq +ffffffff810ad820 T irq_domain_hierarchical_is_msi_remap +ffffffff810ad840 t irq_spurious_proc_open +ffffffff810ad860 t irq_effective_aff_list_proc_open +ffffffff810ad880 t irq_effective_aff_proc_open +ffffffff810ad8a0 t irq_node_proc_open +ffffffff810ad8c0 t irq_affinity_list_proc_open +ffffffff810ad8e0 t irq_affinity_hint_proc_open +ffffffff810ad900 t irq_affinity_proc_open +ffffffff810ad920 t default_affinity_open +ffffffff810ad940 t irq_spurious_proc_show +ffffffff810ad980 t irq_node_proc_show +ffffffff810ad9b0 t irq_affinity_hint_proc_show +ffffffff810ada20 t default_affinity_show +ffffffff810ada40 t default_affinity_write +ffffffff810ada90 t write_irq_affinity.isra.0 +ffffffff810adb50 t irq_affinity_list_proc_write +ffffffff810adb70 t irq_affinity_proc_write +ffffffff810adb90 t irq_effective_aff_list_proc_show +ffffffff810adbc0 t irq_affinity_proc_show +ffffffff810adc00 t irq_effective_aff_proc_show +ffffffff810adc30 t irq_affinity_list_proc_show +ffffffff810adc70 T register_handler_proc +ffffffff810add50 T register_irq_proc +ffffffff810adec0 T unregister_irq_proc +ffffffff810adf90 T unregister_handler_proc +ffffffff810adfa0 T init_irq_proc +ffffffff810ae020 T show_interrupts +ffffffff810ae330 T irq_fixup_move_pending +ffffffff810ae3a0 T irq_move_masked_irq +ffffffff810ae430 T irq_move_irq +ffffffff810ae490 T irq_migrate_all_off_this_cpu +ffffffff810ae730 T irq_affinity_online_cpu +ffffffff810ae7f0 t resume_irqs +ffffffff810ae8c0 t irq_pm_syscore_resume +ffffffff810ae8d0 T irq_pm_check_wakeup +ffffffff810ae910 T irq_pm_install_action +ffffffff810ae950 T irq_pm_remove_action +ffffffff810ae990 T suspend_device_irqs +ffffffff810aea80 T resume_device_irqs +ffffffff810aea90 t msi_domain_ops_check +ffffffff810aeaa0 t msi_domain_deactivate +ffffffff810aeae0 t msi_domain_free +ffffffff810aeb50 t msi_domain_alloc +ffffffff810aec90 t msi_domain_ops_init +ffffffff810aece0 T msi_domain_set_affinity +ffffffff810aed40 t msi_domain_activate +ffffffff810aed80 T alloc_msi_entry +ffffffff810aedf0 T free_msi_entry +ffffffff810aee10 T __get_cached_msi_msg +ffffffff810aee20 T get_cached_msi_msg +ffffffff810aee50 T msi_create_irq_domain +ffffffff810aef60 T msi_domain_prepare_irqs +ffffffff810aefc0 T msi_domain_populate_irqs +ffffffff810af0f0 T msi_domain_free_irqs +ffffffff810af130 T msi_domain_alloc_irqs +ffffffff810af3a0 T msi_get_domain_info +ffffffff810af3b0 T irq_create_affinity_masks +ffffffff810af680 T irq_calc_affinity_vectors +ffffffff810af6d0 t matrix_alloc_area.constprop.0 +ffffffff810af750 T irq_matrix_online +ffffffff810af7a0 T irq_matrix_offline +ffffffff810af7c0 T irq_matrix_assign_system +ffffffff810af820 T irq_matrix_remove_managed +ffffffff810af8c0 T irq_matrix_reserve_managed +ffffffff810af980 T irq_matrix_alloc_managed +ffffffff810af9f0 T irq_matrix_assign +ffffffff810afa30 T irq_matrix_reserve +ffffffff810afa60 T irq_matrix_remove_reserved +ffffffff810afa70 T irq_matrix_alloc +ffffffff810afb20 T irq_matrix_free +ffffffff810afb70 T irq_matrix_available +ffffffff810afb90 T irq_matrix_reserved +ffffffff810afba0 T irq_matrix_allocated +ffffffff810afbb0 t rcu_panic +ffffffff810afbc0 T wakeme_after_rcu +ffffffff810afbd0 T call_rcu_tasks +ffffffff810afc50 T rcu_gp_is_normal +ffffffff810afc70 T rcu_gp_is_expedited +ffffffff810afca0 T rcu_expedite_gp +ffffffff810afcb0 T rcu_unexpedite_gp +ffffffff810afcc0 T rcu_end_inkernel_boot +ffffffff810afce0 T rcu_test_sync_prims +ffffffff810afcf0 T __rcu_read_lock +ffffffff810afd10 T __rcu_read_unlock +ffffffff810afd60 t rcu_tasks_kthread +ffffffff810b0110 T __wait_rcu_gp +ffffffff810b0250 T do_trace_rcu_torture_read +ffffffff810b0260 T rcu_jiffies_till_stall_check +ffffffff810b02a0 T rcu_sysrq_start +ffffffff810b02c0 T rcu_sysrq_end +ffffffff810b02e0 T rcu_barrier_tasks +ffffffff810b0310 T synchronize_rcu_tasks +ffffffff810b0320 T exit_tasks_rcu_start +ffffffff810b0360 T exit_tasks_rcu_finish +ffffffff810b03a0 T rcu_early_boot_tests +ffffffff810b03b0 t rcu_sync_func +ffffffff810b0460 T rcu_sync_init +ffffffff810b04b0 T rcu_sync_enter_start +ffffffff810b04c0 T rcu_sync_enter +ffffffff810b0590 T rcu_sync_exit +ffffffff810b05f0 T rcu_sync_dtor +ffffffff810b0660 t srcu_gp_start +ffffffff810b06d0 t srcu_queue_delayed_work_on +ffffffff810b0710 t init_srcu_struct_fields +ffffffff810b0b40 t srcu_invoke_callbacks +ffffffff810b0c70 t srcu_barrier_cb +ffffffff810b0c90 t srcu_funnel_exp_start +ffffffff810b0d40 t srcu_reschedule +ffffffff810b0dc0 t try_check_zero +ffffffff810b0ea0 t srcu_readers_active.isra.4 +ffffffff810b0f10 t process_srcu +ffffffff810b12d0 t check_init_srcu_struct.part.6 +ffffffff810b1310 T init_srcu_struct +ffffffff810b1330 T cleanup_srcu_struct +ffffffff810b1410 T __srcu_read_lock +ffffffff810b1430 T __srcu_read_unlock +ffffffff810b1450 T srcu_online_cpu +ffffffff810b1470 T srcu_offline_cpu +ffffffff810b1490 T __call_srcu +ffffffff810b17e0 t __synchronize_srcu.part.7 +ffffffff810b1870 T call_srcu +ffffffff810b1880 T synchronize_srcu_expedited +ffffffff810b18b0 T synchronize_srcu +ffffffff810b1960 T srcu_barrier +ffffffff810b1af0 T srcu_batches_completed +ffffffff810b1b00 T srcutorture_get_gp_data +ffffffff810b1b30 T srcu_torture_stats_print +ffffffff810b1c10 t rcu_dynticks_eqs_exit +ffffffff810b1c40 t rcu_gp_kthread_wake +ffffffff810b1c80 t force_quiescent_state +ffffffff810b1d80 t rcu_report_qs_rnp +ffffffff810b1e50 t rcu_iw_handler +ffffffff810b1e80 t rcu_init_percpu_data +ffffffff810b1f80 t rcu_barrier_callback +ffffffff810b1fa0 t _rcu_barrier +ffffffff810b2100 t rcu_implicit_dynticks_qs +ffffffff810b2380 t rcu_exp_wait_wake +ffffffff810b2960 t sync_exp_work_done.part.7 +ffffffff810b2970 t rcu_cleanup_dead_rnp.part.11 +ffffffff810b29d0 t __rcu_report_exp_rnp +ffffffff810b2a80 t rcu_report_exp_cpu_mult +ffffffff810b2ae0 t sync_rcu_exp_select_cpus +ffffffff810b2ec0 t _synchronize_rcu_expedited +ffffffff810b3220 t wait_rcu_exp_gp +ffffffff810b3250 t sync_rcu_exp_handler +ffffffff810b32a0 t rcu_stall_kick_kthreads.part.35 +ffffffff810b3360 t cpu_needs_another_gp +ffffffff810b33c0 t rcu_barrier_func +ffffffff810b3400 t rcu_gp_slow.isra.42.part.43 +ffffffff810b3430 t rcu_pm_notify +ffffffff810b3480 t rcu_sched_qs.part.46 +ffffffff810b34b0 t dyntick_save_progress_counter +ffffffff810b3530 t rcu_accelerate_cbs +ffffffff810b36c0 t rcu_advance_cbs +ffffffff810b3710 t __note_gp_changes +ffffffff810b3800 t note_gp_changes +ffffffff810b3880 t rcu_start_gp +ffffffff810b3900 t rcu_process_callbacks +ffffffff810b3c80 t __call_rcu.constprop.53 +ffffffff810b3e90 T call_rcu +ffffffff810b3ea0 T call_rcu_bh +ffffffff810b3eb0 T call_rcu_sched +ffffffff810b3ec0 t sync_sched_exp_handler +ffffffff810b3f60 t rcu_report_unblock_qs_rnp.part.33 +ffffffff810b3ff0 t force_qs_rnp +ffffffff810b4180 t rcu_gp_kthread +ffffffff810b4970 T rcu_rnp_online_cpus +ffffffff810b4980 T rcu_sched_qs +ffffffff810b49b0 T rcu_bh_qs +ffffffff810b49d0 T rcu_dynticks_curr_cpu_in_eqs +ffffffff810b49f0 T rcu_dynticks_snap +ffffffff810b4a00 T rcu_eqs_special_set +ffffffff810b4a40 T rcu_all_qs +ffffffff810b4af0 T rcu_batches_started +ffffffff810b4b00 T rcu_batches_started_sched +ffffffff810b4b10 T rcu_batches_started_bh +ffffffff810b4b20 T rcu_batches_completed +ffffffff810b4b30 T rcu_batches_completed_sched +ffffffff810b4b40 T rcu_batches_completed_bh +ffffffff810b4b50 T rcu_exp_batches_completed +ffffffff810b4b60 T rcu_exp_batches_completed_sched +ffffffff810b4b70 T rcu_force_quiescent_state +ffffffff810b4b80 T rcu_bh_force_quiescent_state +ffffffff810b4b90 T rcu_sched_force_quiescent_state +ffffffff810b4ba0 T show_rcu_gp_kthreads +ffffffff810b4c00 T rcutorture_record_test_transition +ffffffff810b4c20 T rcutorture_get_gp_data +ffffffff810b4c70 T rcutorture_record_progress +ffffffff810b4c80 T rcu_idle_enter +ffffffff810b4d00 T rcu_nmi_exit +ffffffff810b4d50 T rcu_irq_exit +ffffffff810b4d70 T rcu_irq_exit_irqson +ffffffff810b4d90 T rcu_idle_exit +ffffffff810b4dd0 T rcu_nmi_enter +ffffffff810b4e10 T rcu_irq_enter +ffffffff810b4e30 T rcu_irq_enter_irqson +ffffffff810b4e50 T rcu_is_watching +ffffffff810b4e80 T rcu_request_urgent_qs_task +ffffffff810b4eb0 T rcu_cpu_stall_reset +ffffffff810b4f00 T rcu_check_callbacks +ffffffff810b5820 T kfree_call_rcu +ffffffff810b5840 T get_state_synchronize_rcu +ffffffff810b5850 T get_state_synchronize_sched +ffffffff810b5860 T rcu_barrier_bh +ffffffff810b5870 T rcu_barrier_sched +ffffffff810b5880 T rcutree_prepare_cpu +ffffffff810b58d0 T rcutree_online_cpu +ffffffff810b59b0 T rcutree_offline_cpu +ffffffff810b5a40 T rcutree_dying_cpu +ffffffff810b5a70 T rcutree_dead_cpu +ffffffff810b5aa0 T rcu_cpu_starting +ffffffff810b5b50 T rcu_report_dead +ffffffff810b5c10 T rcutree_migrate_callbacks +ffffffff810b5cf0 T rcu_scheduler_starting +ffffffff810b5d10 T synchronize_sched_expedited +ffffffff810b5d50 T synchronize_rcu_bh +ffffffff810b5dc0 T synchronize_sched +ffffffff810b5e30 T cond_synchronize_sched +ffffffff810b5e40 T synchronize_rcu_expedited +ffffffff810b5e60 T rcu_read_unlock_special +ffffffff810b60a0 T rcu_note_context_switch +ffffffff810b6390 T synchronize_rcu +ffffffff810b63f0 T cond_synchronize_rcu +ffffffff810b6400 T rcu_barrier +ffffffff810b6410 T exit_rcu +ffffffff810b6450 T rcu_needs_cpu +ffffffff810b64c5 t print_cpu_stall_info +ffffffff810b65f8 t rcu_check_gp_kthread_starvation +ffffffff810b66ac t rcu_print_detail_task_stall_rnp +ffffffff810b6710 t rcu_dump_cpu_stacks +ffffffff810b67d0 T rcu_cblist_init +ffffffff810b67f0 T rcu_cblist_dequeue +ffffffff810b6810 T rcu_segcblist_init +ffffffff810b6840 T rcu_segcblist_disable +ffffffff810b6850 T rcu_segcblist_ready_cbs +ffffffff810b6870 T rcu_segcblist_pend_cbs +ffffffff810b6890 T rcu_segcblist_first_cb +ffffffff810b68a0 T rcu_segcblist_first_pend_cb +ffffffff810b68c0 T rcu_segcblist_enqueue +ffffffff810b68f0 T rcu_segcblist_entrain +ffffffff810b6960 T rcu_segcblist_extract_count +ffffffff810b6990 T rcu_segcblist_extract_done_cbs +ffffffff810b69f0 T rcu_segcblist_extract_pend_cbs +ffffffff810b6a30 T rcu_segcblist_insert_count +ffffffff810b6a60 T rcu_segcblist_insert_done_cbs +ffffffff810b6ab0 T rcu_segcblist_insert_pend_cbs +ffffffff810b6ae0 T rcu_segcblist_advance +ffffffff810b6b30 T rcu_segcblist_accelerate +ffffffff810b6b90 T rcu_segcblist_future_gp_needed +ffffffff810b6bc0 T rcu_segcblist_merge +ffffffff810b6d10 t get_file_raw_ptr +ffffffff810b6d80 T SyS_kcmp +ffffffff810b6d80 T sys_kcmp +ffffffff810b7190 T freezing_slow_path +ffffffff810b71d0 T __refrigerator +ffffffff810b72e0 T freeze_task +ffffffff810b73d0 T __thaw_task +ffffffff810b7410 T set_freezable +ffffffff810b7480 T SyS_time +ffffffff810b7480 T sys_time +ffffffff810b74b0 T SyS_stime +ffffffff810b74b0 T sys_stime +ffffffff810b7500 T SyS_gettimeofday +ffffffff810b7500 T sys_gettimeofday +ffffffff810b7560 T do_sys_settimeofday64 +ffffffff810b7610 T SyS_settimeofday +ffffffff810b7610 T sys_settimeofday +ffffffff810b76d0 T SyS_adjtimex +ffffffff810b76d0 T sys_adjtimex +ffffffff810b7730 T jiffies_to_msecs +ffffffff810b7740 T jiffies_to_usecs +ffffffff810b7750 T timespec_trunc +ffffffff810b7790 T mktime64 +ffffffff810b7820 T ns_to_timeval +ffffffff810b78a0 T set_normalized_timespec64 +ffffffff810b78d0 T ns_to_timespec64 +ffffffff810b7930 T __msecs_to_jiffies +ffffffff810b7950 T __usecs_to_jiffies +ffffffff810b7990 T timespec64_to_jiffies +ffffffff810b79e0 T jiffies_to_timespec64 +ffffffff810b7a20 T timeval_to_jiffies +ffffffff810b7a80 T jiffies_to_timeval +ffffffff810b7ad0 T jiffies_to_clock_t +ffffffff810b7af0 T clock_t_to_jiffies +ffffffff810b7b10 T jiffies_64_to_clock_t +ffffffff810b7b30 T nsec_to_clock_t +ffffffff810b7b50 T jiffies64_to_nsecs +ffffffff810b7b60 T nsecs_to_jiffies64 +ffffffff810b7b80 T nsecs_to_jiffies +ffffffff810b7ba0 T timespec64_add_safe +ffffffff810b7c00 T get_timespec64 +ffffffff810b7c40 T put_timespec64 +ffffffff810b7c80 T get_itimerspec64 +ffffffff810b7cf0 T put_itimerspec64 +ffffffff810b7d60 t calc_wheel_index +ffffffff810b7e80 t __internal_add_timer +ffffffff810b7ed0 t detach_if_pending +ffffffff810b7f40 t lock_timer_base +ffffffff810b7fc0 t expire_timers +ffffffff810b80e0 t timers_update_migration +ffffffff810b8110 t timer_update_keys +ffffffff810b8140 t __next_timer_interrupt +ffffffff810b8200 t collect_expired_timers +ffffffff810b82a0 t run_timer_softirq +ffffffff810b83d0 t process_timeout +ffffffff810b83e0 t trigger_dyntick_cpu.isra.1 +ffffffff810b8410 T timers_update_nohz +ffffffff810b8430 T timer_migration_handler +ffffffff810b84a0 T __round_jiffies +ffffffff810b8510 T __round_jiffies_relative +ffffffff810b8590 T round_jiffies +ffffffff810b8600 T round_jiffies_relative +ffffffff810b8680 T __round_jiffies_up +ffffffff810b86d0 T __round_jiffies_up_relative +ffffffff810b8730 T round_jiffies_up +ffffffff810b8780 T round_jiffies_up_relative +ffffffff810b87e0 T init_timer_key +ffffffff810b8800 T mod_timer_pending +ffffffff810b8b10 T mod_timer +ffffffff810b8e10 T timer_reduce +ffffffff810b9140 T add_timer +ffffffff810b9160 T add_timer_on +ffffffff810b9240 T del_timer +ffffffff810b9290 T try_to_del_timer_sync +ffffffff810b92e0 T del_timer_sync +ffffffff810b9300 T get_next_timer_interrupt +ffffffff810b9410 T timer_clear_idle +ffffffff810b9430 T run_local_timers +ffffffff810b9470 T update_process_times +ffffffff810b94c0 T timers_prepare_cpu +ffffffff810b9520 T timers_dead_cpu +ffffffff810b96a0 T msleep +ffffffff810b96d0 T msleep_interruptible +ffffffff810b9730 t ktime_get_real +ffffffff810b9740 t ktime_get_boottime +ffffffff810b9750 t ktime_get_clocktai +ffffffff810b9760 t __hrtimer_next_event_base +ffffffff810b9800 t __hrtimer_get_next_event +ffffffff810b9860 t hrtimer_reprogram +ffffffff810b98f0 t hrtimer_update_softirq_timer +ffffffff810b9930 t hrtimer_force_reprogram +ffffffff810b99a0 t __remove_hrtimer +ffffffff810b9a00 t retrigger_next_event +ffffffff810b9a80 t clock_was_set_work +ffffffff810b9aa0 t __hrtimer_init +ffffffff810b9b30 t hrtimer_wakeup +ffffffff810b9b50 t lock_hrtimer_base.isra.1 +ffffffff810b9b90 t __hrtimer_run_queues +ffffffff810b9d10 t hrtimer_run_softirq +ffffffff810b9db0 T ktime_add_safe +ffffffff810b9de0 T clock_was_set_delayed +ffffffff810b9e00 T clock_was_set +ffffffff810b9e20 T hrtimers_resume +ffffffff810b9e40 T hrtimer_forward +ffffffff810b9f00 T hrtimer_start_range_ns +ffffffff810ba120 T __hrtimer_get_remaining +ffffffff810ba170 T hrtimer_get_next_event +ffffffff810ba1d0 T hrtimer_init +ffffffff810ba1e0 T hrtimer_active +ffffffff810ba220 T hrtimer_try_to_cancel +ffffffff810ba2b0 T hrtimer_cancel +ffffffff810ba2d0 T hrtimer_interrupt +ffffffff810ba510 T hrtimer_run_queues +ffffffff810ba640 T hrtimer_init_sleeper +ffffffff810ba650 T nanosleep_copyout +ffffffff810ba680 T hrtimer_nanosleep +ffffffff810ba7b0 T SyS_nanosleep +ffffffff810ba7b0 T sys_nanosleep +ffffffff810ba830 T hrtimers_prepare_cpu +ffffffff810ba8a0 T hrtimers_dead_cpu +ffffffff810baa40 t dummy_clock_read +ffffffff810baa50 t scale64_check_overflow +ffffffff810baab0 t tk_set_wall_to_mono +ffffffff810bab70 t update_fast_timekeeper +ffffffff810babf0 t timekeeping_update +ffffffff810bad10 t timekeeping_forward_now.constprop.4 +ffffffff810bae00 t tk_setup_internals.constprop.6 +ffffffff810baf50 t change_clocksource +ffffffff810bafe0 t tk_xtime_add.constprop.7 +ffffffff810bb080 t timekeeping_inject_offset +ffffffff810bb1c0 T ktime_get_mono_fast_ns +ffffffff810bb260 T ktime_get_raw_fast_ns +ffffffff810bb300 T ktime_get_boot_fast_ns +ffffffff810bb310 T ktime_get_real_fast_ns +ffffffff810bb3b0 T pvclock_gtod_register_notifier +ffffffff810bb410 T pvclock_gtod_unregister_notifier +ffffffff810bb450 T __getnstimeofday64 +ffffffff810bb520 T getnstimeofday64 +ffffffff810bb530 T ktime_get +ffffffff810bb5b0 T ktime_get_resolution_ns +ffffffff810bb5e0 T ktime_get_with_offset +ffffffff810bb680 T ktime_mono_to_any +ffffffff810bb6b0 T ktime_get_raw +ffffffff810bb730 T ktime_get_ts64 +ffffffff810bb800 T ktime_get_seconds +ffffffff810bb810 T ktime_get_real_seconds +ffffffff810bb820 T __ktime_get_real_seconds +ffffffff810bb830 T ktime_get_snapshot +ffffffff810bb950 T get_device_system_crosststamp +ffffffff810bbc70 T do_gettimeofday +ffffffff810bbcc0 T do_settimeofday64 +ffffffff810bbe00 T timekeeping_warp_clock +ffffffff810bbe40 T timekeeping_notify +ffffffff810bbe80 T getrawmonotonic64 +ffffffff810bbf40 T timekeeping_valid_for_hres +ffffffff810bbf70 T timekeeping_max_deferment +ffffffff810bbfb0 W read_persistent_clock64 +ffffffff810bbfe0 T timekeeping_resume +ffffffff810bc240 T timekeeping_suspend +ffffffff810bc4d0 W read_boot_clock64 +ffffffff810bc4e0 T update_wall_time +ffffffff810bcbc0 T getboottime64 +ffffffff810bcbf0 T get_seconds +ffffffff810bcc00 T __current_kernel_time +ffffffff810bcc30 T current_kernel_time64 +ffffffff810bcc70 T get_monotonic_coarse64 +ffffffff810bccf0 T do_timer +ffffffff810bcd00 T ktime_get_update_offsets_now +ffffffff810bce00 T do_adjtimex +ffffffff810bd070 T xtime_update +ffffffff810bd0b0 t ntp_update_frequency +ffffffff810bd120 t sched_sync_hw_clock.constprop.2 +ffffffff810bd1a0 T ntp_clear +ffffffff810bd200 T ntp_tick_length +ffffffff810bd210 T ntp_get_next_leap +ffffffff810bd250 T second_overflow +ffffffff810bd540 W update_persistent_clock64 +ffffffff810bd550 t sync_hw_clock +ffffffff810bd660 T ntp_notify_cmos_timer +ffffffff810bd690 T __do_adjtimex +ffffffff810bdc60 t __clocksource_change_rating +ffffffff810bdce0 t __clocksource_watchdog_kthread +ffffffff810bde70 t __clocksource_select +ffffffff810bdfb0 t clocksource_watchdog_kthread +ffffffff810bdfe0 t clocksource_watchdog_work +ffffffff810be010 t clocksource_select_watchdog +ffffffff810be1c0 t clocksource_unbind +ffffffff810be2d0 t sysfs_show_available_clocksources +ffffffff810be3a0 t sysfs_show_current_clocksources +ffffffff810be3f0 t __clocksource_unstable +ffffffff810be440 t clocksource_watchdog +ffffffff810be730 T clocks_calc_mult_shift +ffffffff810be790 T clocksource_mark_unstable +ffffffff810be800 T clocksource_suspend +ffffffff810be840 T clocksource_resume +ffffffff810be880 T clocksource_touch_watchdog +ffffffff810be890 T clocks_calc_max_nsecs +ffffffff810be8d0 T __clocksource_update_freq_scale +ffffffff810beaa0 T __clocksource_register_scale +ffffffff810beba0 T clocksource_change_rating +ffffffff810bebe0 T clocksource_unregister +ffffffff810bec20 T sysfs_get_uname +ffffffff810bece0 t sysfs_unbind_clocksource +ffffffff810bed90 t sysfs_override_clocksource +ffffffff810bede0 t jiffies_read +ffffffff810bedf0 T register_refined_jiffies +ffffffff810beea0 t timer_list_stop +ffffffff810beeb0 t move_iter +ffffffff810bef00 t timer_list_next +ffffffff810bef10 t timer_list_start +ffffffff810bef50 t SEQ_printf +ffffffff810befb0 t print_cpu +ffffffff810bf460 t timer_list_open +ffffffff810bf480 t print_tickdevice.isra.0 +ffffffff810bf710 t timer_list_show_tickdevices_header +ffffffff810bf780 t timer_list_show +ffffffff810bf820 T sysrq_timer_list_show +ffffffff810bf8e0 T time64_to_tm +ffffffff810bfca0 T timecounter_init +ffffffff810bfcf0 T timecounter_read +ffffffff810bfd40 T timecounter_cyc2time +ffffffff810bfd90 t ktime_get_real +ffffffff810bfda0 t ktime_get_boottime +ffffffff810bfdb0 t alarm_timer_remaining +ffffffff810bfdc0 t alarmtimer_enqueue +ffffffff810bfdf0 t alarmtimer_nsleep_wakeup +ffffffff810bfe10 t alarmtimer_rtc_add_device +ffffffff810bfed0 t alarmtimer_fired +ffffffff810bffe0 T alarmtimer_get_rtcdev +ffffffff810c0010 t alarm_clock_get +ffffffff810c0070 t alarm_clock_getres +ffffffff810c00a0 t alarmtimer_resume +ffffffff810c00c0 t alarmtimer_suspend +ffffffff810c0240 t alarm_timer_create +ffffffff810c02d0 T alarm_expires_remaining +ffffffff810c0300 T alarm_init +ffffffff810c0350 T alarm_start +ffffffff810c03b0 t alarm_timer_arm +ffffffff810c0410 T alarm_start_relative +ffffffff810c0450 T alarm_restart +ffffffff810c04b0 T alarm_try_to_cancel +ffffffff810c0540 t alarm_timer_try_to_cancel +ffffffff810c0550 t alarmtimer_do_nsleep +ffffffff810c06e0 t alarm_timer_nsleep +ffffffff810c0850 T alarm_cancel +ffffffff810c0870 T alarm_forward +ffffffff810c08d0 t alarm_timer_forward +ffffffff810c08f0 t alarm_timer_rearm +ffffffff810c0940 t alarm_handle_timer +ffffffff810c09e0 T alarm_forward_now +ffffffff810c0a10 t posix_get_hrtimer_res +ffffffff810c0a30 t common_hrtimer_remaining +ffffffff810c0a40 T common_timer_del +ffffffff810c0a70 t __lock_timer +ffffffff810c0b40 t common_timer_create +ffffffff810c0b60 t common_hrtimer_forward +ffffffff810c0b70 t common_hrtimer_arm +ffffffff810c0c20 t common_hrtimer_rearm +ffffffff810c0c80 t common_hrtimer_try_to_cancel +ffffffff810c0c90 t common_nsleep +ffffffff810c0cb0 t posix_get_coarse_res +ffffffff810c0ce0 T common_timer_get +ffffffff810c0e80 T common_timer_set +ffffffff810c0f80 t posix_get_boottime +ffffffff810c0fb0 t posix_get_tai +ffffffff810c0fe0 t posix_get_monotonic_coarse +ffffffff810c1000 t posix_get_realtime_coarse +ffffffff810c1020 t posix_get_monotonic_raw +ffffffff810c1030 t posix_ktime_get_ts +ffffffff810c1040 t posix_clock_realtime_adj +ffffffff810c1050 t posix_clock_realtime_get +ffffffff810c1060 t posix_clock_realtime_set +ffffffff810c1070 t k_itimer_rcu_free +ffffffff810c1080 t release_posix_timer +ffffffff810c10f0 t clockid_to_kclock.part.0 +ffffffff810c1110 t do_timer_create +ffffffff810c1550 T posixtimer_rearm +ffffffff810c15c0 T posix_timer_event +ffffffff810c1610 t posix_timer_fn +ffffffff810c16c0 T SyS_timer_create +ffffffff810c16c0 T sys_timer_create +ffffffff810c1720 T SyS_timer_gettime +ffffffff810c1720 T sys_timer_gettime +ffffffff810c17f0 T SyS_timer_getoverrun +ffffffff810c17f0 T sys_timer_getoverrun +ffffffff810c1830 T SyS_timer_settime +ffffffff810c1830 T sys_timer_settime +ffffffff810c19b0 T SyS_timer_delete +ffffffff810c19b0 T sys_timer_delete +ffffffff810c1aa0 T exit_itimers +ffffffff810c1b70 T SyS_clock_settime +ffffffff810c1b70 T sys_clock_settime +ffffffff810c1bf0 T SyS_clock_gettime +ffffffff810c1bf0 T sys_clock_gettime +ffffffff810c1c70 T SyS_clock_adjtime +ffffffff810c1c70 T sys_clock_adjtime +ffffffff810c1d20 T SyS_clock_getres +ffffffff810c1d20 T sys_clock_getres +ffffffff810c1da0 T SyS_clock_nanosleep +ffffffff810c1da0 T sys_clock_nanosleep +ffffffff810c1e80 t bump_cpu_timer +ffffffff810c1ef0 t cleanup_timers +ffffffff810c1fa0 t arm_timer +ffffffff810c2090 t cpu_clock_sample +ffffffff810c20e0 t posix_cpu_clock_get_task +ffffffff810c21e0 t posix_cpu_timer_del +ffffffff810c22a0 t posix_cpu_timer_create +ffffffff810c23a0 t process_cpu_timer_create +ffffffff810c23b0 t thread_cpu_timer_create +ffffffff810c23c0 t check_clock +ffffffff810c2470 t posix_cpu_clock_set +ffffffff810c2490 t check_cpu_itimer +ffffffff810c24f0 t posix_cpu_clock_get +ffffffff810c2550 t process_cpu_clock_get +ffffffff810c2560 t thread_cpu_clock_get +ffffffff810c2570 t posix_cpu_clock_getres +ffffffff810c25b0 t thread_cpu_clock_getres +ffffffff810c25e0 t process_cpu_clock_getres +ffffffff810c2610 T update_rlimit_cpu +ffffffff810c2670 T thread_group_cputimer +ffffffff810c2740 t cpu_timer_sample_group +ffffffff810c27b0 t posix_cpu_timer_rearm +ffffffff810c2890 t cpu_timer_fire +ffffffff810c2910 t posix_cpu_timer_get +ffffffff810c2a10 t posix_cpu_timer_set +ffffffff810c2c80 t do_cpu_nanosleep +ffffffff810c2eb0 t posix_cpu_nsleep +ffffffff810c2f40 t process_cpu_nsleep +ffffffff810c2f50 t posix_cpu_nsleep_restart +ffffffff810c2f90 T posix_cpu_timers_exit +ffffffff810c2fa0 T posix_cpu_timers_exit_group +ffffffff810c2fc0 T run_posix_cpu_timers +ffffffff810c3880 T set_process_cpu_timer +ffffffff810c3960 t posix_clock_release +ffffffff810c39d0 t posix_clock_open +ffffffff810c3a50 t posix_clock_ioctl +ffffffff810c3ae0 t posix_clock_poll +ffffffff810c3b70 t posix_clock_read +ffffffff810c3c00 t get_clock_desc +ffffffff810c3cc0 t pc_clock_adjtime +ffffffff810c3d30 t pc_clock_gettime +ffffffff810c3d90 t pc_clock_settime +ffffffff810c3e00 t pc_clock_getres +ffffffff810c3e60 T posix_clock_register +ffffffff810c3ec0 T posix_clock_unregister +ffffffff810c3f20 t itimer_get_remtime +ffffffff810c3f70 t get_cpu_itimer +ffffffff810c4050 t set_cpu_itimer +ffffffff810c41a0 T do_getitimer +ffffffff810c4270 T SyS_getitimer +ffffffff810c4270 T sys_getitimer +ffffffff810c42f0 T it_real_fn +ffffffff810c4310 T do_setitimer +ffffffff810c44f0 T SyS_alarm +ffffffff810c44f0 T sys_alarm +ffffffff810c4570 T SyS_setitimer +ffffffff810c4570 T sys_setitimer +ffffffff810c4660 t clockevents_program_min_delta +ffffffff810c4750 t sysfs_show_current_tick_dev +ffffffff810c47d0 t sysfs_unbind_tick_dev +ffffffff810c4970 t clockevents_config.part.1 +ffffffff810c4aa0 t __clockevents_unbind +ffffffff810c4b90 T clockevent_delta2ns +ffffffff810c4bf0 T clockevents_switch_state +ffffffff810c4c90 T clockevents_shutdown +ffffffff810c4cb0 T clockevents_tick_resume +ffffffff810c4cd0 T clockevents_program_event +ffffffff810c4d80 T clockevents_unbind_device +ffffffff810c4de0 T clockevents_register_device +ffffffff810c4ee0 T clockevents_config_and_register +ffffffff810c4f10 T __clockevents_update_freq +ffffffff810c4f70 T clockevents_update_freq +ffffffff810c4fa0 T clockevents_handle_noop +ffffffff810c4fb0 T clockevents_exchange_device +ffffffff810c5030 T clockevents_suspend +ffffffff810c5080 T clockevents_resume +ffffffff810c50d0 T tick_cleanup_dead_cpu +ffffffff810c5250 t tick_periodic +ffffffff810c52c0 T tick_handle_periodic +ffffffff810c5320 t tick_check_percpu.isra.0 +ffffffff810c53a0 t tick_check_preferred +ffffffff810c5420 T tick_get_device +ffffffff810c5440 T tick_is_oneshot_available +ffffffff810c5470 T tick_setup_periodic +ffffffff810c54f0 t tick_setup_device +ffffffff810c55e0 T tick_install_replacement +ffffffff810c5650 T tick_check_replacement +ffffffff810c5690 T tick_check_new_device +ffffffff810c5760 T tick_broadcast_oneshot_control +ffffffff810c5780 T tick_handover_do_timer +ffffffff810c57c0 T tick_shutdown +ffffffff810c5810 T tick_suspend_local +ffffffff810c5830 T tick_resume_local +ffffffff810c5880 T tick_suspend +ffffffff810c58a0 T tick_resume +ffffffff810c58b0 T tick_freeze +ffffffff810c5920 T tick_unfreeze +ffffffff810c5970 t tick_broadcast_clear_oneshot +ffffffff810c5990 t tick_broadcast_set_event +ffffffff810c5a20 t err_broadcast +ffffffff810c5a40 t tick_do_broadcast.constprop.4 +ffffffff810c5ac0 t tick_handle_periodic_broadcast +ffffffff810c5b70 t tick_handle_oneshot_broadcast +ffffffff810c5cd0 t tick_broadcast_setup_oneshot +ffffffff810c5dc0 T tick_get_broadcast_device +ffffffff810c5dd0 T tick_get_broadcast_mask +ffffffff810c5de0 T tick_install_broadcast_device +ffffffff810c5e70 T tick_is_broadcast_device +ffffffff810c5e90 T tick_broadcast_update_freq +ffffffff810c5ee0 T tick_device_uses_broadcast +ffffffff810c6060 T tick_receive_broadcast +ffffffff810c60a0 T tick_broadcast_control +ffffffff810c6220 T tick_set_periodic_handler +ffffffff810c6240 T tick_shutdown_broadcast +ffffffff810c62b0 T tick_suspend_broadcast +ffffffff810c62f0 T tick_resume_check_broadcast +ffffffff810c6320 T tick_resume_broadcast +ffffffff810c63a0 T tick_get_broadcast_oneshot_mask +ffffffff810c63b0 T tick_check_broadcast_expired +ffffffff810c63d0 T tick_check_oneshot_broadcast_this_cpu +ffffffff810c6410 T __tick_broadcast_oneshot_control +ffffffff810c65d0 T tick_broadcast_switch_to_oneshot +ffffffff810c6610 T hotplug_cpu__broadcast_tick_pull +ffffffff810c6670 T tick_shutdown_broadcast_oneshot +ffffffff810c66b0 T tick_broadcast_oneshot_active +ffffffff810c66c0 T tick_broadcast_oneshot_available +ffffffff810c66e0 t bc_handler +ffffffff810c6720 t bc_shutdown +ffffffff810c6730 t bc_set_next +ffffffff810c67b0 T tick_setup_hrtimer_broadcast +ffffffff810c67e0 T tick_program_event +ffffffff810c6850 T tick_resume_oneshot +ffffffff810c6880 T tick_setup_oneshot +ffffffff810c68b0 T tick_switch_to_oneshot +ffffffff810c6960 T tick_oneshot_mode_active +ffffffff810c6980 T tick_init_highres +ffffffff810c6990 t tick_init_jiffy_update +ffffffff810c69e0 t update_ts_time_stats +ffffffff810c6a60 t __tick_nohz_idle_enter +ffffffff810c6e30 t tick_do_update_jiffies64.part.2 +ffffffff810c6ee0 t tick_sched_do_timer +ffffffff810c6f20 t tick_sched_handle.isra.5 +ffffffff810c6f60 t tick_sched_timer +ffffffff810c6fd0 t tick_nohz_handler +ffffffff810c7060 T tick_get_tick_sched +ffffffff810c7080 T tick_nohz_tick_stopped +ffffffff810c7090 T get_cpu_idle_time_us +ffffffff810c7150 T get_cpu_iowait_time_us +ffffffff810c7210 T tick_nohz_idle_enter +ffffffff810c7240 T tick_nohz_irq_exit +ffffffff810c7260 T tick_nohz_get_sleep_length +ffffffff810c7280 T tick_nohz_get_idle_calls_cpu +ffffffff810c72a0 T tick_nohz_get_idle_calls +ffffffff810c72c0 T tick_nohz_idle_exit +ffffffff810c7400 T tick_irq_enter +ffffffff810c74b0 T tick_setup_sched_timer +ffffffff810c7590 T tick_cancel_sched_timer +ffffffff810c75e0 T tick_clock_notify +ffffffff810c7620 T tick_oneshot_notify +ffffffff810c7640 T tick_check_oneshot_change +ffffffff810c7730 t hash_futex +ffffffff810c77f0 t futex_top_waiter +ffffffff810c7840 t cmpxchg_futex_value_locked +ffffffff810c7890 t get_futex_value_locked +ffffffff810c78d0 t get_pi_state +ffffffff810c7900 t attach_to_pi_state +ffffffff810c79d0 t fault_in_user_writeable +ffffffff810c7a30 t __unqueue_futex +ffffffff810c7a60 t mark_wake_futex +ffffffff810c7a90 t futex_wait_queue_me +ffffffff810c7bb0 t attach_to_pi_owner +ffffffff810c7d00 t futex_lock_pi_atomic +ffffffff810c7e30 t refill_pi_state_cache.part.0 +ffffffff810c7e90 t put_pi_state +ffffffff810c7f50 t drop_futex_key_refs.isra.2 +ffffffff810c7f80 t get_futex_key_refs.isra.3 +ffffffff810c7fb0 t get_futex_key +ffffffff810c82a0 t futex_wait_setup +ffffffff810c83a0 t futex_wait +ffffffff810c85a0 t futex_wait_restart +ffffffff810c85e0 t futex_wake +ffffffff810c8730 t futex_requeue +ffffffff810c8fd0 t unqueue_me_pi +ffffffff810c9000 t fixup_pi_state_owner.isra.5 +ffffffff810c9220 t fixup_owner +ffffffff810c9290 t futex_lock_pi +ffffffff810c9700 t futex_wait_requeue_pi.constprop.7 +ffffffff810c9c10 T exit_pi_state_list +ffffffff810c9dc0 T SyS_set_robust_list +ffffffff810c9dc0 T sys_set_robust_list +ffffffff810c9e00 T SyS_get_robust_list +ffffffff810c9e00 T sys_get_robust_list +ffffffff810c9ec0 T handle_futex_death +ffffffff810c9f70 T exit_robust_list +ffffffff810ca080 T do_futex +ffffffff810cab00 T SyS_futex +ffffffff810cab00 T sys_futex +ffffffff810cac50 t do_nothing +ffffffff810cac60 t flush_smp_call_function_queue +ffffffff810cad20 t smp_call_on_cpu_callback +ffffffff810cad70 t generic_exec_single +ffffffff810cae00 T smpcfd_prepare_cpu +ffffffff810cae40 T smpcfd_dead_cpu +ffffffff810cae60 T smpcfd_dying_cpu +ffffffff810cae70 T generic_smp_call_function_single_interrupt +ffffffff810cae80 T smp_call_function_single +ffffffff810caf60 T smp_call_function_single_async +ffffffff810cafa0 T smp_call_function_any +ffffffff810cb070 T smp_call_function_many +ffffffff810cb280 T smp_call_function +ffffffff810cb2d0 T on_each_cpu +ffffffff810cb320 T on_each_cpu_mask +ffffffff810cb380 T on_each_cpu_cond +ffffffff810cb420 T kick_all_cpus_sync +ffffffff810cb440 T wake_up_all_idle_cpus +ffffffff810cb4a0 T smp_call_on_cpu +ffffffff810cb560 t close_work +ffffffff810cb5a0 t check_free_space +ffffffff810cb6b0 t acct_put +ffffffff810cb6d0 t do_acct_process +ffffffff810cbb50 t acct_pin_kill +ffffffff810cbbc0 T SyS_acct +ffffffff810cbbc0 T sys_acct +ffffffff810cbeb0 T acct_exit_ns +ffffffff810cbed0 T acct_collect +ffffffff810cc060 T acct_process +ffffffff810cc150 t cgroup_control +ffffffff810cc1a0 t cgroup_file_open +ffffffff810cc1c0 t cgroup_file_release +ffffffff810cc1e0 t cgroup_seqfile_start +ffffffff810cc200 t cgroup_seqfile_next +ffffffff810cc220 t cgroup_seqfile_stop +ffffffff810cc240 t online_css +ffffffff810cc290 t features_show +ffffffff810cc2b0 t cgroup_exit_cftypes +ffffffff810cc300 t free_cgrp_cset_links +ffffffff810cc370 t css_killed_work_fn +ffffffff810cc450 t css_free_rcu_fn +ffffffff810cc490 t css_release +ffffffff810cc4e0 t show_delegatable_files +ffffffff810cc580 t delegate_show +ffffffff810cc600 t cgroup_file_name +ffffffff810cc670 t cgroup_kn_set_ugid +ffffffff810cc6e0 t cgroup_addrm_files +ffffffff810cc9a0 t css_clear_dir +ffffffff810cca00 t kill_css +ffffffff810cca60 t css_populate_dir +ffffffff810ccba0 t cgroup_idr_remove +ffffffff810ccbd0 t cgroup_idr_replace +ffffffff810ccc10 t css_release_work_fn +ffffffff810ccd30 t cgroup_show_options +ffffffff810ccd50 t parse_cgroup_root_flags +ffffffff810ccdc0 t cgroup_print_ss_mask +ffffffff810cce60 t cgroup_procs_write_permission +ffffffff810ccf90 t allocate_cgrp_cset_links +ffffffff810cd000 t cgroup_procs_show +ffffffff810cd030 T cgroup_show_path +ffffffff810cd150 t init_cgroup_housekeeping +ffffffff810cd250 t cgroup_kill_sb +ffffffff810cd2e0 t cgroup_init_cftypes +ffffffff810cd380 t cgroup_file_write +ffffffff810cd4a0 t apply_cgroup_root_flags +ffffffff810cd4e0 t cgroup_remount +ffffffff810cd510 t cgroup_migrate_add_task.part.1 +ffffffff810cd5e0 t cgroup_get_live.part.2 +ffffffff810cd610 t init_and_link_css +ffffffff810cd730 t cset_cgroup_from_root +ffffffff810cd7a0 t css_killed_ref_fn +ffffffff810cd800 t link_css_set +ffffffff810cd8a0 t css_visible.isra.7 +ffffffff810cd920 t cgroup_can_be_thread_root +ffffffff810cd960 t cgroup_is_thread_root.part.9 +ffffffff810cd980 t cgroup_is_valid_domain.part.10 +ffffffff810cd9d0 t cgroup_migrate_vet_dst.part.14 +ffffffff810cda30 t cgroup_migrate_add_src.part.15 +ffffffff810cdaa0 t css_next_descendant_post.part.19 +ffffffff810cdad0 t cgroup_idr_alloc.constprop.23 +ffffffff810cdb40 T cgroup_ssid_enabled +ffffffff810cdb60 T cgroup_on_dfl +ffffffff810cdb70 T cgroup_is_threaded +ffffffff810cdb80 T cgroup_is_thread_root +ffffffff810cdbb0 T cgroup_get_e_css +ffffffff810cdcc0 T of_css +ffffffff810cdcf0 t cpu_stat_show +ffffffff810cde30 t cgroup_stat_show +ffffffff810cde70 t cgroup_events_show +ffffffff810cdeb0 t cgroup_seqfile_show +ffffffff810cdf40 t cgroup_max_depth_show +ffffffff810cdf90 t cgroup_max_descendants_show +ffffffff810cdfe0 t cgroup_subtree_control_show +ffffffff810ce010 t cgroup_controllers_show +ffffffff810ce040 t cgroup_type_show +ffffffff810ce0c0 T put_css_set_locked +ffffffff810ce320 t find_css_set +ffffffff810ce860 t css_task_iter_advance_css_set +ffffffff810ce9f0 t css_task_iter_advance +ffffffff810cea50 T cgroup_root_from_kf +ffffffff810cea60 T cgroup_free_root +ffffffff810cea80 T task_cgroup_from_root +ffffffff810cea90 T cgroup_kn_unlock +ffffffff810ceb10 T init_cgroup_root +ffffffff810cebc0 T cgroup_do_mount +ffffffff810cecb0 T cgroup_path_ns_locked +ffffffff810cecf0 T cgroup_path_ns +ffffffff810ced50 T task_cgroup_path +ffffffff810cee00 T cgroup_taskset_next +ffffffff810ceea0 T cgroup_taskset_first +ffffffff810ceec0 T cgroup_migrate_vet_dst +ffffffff810ceee0 T cgroup_migrate_finish +ffffffff810ceff0 T cgroup_migrate_add_src +ffffffff810cf000 T cgroup_migrate_prepare_dst +ffffffff810cf1f0 T cgroup_procs_write_start +ffffffff810cf2a0 T cgroup_procs_write_finish +ffffffff810cf2f0 T cgroup_file_notify +ffffffff810cf330 t cgroup_update_populated +ffffffff810cf3d0 t css_set_move_task +ffffffff810cf580 t cgroup_migrate_execute +ffffffff810cf8c0 T cgroup_migrate +ffffffff810cf930 T cgroup_attach_task +ffffffff810cfa90 t cgroup_mount +ffffffff810cfdb0 T css_next_child +ffffffff810cfe20 T css_next_descendant_pre +ffffffff810cfe80 t cgroup_propagate_control +ffffffff810cffb0 t cgroup_apply_control_enable +ffffffff810d02a0 t cgroup_save_control +ffffffff810d02f0 t cgroup_update_dfl_csses +ffffffff810d04e0 t cgroup_apply_control +ffffffff810d0500 t cgroup_apply_cftypes +ffffffff810d05c0 t cgroup_rm_cftypes_locked +ffffffff810d0610 T cgroup_rm_cftypes +ffffffff810d0640 t cgroup_add_cftypes +ffffffff810d06e0 T cgroup_add_dfl_cftypes +ffffffff810d0710 T cgroup_add_legacy_cftypes +ffffffff810d0740 T css_rightmost_descendant +ffffffff810d0780 T css_next_descendant_post +ffffffff810d07d0 t cgroup_restore_control +ffffffff810d0820 t cgroup_apply_control_disable +ffffffff810d0930 T rebind_subsystems +ffffffff810d0cc0 T cgroup_setup_root +ffffffff810d0f20 T cgroup_lock_and_drain_offline +ffffffff810d1090 T cgroup_kn_lock_live +ffffffff810d1160 t cgroup_max_depth_write +ffffffff810d11f0 t cgroup_max_descendants_write +ffffffff810d1280 t cgroup_subtree_control_write +ffffffff810d1660 t cgroup_threads_write +ffffffff810d1790 t cgroup_procs_write +ffffffff810d1890 t cgroup_type_write +ffffffff810d19f0 t css_free_work_fn +ffffffff810d1d00 T css_has_online_children +ffffffff810d1d60 t cgroup_destroy_locked +ffffffff810d1e70 T cgroup_mkdir +ffffffff810d2230 T cgroup_rmdir +ffffffff810d2260 T css_task_iter_start +ffffffff810d2300 T css_task_iter_next +ffffffff810d2370 t cgroup_procs_next +ffffffff810d2380 T css_task_iter_end +ffffffff810d2440 t __cgroup_procs_start.isra.20 +ffffffff810d2510 t cgroup_threads_start +ffffffff810d2520 t cgroup_procs_start +ffffffff810d2570 t cgroup_procs_release +ffffffff810d25a0 T cgroup_path_from_kernfs_id +ffffffff810d25f0 T proc_cgroup_show +ffffffff810d28a0 T cgroup_fork +ffffffff810d28d0 T cgroup_can_fork +ffffffff810d2980 T cgroup_cancel_fork +ffffffff810d29c0 T cgroup_post_fork +ffffffff810d2a90 T cgroup_exit +ffffffff810d2b50 T cgroup_free +ffffffff810d2c00 T css_tryget_online_from_dir +ffffffff810d2d10 T css_from_id +ffffffff810d2d30 T cgroup_get_from_path +ffffffff810d2db0 T cgroup_get_from_fd +ffffffff810d2e50 T cgroup_sk_alloc +ffffffff810d2f50 T cgroup_sk_free +ffffffff810d2fa0 T cgroup_bpf_attach +ffffffff810d2ff0 T cgroup_bpf_detach +ffffffff810d3040 T cgroup_bpf_query +ffffffff810d3080 t cgroup_stat_flush_locked +ffffffff810d3250 t cgroup_cpu_stat_account_end.isra.0 +ffffffff810d3340 T cgroup_stat_flush +ffffffff810d3370 T __cgroup_account_cputime +ffffffff810d3390 T __cgroup_account_cputime_field +ffffffff810d33d0 T cgroup_stat_show_cputime +ffffffff810d34a0 T cgroup_stat_init +ffffffff810d3530 T cgroup_stat_exit +ffffffff810d35a0 t cgroupns_get +ffffffff810d35f0 t cgroupns_owner +ffffffff810d3600 T free_cgroup_ns +ffffffff810d3680 t cgroupns_put +ffffffff810d36a0 t cgroupns_install +ffffffff810d3730 T copy_cgroup_ns +ffffffff810d38c0 t cmppid +ffffffff810d38d0 t cgroup_pidlist_next +ffffffff810d3900 t cgroup_read_notify_on_release +ffffffff810d3910 t cgroup_clone_children_read +ffffffff810d3930 t cgroup_release_agent_write +ffffffff810d39b0 t cgroup_sane_behavior_show +ffffffff810d39c0 t cgroup_pidlist_stop +ffffffff810d3a10 t cgroup_release_agent_show +ffffffff810d3a70 t cgroup_pidlist_find +ffffffff810d3ad0 t cgroup_pidlist_destroy_work_fn +ffffffff810d3b50 t cgroup_pidlist_show +ffffffff810d3b70 t cgroupstats_open +ffffffff810d3b90 t proc_cgroupstats_show +ffffffff810d3c20 t cgroup1_rename +ffffffff810d3cb0 t cgroup1_show_options +ffffffff810d3ea0 t parse_cgroupfs_options +ffffffff810d4240 t cgroup1_remount +ffffffff810d4410 t cgroup_write_notify_on_release +ffffffff810d4430 t cgroup_clone_children_write +ffffffff810d4450 t __cgroup1_procs_write.constprop.3 +ffffffff810d4550 t cgroup1_procs_write +ffffffff810d4560 t cgroup1_tasks_write +ffffffff810d4570 T cgroup1_ssid_disabled +ffffffff810d4590 T cgroup_attach_task_all +ffffffff810d4660 T cgroup_transfer_tasks +ffffffff810d4870 T cgroup1_pidlist_destroy_all +ffffffff810d4900 T cgroup_task_count +ffffffff810d4960 t pidlist_array_load +ffffffff810d4b90 t cgroup_pidlist_start +ffffffff810d4ca0 T cgroupstats_build +ffffffff810d4de0 T cgroup1_check_for_release +ffffffff810d4e30 T cgroup1_release_agent +ffffffff810d4f40 T cgroup1_mount +ffffffff810d5410 t pids_cancel_fork +ffffffff810d5450 t pids_free +ffffffff810d5490 t pids_current_read +ffffffff810d54a0 t pids_events_show +ffffffff810d54d0 t pids_max_write +ffffffff810d5550 t pids_cancel_attach +ffffffff810d55e0 t pids_can_attach +ffffffff810d5670 t pids_css_free +ffffffff810d5680 t pids_css_alloc +ffffffff810d56d0 t pids_max_show +ffffffff810d5720 t pids_can_fork +ffffffff810d5820 t utsns_get +ffffffff810d5880 t utsns_owner +ffffffff810d5890 T free_uts_ns +ffffffff810d58e0 t utsns_put +ffffffff810d5900 t utsns_install +ffffffff810d5980 T copy_utsname +ffffffff810d5b10 t cmp_map_id +ffffffff810d5b50 t uid_m_start +ffffffff810d5b80 t gid_m_start +ffffffff810d5bb0 t projid_m_start +ffffffff810d5bf0 t m_next +ffffffff810d5c10 t m_stop +ffffffff810d5c20 t cmp_extents_forward +ffffffff810d5c40 t cmp_extents_reverse +ffffffff810d5c60 T ns_get_owner +ffffffff810d5cd0 t userns_owner +ffffffff810d5ce0 t free_user_ns +ffffffff810d5da0 t map_id_range_down +ffffffff810d5e40 t map_id_up +ffffffff810d5f00 t uid_m_show +ffffffff810d5f60 t gid_m_show +ffffffff810d5fc0 t projid_m_show +ffffffff810d6020 t map_write +ffffffff810d66a0 t userns_get +ffffffff810d66e0 T create_user_ns +ffffffff810d6920 T unshare_userns +ffffffff810d6980 T __put_user_ns +ffffffff810d69a0 t userns_put +ffffffff810d69c0 t userns_install +ffffffff810d6ad0 T make_kuid +ffffffff810d6ae0 T from_kuid +ffffffff810d6af0 T from_kuid_munged +ffffffff810d6b00 T make_kgid +ffffffff810d6b10 T from_kgid +ffffffff810d6b20 T from_kgid_munged +ffffffff810d6b40 T make_kprojid +ffffffff810d6b60 T from_kprojid +ffffffff810d6b70 T from_kprojid_munged +ffffffff810d6b90 T proc_uid_map_write +ffffffff810d6bf0 T proc_gid_map_write +ffffffff810d6c50 T proc_projid_map_write +ffffffff810d6cb0 T proc_setgroups_show +ffffffff810d6ce0 T proc_setgroups_write +ffffffff810d6df0 T userns_may_setgroups +ffffffff810d6e30 T in_userns +ffffffff810d6e60 T current_in_userns +ffffffff810d6ea0 t pidns_owner +ffffffff810d6eb0 t pidns_get_parent +ffffffff810d6f20 t proc_cleanup_work +ffffffff810d6f30 t delayed_free_pidns +ffffffff810d6f80 t pidns_get +ffffffff810d6fd0 t pid_ns_ctl_handler +ffffffff810d70f0 T copy_pid_ns +ffffffff810d73f0 T put_pid_ns +ffffffff810d7450 t pidns_install +ffffffff810d7510 t pidns_put +ffffffff810d7520 t pidns_for_children_get +ffffffff810d75c0 T zap_pid_ns_processes +ffffffff810d7750 T reboot_pid_ns +ffffffff810d77d0 t cpu_stop_should_run +ffffffff810d7810 t cpu_stop_park +ffffffff810d7830 t cpu_stop_init_done +ffffffff810d7870 t cpu_stop_signal_done +ffffffff810d7880 t cpu_stop_queue_work +ffffffff810d7900 t cpu_stopper_thread +ffffffff810d79a0 t multi_cpu_stop +ffffffff810d7a40 t queue_stop_cpus_work +ffffffff810d7af0 t __stop_cpus +ffffffff810d7b50 t cpu_stop_create +ffffffff810d7b70 T stop_one_cpu +ffffffff810d7bf0 T stop_two_cpus +ffffffff810d7e20 T stop_one_cpu_nowait +ffffffff810d7e50 T stop_cpus +ffffffff810d7e90 T try_stop_cpus +ffffffff810d7ee0 T stop_machine_park +ffffffff810d7f00 T stop_machine_unpark +ffffffff810d7f20 T stop_machine_cpuslocked +ffffffff810d7fc0 T stop_machine +ffffffff810d7ff0 T stop_machine_from_inactive_cpu +ffffffff810d80e0 t seccomp_check_filter +ffffffff810d8160 t __get_seccomp_filter +ffffffff810d8170 t __put_seccomp_filter +ffffffff810d81b0 t seccomp_send_sigsys +ffffffff810d8230 t __seccomp_filter +ffffffff810d84f0 t get_nth_filter.part.0 +ffffffff810d8590 t seccomp_actions_logged_handler +ffffffff810d8840 T get_seccomp_filter +ffffffff810d8860 T put_seccomp_filter +ffffffff810d8870 t do_seccomp +ffffffff810d8f00 T __secure_computing +ffffffff810d8f70 T prctl_get_seccomp +ffffffff810d8f90 T SyS_seccomp +ffffffff810d8f90 T sys_seccomp +ffffffff810d8fa0 T prctl_set_seccomp +ffffffff810d8fe0 T seccomp_get_filter +ffffffff810d90d0 T seccomp_get_metadata +ffffffff810d9210 t proc_do_uts_string +ffffffff810d9330 T uts_proc_notify +ffffffff810d9350 t delayacct_end +ffffffff810d93a0 T __delayacct_tsk_init +ffffffff810d93d0 T delayacct_init +ffffffff810d9420 T __delayacct_blkio_start +ffffffff810d9440 T __delayacct_blkio_end +ffffffff810d9470 T __delayacct_add_tsk +ffffffff810d95e0 T __delayacct_blkio_ticks +ffffffff810d9630 T __delayacct_freepages_start +ffffffff810d9650 T __delayacct_freepages_end +ffffffff810d9680 t send_reply +ffffffff810d96d0 t parse +ffffffff810d9760 t add_del_listener +ffffffff810d9980 t fill_stats +ffffffff810d9a20 t mk_reply +ffffffff810d9ae0 t prepare_reply +ffffffff810d9b80 t cgroupstats_user_cmd +ffffffff810d9c90 t taskstats_user_cmd +ffffffff810da050 T taskstats_exit +ffffffff810da3e0 T bacct_add_tsk +ffffffff810da5d0 W elf_core_extra_phdrs +ffffffff810da5e0 W elf_core_write_extra_phdrs +ffffffff810da5f0 W elf_core_write_extra_data +ffffffff810da600 W elf_core_extra_data_size +ffffffff810da610 t irq_work_run_list +ffffffff810da690 T irq_work_queue_on +ffffffff810da720 T irq_work_queue +ffffffff810da7e0 T irq_work_needs_cpu +ffffffff810da840 T irq_work_run +ffffffff810da870 T irq_work_tick +ffffffff810da8b0 T irq_work_sync +ffffffff810da8c0 T __bpf_call_base +ffffffff810da8d0 t __bpf_prog_ret1 +ffffffff810da8e0 t bpf_prog_array_alloc.part.1 +ffffffff810da900 T bpf_internal_load_pointer_neg_helper +ffffffff810da970 T bpf_prog_alloc +ffffffff810daa10 T bpf_prog_realloc +ffffffff810dab10 T __bpf_prog_free +ffffffff810dab30 t bpf_prog_free_deferred +ffffffff810dabf0 T bpf_prog_calc_tag +ffffffff810dada0 T bpf_patch_insn_single +ffffffff810daef0 T bpf_opcode_in_insntable +ffffffff810daf00 T bpf_patch_call_args +ffffffff810daf40 T bpf_prog_array_compatible +ffffffff810daf90 T bpf_prog_array_alloc +ffffffff810dafb0 T bpf_prog_array_free +ffffffff810dafd0 T bpf_prog_array_length +ffffffff810db020 T bpf_prog_array_copy_to_user +ffffffff810db0e0 T bpf_prog_array_delete_safe +ffffffff810db110 T bpf_prog_array_copy +ffffffff810db250 T bpf_prog_array_copy_info +ffffffff810db2d0 T bpf_prog_free +ffffffff810db320 T bpf_user_rnd_init_once +ffffffff810db370 T bpf_user_rnd_u32 +ffffffff810db3a0 W bpf_get_trace_printk_proto +ffffffff810db3b0 W bpf_event_output +ffffffff810db3c0 W bpf_int_jit_compile +ffffffff810db3d0 T bpf_prog_select_runtime +ffffffff810db4c0 W bpf_jit_compile +ffffffff810db4f0 t ___bpf_prog_run +ffffffff810dc5f0 t __bpf_prog_run_args512 +ffffffff810dc640 t __bpf_prog_run_args480 +ffffffff810dc690 t __bpf_prog_run_args448 +ffffffff810dc6e0 t __bpf_prog_run_args416 +ffffffff810dc730 t __bpf_prog_run_args384 +ffffffff810dc780 t __bpf_prog_run_args352 +ffffffff810dc7d0 t __bpf_prog_run_args320 +ffffffff810dc820 t __bpf_prog_run_args288 +ffffffff810dc870 t __bpf_prog_run_args256 +ffffffff810dc8c0 t __bpf_prog_run_args224 +ffffffff810dc910 t __bpf_prog_run_args192 +ffffffff810dc960 t __bpf_prog_run_args160 +ffffffff810dc9b0 t __bpf_prog_run_args128 +ffffffff810dca00 t __bpf_prog_run_args96 +ffffffff810dca50 t __bpf_prog_run_args64 +ffffffff810dcaa0 t __bpf_prog_run_args32 +ffffffff810dcae0 t __bpf_prog_run512 +ffffffff810dcb10 t __bpf_prog_run480 +ffffffff810dcb40 t __bpf_prog_run448 +ffffffff810dcb70 t __bpf_prog_run416 +ffffffff810dcba0 t __bpf_prog_run384 +ffffffff810dcbd0 t __bpf_prog_run352 +ffffffff810dcc00 t __bpf_prog_run320 +ffffffff810dcc30 t __bpf_prog_run288 +ffffffff810dcc60 t __bpf_prog_run256 +ffffffff810dcc90 t __bpf_prog_run224 +ffffffff810dccc0 t __bpf_prog_run192 +ffffffff810dccf0 t __bpf_prog_run160 +ffffffff810dcd20 t __bpf_prog_run128 +ffffffff810dcd50 t __bpf_prog_run96 +ffffffff810dcd80 t __bpf_prog_run64 +ffffffff810dcdb0 t __bpf_prog_run32 +ffffffff810dcde0 t bpf_dummy_read +ffffffff810dcdf0 t bpf_map_free_deferred +ffffffff810dce20 t bpf_map_put_uref +ffffffff810dce40 t bpf_map_show_fdinfo +ffffffff810dced0 t bpf_prog_show_fdinfo +ffffffff810dcf40 t bpf_obj_name_cpy +ffffffff810dcfb0 t bpf_obj_get_next_id +ffffffff810dd060 t check_uarg_tail_zero +ffffffff810dd0d0 t bpf_prog_get_info_by_fd.isra.6 +ffffffff810dd430 t bpf_obj_get_info_by_fd +ffffffff810dd5e0 t bpf_prog_uncharge_memlock.isra.12 +ffffffff810dd600 t bpf_prog_free_id.part.13 +ffffffff810dd660 t __bpf_prog_put +ffffffff810dd6a0 t bpf_prog_release +ffffffff810dd6c0 t bpf_dummy_write +ffffffff810dd6d0 T bpf_map_area_alloc +ffffffff810dd710 T bpf_map_area_free +ffffffff810dd720 T bpf_map_init_from_attr +ffffffff810dd750 T bpf_map_precharge_memlock +ffffffff810dd7a0 T bpf_map_free_id +ffffffff810dd810 t __bpf_map_put +ffffffff810dd860 t free_used_maps.isra.9 +ffffffff810dd8a0 t __bpf_prog_put_rcu +ffffffff810dd8d0 t bpf_map_release +ffffffff810dd910 T bpf_map_put +ffffffff810dd920 T bpf_map_put_with_uref +ffffffff810dd940 T bpf_map_new_fd +ffffffff810dd960 T bpf_get_file_flag +ffffffff810dd990 T __bpf_map_get +ffffffff810dd9e0 T bpf_map_inc +ffffffff810dda10 T bpf_map_get_with_uref +ffffffff810dda90 T __bpf_prog_charge +ffffffff810ddae0 t bpf_prog_load +ffffffff810ddf60 T __bpf_prog_uncharge +ffffffff810ddf70 T bpf_prog_free_id +ffffffff810ddf90 T bpf_prog_put +ffffffff810ddfa0 T bpf_prog_new_fd +ffffffff810ddfc0 T bpf_prog_add +ffffffff810ddff0 t __bpf_prog_get +ffffffff810de080 t sockmap_get_from_fd +ffffffff810de190 T bpf_prog_sub +ffffffff810de1a0 T bpf_prog_inc +ffffffff810de1b0 T bpf_prog_inc_not_zero +ffffffff810de200 T bpf_prog_get_ok +ffffffff810de230 T bpf_prog_get +ffffffff810de240 T bpf_prog_get_type_dev +ffffffff810de260 T SyS_bpf +ffffffff810de260 T sys_bpf +ffffffff810df410 t __reg_deduce_bounds +ffffffff810df480 t cmp_subprogs +ffffffff810df490 t find_good_pkt_pointers +ffffffff810df5a0 T bpf_verifier_log_write +ffffffff810df5a0 t verbose +ffffffff810df680 t print_liveness +ffffffff810df6d0 t check_reg_sane_offset +ffffffff810df790 t __check_map_access +ffffffff810df7e0 t check_packet_access +ffffffff810df880 t find_subprog +ffffffff810df8d0 t mark_map_reg +ffffffff810df9a0 t mark_map_regs +ffffffff810dfa60 t realloc_func_state +ffffffff810dfb90 t print_verifier_state +ffffffff810dfef0 t check_map_access +ffffffff810e0040 t coerce_reg_to_size +ffffffff810e00d0 t __reg_bound_offset +ffffffff810e0110 t adjust_ptr_min_max_vals +ffffffff810e0780 t __reg_combine_min_max +ffffffff810e09d0 t check_ptr_alignment +ffffffff810e0b70 t mark_stack_slot_read.isra.2 +ffffffff810e0bf0 t check_stack_boundary +ffffffff810e0e50 t check_helper_mem_access +ffffffff810e0eb0 t push_insn +ffffffff810e0fd0 t mark_reg_read +ffffffff810e1100 t mark_reg_not_init +ffffffff810e1200 t mark_reg_unknown +ffffffff810e1300 t check_reg_arg +ffffffff810e13b0 t check_func_arg +ffffffff810e1740 t adjust_reg_min_max_vals +ffffffff810e20f0 t bpf_patch_insn_data +ffffffff810e2220 t convert_ctx_accesses +ffffffff810e24f0 t fixup_bpf_calls +ffffffff810e29c0 t free_func_state.part.18 +ffffffff810e29e0 t free_verifier_state +ffffffff810e2a30 t mark_reg_known_zero +ffffffff810e2b20 t init_reg_state +ffffffff810e2ba0 t check_mem_access +ffffffff810e36a0 t regsafe.part.22 +ffffffff810e38e0 t copy_verifier_state +ffffffff810e3a80 t pop_stack +ffffffff810e3b00 t reg_set_min_max.part.26 +ffffffff810e3de0 t do_check +ffffffff810e6dd0 T bpf_check +ffffffff810e8320 t bpf_get_inode +ffffffff810e83d0 t bpf_dentry_finalize +ffffffff810e8420 t bpf_mkobj_ops +ffffffff810e8470 t bpf_mkmap +ffffffff810e8480 t bpf_mkprog +ffffffff810e8490 t bpf_mkdir +ffffffff810e84f0 t bpf_symlink +ffffffff810e8570 t bpf_lookup +ffffffff810e85b0 t bpf_any_put +ffffffff810e85d0 t bpf_mount +ffffffff810e85e0 t bpf_show_options +ffffffff810e8610 t bpf_evict_inode +ffffffff810e8670 t bpf_fill_super +ffffffff810e8750 T bpf_obj_pin_user +ffffffff810e8880 T bpf_obj_get_user +ffffffff810e8a10 T bpf_prog_get_type_path +ffffffff810e8ad0 T bpf_map_lookup_elem +ffffffff810e8ae0 T bpf_map_update_elem +ffffffff810e8af0 T bpf_map_delete_elem +ffffffff810e8b00 T bpf_get_smp_processor_id +ffffffff810e8b10 T bpf_get_numa_node_id +ffffffff810e8b20 T bpf_get_current_pid_tgid +ffffffff810e8b50 T bpf_ktime_get_ns +ffffffff810e8b60 T bpf_get_current_uid_gid +ffffffff810e8bb0 T bpf_get_current_comm +ffffffff810e8bf0 T tnum_const +ffffffff810e8c00 T tnum_range +ffffffff810e8c40 T tnum_lshift +ffffffff810e8c60 T tnum_rshift +ffffffff810e8c80 T tnum_add +ffffffff810e8cb0 T tnum_sub +ffffffff810e8ce0 T tnum_and +ffffffff810e8d10 T tnum_or +ffffffff810e8d30 T tnum_xor +ffffffff810e8d50 T tnum_mul +ffffffff810e8dd0 T tnum_intersect +ffffffff810e8df0 T tnum_cast +ffffffff810e8e20 T tnum_is_aligned +ffffffff810e8e50 T tnum_in +ffffffff810e8e70 T tnum_strn +ffffffff810e8e90 T tnum_sbin +ffffffff810e8ef0 t htab_map_gen_lookup +ffffffff810e8f30 t htab_lru_map_gen_lookup +ffffffff810e8f90 t htab_lru_map_delete_node +ffffffff810e9020 t htab_of_map_gen_lookup +ffffffff810e9070 t lookup_nulls_elem_raw +ffffffff810e90e0 t __htab_map_lookup_elem +ffffffff810e9280 t htab_map_lookup_elem +ffffffff810e92b0 t htab_of_map_lookup_elem +ffffffff810e92e0 t htab_lru_map_lookup_elem +ffffffff810e9310 t htab_percpu_map_lookup_elem +ffffffff810e9340 t htab_lru_percpu_map_lookup_elem +ffffffff810e9370 t lookup_elem_raw +ffffffff810e93c0 t htab_map_get_next_key +ffffffff810e9640 t htab_free_elems +ffffffff810e96a0 t prealloc_destroy +ffffffff810e96d0 t htab_map_alloc +ffffffff810e9b10 t htab_map_alloc_check +ffffffff810e9be0 t fd_htab_map_alloc_check +ffffffff810e9c00 t htab_lru_map_delete_elem +ffffffff810e9e40 t htab_of_map_alloc +ffffffff810e9e90 t free_htab_elem +ffffffff810e9ef0 t htab_map_delete_elem +ffffffff810ea100 t htab_elem_free_rcu +ffffffff810ea150 t pcpu_copy_value +ffffffff810ea210 t alloc_htab_elem +ffffffff810ea460 t htab_map_update_elem +ffffffff810ea730 t __htab_lru_percpu_map_update_elem +ffffffff810eaab0 t htab_lru_percpu_map_update_elem +ffffffff810eaac0 t __htab_percpu_map_update_elem +ffffffff810ead70 t htab_percpu_map_update_elem +ffffffff810ead80 t htab_map_free +ffffffff810eae60 t htab_of_map_free +ffffffff810eaee0 t htab_lru_map_update_elem +ffffffff810eb250 T bpf_percpu_hash_copy +ffffffff810eb340 T bpf_percpu_hash_update +ffffffff810eb3a0 T bpf_fd_htab_map_lookup_elem +ffffffff810eb420 T bpf_fd_htab_map_update_elem +ffffffff810eb490 t array_map_alloc_check +ffffffff810eb4e0 t array_map_get_next_key +ffffffff810eb510 t array_map_delete_elem +ffffffff810eb520 t fd_array_map_alloc_check +ffffffff810eb540 t fd_array_map_lookup_elem +ffffffff810eb550 t fd_array_map_delete_elem +ffffffff810eb590 t prog_fd_array_sys_lookup_elem +ffffffff810eb5a0 t array_map_lookup_elem +ffffffff810eb5c0 t array_of_map_lookup_elem +ffffffff810eb5f0 t percpu_array_map_lookup_elem +ffffffff810eb620 t perf_event_fd_array_release +ffffffff810eb690 t array_map_gen_lookup +ffffffff810eb740 t array_of_map_gen_lookup +ffffffff810eb800 t array_map_update_elem +ffffffff810eb870 t array_map_free +ffffffff810eb8c0 t array_map_alloc +ffffffff810ebad0 t prog_fd_array_put_ptr +ffffffff810ebae0 t prog_fd_array_get_ptr +ffffffff810ebb20 t perf_event_fd_array_put_ptr +ffffffff810ebb30 t __bpf_event_entry_free +ffffffff810ebb50 t perf_event_fd_array_get_ptr +ffffffff810ebbe0 t cgroup_fd_array_get_ptr +ffffffff810ebbf0 t array_of_map_alloc +ffffffff810ebc40 t cgroup_fd_array_put_ptr +ffffffff810ebc90 t fd_array_map_free +ffffffff810ebcd0 t cgroup_fd_array_free +ffffffff810ebd20 t array_of_map_free +ffffffff810ebd80 T bpf_percpu_array_copy +ffffffff810ebe40 T bpf_percpu_array_update +ffffffff810ebf20 T bpf_fd_array_map_lookup_elem +ffffffff810ebfa0 T bpf_fd_array_map_update_elem +ffffffff810ec000 T bpf_fd_array_map_clear +ffffffff810ec050 T pcpu_freelist_init +ffffffff810ec0c0 T pcpu_freelist_destroy +ffffffff810ec0d0 T pcpu_freelist_push +ffffffff810ec110 T pcpu_freelist_populate +ffffffff810ec200 T pcpu_freelist_pop +ffffffff810ec2b0 t __bpf_lru_node_move +ffffffff810ec330 t __bpf_lru_list_rotate_active.isra.3 +ffffffff810ec3a0 t __bpf_lru_list_rotate_inactive.isra.4 +ffffffff810ec420 t __bpf_lru_list_shrink +ffffffff810ec620 T bpf_lru_pop_free +ffffffff810ecbd0 T bpf_lru_push_free +ffffffff810eccc0 T bpf_lru_populate +ffffffff810ecde0 T bpf_lru_init +ffffffff810ecf70 T bpf_lru_destroy +ffffffff810ecf90 t trie_lookup_elem +ffffffff810ed0d0 t trie_delete_elem +ffffffff810ed360 t trie_get_next_key +ffffffff810ed5e0 t trie_free +ffffffff810ed640 t lpm_trie_node_alloc.isra.1 +ffffffff810ed6c0 t trie_update_elem +ffffffff810eda10 t trie_alloc +ffffffff810edb20 T bpf_map_meta_alloc +ffffffff810edc00 T bpf_map_meta_free +ffffffff810edc10 T bpf_map_meta_equal +ffffffff810edc40 T bpf_map_fd_get_ptr +ffffffff810edce0 T bpf_map_fd_put_ptr +ffffffff810edcf0 T bpf_map_fd_sys_lookup_elem +ffffffff810edd00 t __func_get_name.constprop.2 +ffffffff810edd70 T func_id_name +ffffffff810edda0 T print_bpf_insn +ffffffff810ee320 t dev_map_get_next_key +ffffffff810ee350 t dev_map_lookup_elem +ffffffff810ee390 t dev_map_delete_elem +ffffffff810ee3d0 t __dev_map_entry_free +ffffffff810ee470 t dev_map_update_elem +ffffffff810ee540 t dev_map_free +ffffffff810ee650 t dev_map_notification +ffffffff810ee710 t dev_map_alloc +ffffffff810ee8a0 T __dev_map_insert_ctx +ffffffff810ee8c0 T __dev_map_flush +ffffffff810ee940 T __dev_map_lookup_elem +ffffffff810ee970 t cpu_map_lookup_elem +ffffffff810ee9a0 t cpu_map_get_next_key +ffffffff810ee9d0 t cpu_map_kthread_stop +ffffffff810ee9f0 t __cpu_map_entry_replace.isra.1 +ffffffff810eea50 t cpu_map_delete_elem +ffffffff810eea70 t cpu_map_update_elem +ffffffff810eec50 t cpu_map_free +ffffffff810eed10 t bq_flush_to_queue.isra.2 +ffffffff810eedd0 t put_cpu_map_entry +ffffffff810eeed0 t __cpu_map_entry_free +ffffffff810eef30 t cpu_map_kthread_run +ffffffff810ef1c0 t cpu_map_alloc +ffffffff810ef310 T __cpu_map_lookup_elem +ffffffff810ef330 T cpu_map_enqueue +ffffffff810ef3c0 T __cpu_map_insert_ctx +ffffffff810ef3e0 T __cpu_map_flush +ffffffff810ef470 t bpf_prog_warn_on_exec +ffffffff810ef480 t bpf_map_offload_ndo +ffffffff810ef4e0 t bpf_prog_offload_info_fill_ns +ffffffff810ef560 t bpf_map_offload_info_fill_ns +ffffffff810ef5e0 t __bpf_map_offload_destroy +ffffffff810ef640 t __bpf_offload_ndo.isra.0 +ffffffff810ef690 t __bpf_prog_offload_destroy +ffffffff810ef720 t bpf_offload_notification +ffffffff810ef800 T bpf_prog_offload_init +ffffffff810ef940 T bpf_prog_offload_verifier_prep +ffffffff810ef9d0 T bpf_prog_offload_verify_insn +ffffffff810efa30 T bpf_prog_offload_destroy +ffffffff810efa70 T bpf_prog_offload_compile +ffffffff810efad0 T bpf_prog_offload_info_fill +ffffffff810efbe0 T bpf_map_offload_map_alloc +ffffffff810efd20 T bpf_map_offload_map_free +ffffffff810efd70 T bpf_map_offload_lookup_elem +ffffffff810efdd0 T bpf_map_offload_update_elem +ffffffff810efe40 T bpf_map_offload_delete_elem +ffffffff810efe90 T bpf_map_offload_get_next_key +ffffffff810efef0 T bpf_map_offload_info_fill +ffffffff810eff80 T bpf_offload_dev_match +ffffffff810f0000 t stack_map_lookup_elem +ffffffff810f0010 t stack_map_get_next_key +ffffffff810f0090 t stack_map_update_elem +ffffffff810f00a0 T bpf_get_stackid +ffffffff810f0320 t stack_map_delete_elem +ffffffff810f0360 t stack_map_free +ffffffff810f0390 t stack_map_alloc +ffffffff810f0580 T bpf_stackmap_copy +ffffffff810f0610 t compute_effective_progs +ffffffff810f0710 t cgroup_dev_is_valid_access +ffffffff810f0760 t cgroup_dev_func_proto +ffffffff810f07b0 T cgroup_bpf_put +ffffffff810f0870 T cgroup_bpf_inherit +ffffffff810f0930 T __cgroup_bpf_attach +ffffffff810f0cb0 T __cgroup_bpf_detach +ffffffff810f0ed0 T __cgroup_bpf_query +ffffffff810f1060 T __cgroup_bpf_run_filter_skb +ffffffff810f11e0 T __cgroup_bpf_run_filter_sk +ffffffff810f1250 T __cgroup_bpf_run_filter_sock_ops +ffffffff810f12c0 T __cgroup_bpf_check_dev_permission +ffffffff810f1360 t ktime_get_real_ns +ffffffff810f1370 t ktime_get_boot_ns +ffffffff810f1380 t ktime_get_tai_ns +ffffffff810f1390 t local_clock +ffffffff810f13a0 t rb_free_rcu +ffffffff810f13b0 t remote_function +ffffffff810f1400 t event_function +ffffffff810f14c0 t perf_event_update_time +ffffffff810f1530 t perf_unpin_context +ffffffff810f1560 t list_add_event +ffffffff810f15f0 t __perf_event_stop +ffffffff810f1660 t exclusive_event_installable +ffffffff810f16c0 t perf_mmap_open +ffffffff810f1720 t perf_iterate_ctx +ffffffff810f1800 t __perf_event_output_stop +ffffffff810f1860 t perf_swevent_del +ffffffff810f1890 t perf_swevent_start +ffffffff810f18a0 t perf_swevent_stop +ffffffff810f18b0 t perf_pmu_nop_txn +ffffffff810f18c0 t perf_pmu_nop_int +ffffffff810f18d0 t calc_timer_values +ffffffff810f1970 t cpu_clock_event_read +ffffffff810f19a0 t task_clock_event_read +ffffffff810f19e0 t __perf_event_read +ffffffff810f1b70 t get_ctx +ffffffff810f1ba0 t perf_pmu_sched_task +ffffffff810f1cc0 t perf_poll +ffffffff810f1d70 t perf_event_for_each_child +ffffffff810f1dd0 t perf_lock_task_context +ffffffff810f1e90 t perf_pin_task_context +ffffffff810f1ed0 t perf_iterate_sb +ffffffff810f2060 t perf_event_task +ffffffff810f20f0 t __perf_pmu_output_stop +ffffffff810f2160 t free_ctx +ffffffff810f2180 t pmu_dev_release +ffffffff810f2190 t perf_event_stop +ffffffff810f2200 t perf_event_addr_filters_exec +ffffffff810f22b0 t task_function_call +ffffffff810f2300 t event_function_call +ffffffff810f2410 t _perf_event_disable +ffffffff810f2460 t _perf_event_enable +ffffffff810f24c0 t _perf_event_refresh +ffffffff810f24f0 t perf_event_read +ffffffff810f2690 t __perf_event_read_value +ffffffff810f2770 t __perf_read_group_add +ffffffff810f2900 t __perf_event__output_id_sample +ffffffff810f29b0 t perf_event_pid_type +ffffffff810f29f0 t __perf_event_header__init_id +ffffffff810f2ac0 t perf_log_throttle +ffffffff810f2bd0 t __perf_event_period +ffffffff810f2cb0 t perf_log_itrace_start +ffffffff810f2dd0 t perf_event_switch_output +ffffffff810f2f30 t perf_event_task_output +ffffffff810f3090 t perf_event_namespaces_output +ffffffff810f31a0 t perf_mux_hrtimer_restart +ffffffff810f3250 t perf_event_exit_cpu_context +ffffffff810f32f0 t free_event_rcu +ffffffff810f3310 t perf_sched_delayed +ffffffff810f3340 t free_filters_list +ffffffff810f33b0 t perf_addr_filters_splice +ffffffff810f3480 t perf_output_read +ffffffff810f3830 t perf_event_read_event +ffffffff810f3940 t perf_event_comm_output +ffffffff810f3ae0 t perf_event_mmap_output +ffffffff810f3d60 t perf_output_sample_regs +ffffffff810f3dd0 t perf_fill_ns_link_info +ffffffff810f3e30 t nr_addr_filters_show +ffffffff810f3e60 t perf_event_mux_interval_ms_show +ffffffff810f3e90 t type_show +ffffffff810f3ec0 t perf_reboot +ffffffff810f3f00 t pmu_dev_alloc +ffffffff810f3fd0 t perf_event_mux_interval_ms_store +ffffffff810f40f0 t alloc_perf_context +ffffffff810f4190 t perf_fasync +ffffffff810f41f0 t perf_mmap_fault +ffffffff810f42a0 t swevent_hlist_put_cpu +ffffffff810f42f0 t sw_perf_event_destroy +ffffffff810f4340 t perf_swevent_init +ffffffff810f44b0 t __perf_event_header_size.isra.4 +ffffffff810f4500 t perf_event__header_size +ffffffff810f4570 t perf_group_detach +ffffffff810f4680 t perf_remove_from_context +ffffffff810f46e0 t perf_group_attach +ffffffff810f4750 t perf_install_in_context +ffffffff810f4840 t perf_event__id_header_size.isra.5 +ffffffff810f4890 t perf_adjust_period +ffffffff810f4a50 t rotate_ctx.part.12 +ffffffff810f4a90 t exclusive_event_destroy.isra.17 +ffffffff810f4ab0 t __perf_addr_filters_adjust +ffffffff810f4bc0 t perf_exclude_event +ffffffff810f4c00 t perf_swevent_start_hrtimer.part.29 +ffffffff810f4c50 t cpu_clock_event_start +ffffffff810f4c80 t task_clock_event_start +ffffffff810f4cb0 t perf_duration_warn +ffffffff810f4cf0 t perf_event_set_state.part.33 +ffffffff810f4d40 t list_del_event +ffffffff810f4de0 t put_ctx +ffffffff810f4e40 t perf_event_ctx_lock_nested.isra.37 +ffffffff810f4ec0 t perf_try_init_event +ffffffff810f4f40 t perf_swevent_init_hrtimer +ffffffff810f4fc0 t task_clock_event_init +ffffffff810f4ff0 t cpu_clock_event_init +ffffffff810f5020 t perf_read +ffffffff810f5240 t find_get_context.isra.46 +ffffffff810f5480 t perf_swevent_cancel_hrtimer.part.47 +ffffffff810f54b0 t task_clock_event_stop +ffffffff810f54f0 t task_clock_event_del +ffffffff810f5530 t cpu_clock_event_stop +ffffffff810f5570 t cpu_clock_event_del +ffffffff810f5580 t perf_pmu_start_txn +ffffffff810f55b0 t event_sched_out.isra.49.part.50 +ffffffff810f56c0 t __perf_remove_from_context +ffffffff810f5790 t group_sched_out.part.52 +ffffffff810f5890 t ctx_sched_out +ffffffff810f5a00 t __perf_event_exit_context +ffffffff810f5a70 t __perf_event_disable +ffffffff810f5b40 t perf_pmu_cancel_txn +ffffffff810f5b80 t __perf_event_account_interrupt +ffffffff810f5c50 t __perf_event_overflow +ffffffff810f5d30 t perf_swevent_hrtimer +ffffffff810f5e70 t perf_swevent_overflow +ffffffff810f5f20 t perf_swevent_event +ffffffff810f5f90 t event_sched_in.isra.62.part.63 +ffffffff810f6120 t group_sched_in +ffffffff810f62c0 t perf_event_namespaces.part.68 +ffffffff810f63c0 t event_function_local.constprop.71 +ffffffff810f64b0 t perf_event_idx_default +ffffffff810f64c0 t perf_swevent_read +ffffffff810f64d0 t perf_pmu_nop_void +ffffffff810f64e0 t perf_event_addr_filters_apply +ffffffff810f6640 t perf_event_alloc +ffffffff810f6d80 t perf_pmu_commit_txn +ffffffff810f6dc0 t ctx_sched_in.isra.64 +ffffffff810f7030 t perf_event_sched_in.isra.66 +ffffffff810f7090 t ctx_resched +ffffffff810f7160 t __perf_install_in_context +ffffffff810f72b0 t perf_mux_hrtimer_handler +ffffffff810f74a0 t __perf_event_enable +ffffffff810f75f0 T perf_proc_update_handler +ffffffff810f7680 T perf_cpu_time_max_percent_handler +ffffffff810f7700 T perf_sample_event_took +ffffffff810f77c0 W perf_pmu_name +ffffffff810f77d0 T perf_cgroup_switch +ffffffff810f77e0 T perf_pmu_disable +ffffffff810f7810 T perf_pmu_enable +ffffffff810f7830 T perf_event_disable_local +ffffffff810f7840 T perf_event_disable +ffffffff810f7870 T perf_event_disable_inatomic +ffffffff810f7890 T perf_event_enable +ffffffff810f78c0 T perf_event_addr_filters_sync +ffffffff810f7940 T perf_event_refresh +ffffffff810f7980 T perf_sched_cb_dec +ffffffff810f79e0 T perf_sched_cb_inc +ffffffff810f7a40 T __perf_event_task_sched_in +ffffffff810f7bc0 T perf_event_task_tick +ffffffff810f7e60 T perf_event_read_local +ffffffff810f7f90 T perf_event_read_value +ffffffff810f7fe0 T perf_event_task_enable +ffffffff810f8080 T perf_event_task_disable +ffffffff810f8130 T perf_event_update_userpage +ffffffff810f8230 T __perf_event_task_sched_out +ffffffff810f85b0 t _perf_event_reset +ffffffff810f85d0 t task_clock_event_add +ffffffff810f8620 t cpu_clock_event_add +ffffffff810f8640 t perf_swevent_add +ffffffff810f8710 T ring_buffer_get +ffffffff810f8750 T ring_buffer_put +ffffffff810f8770 t ring_buffer_attach +ffffffff810f88b0 t _free_event +ffffffff810f8ad0 t free_event +ffffffff810f8af0 t inherit_event.isra.57 +ffffffff810f8cf0 t inherit_task_group.isra.59.part.60 +ffffffff810f8dc0 t put_event +ffffffff810f8de0 T perf_event_release_kernel +ffffffff810f9070 t perf_release +ffffffff810f9080 t perf_mmap +ffffffff810f9560 t perf_event_set_output +ffffffff810f9690 t perf_ioctl +ffffffff810f9da0 t perf_mmap_close +ffffffff810fa060 T perf_event_wakeup +ffffffff810fa100 T perf_register_guest_info_callbacks +ffffffff810fa110 T perf_unregister_guest_info_callbacks +ffffffff810fa120 T perf_event_header__init_id +ffffffff810fa130 T perf_event__output_id_sample +ffffffff810fa150 T perf_output_sample +ffffffff810fa890 T perf_prepare_sample +ffffffff810fad70 T perf_event_output_forward +ffffffff810fade0 T perf_event_output_backward +ffffffff810fae50 T perf_event_output +ffffffff810faec0 T perf_event_exec +ffffffff810fb0a0 T perf_event_fork +ffffffff810fb0d0 T perf_event_comm +ffffffff810fb1c0 T perf_event_namespaces +ffffffff810fb1e0 T perf_event_mmap +ffffffff810fb540 T perf_event_aux_event +ffffffff810fb630 T perf_log_lost_samples +ffffffff810fb710 T perf_event_itrace_started +ffffffff810fb720 T perf_event_account_interrupt +ffffffff810fb730 T perf_event_overflow +ffffffff810fb740 T perf_swevent_set_period +ffffffff810fb7a0 T perf_swevent_get_recursion_context +ffffffff810fb810 t perf_pending_event +ffffffff810fb880 T perf_swevent_put_recursion_context +ffffffff810fb8a0 T ___perf_sw_event +ffffffff810fb9e0 T __perf_sw_event +ffffffff810fba30 T perf_bp_event +ffffffff810fbae0 T perf_pmu_register +ffffffff810fbe60 T perf_pmu_unregister +ffffffff810fbf30 T SyS_perf_event_open +ffffffff810fbf30 T sys_perf_event_open +ffffffff810fcc80 T perf_event_create_kernel_counter +ffffffff810fcda0 T perf_pmu_migrate_context +ffffffff810fcf80 T perf_event_exit_task +ffffffff810fd300 T perf_event_free_task +ffffffff810fd480 T perf_event_delayed_put +ffffffff810fd490 T perf_event_get +ffffffff810fd4c0 T perf_event_attrs +ffffffff810fd4e0 T perf_event_init_task +ffffffff810fd720 T perf_swevent_init_cpu +ffffffff810fd780 T perf_event_init_cpu +ffffffff810fd810 T perf_event_exit_cpu +ffffffff810fd820 T perf_event_sysfs_show +ffffffff810fd840 t perf_output_put_handle +ffffffff810fd8c0 t perf_mmap_free_page +ffffffff810fd910 t perf_mmap_alloc_page.isra.1 +ffffffff810fd940 t __rb_free_aux +ffffffff810fda20 T perf_output_copy +ffffffff810fdaa0 T perf_output_begin_forward +ffffffff810fdca0 T perf_output_begin_backward +ffffffff810fdea0 T perf_output_begin +ffffffff810fe0f0 T perf_output_skip +ffffffff810fe150 T perf_output_end +ffffffff810fe160 T perf_aux_output_flag +ffffffff810fe170 T perf_aux_output_skip +ffffffff810fe240 T perf_get_aux +ffffffff810fe260 T rb_alloc_aux +ffffffff810fe510 T rb_free_aux +ffffffff810fe520 T perf_aux_output_begin +ffffffff810fe6a0 T perf_aux_output_end +ffffffff810fe7f0 T rb_alloc +ffffffff810fe940 T rb_free +ffffffff810fe980 T perf_mmap_to_page +ffffffff810fea10 t release_callchain_buffers_rcu +ffffffff810fea80 T get_callchain_buffers +ffffffff810febc0 T put_callchain_buffers +ffffffff810fec10 T get_perf_callchain +ffffffff810feea0 T perf_event_max_stack_handler +ffffffff810fef50 t hw_breakpoint_start +ffffffff810fef60 t hw_breakpoint_stop +ffffffff810fef70 t hw_breakpoint_del +ffffffff810fef80 t hw_breakpoint_add +ffffffff810fefc0 t validate_hw_breakpoint +ffffffff810ff000 W hw_breakpoint_weight +ffffffff810ff010 t task_bp_pinned.isra.2.constprop.7 +ffffffff810ff080 t toggle_bp_slot.constprop.5 +ffffffff810ff1f0 t __release_bp_slot +ffffffff810ff210 t __reserve_bp_slot +ffffffff810ff380 W arch_unregister_hw_breakpoint +ffffffff810ff390 T reserve_bp_slot +ffffffff810ff3c0 T release_bp_slot +ffffffff810ff3f0 t bp_perf_event_destroy +ffffffff810ff400 T dbg_reserve_bp_slot +ffffffff810ff420 T dbg_release_bp_slot +ffffffff810ff440 T register_perf_hw_breakpoint +ffffffff810ff480 t hw_breakpoint_event_init +ffffffff810ff4c0 T register_user_hw_breakpoint +ffffffff810ff4e0 T modify_user_hw_breakpoint +ffffffff810ff580 T unregister_hw_breakpoint +ffffffff810ff590 T unregister_wide_hw_breakpoint +ffffffff810ff5f0 T register_wide_hw_breakpoint +ffffffff810ff6c0 t jump_label_cmp +ffffffff810ff6e0 t __jump_label_update.constprop.7 +ffffffff810ff750 t static_key_disable_cpuslocked.part.6 +ffffffff810ff7a0 t static_key_enable_cpuslocked.part.5 +ffffffff810ff7f0 t __static_key_slow_dec_cpuslocked +ffffffff810ff880 t jump_label_update_timeout +ffffffff810ff8a0 T jump_label_lock +ffffffff810ff8b0 T jump_label_unlock +ffffffff810ff8c0 T static_key_count +ffffffff810ff8d0 T static_key_slow_inc_cpuslocked +ffffffff810ff950 T static_key_slow_inc +ffffffff810ff970 T static_key_enable_cpuslocked +ffffffff810ff980 T static_key_enable +ffffffff810ff9b0 T static_key_disable_cpuslocked +ffffffff810ff9c0 T static_key_disable +ffffffff810ff9f0 T static_key_slow_dec +ffffffff810ffa10 T static_key_slow_dec_cpuslocked +ffffffff810ffa20 T static_key_slow_dec_deferred +ffffffff810ffa50 T static_key_deferred_flush +ffffffff810ffa60 T jump_label_rate_limit +ffffffff810ffaa0 T jump_label_text_reserved +ffffffff810ffae0 t devm_memremap_match +ffffffff810ffaf0 T memremap +ffffffff810ffbe0 T memunmap +ffffffff810ffc10 t devm_memremap_release +ffffffff810ffc20 T devm_memremap +ffffffff810ffcc0 T devm_memunmap +ffffffff810ffce0 T restrict_link_by_builtin_trusted +ffffffff810ffcf0 T verify_pkcs7_signature +ffffffff810ffe00 t unaccount_page_cache_page +ffffffff81100040 t page_cache_tree_insert +ffffffff811000e0 t wake_page_function +ffffffff81100110 t wake_up_page_bit +ffffffff811001f0 t page_cache_free_page.isra.0 +ffffffff81100240 t __add_to_page_cache_locked.part.4 +ffffffff811002f0 T __delete_from_page_cache +ffffffff811003e0 T delete_from_page_cache +ffffffff81100440 T delete_from_page_cache_batch +ffffffff81100640 T filemap_check_errors +ffffffff81100680 T __filemap_fdatawrite_range +ffffffff81100700 T filemap_fdatawrite +ffffffff81100720 T filemap_fdatawrite_range +ffffffff81100730 T filemap_flush +ffffffff81100750 T __filemap_set_wb_err +ffffffff81100760 T file_check_and_advance_wb_err +ffffffff811007d0 T replace_page_cache_page +ffffffff811008f0 T add_to_page_cache_locked +ffffffff81100930 T add_to_page_cache_lru +ffffffff81100a10 T wait_on_page_bit +ffffffff81100b10 t __filemap_fdatawait_range +ffffffff81100bf0 T filemap_fdatawait_range +ffffffff81100c10 T filemap_fdatawait_keep_errors +ffffffff81100c50 T filemap_write_and_wait +ffffffff81100cb0 T filemap_write_and_wait_range +ffffffff81100d10 T file_fdatawait_range +ffffffff81100d30 T file_write_and_wait_range +ffffffff81100db0 T wait_on_page_bit_killable +ffffffff81100ed0 T add_page_wait_queue +ffffffff81100f50 T unlock_page +ffffffff81100f70 T filemap_map_pages +ffffffff81101280 T end_page_writeback +ffffffff811012e0 T page_endio +ffffffff81101370 T __lock_page +ffffffff81101480 T filemap_page_mkwrite +ffffffff81101520 T __lock_page_killable +ffffffff81101650 T __lock_page_or_retry +ffffffff81101720 T page_cache_next_hole +ffffffff81101760 T page_cache_prev_hole +ffffffff811017b0 T find_get_entry +ffffffff81101890 T find_lock_entry +ffffffff81101910 T pagecache_get_page +ffffffff81101b00 T filemap_fault +ffffffff81101f70 t do_read_cache_page +ffffffff811021d0 T find_get_entries +ffffffff81102390 T find_get_pages_range +ffffffff81102580 T filemap_range_has_page +ffffffff81102600 T find_get_pages_contig +ffffffff81102840 T find_get_pages_range_tag +ffffffff81102a70 T find_get_entries_tag +ffffffff81102c90 T generic_file_read_iter +ffffffff81103480 T generic_file_mmap +ffffffff811034d0 T generic_file_readonly_mmap +ffffffff81103530 T read_cache_page +ffffffff81103540 T read_cache_page_gfp +ffffffff81103560 T generic_write_checks +ffffffff81103660 T pagecache_write_begin +ffffffff81103670 T pagecache_write_end +ffffffff81103680 T generic_file_direct_write +ffffffff811037e0 T grab_cache_page_write_begin +ffffffff81103820 T generic_perform_write +ffffffff811039b0 T __generic_file_write_iter +ffffffff81103b40 T generic_file_write_iter +ffffffff81103d40 T try_to_release_page +ffffffff81103da0 T mempool_alloc_slab +ffffffff81103db0 T mempool_kmalloc +ffffffff81103dc0 t remove_element.isra.1.part.2 +ffffffff81103dd0 t mempool_destroy.part.3 +ffffffff81103e40 T mempool_destroy +ffffffff81103e50 T mempool_create_node +ffffffff81103f70 T mempool_create +ffffffff81103f90 T mempool_resize +ffffffff81104150 T mempool_alloc +ffffffff811042b0 T mempool_free +ffffffff81104330 T mempool_free_slab +ffffffff81104340 T mempool_kfree +ffffffff81104350 T mempool_alloc_pages +ffffffff81104360 T mempool_free_pages +ffffffff81104370 t task_will_free_mem +ffffffff811044b0 t __oom_reap_task_mm +ffffffff81104650 t oom_reaper +ffffffff811047b0 t mark_oom_victim +ffffffff81104800 t wake_oom_reaper.part.4 +ffffffff81104850 T find_lock_task_mm +ffffffff811048d0 T oom_badness +ffffffff81104a50 t oom_kill_process +ffffffff81104e40 T process_shares_mm +ffffffff81104e90 T exit_oom_victim +ffffffff81104ed0 T oom_killer_enable +ffffffff81104ef0 T oom_killer_disable +ffffffff81104ff0 T register_oom_notifier +ffffffff81105000 T unregister_oom_notifier +ffffffff81105010 T out_of_memory +ffffffff81105390 T pagefault_out_of_memory +ffffffff811053d5 t dump_header.isra.6 +ffffffff811055f0 T __probe_kernel_read +ffffffff811055f0 W probe_kernel_read +ffffffff81105650 T __probe_kernel_write +ffffffff81105650 W probe_kernel_write +ffffffff811056b0 T strncpy_from_unsafe +ffffffff81105750 t free_unref_page_prepare +ffffffff811057d0 t build_zonelists +ffffffff81105940 t calculate_totalreserve_pages +ffffffff811059c0 t setup_per_zone_lowmem_reserve +ffffffff81105a80 t bad_page +ffffffff81105b90 t free_pages_check_bad +ffffffff81105bf0 t check_new_page_bad +ffffffff81105c50 t free_pcppages_bulk +ffffffff81105fa0 t drain_pages_zone +ffffffff81105fe0 t drain_pages +ffffffff81106030 t drain_local_pages_wq +ffffffff81106060 t nr_free_zone_pages +ffffffff811060d0 t wake_all_kswapds +ffffffff81106160 t page_alloc_cpu_dead +ffffffff81106180 t show_mem_node_skip.part.7 +ffffffff811061a0 t zone_batchsize.isra.8 +ffffffff811061f0 t pageset_set_high_and_batch +ffffffff81106270 t __free_pages_ok +ffffffff81106730 T free_compound_page +ffffffff81106750 t free_unref_page_commit.isra.17 +ffffffff811067f0 t has_unmovable_pages.part.26 +ffffffff811068a0 T pm_restore_gfp_mask +ffffffff811068d0 T pm_restrict_gfp_mask +ffffffff811068f0 T pm_suspended_storage +ffffffff81106910 T get_pfnblock_flags_mask +ffffffff81106970 T set_pfnblock_flags_mask +ffffffff811069f0 T set_pageblock_migratetype +ffffffff81106a30 T prep_compound_page +ffffffff81106a90 T __pageblock_pfn_to_page +ffffffff81106b60 T set_zone_contiguous +ffffffff81106bc0 T clear_zone_contiguous +ffffffff81106bd0 T post_alloc_hook +ffffffff81106be0 T move_freepages_block +ffffffff81106d20 t steal_suitable_fallback +ffffffff81106e60 t unreserve_highatomic_pageblock +ffffffff81106fd0 T find_suitable_fallback +ffffffff81107050 T drain_local_pages +ffffffff81107070 T drain_all_pages +ffffffff81107200 T free_unref_page +ffffffff81107230 T free_unref_page_list +ffffffff81107320 T split_page +ffffffff81107360 T __zone_watermark_ok +ffffffff81107460 t get_page_from_freelist +ffffffff81108090 t __alloc_pages_direct_compact +ffffffff81108150 T __isolate_free_page +ffffffff811082b0 T zone_watermark_ok +ffffffff811082d0 T zone_watermark_ok_safe +ffffffff81108380 T warn_alloc +ffffffff811084b0 T gfp_pfmemalloc_allowed +ffffffff81108520 T __alloc_pages_nodemask +ffffffff81108fc0 T __get_free_pages +ffffffff81108ff0 T get_zeroed_page +ffffffff81109000 T __free_pages +ffffffff81109020 t free_pages.part.23 +ffffffff81109060 t make_alloc_exact +ffffffff81109120 T free_pages +ffffffff81109130 T __page_frag_cache_drain +ffffffff81109160 T page_frag_alloc +ffffffff81109290 T page_frag_free +ffffffff811092f0 T alloc_pages_exact +ffffffff81109330 T free_pages_exact +ffffffff81109370 T nr_free_buffer_pages +ffffffff81109380 T nr_free_pagecache_pages +ffffffff81109390 T si_mem_available +ffffffff81109440 T si_meminfo +ffffffff811094a0 T show_free_areas +ffffffff81109cf0 T adjust_managed_page_count +ffffffff81109d30 T free_reserved_area +ffffffff81109e50 T setup_per_zone_wmarks +ffffffff81109f60 T min_free_kbytes_sysctl_handler +ffffffff81109fa0 T watermark_scale_factor_sysctl_handler +ffffffff81109fd0 T lowmem_reserve_ratio_sysctl_handler +ffffffff81109fe0 T percpu_pagelist_fraction_sysctl_handler +ffffffff8110a0f0 T has_unmovable_pages +ffffffff8110a110 T is_pageblock_removable_nolock +ffffffff8110a180 T zone_pcp_reset +ffffffff8110a1f0 T is_free_buddy_page +ffffffff8110a275 t pageset_init +ffffffff8110a2c0 t domain_dirty_limits +ffffffff8110a3c0 t writeout_period +ffffffff8110a440 t __wb_calc_thresh +ffffffff8110a4f0 t __writepage +ffffffff8110a540 t __wb_update_bandwidth.constprop.16 +ffffffff8110a850 t wb_domain_writeout_inc.constprop.17 +ffffffff8110a8a0 T global_dirty_limits +ffffffff8110a920 T node_dirty_ok +ffffffff8110aa80 T dirty_background_ratio_handler +ffffffff8110aaa0 T dirty_background_bytes_handler +ffffffff8110aac0 T wb_writeout_inc +ffffffff8110ab10 T wb_domain_init +ffffffff8110ab80 T bdi_set_min_ratio +ffffffff8110abd0 T bdi_set_max_ratio +ffffffff8110ac40 T wb_calc_thresh +ffffffff8110ac80 T wb_update_bandwidth +ffffffff8110acc0 T balance_dirty_pages_ratelimited +ffffffff8110b6d0 T wb_over_bg_thresh +ffffffff8110b7b0 T dirty_writeback_centisecs_handler +ffffffff8110b800 T laptop_mode_timer_fn +ffffffff8110b820 T laptop_io_completion +ffffffff8110b840 T laptop_sync_completion +ffffffff8110b880 T writeback_set_ratelimit +ffffffff8110b8e0 T dirty_ratio_handler +ffffffff8110b930 T dirty_bytes_handler +ffffffff8110b980 t page_writeback_cpu_online +ffffffff8110b990 T tag_pages_for_writeback +ffffffff8110bae0 T __set_page_dirty_no_writeback +ffffffff8110bb20 T account_page_dirtied +ffffffff8110bc50 T account_page_cleaned +ffffffff8110bce0 T __set_page_dirty_nobuffers +ffffffff8110bda0 T account_page_redirty +ffffffff8110be80 T redirty_page_for_writepage +ffffffff8110beb0 T set_page_dirty +ffffffff8110bf50 T set_page_dirty_lock +ffffffff8110bf90 T __cancel_dirty_page +ffffffff8110c050 T clear_page_dirty_for_io +ffffffff8110c1b0 T write_cache_pages +ffffffff8110c510 T do_writepages +ffffffff8110c5d0 T generic_writepages +ffffffff8110c640 T write_one_page +ffffffff8110c780 T test_clear_page_writeback +ffffffff8110c970 T __test_set_page_writeback +ffffffff8110cb90 T mapping_tagged +ffffffff8110cba0 T wait_for_stable_page +ffffffff8110cc10 t read_cache_pages_invalidate_page +ffffffff8110cc80 T file_ra_state_init +ffffffff8110ccd0 T read_cache_pages +ffffffff8110ce00 T __do_page_cache_readahead +ffffffff8110d060 t ondemand_readahead +ffffffff8110d320 T force_page_cache_readahead +ffffffff8110d420 T page_cache_sync_readahead +ffffffff8110d460 T page_cache_async_readahead +ffffffff8110d530 T SyS_readahead +ffffffff8110d530 T sys_readahead +ffffffff8110d5d0 t __page_cache_release +ffffffff8110d790 t __pagevec_lru_add_fn +ffffffff8110d990 t pagevec_move_tail_fn +ffffffff8110dc20 t __activate_page +ffffffff8110de20 t lru_lazyfree_fn +ffffffff8110dff0 t lru_deactivate_file_fn +ffffffff8110e280 T __put_page +ffffffff8110e2c0 T put_pages_list +ffffffff8110e330 T get_kernel_pages +ffffffff8110e3d0 T get_kernel_page +ffffffff8110e400 T lru_add_drain_all +ffffffff8110e550 T release_pages +ffffffff8110e830 t pagevec_lru_move_fn +ffffffff8110e8e0 T rotate_reclaimable_page +ffffffff8110e9c0 T activate_page +ffffffff8110ea90 T mark_page_accessed +ffffffff8110ebe0 T deactivate_file_page +ffffffff8110ec80 T mark_page_lazyfree +ffffffff8110ed60 t __lru_cache_add +ffffffff8110edd0 T lru_cache_add_anon +ffffffff8110ee00 T lru_cache_add_file +ffffffff8110ee10 T lru_cache_add +ffffffff8110ee20 T lru_cache_add_active_or_unevictable +ffffffff8110eeb0 T lru_add_drain_cpu +ffffffff8110efa0 T lru_add_drain +ffffffff8110efd0 t lru_add_drain_per_cpu +ffffffff8110efe0 T __pagevec_release +ffffffff8110f010 T lru_add_page_tail +ffffffff8110f240 T __pagevec_lru_add +ffffffff8110f250 T pagevec_lookup_entries +ffffffff8110f270 T pagevec_remove_exceptionals +ffffffff8110f2a0 T pagevec_lookup_range +ffffffff8110f2d0 T pagevec_lookup_range_tag +ffffffff8110f300 T pagevec_lookup_range_nr_tag +ffffffff8110f340 t truncate_cleanup_page +ffffffff8110f400 t clear_shadow_entry +ffffffff8110f480 t truncate_exceptional_pvec_entries.part.0 +ffffffff8110f610 T do_invalidatepage +ffffffff8110f640 T truncate_inode_page +ffffffff8110f670 T generic_error_remove_page +ffffffff8110f6b0 T invalidate_inode_page +ffffffff8110f730 T truncate_inode_pages_range +ffffffff8110fef0 T truncate_inode_pages +ffffffff8110ff00 T truncate_inode_pages_final +ffffffff8110ff40 T invalidate_mapping_pages +ffffffff81110120 T invalidate_inode_pages2_range +ffffffff811104b0 T invalidate_inode_pages2 +ffffffff811104c0 T truncate_pagecache +ffffffff81110520 T pagecache_isize_extended +ffffffff811105b0 T truncate_setsize +ffffffff811105e0 T truncate_pagecache_range +ffffffff81110630 t __remove_mapping +ffffffff81110750 t move_active_pages_to_lru +ffffffff811109a0 t pgdat_balanced +ffffffff81110a20 t current_may_throttle +ffffffff81110a80 t shrink_slab.part.9 +ffffffff81110cc0 t prepare_kswapd_sleep +ffffffff81110d40 t kswapd_cpu_online +ffffffff81110d80 t inactive_list_is_low.constprop.22 +ffffffff81110ec0 T zone_reclaimable_pages +ffffffff81110f70 t allow_direct_reclaim.part.14 +ffffffff81111050 t throttle_direct_reclaim +ffffffff81111280 T lruvec_lru_size +ffffffff81111320 T register_shrinker +ffffffff81111390 T unregister_shrinker +ffffffff811113f0 T drop_slab_node +ffffffff81111420 T drop_slab +ffffffff81111450 T remove_mapping +ffffffff81111480 T putback_lru_page +ffffffff811114b0 T __isolate_lru_page +ffffffff81111610 t isolate_lru_pages.isra.16 +ffffffff81111860 T isolate_lru_page +ffffffff81111a40 T wakeup_kswapd +ffffffff81111ac0 T kswapd_run +ffffffff81111b50 T kswapd_stop +ffffffff81111b70 T page_evictable +ffffffff81111bb0 t shrink_page_list +ffffffff81112790 T reclaim_clean_pages_from_list +ffffffff811128e0 t putback_inactive_pages +ffffffff81112c60 t shrink_inactive_list +ffffffff81112ff0 t shrink_active_list +ffffffff811132c0 t shrink_node_memcg.constprop.20 +ffffffff811136c0 t shrink_node +ffffffff81113850 T try_to_free_pages +ffffffff81113ba0 t kswapd +ffffffff811140f0 T check_move_unevictable_pages +ffffffff81114350 t shmem_unused_huge_count +ffffffff81114360 t shmem_get_parent +ffffffff81114370 t shmem_match +ffffffff81114390 T shmem_get_unmapped_area +ffffffff811145d0 t shmem_recalc_inode +ffffffff81114660 t shmem_alloc_and_acct_page +ffffffff811148b0 t shmem_put_link +ffffffff811148e0 t shmem_write_end +ffffffff81114b40 t shmem_unused_huge_shrink +ffffffff81114e80 t shmem_unused_huge_scan +ffffffff81114ea0 t synchronous_wake_function +ffffffff81114ed0 t shmem_seek_hole_data +ffffffff81115010 t shmem_free_swap +ffffffff81115060 t shmem_file_llseek +ffffffff81115150 t shmem_alloc_inode +ffffffff81115180 t shmem_xattr_handler_set +ffffffff811151c0 t shmem_xattr_handler_get +ffffffff811151f0 t shmem_show_options +ffffffff81115300 t shmem_statfs +ffffffff81115380 t shmem_destroy_inode +ffffffff811153a0 t shmem_destroy_callback +ffffffff811153e0 t shmem_fh_to_dentry +ffffffff81115430 t shmem_listxattr +ffffffff81115450 t shmem_getattr +ffffffff811154b0 t shmem_put_super +ffffffff811154e0 t shmem_mount +ffffffff811154f0 t shmem_init_inode +ffffffff81115500 t shmem_enabled_show +ffffffff811155b0 t shmem_reserve_inode.isra.0 +ffffffff81115610 t shmem_link +ffffffff811156b0 t shmem_free_inode.isra.1 +ffffffff811156e0 t shmem_get_inode +ffffffff811158a0 t shmem_tmpfile +ffffffff81115910 t shmem_mknod +ffffffff811159c0 t shmem_mkdir +ffffffff811159f0 t shmem_create +ffffffff81115a00 t shmem_unlink +ffffffff81115a80 t shmem_rmdir +ffffffff81115ac0 t shmem_mmap +ffffffff81115b60 t shmem_writepage +ffffffff81115ba0 t shmem_encode_fh +ffffffff81115c30 t shmem_parse_huge +ffffffff81115d10 t shmem_parse_options +ffffffff81116050 t shmem_remount_fs +ffffffff811161c0 T shmem_fill_super +ffffffff811163a0 t shmem_enabled_store +ffffffff81116420 t shmem_rename2 +ffffffff81116640 t __shmem_file_setup.part.15 +ffffffff81116830 t shmem_add_to_page_cache.constprop.16 +ffffffff811169b0 t shmem_mfill_atomic_pte +ffffffff81116e90 t shmem_getpage_gfp.isra.11 +ffffffff81117600 t shmem_fault +ffffffff811177d0 t shmem_write_begin +ffffffff81117830 t shmem_undo_range +ffffffff81118080 t shmem_file_read_iter +ffffffff81118390 t shmem_symlink +ffffffff81118570 t shmem_get_link +ffffffff81118650 T shmem_getpage +ffffffff81118670 T vma_is_shmem +ffffffff81118680 T shmem_charge +ffffffff81118790 T shmem_uncharge +ffffffff81118830 T shmem_partial_swap_usage +ffffffff81118960 T shmem_swap_usage +ffffffff811189b0 T shmem_unlock_mapping +ffffffff81118a50 T shmem_truncate_range +ffffffff81118a80 t shmem_fallocate +ffffffff81118eb0 t shmem_evict_inode +ffffffff81119010 t shmem_setattr +ffffffff811192d0 T shmem_unuse +ffffffff81119300 T shmem_lock +ffffffff811193b0 T shmem_mapping +ffffffff811193c0 T shmem_mcopy_atomic_pte +ffffffff811193d0 T shmem_mfill_zeropage_pte +ffffffff811193f0 T memfd_fcntl +ffffffff81119940 T shmem_huge_enabled +ffffffff811199d0 T shmem_kernel_file_setup +ffffffff81119a10 T shmem_file_setup +ffffffff81119a50 T SyS_memfd_create +ffffffff81119a50 T sys_memfd_create +ffffffff81119bc0 T shmem_file_setup_with_mnt +ffffffff81119bf0 T shmem_zero_setup +ffffffff81119cf0 T shmem_read_mapping_page_gfp +ffffffff81119d40 T kfree_const +ffffffff81119d60 T kstrdup +ffffffff81119db0 T kstrdup_const +ffffffff81119dd0 T kstrndup +ffffffff81119e30 T kmemdup +ffffffff81119e70 T kmemdup_nul +ffffffff81119ec0 T memdup_user +ffffffff81119f20 T strndup_user +ffffffff81119f70 T memdup_user_nul +ffffffff81119fe0 T __vma_link_list +ffffffff8111a020 T vma_is_stack_for_current +ffffffff8111a090 T vm_mmap_pgoff +ffffffff8111a150 T vm_mmap +ffffffff8111a180 T kvmalloc_node +ffffffff8111a1e0 T kvfree +ffffffff8111a210 T vmemdup_user +ffffffff8111a270 T page_rmapping +ffffffff8111a290 T page_mapped +ffffffff8111a300 T page_anon_vma +ffffffff8111a330 T page_mapping +ffffffff8111a370 T __page_mapcount +ffffffff8111a3c0 T overcommit_ratio_handler +ffffffff8111a3e0 T overcommit_kbytes_handler +ffffffff8111a400 T vm_commit_limit +ffffffff8111a440 T vm_memory_committed +ffffffff8111a460 T __vm_enough_memory +ffffffff8111a5c0 T get_cmdline +ffffffff8111a6f0 T first_online_pgdat +ffffffff8111a700 T next_online_pgdat +ffffffff8111a710 T next_zone +ffffffff8111a730 T __next_zones_zonelist +ffffffff8111a760 T lruvec_init +ffffffff8111a7b0 t fold_diff +ffffffff8111a810 t frag_stop +ffffffff8111a820 t vmstat_next +ffffffff8111a840 t frag_next +ffffffff8111a850 t frag_start +ffffffff8111a880 t need_update +ffffffff8111a8e0 t zoneinfo_open +ffffffff8111a8f0 t vmstat_open +ffffffff8111a900 t pagetypeinfo_open +ffffffff8111a910 t fragmentation_open +ffffffff8111a920 t zoneinfo_show_print +ffffffff8111ab60 t pagetypeinfo_showfree_print +ffffffff8111ac30 t frag_show_print +ffffffff8111aca0 t vmstat_show +ffffffff8111acf0 t vmstat_stop +ffffffff8111ad10 t vmstat_start +ffffffff8111add0 t pagetypeinfo_showblockcount_print +ffffffff8111af40 t vmstat_cpu_down_prep +ffffffff8111af60 t vmstat_shepherd +ffffffff8111b000 t refresh_cpu_vm_stats.constprop.3 +ffffffff8111b150 t vmstat_update +ffffffff8111b1b0 t refresh_vm_stats +ffffffff8111b1c0 t walk_zones_in_node.constprop.4 +ffffffff8111b240 t pagetypeinfo_show +ffffffff8111b360 t zoneinfo_show +ffffffff8111b380 t frag_show +ffffffff8111b3a0 T calculate_pressure_threshold +ffffffff8111b3e0 T calculate_normal_threshold +ffffffff8111b420 T refresh_zone_stat_thresholds +ffffffff8111b550 t vmstat_cpu_online +ffffffff8111b560 t vmstat_cpu_dead +ffffffff8111b570 T set_pgdat_percpu_threshold +ffffffff8111b600 T __mod_zone_page_state +ffffffff8111b650 T __mod_node_page_state +ffffffff8111b6a0 T __inc_zone_state +ffffffff8111b700 T __inc_node_state +ffffffff8111b760 T __inc_zone_page_state +ffffffff8111b780 T __inc_node_page_state +ffffffff8111b790 T __dec_zone_state +ffffffff8111b7f0 T __dec_node_state +ffffffff8111b850 T __dec_zone_page_state +ffffffff8111b870 T __dec_node_page_state +ffffffff8111b880 T mod_zone_page_state +ffffffff8111b8f0 T inc_zone_page_state +ffffffff8111b980 T dec_zone_page_state +ffffffff8111ba10 T mod_node_page_state +ffffffff8111ba80 T inc_node_state +ffffffff8111baf0 T inc_node_page_state +ffffffff8111bb70 T dec_node_page_state +ffffffff8111bc00 T cpu_vm_stats_fold +ffffffff8111bd50 T drain_zonestat +ffffffff8111bd90 T fragmentation_index +ffffffff8111be20 T vmstat_refresh +ffffffff8111beb0 T quiet_vmstat +ffffffff8111bef0 t stable_pages_required_show +ffffffff8111bf20 t max_ratio_show +ffffffff8111bf50 t min_ratio_show +ffffffff8111bf80 t read_ahead_kb_show +ffffffff8111bfb0 t max_ratio_store +ffffffff8111c000 t min_ratio_store +ffffffff8111c050 t read_ahead_kb_store +ffffffff8111c090 t bdi_register_va.part.2 +ffffffff8111c130 T wb_wakeup_delayed +ffffffff8111c190 T bdi_register_va +ffffffff8111c1b0 T bdi_register +ffffffff8111c210 T bdi_register_owner +ffffffff8111c260 T bdi_unregister +ffffffff8111c390 T bdi_put +ffffffff8111c430 t cgwb_bdi_init +ffffffff8111c6d0 T bdi_alloc_node +ffffffff8111c790 T clear_wb_congested +ffffffff8111c7e0 T set_wb_congested +ffffffff8111c800 T congestion_wait +ffffffff8111c8a0 T wait_iff_congested +ffffffff8111c970 T use_mm +ffffffff8111ca10 T unuse_mm +ffffffff8111ca60 t pcpu_next_md_free_region +ffffffff8111cb10 t pcpu_chunk_relocate +ffffffff8111cba0 t pcpu_block_update +ffffffff8111cc00 t pcpu_chunk_populated +ffffffff8111cc30 t pcpu_next_unpop +ffffffff8111cc70 t pcpu_block_refresh_hint +ffffffff8111cce0 t pcpu_schedule_balance_work.part.0 +ffffffff8111cd00 t pcpu_chunk_update.part.3 +ffffffff8111cd30 t pcpu_chunk_refresh_hint +ffffffff8111ce40 t pcpu_block_update_hint_alloc +ffffffff8111d010 t pcpu_alloc_area +ffffffff8111d140 t pcpu_free_area +ffffffff8111d420 t pcpu_mem_zalloc +ffffffff8111d470 t pcpu_get_pages +ffffffff8111d4b0 t pcpu_create_chunk +ffffffff8111d600 t pcpu_free_pages.isra.10 +ffffffff8111d690 t pcpu_populate_chunk +ffffffff8111d960 t pcpu_next_fit_region.constprop.12 +ffffffff8111da70 t pcpu_find_block_fit +ffffffff8111dba0 t pcpu_alloc +ffffffff8111e0d0 t pcpu_balance_workfn +ffffffff8111e590 T __alloc_percpu_gfp +ffffffff8111e5a0 T __alloc_percpu +ffffffff8111e5b0 T __alloc_reserved_percpu +ffffffff8111e5c0 T free_percpu +ffffffff8111e700 T __is_kernel_percpu_address +ffffffff8111e7a0 T is_kernel_percpu_address +ffffffff8111e7b0 T per_cpu_ptr_to_phys +ffffffff8111e8bd t pcpu_dump_alloc_info +ffffffff8111eac0 t slab_caches_to_rcu_destroy_workfn +ffffffff8111eb70 T kmem_cache_size +ffffffff8111eb80 T __kmem_cache_free_bulk +ffffffff8111ebd0 T __kmem_cache_alloc_bulk +ffffffff8111ec40 T slab_unmergeable +ffffffff8111ec80 T find_mergeable +ffffffff8111ed80 T kmem_cache_create_usercopy +ffffffff8111f000 T kmem_cache_create +ffffffff8111f010 T slab_kmem_cache_release +ffffffff8111f040 T kmem_cache_destroy +ffffffff8111f120 T kmem_cache_shrink +ffffffff8111f140 T slab_is_available +ffffffff8111f150 T kmalloc_slab +ffffffff8111f1b0 T kmalloc_order +ffffffff8111f1f0 T __krealloc +ffffffff8111f280 T krealloc +ffffffff8111f340 T kzfree +ffffffff8111f370 t compaction_free +ffffffff8111f390 t update_pageblock_skip +ffffffff8111f440 t __reset_isolation_suitable +ffffffff8111f580 t map_pages +ffffffff8111f690 t release_freepages +ffffffff8111f730 t compact_trylock_irqsave.isra.0 +ffffffff8111f770 t compact_unlock_should_abort.isra.2 +ffffffff8111f7f0 t isolate_freepages_block +ffffffff8111fad0 t isolate_migratepages_block +ffffffff811201e0 t __compaction_suitable.part.4 +ffffffff81120250 t compaction_alloc +ffffffff81120490 t kcompactd_cpu_online +ffffffff811204d0 T PageMovable +ffffffff81120510 T __SetPageMovable +ffffffff81120520 T __ClearPageMovable +ffffffff81120530 T defer_compaction +ffffffff81120570 T compaction_deferred +ffffffff811205b0 T compaction_defer_reset +ffffffff811205e0 T compaction_restarting +ffffffff81120610 T reset_isolation_suitable +ffffffff81120650 T isolate_freepages_range +ffffffff81120770 T isolate_migratepages_range +ffffffff81120830 T compaction_suitable +ffffffff811208a0 t compact_zone +ffffffff81120eb0 t compact_zone_order +ffffffff81120f50 t compact_node.isra.8 +ffffffff81121020 t kcompactd_do_work +ffffffff81121220 t kcompactd +ffffffff81121320 T compaction_zonelist_suitable +ffffffff81121460 T try_to_compact_pages +ffffffff81121680 T sysctl_compaction_handler +ffffffff811216a0 T sysctl_extfrag_handler +ffffffff811216b0 T wakeup_kcompactd +ffffffff81121760 T kcompactd_run +ffffffff811217f0 T kcompactd_stop +ffffffff81121810 T vmacache_flush_all +ffffffff811218c0 T vmacache_update +ffffffff811218f0 T vmacache_find +ffffffff81121990 t vma_interval_tree_augment_rotate +ffffffff811219e0 t vma_interval_tree_subtree_search +ffffffff81121a30 t __anon_vma_interval_tree_augment_rotate +ffffffff81121a80 t __anon_vma_interval_tree_subtree_search +ffffffff81121ae0 T vma_interval_tree_insert +ffffffff81121b60 T vma_interval_tree_remove +ffffffff81121e30 T vma_interval_tree_iter_first +ffffffff81121e60 T vma_interval_tree_iter_next +ffffffff81121ec0 T vma_interval_tree_insert_after +ffffffff81121f40 T anon_vma_interval_tree_insert +ffffffff81121fd0 T anon_vma_interval_tree_remove +ffffffff811222b0 T anon_vma_interval_tree_iter_first +ffffffff811222e0 T anon_vma_interval_tree_iter_next +ffffffff81122350 t __list_lru_walk_one.isra.4 +ffffffff81122470 T list_lru_add +ffffffff811224d0 T list_lru_del +ffffffff81122530 T list_lru_isolate +ffffffff81122550 T list_lru_isolate_move +ffffffff81122580 T list_lru_count_one +ffffffff811225b0 T list_lru_count_node +ffffffff811225c0 T list_lru_walk_one +ffffffff811225d0 T list_lru_walk_node +ffffffff811225e0 T __list_lru_init +ffffffff81122630 T list_lru_destroy +ffffffff81122650 t shadow_lru_isolate +ffffffff81122760 t scan_shadow_nodes +ffffffff81122790 t count_shadow_nodes +ffffffff811227f0 T workingset_update_node +ffffffff81122830 T workingset_eviction +ffffffff81122860 T workingset_refault +ffffffff81122900 T workingset_activation +ffffffff81122920 T __dump_page +ffffffff81122a80 T dump_page +ffffffff81122a90 t undo_dev_pagemap +ffffffff81122af0 t gup_pgd_range +ffffffff81122ff0 t follow_page_pte +ffffffff811233f0 t follow_p4d_mask +ffffffff81123a70 t __get_user_pages.part.7 +ffffffff81123e40 T follow_page_mask +ffffffff81123e70 T fixup_user_fault +ffffffff81123ff0 T get_user_pages_locked +ffffffff811241d0 T get_user_pages_unlocked +ffffffff811243c0 T get_user_pages_remote +ffffffff81124600 T get_user_pages +ffffffff81124650 T populate_vma_page_range +ffffffff811246d0 T __mm_populate +ffffffff81124800 T __get_user_pages_fast +ffffffff81124870 T get_user_pages_fast +ffffffff81124950 t tlb_remove_table_smp_sync +ffffffff81124960 t tlb_flush_mmu_free +ffffffff811249b0 t tlb_remove_table_rcu +ffffffff81124a00 t pmd_devmap_trans_unstable +ffffffff81124a70 t print_bad_pte +ffffffff81124ca0 t do_page_mkwrite +ffffffff81124d20 t __do_fault +ffffffff81124d80 t add_mm_counter_fast.part.6 +ffffffff81124d90 t wp_page_copy +ffffffff81125320 t __follow_pte_pmd.isra.7 +ffffffff81125570 t tlb_next_batch.isra.8 +ffffffff811255e0 t fault_dirty_shared_page.isra.11 +ffffffff81125670 t tlb_flush_mmu_tlbonly +ffffffff81125750 T sync_mm_rss +ffffffff811257b0 T arch_tlb_gather_mmu +ffffffff81125860 T tlb_flush_mmu +ffffffff81125880 T arch_tlb_finish_mmu +ffffffff811258f0 T __tlb_remove_page_size +ffffffff81125920 T tlb_table_flush +ffffffff81125950 T tlb_remove_table +ffffffff81125a00 T tlb_gather_mmu +ffffffff81125a10 T tlb_finish_mmu +ffffffff81125a40 T free_pgd_range +ffffffff81125fd0 T free_pgtables +ffffffff81126090 T __pte_alloc +ffffffff81126180 T __pte_alloc_kernel +ffffffff81126220 T _vm_normal_page +ffffffff81126290 T vm_normal_page_pmd +ffffffff81126340 T unmap_page_range +ffffffff81126bf0 t unmap_single_vma +ffffffff81126c70 t zap_page_range_single +ffffffff81126d50 T unmap_vmas +ffffffff81126df0 T zap_page_range +ffffffff81126f00 T zap_vma_ptes +ffffffff81126f30 T finish_mkwrite_fault +ffffffff81126ff0 T unmap_mapping_pages +ffffffff81127100 T unmap_mapping_range +ffffffff81127120 T do_swap_page +ffffffff81127210 T alloc_set_pte +ffffffff81127650 T finish_fault +ffffffff811276d0 T __pud_alloc +ffffffff81127780 T __pmd_alloc +ffffffff81127880 T apply_to_page_range +ffffffff81127c40 T copy_page_range +ffffffff811285c0 T __get_locked_pte +ffffffff81128750 t insert_pfn +ffffffff81128850 t __vm_insert_mixed +ffffffff811288f0 T vm_insert_mixed +ffffffff81128900 T vm_insert_mixed_mkwrite +ffffffff81128910 T vm_insert_pfn_prot +ffffffff81128a00 T vm_insert_pfn +ffffffff81128a10 T vm_insert_page +ffffffff81128bb0 T remap_pfn_range +ffffffff81128fb0 T vm_iomap_memory +ffffffff81129020 t __handle_mm_fault +ffffffff8112a180 T handle_mm_fault +ffffffff8112a240 T follow_pte_pmd +ffffffff8112a250 T follow_pfn +ffffffff8112a2b0 T follow_phys +ffffffff8112a350 T generic_access_phys +ffffffff8112a3f0 T __access_remote_vm +ffffffff8112a6c0 T access_remote_vm +ffffffff8112a6e0 T access_process_vm +ffffffff8112a750 T print_vma_addr +ffffffff8112a840 T clear_huge_page +ffffffff8112ab00 T copy_user_huge_page +ffffffff8112ade0 T copy_huge_page_from_user +ffffffff8112aee0 t mincore_hugetlb +ffffffff8112aef0 t __mincore_unmapped_range +ffffffff8112aff0 t mincore_unmapped_range +ffffffff8112b010 t mincore_pte_range +ffffffff8112b220 T SyS_mincore +ffffffff8112b220 T sys_mincore +ffffffff8112b430 t __munlock_isolated_page +ffffffff8112b480 t __munlock_isolate_lru_page +ffffffff8112b5d0 t __munlock_pagevec +ffffffff8112b830 t can_do_mlock.part.2 +ffffffff8112b840 T can_do_mlock +ffffffff8112b870 T clear_page_mlock +ffffffff8112b8f0 T mlock_vma_page +ffffffff8112b980 T munlock_vma_page +ffffffff8112baa0 T munlock_vma_pages_range +ffffffff8112bd40 t mlock_fixup +ffffffff8112bea0 t apply_vma_lock_flags +ffffffff8112bf80 t do_mlock +ffffffff8112c1a0 t apply_mlockall_flags +ffffffff8112c290 T SyS_mlock +ffffffff8112c290 T sys_mlock +ffffffff8112c2a0 T SyS_mlock2 +ffffffff8112c2a0 T sys_mlock2 +ffffffff8112c2d0 T SyS_munlock +ffffffff8112c2d0 T sys_munlock +ffffffff8112c350 T SyS_mlockall +ffffffff8112c350 T sys_mlockall +ffffffff8112c4d0 T sys_munlockall +ffffffff8112c520 T user_shm_lock +ffffffff8112c5b0 T user_shm_unlock +ffffffff8112c5f0 t vma_compute_subtree_gap +ffffffff8112c660 t vma_gap_callbacks_rotate +ffffffff8112c680 t vma_gap_update +ffffffff8112c6b0 t special_mapping_close +ffffffff8112c6c0 t special_mapping_name +ffffffff8112c6d0 t init_user_reserve +ffffffff8112c710 t init_admin_reserve +ffffffff8112c750 t __vma_link_file +ffffffff8112c790 t remove_vma +ffffffff8112c7e0 t special_mapping_fault +ffffffff8112c860 t special_mapping_mremap +ffffffff8112c8a0 t unmap_region +ffffffff8112c980 t can_vma_merge_before.part.0 +ffffffff8112c9d0 t reusable_anon_vma +ffffffff8112ca40 t __remove_shared_vm_struct.isra.2 +ffffffff8112ca70 t __vma_rb_erase +ffffffff8112cc80 T vm_get_page_prot +ffffffff8112ccb0 T unlink_file_vma +ffffffff8112cd00 T __vma_link_rb +ffffffff8112cd70 t vma_link +ffffffff8112ce20 T __vma_adjust +ffffffff8112d4e0 T vma_merge +ffffffff8112d7d0 T find_mergeable_anon_vma +ffffffff8112d810 T SyS_mmap_pgoff +ffffffff8112d810 T sys_mmap_pgoff +ffffffff8112d8d0 T vma_wants_writenotify +ffffffff8112d9a0 T vma_set_page_prot +ffffffff8112da20 T unmapped_area +ffffffff8112db90 T unmapped_area_topdown +ffffffff8112dd00 T get_unmapped_area +ffffffff8112de20 T find_vma +ffffffff8112de90 T find_vma_prev +ffffffff8112ded0 T __split_vma +ffffffff8112e080 T split_vma +ffffffff8112e0a0 T do_munmap +ffffffff8112e490 T vm_munmap +ffffffff8112e500 T SyS_munmap +ffffffff8112e500 T sys_munmap +ffffffff8112e510 T exit_mmap +ffffffff8112e650 T insert_vm_struct +ffffffff8112e730 t __install_special_mapping +ffffffff8112e870 T copy_vma +ffffffff8112ea90 T may_expand_vm +ffffffff8112eb60 T expand_downwards +ffffffff8112ee00 T expand_stack +ffffffff8112ee10 T find_extend_vma +ffffffff8112ee80 t do_brk_flags +ffffffff8112f1b0 T SyS_brk +ffffffff8112f1b0 T sys_brk +ffffffff8112f350 T vm_brk_flags +ffffffff8112f3f0 T vm_brk +ffffffff8112f400 T mmap_region +ffffffff8112f970 T do_mmap +ffffffff8112fd90 T SyS_remap_file_pages +ffffffff8112fd90 T sys_remap_file_pages +ffffffff81130080 T vm_stat_account +ffffffff811300d0 T vma_is_special_mapping +ffffffff81130100 T _install_special_mapping +ffffffff81130110 T install_special_mapping +ffffffff81130130 T mm_drop_all_locks +ffffffff81130210 T mm_take_all_locks +ffffffff81130370 t change_protection_range +ffffffff81130b50 T change_protection +ffffffff81130b60 T mprotect_fixup +ffffffff81130dd0 t do_mprotect_pkey +ffffffff81131070 T SyS_mprotect +ffffffff81131070 T sys_mprotect +ffffffff81131080 T SyS_pkey_mprotect +ffffffff81131080 T sys_pkey_mprotect +ffffffff81131090 T SyS_pkey_alloc +ffffffff81131090 T sys_pkey_alloc +ffffffff811311a0 T SyS_pkey_free +ffffffff811311a0 T sys_pkey_free +ffffffff81131240 t vma_to_resize +ffffffff811313e0 T move_page_tables +ffffffff81131cf0 t move_vma.isra.4 +ffffffff81131f50 T SyS_mremap +ffffffff81131f50 T sys_mremap +ffffffff81132450 T SyS_msync +ffffffff81132450 T sys_msync +ffffffff81132650 T page_vma_mapped_walk +ffffffff81132bc0 T page_mapped_in_vma +ffffffff81132cc0 t walk_pgd_range +ffffffff811331a0 t walk_page_test +ffffffff811331e0 T walk_page_range +ffffffff811332b0 T walk_page_vma +ffffffff81133300 T pgd_clear_bad +ffffffff81133320 T p4d_clear_bad +ffffffff81133350 T pud_clear_bad +ffffffff81133380 T pmd_clear_bad +ffffffff811333b0 T ptep_clear_flush +ffffffff811333f0 T pmdp_huge_clear_flush +ffffffff81133410 T pudp_huge_clear_flush +ffffffff81133430 T pgtable_trans_huge_deposit +ffffffff811334e0 T pgtable_trans_huge_withdraw +ffffffff81133580 T pmdp_invalidate +ffffffff811335b0 T pmdp_collapse_flush +ffffffff811335c0 t invalid_page_referenced_vma +ffffffff811335d0 t invalid_mkclean_vma +ffffffff811335e0 t invalid_migration_vma +ffffffff81133600 t anon_vma_ctor +ffffffff81133640 t page_not_mapped +ffffffff81133650 t page_mapcount_is_zero +ffffffff81133660 t page_referenced_one +ffffffff811337b0 t page_mkclean_one +ffffffff81133910 t rmap_walk_file +ffffffff81133b00 t rmap_walk_anon +ffffffff81133d00 t __page_set_anon_rmap +ffffffff81133d50 T page_unlock_anon_vma_read +ffffffff81133d60 T try_to_unmap_flush +ffffffff81133da0 T try_to_unmap_flush_dirty +ffffffff81133de0 T flush_tlb_batched_pending +ffffffff81133e10 T page_address_in_vma +ffffffff81133ee0 T mm_find_pmd +ffffffff81133fb0 T page_move_anon_rmap +ffffffff81133fd0 T do_page_add_anon_rmap +ffffffff81134060 T page_add_anon_rmap +ffffffff81134070 T page_add_new_anon_rmap +ffffffff81134120 T page_add_file_rmap +ffffffff811341f0 T page_remove_rmap +ffffffff811343b0 t try_to_unmap_one +ffffffff811349e0 T is_vma_temporary_stack +ffffffff81134a00 T __put_anon_vma +ffffffff81134a80 T __anon_vma_prepare +ffffffff81134bf0 T unlink_anon_vmas +ffffffff81134d80 T anon_vma_clone +ffffffff81134f30 T anon_vma_fork +ffffffff81135060 T page_get_anon_vma +ffffffff811350f0 T page_lock_anon_vma_read +ffffffff811351e0 T rmap_walk +ffffffff81135210 T page_referenced +ffffffff81135340 T page_mkclean +ffffffff811353d0 T try_to_munlock +ffffffff81135410 T rmap_walk_locked +ffffffff81135440 T try_to_unmap +ffffffff811354f0 t find_vmap_area +ffffffff81135540 t f +ffffffff81135560 t s_stop +ffffffff81135570 t lazy_max_pages +ffffffff81135590 t pvm_determine_end +ffffffff81135610 t __free_vmap_area +ffffffff811356f0 t __purge_vmap_area_lazy +ffffffff811357a0 t free_vmap_area_noflush +ffffffff81135810 t pvm_find_next_prev +ffffffff811358d0 t vmalloc_open +ffffffff811358e0 t s_next +ffffffff811358f0 t s_start +ffffffff81135910 t __insert_vmap_area +ffffffff811359d0 t free_vmap_block +ffffffff81135a40 t purge_fragmented_blocks_allcpus +ffffffff81135bf0 t purge_vmap_area_lazy +ffffffff81135c20 T pcpu_get_vm_areas +ffffffff811361e0 t vunmap_page_range +ffffffff811364e0 t alloc_vmap_area.isra.8 +ffffffff81136810 t vmap_page_range_noflush +ffffffff81136b00 t s_show +ffffffff81136c70 t __get_vm_area_node.isra.9 +ffffffff81136dc0 T is_vmalloc_or_module_addr +ffffffff81136df0 T vmalloc_to_page +ffffffff81136f10 T vmalloc_to_pfn +ffffffff81136f30 T register_vmap_purge_notifier +ffffffff81136f40 T unregister_vmap_purge_notifier +ffffffff81136f50 T set_iounmap_nonlazy +ffffffff81136f60 T vm_unmap_aliases +ffffffff81137080 T vm_unmap_ram +ffffffff81137200 T vm_map_ram +ffffffff81137630 T map_kernel_range_noflush +ffffffff81137640 T unmap_kernel_range_noflush +ffffffff81137650 T unmap_kernel_range +ffffffff81137670 T map_vm_area +ffffffff811376b0 T __get_vm_area +ffffffff811376d0 T __get_vm_area_caller +ffffffff811376f0 T get_vm_area +ffffffff81137720 T get_vm_area_caller +ffffffff81137750 T find_vm_area +ffffffff81137770 T remove_vm_area +ffffffff811377e0 t __vunmap +ffffffff81137860 t free_work +ffffffff81137890 T vfree_atomic +ffffffff811378e0 T vfree +ffffffff81137940 T vunmap +ffffffff81137960 T vmap +ffffffff811379e0 T __vmalloc_node_range +ffffffff81137c00 T __vmalloc +ffffffff81137c30 T __vmalloc_node_flags_caller +ffffffff81137c70 T vmalloc +ffffffff81137cb0 T vzalloc +ffffffff81137cf0 T vmalloc_user +ffffffff81137d60 T vmalloc_node +ffffffff81137da0 T vzalloc_node +ffffffff81137de0 T vmalloc_exec +ffffffff81137e20 T vmalloc_32 +ffffffff81137e60 T vmalloc_32_user +ffffffff81137ed0 T vread +ffffffff81138230 T vwrite +ffffffff811384a0 T remap_vmalloc_range_partial +ffffffff81138560 T remap_vmalloc_range +ffffffff81138590 T free_vm_area +ffffffff811385b0 T alloc_vm_area +ffffffff81138640 T pcpu_free_vm_areas +ffffffff81138680 T reset_node_managed_pages +ffffffff811386b0 T SyS_fadvise64_64 +ffffffff811386b0 T sys_fadvise64_64 +ffffffff811389a0 T SyS_fadvise64 +ffffffff811389a0 T sys_fadvise64 +ffffffff811389b0 t madvise_free_pte_range +ffffffff81138ef0 t madvise_free_page_range.isra.0 +ffffffff81138f30 t madvise_free_single_vma +ffffffff81139050 T SyS_madvise +ffffffff81139050 T sys_madvise +ffffffff811396d0 t dmam_pool_match +ffffffff811396e0 t show_pools +ffffffff81139800 T dma_pool_create +ffffffff811399f0 T dma_pool_destroy +ffffffff81139b70 t dmam_pool_release +ffffffff81139b80 T dma_pool_alloc +ffffffff81139d80 T dma_pool_free +ffffffff81139e40 T dmam_pool_create +ffffffff81139ed0 T dmam_pool_destroy +ffffffff81139ef0 T __section_nr +ffffffff81139f50 T sparse_decode_mem_map +ffffffff81139f60 T usemap_size +ffffffff81139f70 t do_mmu_notifier_register +ffffffff8113a0a0 T mmu_notifier_call_srcu +ffffffff8113a0c0 T mmu_notifier_synchronize +ffffffff8113a0d0 T __mmu_notifier_release +ffffffff8113a190 T __mmu_notifier_clear_flush_young +ffffffff8113a210 T __mmu_notifier_clear_young +ffffffff8113a290 T __mmu_notifier_test_young +ffffffff8113a310 T __mmu_notifier_change_pte +ffffffff8113a380 T __mmu_notifier_invalidate_range_start +ffffffff8113a3f0 T __mmu_notifier_invalidate_range_end +ffffffff8113a490 T __mmu_notifier_invalidate_range +ffffffff8113a500 T mm_has_blockable_invalidate_notifiers +ffffffff8113a580 T mmu_notifier_register +ffffffff8113a590 T __mmu_notifier_register +ffffffff8113a5a0 T __mmu_notifier_mm_destroy +ffffffff8113a5d0 T mmu_notifier_unregister +ffffffff8113a6a0 T mmu_notifier_unregister_no_release +ffffffff8113a710 t has_cpu_slab +ffffffff8113a740 t count_partial +ffffffff8113a7b0 t count_inuse +ffffffff8113a7c0 t count_total +ffffffff8113a7d0 t reclaim_account_store +ffffffff8113a7f0 t shrink_show +ffffffff8113a800 t slab_attr_show +ffffffff8113a820 t slab_attr_store +ffffffff8113a850 t uevent_filter +ffffffff8113a860 t calculate_sizes +ffffffff8113ac20 t new_slab +ffffffff8113ae90 t usersize_show +ffffffff8113aeb0 t cache_dma_show +ffffffff8113aee0 t slabs_cpu_partial_show +ffffffff8113afd0 t reserved_show +ffffffff8113aff0 t destroy_by_rcu_show +ffffffff8113b020 t reclaim_account_show +ffffffff8113b050 t hwcache_align_show +ffffffff8113b080 t align_show +ffffffff8113b0a0 t aliases_show +ffffffff8113b0d0 t ctor_show +ffffffff8113b0f0 t cpu_partial_show +ffffffff8113b110 t min_partial_show +ffffffff8113b130 t order_show +ffffffff8113b150 t objs_per_slab_show +ffffffff8113b170 t object_size_show +ffffffff8113b190 t slab_size_show +ffffffff8113b1b0 t shrink_store +ffffffff8113b1d0 t min_partial_store +ffffffff8113b230 t order_store +ffffffff8113b290 t cpu_partial_store +ffffffff8113b2f0 t kmem_cache_release +ffffffff8113b300 t sysfs_slab_remove_workfn +ffffffff8113b330 t __free_slab.isra.11 +ffffffff8113b430 t free_slab +ffffffff8113b460 t rcu_free_slab +ffffffff8113b480 t deactivate_slab.isra.12 +ffffffff8113b910 t unfreeze_partials.isra.15 +ffffffff8113bb00 t slub_cpu_dead +ffffffff8113bba0 t flush_cpu_slab +ffffffff8113bbf0 t put_cpu_partial +ffffffff8113bcd0 t get_partial_node.isra.16 +ffffffff8113bfb0 t __slab_free.isra.17 +ffffffff8113c2d0 t ___slab_alloc.isra.13.constprop.23 +ffffffff8113c5f0 t __slab_alloc.isra.14.constprop.22 +ffffffff8113c610 T fixup_red_left +ffffffff8113c620 T kmem_cache_flags +ffffffff8113c630 T kmem_cache_alloc +ffffffff8113c6f0 t sysfs_slab_alias +ffffffff8113c770 T kmem_cache_free +ffffffff8113c880 T kmem_cache_free_bulk +ffffffff8113caf0 T kmem_cache_alloc_bulk +ffffffff8113cbe0 T __kmem_cache_release +ffffffff8113cc20 T __kmem_cache_shutdown +ffffffff8113cd90 T __kmalloc +ffffffff8113ce80 T ksize +ffffffff8113cf20 T kfree +ffffffff8113d020 t sysfs_slab_add +ffffffff8113d200 t show_slab_objects.isra.19 +ffffffff8113d350 t cpu_slabs_show +ffffffff8113d370 t partial_show +ffffffff8113d390 t objects_partial_show +ffffffff8113d3b0 t objects_show +ffffffff8113d3d0 T __kmem_cache_shrink +ffffffff8113d5e0 T __kmem_cache_alias +ffffffff8113d650 T __kmem_cache_create +ffffffff8113d8c0 T __kmalloc_track_caller +ffffffff8113d9b0 T sysfs_slab_release +ffffffff8113d9d0 t remove_migration_pte +ffffffff8113db70 t buffer_migrate_lock_buffers +ffffffff8113dbe0 T migrate_prep +ffffffff8113dbf0 T migrate_prep_local +ffffffff8113dc00 T isolate_movable_page +ffffffff8113dcf0 T putback_movable_page +ffffffff8113dd10 T putback_movable_pages +ffffffff8113de30 T remove_migration_ptes +ffffffff8113de80 T __migration_entry_wait +ffffffff8113dfb0 T migration_entry_wait +ffffffff8113e010 T migration_entry_wait_huge +ffffffff8113e020 T pmd_migration_entry_wait +ffffffff8113e1b0 T migrate_page_move_mapping +ffffffff8113e570 T migrate_huge_page_move_mapping +ffffffff8113e650 T migrate_page_states +ffffffff8113e790 T migrate_page_copy +ffffffff8113e940 T migrate_page +ffffffff8113e9b0 t move_to_new_page +ffffffff8113ebb0 T buffer_migrate_page +ffffffff8113ecd0 T migrate_pages +ffffffff8113f390 t shrink_huge_zero_page_count +ffffffff8113f3b0 t deferred_split_count +ffffffff8113f3c0 t hpage_pmd_size_show +ffffffff8113f3e0 t use_zero_page_show +ffffffff8113f410 t defrag_store +ffffffff8113f580 t enabled_store +ffffffff8113f640 t touch_pmd +ffffffff8113f670 t defrag_show +ffffffff8113f7e0 t enabled_show +ffffffff8113f890 t put_huge_zero_page +ffffffff8113f8a0 t shrink_huge_zero_page_scan +ffffffff8113f8f0 t set_huge_zero_page.isra.5.part.6 +ffffffff8113f950 t unfreeze_page +ffffffff8113f990 T mm_get_huge_zero_page +ffffffff8113fa70 T mm_put_huge_zero_page +ffffffff8113fa90 T single_hugepage_flag_show +ffffffff8113fac0 T single_hugepage_flag_store +ffffffff8113fb20 t use_zero_page_store +ffffffff8113fb30 T maybe_pmd_mkwrite +ffffffff8113fb40 T prep_transhuge_page +ffffffff8113fb60 T __thp_get_unmapped_area +ffffffff8113fbe0 T thp_get_unmapped_area +ffffffff8113fc00 T do_huge_pmd_anonymous_page +ffffffff811400b0 T vmf_insert_pfn_pmd +ffffffff81140200 T vmf_insert_pfn_pud +ffffffff81140310 T follow_devmap_pmd +ffffffff811403c0 T copy_huge_pmd +ffffffff811406a0 T follow_devmap_pud +ffffffff81140730 T copy_huge_pud +ffffffff811407c0 T huge_pud_set_accessed +ffffffff81140840 T huge_pmd_set_accessed +ffffffff811408f0 T follow_trans_huge_pmd +ffffffff81140b50 T do_huge_pmd_numa_page +ffffffff81140d30 T __pmd_trans_huge_lock +ffffffff81140df0 T zap_huge_pmd +ffffffff81140fd0 T move_huge_pmd +ffffffff81141160 T change_huge_pmd +ffffffff811413d0 T __pud_trans_huge_lock +ffffffff81141420 T zap_huge_pud +ffffffff81141480 T __split_huge_pud +ffffffff81141570 T __split_huge_pmd +ffffffff81141cb0 T split_huge_pmd_address +ffffffff81141d60 T vma_adjust_trans_huge +ffffffff81141e20 T total_mapcount +ffffffff81141eb0 T page_trans_huge_mapcount +ffffffff81141f50 T do_huge_pmd_wp_page +ffffffff81142a50 T can_split_huge_page +ffffffff81142aa0 T split_huge_page_to_list +ffffffff81143060 t deferred_split_scan +ffffffff811432a0 T madvise_free_huge_pmd +ffffffff81143510 T free_transhuge_page +ffffffff81143590 T deferred_split_huge_page +ffffffff811435f0 T set_pmd_migration_entry +ffffffff81143780 T remove_migration_pmd +ffffffff81143860 t pages_to_scan_store +ffffffff811438b0 t khugepaged_max_ptes_none_store +ffffffff811438f0 t khugepaged_max_ptes_swap_store +ffffffff81143930 t khugepaged_max_ptes_swap_show +ffffffff81143950 t alloc_sleep_millisecs_show +ffffffff81143970 t scan_sleep_millisecs_show +ffffffff81143990 t full_scans_show +ffffffff811439b0 t pages_collapsed_show +ffffffff811439d0 t pages_to_scan_show +ffffffff811439f0 t khugepaged_max_ptes_none_show +ffffffff81143a10 t alloc_sleep_millisecs_store +ffffffff81143a80 t scan_sleep_millisecs_store +ffffffff81143af0 t khugepaged_defrag_store +ffffffff81143b00 t khugepaged_defrag_show +ffffffff81143b10 t collect_mm_slot +ffffffff81143b90 t release_pte_page +ffffffff81143bd0 t hugepage_vma_check +ffffffff81143c70 t hugepage_vma_revalidate +ffffffff81143cf0 t __collapse_huge_page_swapin +ffffffff81143e90 t collapse_shmem.isra.4 +ffffffff81144850 t khugepaged +ffffffff81145e30 T __khugepaged_enter +ffffffff81145f50 T khugepaged_enter_vma_merge +ffffffff81145fe0 T hugepage_madvise +ffffffff81146040 T __khugepaged_exit +ffffffff81146150 T start_stop_khugepaged +ffffffff811462f0 t cleancache_get_key +ffffffff81146350 t cleancache_register_ops_sb +ffffffff811463c0 T cleancache_register_ops +ffffffff811463f0 T __cleancache_init_fs +ffffffff81146430 T __cleancache_init_shared_fs +ffffffff81146470 T __cleancache_get_page +ffffffff81146520 T __cleancache_put_page +ffffffff811465c0 T __cleancache_invalidate_page +ffffffff81146640 T __cleancache_invalidate_inode +ffffffff811466b0 T __cleancache_invalidate_fs +ffffffff811466e0 t chmod_common +ffffffff811467f0 t chown_common.isra.0 +ffffffff81146960 t do_dentry_open.isra.1 +ffffffff81146c20 T do_truncate +ffffffff81146cb0 T vfs_truncate +ffffffff81146e30 T SyS_truncate +ffffffff81146e30 T sys_truncate +ffffffff81146ed0 T SyS_ftruncate +ffffffff81146ed0 T sys_ftruncate +ffffffff81146fd0 T vfs_fallocate +ffffffff81147210 T SyS_fallocate +ffffffff81147210 T sys_fallocate +ffffffff81147290 T SyS_faccessat +ffffffff81147290 T sys_faccessat +ffffffff811474a0 T SyS_access +ffffffff811474a0 T sys_access +ffffffff811474b0 T SyS_chdir +ffffffff811474b0 T sys_chdir +ffffffff81147560 T SyS_fchdir +ffffffff81147560 T sys_fchdir +ffffffff811475f0 T SyS_chroot +ffffffff811475f0 T sys_chroot +ffffffff811476d0 T SyS_fchmod +ffffffff811476d0 T sys_fchmod +ffffffff81147740 T SyS_fchmodat +ffffffff81147740 T sys_fchmodat +ffffffff811477d0 T SyS_chmod +ffffffff811477d0 T sys_chmod +ffffffff811477e0 T SyS_fchownat +ffffffff811477e0 T sys_fchownat +ffffffff811478c0 T SyS_chown +ffffffff811478c0 T sys_chown +ffffffff811478e0 T SyS_lchown +ffffffff811478e0 T sys_lchown +ffffffff81147900 T SyS_fchown +ffffffff81147900 T sys_fchown +ffffffff81147980 T open_check_o_direct +ffffffff811479b0 T finish_open +ffffffff811479e0 T finish_no_open +ffffffff811479f0 T file_path +ffffffff81147a00 T vfs_open +ffffffff81147a70 T dentry_open +ffffffff81147b20 T file_open_name +ffffffff81147c80 T filp_open +ffffffff81147cd0 T file_open_root +ffffffff81147e40 T filp_clone_open +ffffffff81147ea0 T do_sys_open +ffffffff811480c0 T SyS_open +ffffffff811480c0 T sys_open +ffffffff811480e0 T SyS_openat +ffffffff811480e0 T sys_openat +ffffffff811480f0 T SyS_creat +ffffffff811480f0 T sys_creat +ffffffff81148110 T filp_close +ffffffff81148170 T SyS_close +ffffffff81148170 T sys_close +ffffffff811481b0 T sys_vhangup +ffffffff811481d0 T generic_file_open +ffffffff811481f0 T nonseekable_open +ffffffff81148200 T no_llseek +ffffffff81148210 t do_iter_readv_writev +ffffffff81148360 t do_sendfile +ffffffff81148720 t vfs_dedupe_get_page.isra.0 +ffffffff811487c0 t do_iter_read +ffffffff81148980 t do_iter_write +ffffffff81148b30 t vfs_writev +ffffffff81148c20 t do_writev +ffffffff81148cd0 t do_pwritev +ffffffff81148d70 T vfs_setpos +ffffffff81148db0 T generic_file_llseek_size +ffffffff81148ea0 T generic_file_llseek +ffffffff81148ec0 T fixed_size_llseek +ffffffff81148ee0 T no_seek_end_llseek +ffffffff81148f00 T no_seek_end_llseek_size +ffffffff81148f20 T noop_llseek +ffffffff81148f30 T default_llseek +ffffffff81148fe0 T vfs_llseek +ffffffff81149010 T SyS_lseek +ffffffff81149010 T sys_lseek +ffffffff811490b0 T SyS_llseek +ffffffff811490b0 T sys_llseek +ffffffff811491a0 T rw_verify_area +ffffffff811491e0 T __vfs_read +ffffffff81149310 T vfs_read +ffffffff81149430 T kernel_read +ffffffff81149470 T __vfs_write +ffffffff811495b0 T __kernel_write +ffffffff81149680 T vfs_write +ffffffff81149830 T kernel_write +ffffffff81149870 T SyS_read +ffffffff81149870 T sys_read +ffffffff81149910 T SyS_write +ffffffff81149910 T sys_write +ffffffff811499b0 T SyS_pread64 +ffffffff811499b0 T sys_pread64 +ffffffff81149a30 T SyS_pwrite64 +ffffffff81149a30 T sys_pwrite64 +ffffffff81149ab0 T rw_copy_check_uvector +ffffffff81149bb0 T vfs_iter_read +ffffffff81149bd0 T vfs_iter_write +ffffffff81149bf0 T vfs_readv +ffffffff81149c90 t do_readv +ffffffff81149d40 t do_preadv +ffffffff81149de0 T SyS_readv +ffffffff81149de0 T sys_readv +ffffffff81149df0 T SyS_writev +ffffffff81149df0 T sys_writev +ffffffff81149e00 T SyS_preadv +ffffffff81149e00 T sys_preadv +ffffffff81149e10 T SyS_preadv2 +ffffffff81149e10 T sys_preadv2 +ffffffff81149e30 T SyS_pwritev +ffffffff81149e30 T sys_pwritev +ffffffff81149e40 T SyS_pwritev2 +ffffffff81149e40 T sys_pwritev2 +ffffffff81149e60 T SyS_sendfile +ffffffff81149e60 T sys_sendfile +ffffffff81149ee0 T SyS_sendfile64 +ffffffff81149ee0 T sys_sendfile64 +ffffffff81149f60 T vfs_copy_file_range +ffffffff8114a280 T SyS_copy_file_range +ffffffff8114a280 T sys_copy_file_range +ffffffff8114a420 T vfs_clone_file_range +ffffffff8114a600 T vfs_dedupe_file_range_compare +ffffffff8114a870 T vfs_clone_file_prep_inodes +ffffffff8114aa70 T vfs_dedupe_file_range +ffffffff8114acc0 t file_free_rcu +ffffffff8114acf0 t __fput +ffffffff8114aeb0 t delayed_fput +ffffffff8114aee0 t ____fput +ffffffff8114aef0 T get_max_files +ffffffff8114af00 T proc_nr_files +ffffffff8114af20 T get_empty_filp +ffffffff8114b080 T alloc_file +ffffffff8114b140 T flush_delayed_fput +ffffffff8114b170 T fput +ffffffff8114b1f0 T __fput_sync +ffffffff8114b210 T put_filp +ffffffff8114b250 t ns_test_super +ffffffff8114b260 t set_bdev_super +ffffffff8114b290 t test_bdev_super +ffffffff8114b2a0 t compare_single +ffffffff8114b2b0 t destroy_super_work +ffffffff8114b2f0 t destroy_super_rcu +ffffffff8114b330 t super_cache_count +ffffffff8114b3f0 t __put_super.part.1 +ffffffff8114b450 t put_super +ffffffff8114b480 t grab_super +ffffffff8114b500 t destroy_unused_super.part.2 +ffffffff8114b560 t __get_super.part.3 +ffffffff8114b640 t __get_super_thawed +ffffffff8114b710 T deactivate_locked_super +ffffffff8114b780 T deactivate_super +ffffffff8114b7d0 T trylock_super +ffffffff8114b820 t super_cache_scan +ffffffff8114b9c0 T generic_shutdown_super +ffffffff8114bad0 T sget_userns +ffffffff8114bf50 T sget +ffffffff8114bfe0 T drop_super +ffffffff8114c000 T drop_super_exclusive +ffffffff8114c020 T iterate_supers +ffffffff8114c110 T iterate_supers_type +ffffffff8114c1f0 T get_super +ffffffff8114c220 T get_super_thawed +ffffffff8114c230 T get_super_exclusive_thawed +ffffffff8114c240 T get_active_super +ffffffff8114c2d0 T user_get_super +ffffffff8114c390 T do_remount_sb +ffffffff8114c540 t do_emergency_remount +ffffffff8114c660 T emergency_remount +ffffffff8114c6b0 T get_anon_bdev +ffffffff8114c7a0 T set_anon_super +ffffffff8114c7b0 t ns_set_super +ffffffff8114c7c0 T free_anon_bdev +ffffffff8114c800 T kill_anon_super +ffffffff8114c810 T kill_litter_super +ffffffff8114c840 T mount_ns +ffffffff8114c930 T mount_bdev +ffffffff8114cad0 T kill_block_super +ffffffff8114cb10 T mount_nodev +ffffffff8114cba0 T mount_single +ffffffff8114cc50 T mount_fs +ffffffff8114cc90 T super_setup_bdi_name +ffffffff8114cd50 T super_setup_bdi +ffffffff8114cd80 T __sb_end_write +ffffffff8114cdc0 T __sb_start_write +ffffffff8114ce40 T freeze_super +ffffffff8114cfd0 T thaw_super +ffffffff8114d0e0 t cdev_purge +ffffffff8114d140 t exact_match +ffffffff8114d150 t base_probe +ffffffff8114d160 t __unregister_chrdev_region +ffffffff8114d1f0 t __register_chrdev_region +ffffffff8114d3f0 t cdev_dynamic_release +ffffffff8114d410 t cdev_default_release +ffffffff8114d430 t exact_lock +ffffffff8114d450 t chrdev_open +ffffffff8114d5f0 T chrdev_show +ffffffff8114d680 T register_chrdev_region +ffffffff8114d730 T alloc_chrdev_region +ffffffff8114d760 T unregister_chrdev_region +ffffffff8114d7a0 T cdev_put +ffffffff8114d7b0 T cd_forget +ffffffff8114d810 T cdev_add +ffffffff8114d850 T cdev_set_parent +ffffffff8114d860 T cdev_del +ffffffff8114d880 T __unregister_chrdev +ffffffff8114d8b0 T cdev_device_add +ffffffff8114d910 T cdev_device_del +ffffffff8114d940 T cdev_alloc +ffffffff8114d990 T __register_chrdev +ffffffff8114da60 T cdev_init +ffffffff8114dac0 t cp_old_stat +ffffffff8114dc20 t cp_new_stat +ffffffff8114dd70 t cp_statx +ffffffff8114dee0 T generic_fillattr +ffffffff8114df90 T vfs_getattr_nosec +ffffffff8114e010 T vfs_getattr +ffffffff8114e020 T vfs_statx_fd +ffffffff8114e090 T vfs_statx +ffffffff8114e140 T SyS_stat +ffffffff8114e140 T sys_stat +ffffffff8114e180 T SyS_lstat +ffffffff8114e180 T sys_lstat +ffffffff8114e1c0 T SyS_fstat +ffffffff8114e1c0 T sys_fstat +ffffffff8114e200 T SyS_newstat +ffffffff8114e200 T sys_newstat +ffffffff8114e240 T SyS_newlstat +ffffffff8114e240 T sys_newlstat +ffffffff8114e280 T SyS_newfstatat +ffffffff8114e280 T sys_newfstatat +ffffffff8114e2c0 T SyS_newfstat +ffffffff8114e2c0 T sys_newfstat +ffffffff8114e300 T SyS_readlinkat +ffffffff8114e300 T sys_readlinkat +ffffffff8114e400 T SyS_readlink +ffffffff8114e400 T sys_readlink +ffffffff8114e420 T SyS_statx +ffffffff8114e420 T sys_statx +ffffffff8114e470 T __inode_add_bytes +ffffffff8114e4c0 T inode_add_bytes +ffffffff8114e530 T __inode_sub_bytes +ffffffff8114e580 T inode_sub_bytes +ffffffff8114e5f0 T inode_get_bytes +ffffffff8114e630 T inode_set_bytes +ffffffff8114e650 t put_arg_page +ffffffff8114e670 t copy_strings +ffffffff8114e960 t shift_arg_pages +ffffffff8114eab0 t do_open_execat +ffffffff8114ec10 t free_bprm +ffffffff8114ec90 t set_dumpable.part.7 +ffffffff8114ecc0 t count.constprop.8 +ffffffff8114ed30 T __register_binfmt +ffffffff8114edb0 T unregister_binfmt +ffffffff8114ee00 T path_noexec +ffffffff8114ee20 T copy_strings_kernel +ffffffff8114ee60 T setup_arg_pages +ffffffff8114f070 T open_exec +ffffffff8114f0b0 T kernel_read_file +ffffffff8114f1f0 T kernel_read_file_from_path +ffffffff8114f260 T kernel_read_file_from_fd +ffffffff8114f2d0 T read_code +ffffffff8114f2f0 T __get_task_comm +ffffffff8114f340 T __set_task_comm +ffffffff8114f390 T flush_old_exec +ffffffff8114fad0 T would_dump +ffffffff8114fb80 T setup_new_exec +ffffffff8114fd00 T prepare_bprm_creds +ffffffff8114fd70 T bprm_change_interp +ffffffff8114fdb0 T install_exec_creds +ffffffff8114fe10 T prepare_binprm +ffffffff8114ffa0 T remove_arg_zero +ffffffff811500b0 T search_binary_handler +ffffffff811501a0 t do_execveat_common +ffffffff811507e0 T do_execve +ffffffff81150800 T do_execveat +ffffffff81150810 T set_binfmt +ffffffff81150830 T set_dumpable +ffffffff81150840 T SyS_execve +ffffffff81150840 T sys_execve +ffffffff81150870 T SyS_execveat +ffffffff81150870 T sys_execveat +ffffffff811508c0 T generic_pipe_buf_confirm +ffffffff811508d0 t pipe_poll +ffffffff81150950 T generic_pipe_buf_get +ffffffff81150970 t pipe_ioctl +ffffffff811509f0 t anon_pipe_buf_steal +ffffffff81150a30 t anon_pipe_buf_release +ffffffff81150a80 t is_unprivileged_user +ffffffff81150ab0 t pipe_fasync +ffffffff81150b50 t pipefs_dname +ffffffff81150b70 t pipefs_mount +ffffffff81150ba0 t round_pipe_size.part.3 +ffffffff81150bc0 T pipe_lock +ffffffff81150bd0 T pipe_unlock +ffffffff81150be0 T pipe_double_lock +ffffffff81150c50 T pipe_wait +ffffffff81150ce0 t wait_for_partner +ffffffff81150d30 t pipe_write +ffffffff81151120 t pipe_read +ffffffff811513f0 T generic_pipe_buf_steal +ffffffff81151450 T generic_pipe_buf_release +ffffffff81151470 T alloc_pipe_info +ffffffff811515f0 T free_pipe_info +ffffffff81151680 t put_pipe_info +ffffffff811516d0 t pipe_release +ffffffff81151770 t fifo_open +ffffffff81151a30 T create_pipe_files +ffffffff81151c30 t __do_pipe_flags +ffffffff81151cf0 T do_pipe_flags +ffffffff81151d30 T SyS_pipe2 +ffffffff81151d30 T sys_pipe2 +ffffffff81151dc0 T SyS_pipe +ffffffff81151dc0 T sys_pipe +ffffffff81151dd0 T round_pipe_size +ffffffff81151e00 T get_pipe_info +ffffffff81151e20 T pipe_fcntl +ffffffff81152040 t restore_nameidata +ffffffff81152080 t __nd_alloc_stack +ffffffff81152150 t follow_mount +ffffffff811521b0 t terminate_walk +ffffffff811522b0 t path_connected +ffffffff811522e0 t follow_dotdot_rcu +ffffffff81152420 t path_parent_directory +ffffffff81152450 t lookup_slow +ffffffff811525a0 t lookup_dcache +ffffffff81152600 T page_put_link +ffffffff81152620 T page_get_link +ffffffff81152700 t __follow_mount_rcu.isra.3 +ffffffff811527e0 t legitimize_path.isra.4 +ffffffff81152830 t legitimize_links +ffffffff811528d0 t unlazy_walk +ffffffff81152970 t complete_walk +ffffffff811529e0 t pick_link +ffffffff81152bf0 t __lookup_hash +ffffffff81152c90 t follow_managed +ffffffff81152f80 t lookup_fast +ffffffff81153220 T getname_kernel +ffffffff811532f0 T putname +ffffffff81153340 T getname_flags +ffffffff811534b0 T getname +ffffffff811534c0 T generic_permission +ffffffff81153650 T inode_permission +ffffffff81153790 t may_open +ffffffff81153880 T path_get +ffffffff811538b0 t set_root +ffffffff81153960 t nd_jump_root +ffffffff811539f0 t trailing_symlink +ffffffff81153bc0 t path_init +ffffffff81153ef0 T path_put +ffffffff81153f10 T nd_jump_link +ffffffff81153f70 T follow_up +ffffffff81154000 t follow_dotdot +ffffffff81154050 t walk_component +ffffffff811542f0 t link_path_walk +ffffffff811547f0 t path_parentat +ffffffff81154870 t filename_parentat +ffffffff811549a0 t filename_create +ffffffff81154ae0 t path_mountpoint +ffffffff81154d90 t filename_mountpoint +ffffffff81154e80 t path_lookupat +ffffffff81155040 t filename_lookup +ffffffff81155160 T follow_down_one +ffffffff811551b0 T follow_down +ffffffff81155260 T full_name_hash +ffffffff811552f0 T hashlen_string +ffffffff81155390 T kern_path_locked +ffffffff81155470 T kern_path +ffffffff811554a0 T vfs_path_lookup +ffffffff811554e0 T lookup_one_len +ffffffff811555c0 T lookup_one_len_unlocked +ffffffff811556a0 T path_pts +ffffffff81155710 T user_path_at_empty +ffffffff81155740 T user_path_mountpoint_at +ffffffff81155770 T kern_path_mountpoint +ffffffff811557a0 T __check_sticky +ffffffff811557e0 t may_delete +ffffffff811558f0 T lock_rename +ffffffff811559a0 T unlock_rename +ffffffff811559f0 T vfs_create +ffffffff81155b00 T vfs_mkobj +ffffffff81155c00 T may_open_dev +ffffffff81155c20 T vfs_tmpfile +ffffffff81155d00 t path_openat +ffffffff81156f10 T do_filp_open +ffffffff81157000 T do_file_open_root +ffffffff81157140 T kern_path_create +ffffffff81157170 T done_path_create +ffffffff811571b0 T user_path_create +ffffffff811571e0 T vfs_mknod +ffffffff81157360 T SyS_mknodat +ffffffff81157360 T sys_mknodat +ffffffff81157550 T SyS_mknod +ffffffff81157550 T sys_mknod +ffffffff81157570 T vfs_mkdir +ffffffff81157680 T SyS_mkdirat +ffffffff81157680 T sys_mkdirat +ffffffff81157750 T SyS_mkdir +ffffffff81157750 T sys_mkdir +ffffffff81157760 T vfs_rmdir +ffffffff811578a0 t do_rmdir +ffffffff81157a60 T SyS_rmdir +ffffffff81157a60 T sys_rmdir +ffffffff81157a70 T vfs_unlink +ffffffff81157c00 T do_unlinkat +ffffffff81157ee0 T SyS_unlinkat +ffffffff81157ee0 T sys_unlinkat +ffffffff81157f20 T SyS_unlink +ffffffff81157f20 T sys_unlink +ffffffff81157f40 T vfs_symlink +ffffffff81158030 T SyS_symlinkat +ffffffff81158030 T sys_symlinkat +ffffffff811580e0 T SyS_symlink +ffffffff811580e0 T sys_symlink +ffffffff811580f0 T vfs_link +ffffffff81158390 T SyS_linkat +ffffffff81158390 T sys_linkat +ffffffff81158680 T SyS_link +ffffffff81158680 T sys_link +ffffffff811586a0 T vfs_rename +ffffffff81158ef0 T SyS_renameat2 +ffffffff81158ef0 T sys_renameat2 +ffffffff81159420 T SyS_renameat +ffffffff81159420 T sys_renameat +ffffffff81159430 T SyS_rename +ffffffff81159430 T sys_rename +ffffffff81159450 T vfs_whiteout +ffffffff81159510 T readlink_copy +ffffffff81159560 T vfs_readlink +ffffffff81159650 T vfs_get_link +ffffffff81159680 T page_readlink +ffffffff811596e0 T __page_symlink +ffffffff811597b0 T page_symlink +ffffffff811597d0 t f_modown +ffffffff81159880 t send_sigio_to_task +ffffffff811599a0 t fasync_free_rcu +ffffffff811599b0 T __f_setown +ffffffff811599c0 T f_setown +ffffffff81159a40 T f_delown +ffffffff81159a80 T f_getown +ffffffff81159ac0 T SyS_fcntl +ffffffff81159ac0 T sys_fcntl +ffffffff8115a150 T send_sigio +ffffffff8115a220 T send_sigurg +ffffffff8115a320 T fasync_remove_entry +ffffffff8115a3e0 T fasync_alloc +ffffffff8115a400 T fasync_free +ffffffff8115a410 T fasync_insert_entry +ffffffff8115a4c0 T fasync_helper +ffffffff8115a540 T kill_fasync +ffffffff8115a5d0 t ioctl_file_clone +ffffffff8115a6c0 T vfs_ioctl +ffffffff8115a6f0 T fiemap_fill_next_extent +ffffffff8115a7f0 T fiemap_check_flags +ffffffff8115a810 T __generic_block_fiemap +ffffffff8115aa70 T generic_block_fiemap +ffffffff8115aad0 T ioctl_preallocate +ffffffff8115ab60 T do_vfs_ioctl +ffffffff8115b140 T SyS_ioctl +ffffffff8115b140 T sys_ioctl +ffffffff8115b1b0 t fillonedir +ffffffff8115b260 t filldir +ffffffff8115b350 t filldir64 +ffffffff8115b460 T iterate_dir +ffffffff8115b5c0 T SyS_old_readdir +ffffffff8115b5c0 T sys_old_readdir +ffffffff8115b670 T SyS_getdents +ffffffff8115b670 T sys_getdents +ffffffff8115b770 T SyS_getdents64 +ffffffff8115b770 T sys_getdents64 +ffffffff8115b880 t __pollwait +ffffffff8115b960 t poll_select_copy_remaining +ffffffff8115ba70 t pollwake +ffffffff8115bae0 T select_estimate_accuracy +ffffffff8115bbc0 T poll_initwait +ffffffff8115bc00 T poll_freewait +ffffffff8115bca0 T poll_schedule_timeout +ffffffff8115bd00 t do_select +ffffffff8115c4a0 t do_sys_poll +ffffffff8115c9f0 t do_restart_poll +ffffffff8115ca50 T poll_select_set_timeout +ffffffff8115cac0 T core_sys_select +ffffffff8115cd20 T SyS_select +ffffffff8115cd20 T sys_select +ffffffff8115ce00 T SyS_pselect6 +ffffffff8115ce00 T sys_pselect6 +ffffffff8115d010 T SyS_poll +ffffffff8115d010 T sys_poll +ffffffff8115d110 T SyS_ppoll +ffffffff8115d110 T sys_ppoll +ffffffff8115d260 t prepend_name +ffffffff8115d2c0 t __d_rehash +ffffffff8115d340 t ___d_drop +ffffffff8115d3e0 t d_flags_for_inode +ffffffff8115d460 t select_collect +ffffffff8115d520 t detach_and_collect +ffffffff8115d540 t dentry_unlink_inode +ffffffff8115d670 t __d_free_external +ffffffff8115d6a0 t __d_free +ffffffff8115d6c0 t __d_instantiate +ffffffff8115d780 t d_walk +ffffffff8115da90 t dentry_lru_isolate +ffffffff8115db40 t dentry_lru_isolate_shrink +ffffffff8115db90 t path_check_mount +ffffffff8115dbd0 t prepend_path +ffffffff8115de90 t d_genocide_kill +ffffffff8115dec0 t dentry_free +ffffffff8115df10 t __dentry_kill +ffffffff8115e080 t shrink_dentry_list +ffffffff8115e350 t umount_check +ffffffff8115e3b0 t __dentry_path.part.4 +ffffffff8115e500 t check_and_drop +ffffffff8115e530 t dput.part.6 +ffffffff8115e6e0 t __d_instantiate_anon +ffffffff8115e890 T proc_nr_dentry +ffffffff8115e970 T take_dentry_name_snapshot +ffffffff8115e9f0 T release_dentry_name_snapshot +ffffffff8115ea10 T __d_drop +ffffffff8115ea20 T d_drop +ffffffff8115ea50 T dput +ffffffff8115ea60 T dget_parent +ffffffff8115eb00 T d_find_alias +ffffffff8115ec20 T d_prune_aliases +ffffffff8115ed70 T prune_dcache_sb +ffffffff8115edc0 T shrink_dcache_sb +ffffffff8115ee30 T path_has_submounts +ffffffff8115ee80 T d_set_mounted +ffffffff8115ef40 T shrink_dcache_parent +ffffffff8115efa0 t do_one_tree +ffffffff8115efe0 T shrink_dcache_for_umount +ffffffff8115f050 T d_invalidate +ffffffff8115f140 T d_set_d_op +ffffffff8115f1a0 T __d_alloc +ffffffff8115f360 T d_alloc +ffffffff8115f3d0 T d_alloc_name +ffffffff8115f400 T d_alloc_anon +ffffffff8115f410 T d_alloc_cursor +ffffffff8115f450 T d_alloc_pseudo +ffffffff8115f460 T d_set_fallthru +ffffffff8115f490 T d_instantiate +ffffffff8115f4e0 T d_instantiate_no_diralias +ffffffff8115f550 T d_make_root +ffffffff8115f590 T d_find_any_alias +ffffffff8115f5f0 t __d_obtain_alias.part.8 +ffffffff8115f650 T d_instantiate_anon +ffffffff8115f660 T d_obtain_alias +ffffffff8115f690 T d_obtain_root +ffffffff8115f6c0 T __d_lookup_rcu +ffffffff8115f850 T __d_lookup +ffffffff8115f970 T d_lookup +ffffffff8115f9b0 T d_hash_and_lookup +ffffffff8115fa00 T d_delete +ffffffff8115fab0 T d_rehash +ffffffff8115fae0 T d_alloc_parallel +ffffffff8115fff0 T __d_lookup_done +ffffffff811600f0 t __d_move +ffffffff81160600 T d_add +ffffffff81160780 T d_exact_alias +ffffffff811608e0 T dentry_update_name_case +ffffffff81160940 T d_move +ffffffff81160980 T d_exchange +ffffffff811609c0 T d_ancestor +ffffffff811609e0 T d_splice_alias +ffffffff81160de0 T d_add_ci +ffffffff81160ed0 T __d_path +ffffffff81160f30 T d_absolute_path +ffffffff81160fb0 T d_path +ffffffff811610e0 T dynamic_dname +ffffffff81161180 T simple_dname +ffffffff811611f0 T dentry_path_raw +ffffffff81161210 T dentry_path +ffffffff81161280 T SyS_getcwd +ffffffff81161280 T sys_getcwd +ffffffff81161400 T is_subdir +ffffffff81161470 T d_genocide +ffffffff81161490 T d_tmpfile +ffffffff81161530 t no_open +ffffffff81161540 t get_nr_inodes +ffffffff81161590 t i_callback +ffffffff811615b0 t inode_lru_list_add +ffffffff811615f0 t __wait_on_freeing_inode +ffffffff811616b0 t find_inode +ffffffff81161750 t find_inode_fast +ffffffff811617e0 T generic_update_time +ffffffff811618a0 T get_nr_dirty_inodes +ffffffff81161900 T proc_nr_inodes +ffffffff811619a0 T inode_init_always +ffffffff81161b40 t alloc_inode +ffffffff81161bc0 T free_inode_nonrcu +ffffffff81161bd0 T __destroy_inode +ffffffff81161c70 t destroy_inode +ffffffff81161cc0 T drop_nlink +ffffffff81161ce0 T clear_nlink +ffffffff81161d00 T set_nlink +ffffffff81161d40 T inc_nlink +ffffffff81161d70 T address_space_init_once +ffffffff81161e00 T inode_init_once +ffffffff81161eb0 t init_once +ffffffff81161ec0 T __iget +ffffffff81161ed0 T ihold +ffffffff81161ee0 T inode_add_lru +ffffffff81161f10 T inode_sb_list_add +ffffffff81161f70 T __insert_inode_hash +ffffffff81162010 T __remove_inode_hash +ffffffff81162080 T clear_inode +ffffffff81162100 t evict +ffffffff81162290 t dispose_list +ffffffff811622d0 T evict_inodes +ffffffff81162430 T invalidate_inodes +ffffffff81162590 T prune_icache_sb +ffffffff811625e0 T get_next_ino +ffffffff81162630 T new_inode_pseudo +ffffffff81162680 T new_inode +ffffffff811626b0 T unlock_new_inode +ffffffff811626f0 T lock_two_nondirectories +ffffffff81162760 T unlock_two_nondirectories +ffffffff811627c0 T iunique +ffffffff811628b0 T igrab +ffffffff811628f0 T ilookup5_nowait +ffffffff81162970 T find_inode_nowait +ffffffff81162a30 T generic_delete_inode +ffffffff81162a40 T iput +ffffffff81162be0 t inode_lru_isolate +ffffffff81162d30 T iget5_locked +ffffffff81162f00 T iget_locked +ffffffff81163080 T ilookup5 +ffffffff81163110 T ilookup +ffffffff811631e0 T insert_inode_locked +ffffffff81163380 T insert_inode_locked4 +ffffffff81163530 T bmap +ffffffff81163550 T should_remove_suid +ffffffff811635b0 t dentry_needs_remove_privs.part.4 +ffffffff811635e0 T dentry_needs_remove_privs +ffffffff811635f0 T file_remove_privs +ffffffff811636a0 T inode_needs_sync +ffffffff811636f0 T init_special_inode +ffffffff81163760 T inode_init_owner +ffffffff811637c0 T inode_owner_or_capable +ffffffff81163810 T inode_dio_wait +ffffffff811638e0 T inode_set_flags +ffffffff81163900 T inode_nohighmem +ffffffff81163910 T current_time +ffffffff81163950 T __atime_needs_update +ffffffff81163ad0 T touch_atime +ffffffff81163b80 T file_update_time +ffffffff81163c70 T inode_newsize_ok +ffffffff81163cd0 T setattr_prepare +ffffffff81163e30 T setattr_copy +ffffffff81163f30 T notify_change +ffffffff81164320 t bad_file_open +ffffffff81164330 t bad_inode_create +ffffffff81164340 t bad_inode_lookup +ffffffff81164350 t bad_inode_link +ffffffff81164360 t bad_inode_mkdir +ffffffff81164370 t bad_inode_mknod +ffffffff81164380 t bad_inode_rename2 +ffffffff81164390 t bad_inode_readlink +ffffffff811643a0 t bad_inode_permission +ffffffff811643b0 t bad_inode_getattr +ffffffff811643c0 t bad_inode_listxattr +ffffffff811643d0 t bad_inode_get_link +ffffffff811643e0 t bad_inode_get_acl +ffffffff811643f0 t bad_inode_fiemap +ffffffff81164400 t bad_inode_atomic_open +ffffffff81164410 t bad_inode_update_time +ffffffff81164420 t bad_inode_tmpfile +ffffffff81164430 t bad_inode_symlink +ffffffff81164440 t bad_inode_setattr +ffffffff81164450 t bad_inode_set_acl +ffffffff81164460 t bad_inode_unlink +ffffffff81164470 t bad_inode_rmdir +ffffffff81164480 T make_bad_inode +ffffffff811644f0 T is_bad_inode +ffffffff81164500 T iget_failed +ffffffff81164520 t __free_fdtable +ffffffff81164540 t free_fdtable_rcu +ffffffff81164550 t alloc_fdtable +ffffffff81164640 t copy_fd_bitmaps +ffffffff81164700 t do_dup2 +ffffffff811647b0 t expand_files +ffffffff81164980 t __fget +ffffffff81164a30 t __fget_light +ffffffff81164a90 T dup_fd +ffffffff81164d10 T get_files_struct +ffffffff81164d50 T put_files_struct +ffffffff81164e00 T reset_files_struct +ffffffff81164e50 T exit_files +ffffffff81164ea0 T __alloc_fd +ffffffff81165000 T get_unused_fd_flags +ffffffff81165030 T put_unused_fd +ffffffff81165090 T __fd_install +ffffffff81165130 T fd_install +ffffffff81165150 T __close_fd +ffffffff811651e0 T do_close_on_exec +ffffffff811652e0 T fget +ffffffff811652f0 T fget_raw +ffffffff81165300 T __fdget +ffffffff81165310 T __fdget_raw +ffffffff81165320 T __fdget_pos +ffffffff81165370 T __f_unlock_pos +ffffffff81165380 T set_close_on_exec +ffffffff811653f0 T get_close_on_exec +ffffffff81165430 T replace_fd +ffffffff811654f0 T SyS_dup3 +ffffffff811654f0 T sys_dup3 +ffffffff81165610 T SyS_dup2 +ffffffff81165610 T sys_dup2 +ffffffff81165680 T SyS_dup +ffffffff81165680 T sys_dup +ffffffff811656e0 T f_dupfd +ffffffff81165750 T iterate_fd +ffffffff811657e0 t find_filesystem +ffffffff81165840 t filesystems_proc_open +ffffffff81165860 t filesystems_proc_show +ffffffff811658d0 T get_filesystem +ffffffff811658e0 T put_filesystem +ffffffff811658f0 T register_filesystem +ffffffff81165960 T unregister_filesystem +ffffffff811659e0 T get_fs_type +ffffffff81165a70 t lookup_mountpoint +ffffffff81165ae0 t __attach_mnt +ffffffff81165b50 t m_show +ffffffff81165b70 t mntns_get +ffffffff81165bb0 t mntns_owner +ffffffff81165bc0 t alloc_mnt_ns +ffffffff81165cf0 t cleanup_group_ids +ffffffff81165da0 t m_stop +ffffffff81165db0 t mnt_alloc_group_id +ffffffff81165e00 t invent_group_ids +ffffffff81165eb0 t free_vfsmnt +ffffffff81165ee0 t delayed_free_vfsmnt +ffffffff81165ef0 t m_next +ffffffff81165f20 t m_start +ffffffff81165fa0 t namespace_unlock +ffffffff81165ff0 t get_mountpoint +ffffffff81166120 t free_mnt_ns +ffffffff81166170 t put_mountpoint +ffffffff811661e0 t unhash_mnt +ffffffff81166280 t umount_tree +ffffffff81166500 t unlock_mount +ffffffff81166540 t mnt_free_id.isra.3 +ffffffff81166580 t alloc_vfsmnt +ffffffff811667a0 t clone_mnt +ffffffff81166a90 t mnt_get_writers.isra.4 +ffffffff81166ae0 t cleanup_mnt +ffffffff81166b40 t delayed_mntput +ffffffff81166b70 t __cleanup_mnt +ffffffff81166b80 t touch_mnt_namespace.part.5 +ffffffff81166bb0 t commit_tree +ffffffff81166c70 t vfs_kern_mount.part.11 +ffffffff81166d60 T mnt_release_group_id +ffffffff81166da0 T mnt_get_count +ffffffff81166df0 t mntput_no_expire +ffffffff81166f80 t create_mnt_ns +ffffffff81167000 t drop_mountpoint +ffffffff81167040 T __mnt_is_readonly +ffffffff81167060 T __mnt_want_write +ffffffff811670d0 T mnt_want_write +ffffffff81167120 T mnt_clone_write +ffffffff81167160 T __mnt_want_write_file +ffffffff81167180 T mnt_want_write_file_path +ffffffff811671d0 T mnt_want_write_file +ffffffff81167270 T __mnt_drop_write +ffffffff81167290 T mnt_drop_write +ffffffff811672d0 T __mnt_drop_write_file +ffffffff81167300 T mnt_drop_write_file_path +ffffffff81167310 T mnt_drop_write_file +ffffffff81167350 T sb_prepare_remount_readonly +ffffffff81167450 T __legitimize_mnt +ffffffff81167490 T legitimize_mnt +ffffffff811674e0 T __lookup_mnt +ffffffff81167540 T lookup_mnt +ffffffff811675a0 t lock_mount +ffffffff81167690 T __is_local_mountpoint +ffffffff81167730 T mnt_set_mountpoint +ffffffff811677a0 T mnt_change_mountpoint +ffffffff81167880 T vfs_kern_mount +ffffffff811678a0 T vfs_submount +ffffffff811678e0 T mntput +ffffffff81167910 T mntget +ffffffff81167930 T path_is_mountpoint +ffffffff811679a0 T mnt_clone_internal +ffffffff811679d0 T may_umount_tree +ffffffff81167aa0 T may_umount +ffffffff81167b00 T __detach_mounts +ffffffff81167be0 T SyS_umount +ffffffff81167be0 T sys_umount +ffffffff81167fe0 T SyS_oldumount +ffffffff81167fe0 T sys_oldumount +ffffffff81167ff0 T to_mnt_ns +ffffffff81168000 T copy_tree +ffffffff81168310 T collect_mounts +ffffffff81168390 T drop_collected_mounts +ffffffff811683e0 T clone_private_mount +ffffffff81168420 T iterate_mounts +ffffffff811684a0 T count_mounts +ffffffff81168530 t attach_recursive_mnt +ffffffff811687e0 t graft_tree +ffffffff81168850 t do_add_mount +ffffffff81168920 T finish_automount +ffffffff81168a20 T mnt_set_expiry +ffffffff81168a60 T mark_mounts_for_expiry +ffffffff81168ba0 T copy_mount_options +ffffffff81168db0 T copy_mount_string +ffffffff81168dd0 T do_mount +ffffffff811699a0 T copy_mnt_ns +ffffffff81169c50 T SyS_mount +ffffffff81169c50 T sys_mount +ffffffff81169d20 T is_path_reachable +ffffffff81169d70 T path_is_under +ffffffff81169db0 T SyS_pivot_root +ffffffff81169db0 T sys_pivot_root +ffffffff8116a140 T put_mnt_ns +ffffffff8116a170 T mount_subtree +ffffffff8116a210 t mntns_install +ffffffff8116a320 t mntns_put +ffffffff8116a330 T kern_mount_data +ffffffff8116a370 T kern_unmount +ffffffff8116a3c0 T our_mnt +ffffffff8116a3e0 T current_chrooted +ffffffff8116a4c0 T mnt_may_suid +ffffffff8116a500 t single_start +ffffffff8116a510 t single_next +ffffffff8116a520 t single_stop +ffffffff8116a530 t traverse +ffffffff8116a740 T seq_open +ffffffff8116a7b0 T seq_read +ffffffff8116abd0 T seq_lseek +ffffffff8116aca0 T seq_release +ffffffff8116acc0 T seq_escape +ffffffff8116ad50 T seq_vprintf +ffffffff8116ad90 T seq_printf +ffffffff8116ade0 T mangle_path +ffffffff8116ae90 T seq_path +ffffffff8116af40 T seq_file_path +ffffffff8116af50 T seq_path_root +ffffffff8116b000 T seq_dentry +ffffffff8116b0b0 T single_open +ffffffff8116b140 T single_open_size +ffffffff8116b1d0 T single_release +ffffffff8116b200 T seq_release_private +ffffffff8116b240 T __seq_open_private +ffffffff8116b290 T seq_open_private +ffffffff8116b2a0 T seq_putc +ffffffff8116b2c0 T seq_puts +ffffffff8116b310 T seq_put_decimal_ull +ffffffff8116b3c0 T seq_put_decimal_ll +ffffffff8116b490 T seq_write +ffffffff8116b4d0 T seq_pad +ffffffff8116b520 T seq_hex_dump +ffffffff8116b6c0 T seq_list_start +ffffffff8116b6f0 T seq_list_start_head +ffffffff8116b730 T seq_list_next +ffffffff8116b750 T seq_hlist_start +ffffffff8116b770 T seq_hlist_start_head +ffffffff8116b7b0 T seq_hlist_next +ffffffff8116b7c0 T seq_hlist_start_rcu +ffffffff8116b7e0 T seq_hlist_start_head_rcu +ffffffff8116b820 T seq_hlist_next_rcu +ffffffff8116b840 T seq_hlist_start_percpu +ffffffff8116b8d0 T seq_hlist_next_percpu +ffffffff8116b960 t xattr_resolve_name +ffffffff8116ba40 t xattr_permission +ffffffff8116bb40 t listxattr +ffffffff8116bc20 t path_listxattr +ffffffff8116bca0 t xattr_list_one +ffffffff8116bd00 T __vfs_setxattr +ffffffff8116bd80 T __vfs_setxattr_noperm +ffffffff8116be60 T vfs_setxattr +ffffffff8116bf00 t setxattr +ffffffff8116c060 t path_setxattr +ffffffff8116c110 T xattr_getsecurity +ffffffff8116c120 T vfs_getxattr_alloc +ffffffff8116c230 T __vfs_getxattr +ffffffff8116c2a0 T vfs_getxattr +ffffffff8116c2f0 t getxattr +ffffffff8116c450 t path_getxattr +ffffffff8116c4e0 T vfs_listxattr +ffffffff8116c500 T __vfs_removexattr +ffffffff8116c560 T vfs_removexattr +ffffffff8116c630 t removexattr +ffffffff8116c680 t path_removexattr +ffffffff8116c710 T SyS_setxattr +ffffffff8116c710 T sys_setxattr +ffffffff8116c720 T SyS_lsetxattr +ffffffff8116c720 T sys_lsetxattr +ffffffff8116c730 T SyS_fsetxattr +ffffffff8116c730 T sys_fsetxattr +ffffffff8116c7c0 T SyS_getxattr +ffffffff8116c7c0 T sys_getxattr +ffffffff8116c7d0 T SyS_lgetxattr +ffffffff8116c7d0 T sys_lgetxattr +ffffffff8116c7e0 T SyS_fgetxattr +ffffffff8116c7e0 T sys_fgetxattr +ffffffff8116c850 T SyS_listxattr +ffffffff8116c850 T sys_listxattr +ffffffff8116c860 T SyS_llistxattr +ffffffff8116c860 T sys_llistxattr +ffffffff8116c870 T SyS_flistxattr +ffffffff8116c870 T sys_flistxattr +ffffffff8116c8d0 T SyS_removexattr +ffffffff8116c8d0 T sys_removexattr +ffffffff8116c8e0 T SyS_lremovexattr +ffffffff8116c8e0 T sys_lremovexattr +ffffffff8116c8f0 T SyS_fremovexattr +ffffffff8116c8f0 T sys_fremovexattr +ffffffff8116c960 T generic_listxattr +ffffffff8116ca90 T xattr_full_name +ffffffff8116cab0 T simple_xattr_alloc +ffffffff8116cb00 T simple_xattr_get +ffffffff8116cba0 T simple_xattr_set +ffffffff8116cd10 T simple_xattr_list +ffffffff8116ce30 T simple_xattr_list_add +ffffffff8116ce70 T simple_statfs +ffffffff8116ce90 T always_delete_dentry +ffffffff8116cea0 t move_cursor +ffffffff8116cf70 T generic_read_dir +ffffffff8116cf80 T noop_fsync +ffffffff8116cf90 t anon_set_page_dirty +ffffffff8116cfa0 T simple_get_link +ffffffff8116cfb0 t empty_dir_lookup +ffffffff8116cfc0 t empty_dir_setattr +ffffffff8116cfd0 t empty_dir_listxattr +ffffffff8116cfe0 t empty_dir_getattr +ffffffff8116cff0 T dcache_dir_open +ffffffff8116d010 T dcache_dir_close +ffffffff8116d020 t empty_dir_llseek +ffffffff8116d030 t empty_dir_readdir +ffffffff8116d0f0 T simple_lookup +ffffffff8116d140 t next_positive.isra.2 +ffffffff8116d1f0 T dcache_dir_lseek +ffffffff8116d2a0 T dcache_readdir +ffffffff8116d400 T simple_getattr +ffffffff8116d430 T mount_pseudo_xattr +ffffffff8116d5b0 T simple_open +ffffffff8116d5d0 T simple_link +ffffffff8116d640 T simple_empty +ffffffff8116d6c0 T simple_unlink +ffffffff8116d710 T simple_rmdir +ffffffff8116d750 T simple_rename +ffffffff8116d830 T simple_setattr +ffffffff8116d890 T simple_readpage +ffffffff8116d8f0 T simple_write_begin +ffffffff8116daa0 T simple_write_end +ffffffff8116dba0 T simple_fill_super +ffffffff8116dd70 T simple_pin_fs +ffffffff8116de10 T simple_release_fs +ffffffff8116de50 T simple_read_from_buffer +ffffffff8116dec0 T simple_write_to_buffer +ffffffff8116df30 T memory_read_from_buffer +ffffffff8116df80 T simple_transaction_set +ffffffff8116dfa0 T simple_transaction_get +ffffffff8116e060 T simple_transaction_read +ffffffff8116e090 T simple_transaction_release +ffffffff8116e0b0 T simple_attr_open +ffffffff8116e140 T simple_attr_release +ffffffff8116e150 T simple_attr_read +ffffffff8116e210 T simple_attr_write +ffffffff8116e2e0 T generic_fh_to_dentry +ffffffff8116e310 T generic_fh_to_parent +ffffffff8116e340 T __generic_file_fsync +ffffffff8116e3f0 T generic_file_fsync +ffffffff8116e420 T generic_check_addressable +ffffffff8116e450 T kfree_link +ffffffff8116e460 T alloc_anon_inode +ffffffff8116e500 T simple_nosetlease +ffffffff8116e510 T make_empty_dir_inode +ffffffff8116e570 T is_empty_dir_inode +ffffffff8116e590 t move_expired_inodes +ffffffff8116e700 t wb_wakeup +ffffffff8116e740 t inode_to_wb_and_lock_list +ffffffff8116e790 t __inode_wait_for_writeback +ffffffff8116e850 t inode_sync_complete +ffffffff8116e880 t inode_sleep_on_writeback +ffffffff8116e920 t get_nr_dirty_pages +ffffffff8116e950 t wakeup_dirtytime_writeback +ffffffff8116e9f0 t block_dump___mark_inode_dirty +ffffffff8116eac0 t wb_io_lists_depopulated +ffffffff8116eb10 t inode_io_list_del_locked +ffffffff8116eb50 t wb_io_lists_populated.part.5 +ffffffff8116eb70 t queue_io +ffffffff8116ec10 t inode_io_list_move_locked +ffffffff8116ec80 t redirty_tail +ffffffff8116ecc0 t finish_writeback_work.isra.7 +ffffffff8116ed10 t wb_queue_work +ffffffff8116eda0 t __wakeup_flusher_threads_bdi.part.9 +ffffffff8116ee10 t wb_wait_for_completion +ffffffff8116ee70 t __writeback_inodes_sb_nr +ffffffff8116ef20 T wb_start_background_writeback +ffffffff8116ef30 T inode_io_list_del +ffffffff8116ef60 T sb_mark_inode_writeback +ffffffff8116efe0 T sb_clear_inode_writeback +ffffffff8116f050 T inode_wait_for_writeback +ffffffff8116f080 T wakeup_flusher_threads_bdi +ffffffff8116f0b0 T wakeup_flusher_threads +ffffffff8116f160 T dirtytime_interval_handler +ffffffff8116f1a0 T __mark_inode_dirty +ffffffff8116f3f0 t __writeback_single_inode +ffffffff8116f570 t writeback_single_inode +ffffffff8116f660 t writeback_sb_inodes +ffffffff8116fa20 t __writeback_inodes_wb +ffffffff8116fac0 t writeback_inodes_wb.constprop.11 +ffffffff8116fb70 t wb_writeback +ffffffff8116fd50 T wb_workfn +ffffffff8116ffd0 T writeback_inodes_sb_nr +ffffffff8116ffe0 T writeback_inodes_sb +ffffffff81170000 T try_to_writeback_inodes_sb +ffffffff81170050 T sync_inodes_sb +ffffffff81170290 T write_inode_now +ffffffff81170330 T sync_inode +ffffffff81170340 T sync_inode_metadata +ffffffff81170390 t next_group +ffffffff81170440 t propagation_next.part.0 +ffffffff81170490 t propagate_one +ffffffff81170690 T get_dominating_id +ffffffff81170710 T change_mnt_propagation +ffffffff81170960 T propagate_mnt +ffffffff81170ab0 T propagate_mount_busy +ffffffff81170c20 T propagate_mount_unlock +ffffffff81170ce0 T propagate_umount +ffffffff81171220 t generic_pipe_buf_nosteal +ffffffff81171230 t direct_splice_actor +ffffffff81171270 t pipe_to_sendpage +ffffffff811712d0 t page_cache_pipe_buf_confirm +ffffffff81171360 t page_cache_pipe_buf_steal +ffffffff81171430 t page_cache_pipe_buf_release +ffffffff81171470 t user_page_pipe_buf_steal +ffffffff81171490 t wakeup_pipe_writers +ffffffff811714d0 t wakeup_pipe_readers +ffffffff81171510 t do_splice_to +ffffffff811715a0 t default_file_splice_read +ffffffff81171860 t write_pipe_buf +ffffffff811718b0 t pipe_to_user +ffffffff811718e0 t wait_for_space +ffffffff81171970 t splice_from_pipe_next.part.2 +ffffffff81171a10 t ipipe_prep.part.4 +ffffffff81171ab0 t opipe_prep.part.5 +ffffffff81171b70 T splice_to_pipe +ffffffff81171c70 T add_to_pipe +ffffffff81171d30 t iter_to_pipe +ffffffff81171eb0 t vmsplice_to_pipe +ffffffff81171fb0 T splice_grow_spd +ffffffff81172020 T splice_shrink_spd +ffffffff81172040 T generic_file_splice_read +ffffffff81172180 T __splice_from_pipe +ffffffff81172300 t vmsplice_to_user +ffffffff81172410 T splice_from_pipe +ffffffff81172470 t default_file_splice_write +ffffffff81172490 T iter_file_splice_write +ffffffff81172800 T generic_splice_sendpage +ffffffff81172810 T splice_direct_to_actor +ffffffff811729d0 T do_splice_direct +ffffffff81172a70 T SyS_vmsplice +ffffffff81172a70 T sys_vmsplice +ffffffff81172b30 T SyS_splice +ffffffff81172b30 T sys_splice +ffffffff811731d0 T SyS_tee +ffffffff811731d0 T sys_tee +ffffffff81173570 t sync_inodes_one_sb +ffffffff81173580 t fdatawait_one_bdev +ffffffff81173590 t fdatawrite_one_bdev +ffffffff811735a0 t do_sync_work +ffffffff81173630 t sync_fs_one_sb +ffffffff81173650 T sync_filesystem +ffffffff811736d0 T sys_sync +ffffffff81173760 T emergency_sync +ffffffff811737b0 T SyS_syncfs +ffffffff811737b0 T sys_syncfs +ffffffff81173810 T vfs_fsync_range +ffffffff811738c0 t do_fsync +ffffffff81173920 T vfs_fsync +ffffffff81173940 T SyS_fsync +ffffffff81173940 T sys_fsync +ffffffff81173950 T SyS_fdatasync +ffffffff81173950 T sys_fdatasync +ffffffff81173960 T SyS_sync_file_range +ffffffff81173960 T sys_sync_file_range +ffffffff81173a80 T SyS_sync_file_range2 +ffffffff81173a80 T sys_sync_file_range2 +ffffffff81173a90 t utimes_common +ffffffff81173c10 T do_utimes +ffffffff81173d50 T SyS_utime +ffffffff81173d50 T sys_utime +ffffffff81173dd0 T SyS_utimensat +ffffffff81173dd0 T sys_utimensat +ffffffff81173e70 T SyS_futimesat +ffffffff81173e70 T sys_futimesat +ffffffff81173f20 T SyS_utimes +ffffffff81173f20 T sys_utimes +ffffffff81173f30 T fsstack_copy_inode_size +ffffffff81173f50 T fsstack_copy_attr_all +ffffffff81173fc0 T set_fs_root +ffffffff81174040 T set_fs_pwd +ffffffff811740c0 T chroot_fs_refs +ffffffff81174240 T free_fs_struct +ffffffff81174270 T exit_fs +ffffffff811742e0 T copy_fs_struct +ffffffff81174380 T unshare_fs_struct +ffffffff81174420 T current_umask +ffffffff81174440 t statfs_by_dentry +ffffffff811744b0 t do_statfs_native +ffffffff81174560 t do_statfs64 +ffffffff81174610 T vfs_statfs +ffffffff811746c0 T user_statfs +ffffffff81174730 T fd_statfs +ffffffff81174780 T SyS_statfs +ffffffff81174780 T sys_statfs +ffffffff811747b0 T SyS_statfs64 +ffffffff811747b0 T sys_statfs64 +ffffffff811747f0 T SyS_fstatfs +ffffffff811747f0 T sys_fstatfs +ffffffff81174820 T SyS_fstatfs64 +ffffffff81174820 T sys_fstatfs64 +ffffffff81174860 T SyS_ustat +ffffffff81174860 T sys_ustat +ffffffff81174920 T pin_remove +ffffffff811749c0 T pin_insert_group +ffffffff81174a40 T pin_insert +ffffffff81174a50 T pin_kill +ffffffff81174b50 T mnt_pin_kill +ffffffff81174b80 T group_pin_kill +ffffffff81174bb0 t ns_prune_dentry +ffffffff81174bd0 t ns_get_path_task +ffffffff81174bf0 t ns_dname +ffffffff81174c10 t __ns_get_path +ffffffff81174d80 t nsfs_show_path +ffffffff81174da0 t nsfs_evict +ffffffff81174dc0 t nsfs_mount +ffffffff81174df0 T ns_get_path_cb +ffffffff81174e40 T ns_get_path +ffffffff81174e70 T open_related_ns +ffffffff81174f60 t ns_ioctl +ffffffff81175040 T ns_get_name +ffffffff811750b0 T proc_ns_fget +ffffffff811750e0 t has_bh_in_lru +ffffffff81175120 t do_thaw_all +ffffffff81175150 t do_thaw_one +ffffffff811751a0 t __set_page_dirty +ffffffff81175220 t init_page_buffers +ffffffff811752f0 t end_bio_bh_io_sync +ffffffff81175330 t mark_buffer_async_write_endio.part.0 +ffffffff81175340 t attach_nobh_buffers +ffffffff811753e0 t drop_buffers +ffffffff81175490 t buffer_io_error +ffffffff811754e0 t recalc_bh_state.part.6 +ffffffff81175540 t __brelse.part.9 +ffffffff81175550 t set_bh_page.part.11 +ffffffff81175560 T touch_buffer +ffffffff81175570 T __lock_buffer +ffffffff81175590 T unlock_buffer +ffffffff811755a0 t __end_buffer_read_notouch +ffffffff811755c0 T end_buffer_read_sync +ffffffff811755d0 t end_buffer_read_nobh +ffffffff811755e0 t end_buffer_async_read +ffffffff81175720 T buffer_check_dirty_writeback +ffffffff811757a0 T __wait_on_buffer +ffffffff811757c0 T mark_buffer_async_write +ffffffff811757e0 T inode_has_buffers +ffffffff81175800 T emergency_thaw_all +ffffffff81175850 T __set_page_dirty_buffers +ffffffff81175920 T invalidate_inode_buffers +ffffffff811759a0 T remove_inode_buffers +ffffffff81175a40 T mark_buffer_dirty +ffffffff81175ab0 T mark_buffer_dirty_inode +ffffffff81175b50 t __block_commit_write.isra.8 +ffffffff81175bf0 T mark_buffer_write_io_error +ffffffff81175c50 T end_buffer_write_sync +ffffffff81175c90 T end_buffer_async_write +ffffffff81175db0 T __brelse +ffffffff81175dc0 t buffer_exit_cpu_dead +ffffffff81175e20 t invalidate_bh_lru +ffffffff81175e70 T __bforget +ffffffff81175ee0 T __find_get_block +ffffffff81176130 T invalidate_bh_lrus +ffffffff81176150 T set_bh_page +ffffffff81176180 T block_invalidatepage +ffffffff811762a0 T clean_bdev_aliases +ffffffff81176430 T page_zero_new_buffers +ffffffff81176570 T block_write_end +ffffffff811765f0 T generic_write_end +ffffffff81176690 T block_is_partially_uptodate +ffffffff81176710 T generic_cont_expand_simple +ffffffff81176780 T block_commit_write +ffffffff81176790 T generic_block_bmap +ffffffff811767e0 T guard_bio_eod +ffffffff811768e0 t submit_bh_wbc.isra.13 +ffffffff81176a30 T submit_bh +ffffffff81176a40 T ll_rw_block +ffffffff81176af0 T write_boundary_block +ffffffff81176b40 T write_dirty_buffer +ffffffff81176ba0 T sync_mapping_buffers +ffffffff81176ea0 T __sync_dirty_buffer +ffffffff81176f30 T sync_dirty_buffer +ffffffff81176f40 T SyS_bdflush +ffffffff81176f40 T sys_bdflush +ffffffff81176fb0 T alloc_buffer_head +ffffffff81177020 T free_buffer_head +ffffffff81177080 T alloc_page_buffers +ffffffff81177140 T create_empty_buffers +ffffffff81177230 t create_page_buffers +ffffffff81177280 T __block_write_full_page +ffffffff81177600 T nobh_writepage +ffffffff81177740 T block_write_full_page +ffffffff81177870 T __block_write_begin_int +ffffffff81177d80 T __block_write_begin +ffffffff81177d90 T block_write_begin +ffffffff81177e30 T cont_write_begin +ffffffff81178170 T block_page_mkwrite +ffffffff81178260 T block_read_full_page +ffffffff81178540 T block_truncate_page +ffffffff81178790 T nobh_truncate_page +ffffffff81178a30 T nobh_write_begin +ffffffff81178e40 T nobh_write_end +ffffffff81178f60 T try_to_free_buffers +ffffffff81179030 T __getblk_gfp +ffffffff811792d0 T __breadahead +ffffffff81179320 T __bread_gfp +ffffffff811793b0 T bh_uptodate_or_lock +ffffffff811793f0 T bh_submit_read +ffffffff81179460 T page_cache_seek_hole_data +ffffffff81179670 t bdev_test +ffffffff81179680 t bdev_set +ffffffff81179690 t bdev_evict_inode +ffffffff81179700 t bdev_destroy_inode +ffffffff81179720 t bdev_i_callback +ffffffff81179740 t bdev_alloc_inode +ffffffff81179770 t init_once +ffffffff81179820 t bd_mount +ffffffff81179860 T blkdev_fsync +ffffffff811798a0 t blkdev_bio_end_io_simple +ffffffff811798c0 t __blkdev_direct_IO_simple +ffffffff81179ba0 t blkdev_direct_IO +ffffffff81179f30 t blkdev_bio_end_io +ffffffff8117a030 t blkdev_releasepage +ffffffff8117a070 t blkdev_write_end +ffffffff8117a0b0 t blkdev_write_begin +ffffffff8117a0d0 t blkdev_readpages +ffffffff8117a0f0 t blkdev_writepages +ffffffff8117a100 t blkdev_readpage +ffffffff8117a110 t blkdev_writepage +ffffffff8117a120 T blkdev_read_iter +ffffffff8117a150 t blkdev_fallocate +ffffffff8117a2e0 t block_ioctl +ffffffff8117a320 t block_llseek +ffffffff8117a380 t blkdev_get_block +ffffffff8117a3a0 T blkdev_write_iter +ffffffff8117a4b0 t sync_blockdev.part.8 +ffffffff8117a4c0 t bd_may_claim +ffffffff8117a500 T I_BDEV +ffffffff8117a510 T kill_bdev +ffffffff8117a540 t __blkdev_put +ffffffff8117a6d0 T invalidate_bdev +ffffffff8117a720 T set_blocksize +ffffffff8117a7c0 T sb_set_blocksize +ffffffff8117a800 T sb_min_blocksize +ffffffff8117a840 T __sync_blockdev +ffffffff8117a860 T sync_blockdev +ffffffff8117a870 T fsync_bdev +ffffffff8117a8b0 T freeze_bdev +ffffffff8117a980 T thaw_bdev +ffffffff8117aa10 T bdev_read_page +ffffffff8117aa90 T bdev_write_page +ffffffff8117ab60 T bdev_unhash_inode +ffffffff8117abd0 T bdget +ffffffff8117ace0 T bdgrab +ffffffff8117ad00 T nr_blockdev_pages +ffffffff8117ad60 T bdput +ffffffff8117ad70 T bd_forget +ffffffff8117adf0 t bd_acquire +ffffffff8117aeb0 t lookup_bdev.part.11 +ffffffff8117af30 T bd_link_disk_holder +ffffffff8117b080 T bd_unlink_disk_holder +ffffffff8117b130 T bd_set_size +ffffffff8117b200 t __blkdev_get +ffffffff8117b6b0 T blkdev_get +ffffffff8117b9a0 t blkdev_open +ffffffff8117ba30 T blkdev_get_by_dev +ffffffff8117ba70 T blkdev_put +ffffffff8117bb50 t blkdev_close +ffffffff8117bb70 T blkdev_get_by_path +ffffffff8117bbf0 T ioctl_by_bdev +ffffffff8117bc30 T lookup_bdev +ffffffff8117bc50 T __invalidate_device +ffffffff8117bca0 t flush_disk +ffffffff8117bd10 T check_disk_size_change +ffffffff8117bd60 T revalidate_disk +ffffffff8117bde0 T check_disk_change +ffffffff8117be40 T iterate_bdevs +ffffffff8117bf80 t dio_bio_end_io +ffffffff8117c000 t dio_bio_complete +ffffffff8117c0f0 T dio_warn_stale_pagecache +ffffffff8117c130 t dio_complete +ffffffff8117c350 t dio_bio_end_aio +ffffffff8117c460 t dio_aio_complete_work +ffffffff8117c470 T dio_end_io +ffffffff8117c490 T sb_init_dio_done_wq +ffffffff8117c4e0 T __blockdev_direct_IO +ffffffff8117fcda t dio_warn_stale_pagecache.part.0 +ffffffff8117fd40 t mpage_end_io +ffffffff8117fda0 t mpage_alloc.isra.0 +ffffffff8117fe40 t do_mpage_readpage +ffffffff81180570 t clean_buffers +ffffffff811805d0 t __mpage_writepage +ffffffff81180d00 T mpage_readpages +ffffffff81180e60 T mpage_readpage +ffffffff81180ef0 T clean_page_buffers +ffffffff81180f00 T mpage_writepages +ffffffff81180fe0 T mpage_writepage +ffffffff81181060 t mounts_poll +ffffffff811810b0 t mounts_release +ffffffff811810f0 t mounts_open_common +ffffffff81181280 t mounts_open +ffffffff81181290 t mountinfo_open +ffffffff811812a0 t mountstats_open +ffffffff811812b0 t show_type.isra.0 +ffffffff81181300 t show_vfsstat +ffffffff81181470 t show_sb_opts.isra.2 +ffffffff811814c0 t show_mnt_opts.isra.3 +ffffffff81181510 t show_vfsmnt +ffffffff81181650 t show_mountinfo +ffffffff811818c0 t __fsnotify_update_child_dentry_flags.part.0 +ffffffff811819c0 T __fsnotify_inode_delete +ffffffff811819d0 T __fsnotify_vfsmount_delete +ffffffff811819e0 T __fsnotify_update_child_dentry_flags +ffffffff81181a00 T fsnotify +ffffffff81181ed0 T fsnotify_unmount_inodes +ffffffff81181fe0 T __fsnotify_parent +ffffffff811820e0 t fsnotify_notify_queue_is_empty.part.0 +ffffffff811820f0 t fsnotify_destroy_event.part.1 +ffffffff81182130 T fsnotify_get_cookie +ffffffff81182150 T fsnotify_notify_queue_is_empty +ffffffff81182170 T fsnotify_destroy_event +ffffffff81182190 T fsnotify_add_event +ffffffff811822a0 T fsnotify_remove_first_event +ffffffff811822d0 T fsnotify_peek_first_event +ffffffff811822e0 T fsnotify_flush_notify +ffffffff81182360 T fsnotify_init_event +ffffffff81182370 T fsnotify_group_stop_queueing +ffffffff81182390 T fsnotify_get_group +ffffffff811823a0 T fsnotify_put_group +ffffffff811823d0 T fsnotify_destroy_group +ffffffff81182480 T fsnotify_alloc_group +ffffffff81182520 T fsnotify_fasync +ffffffff81182540 t fsnotify_connector_destroy_workfn +ffffffff811825b0 t fsnotify_final_mark_destroy +ffffffff811825e0 t fsnotify_mark_destroy_workfn +ffffffff81182690 t fsnotify_grab_connector +ffffffff811826f0 t __fsnotify_recalc_mask +ffffffff81182740 t fsnotify_detach_connector_from_object.isra.1 +ffffffff811827a0 t fsnotify_recalc_mask.part.3 +ffffffff811827d0 T fsnotify_get_mark +ffffffff811827e0 T fsnotify_recalc_mask +ffffffff811827f0 T fsnotify_put_mark +ffffffff81182950 t fsnotify_get_mark_safe +ffffffff81182a00 t fsnotify_put_mark_wake.part.4 +ffffffff81182a40 T fsnotify_prepare_user_wait +ffffffff81182a90 T fsnotify_finish_user_wait +ffffffff81182ad0 T fsnotify_detach_mark +ffffffff81182b40 T fsnotify_free_mark +ffffffff81182ba0 T fsnotify_destroy_mark +ffffffff81182bd0 T fsnotify_compare_groups +ffffffff81182c00 T fsnotify_add_mark_locked +ffffffff81182ef0 T fsnotify_add_mark +ffffffff81182f40 T fsnotify_find_mark +ffffffff81182fc0 T fsnotify_clear_marks_by_group +ffffffff811830b0 T fsnotify_destroy_marks +ffffffff81183190 T fsnotify_init_mark +ffffffff811831e0 T fsnotify_wait_marks_destroyed +ffffffff811831f0 t show_mark_fhandle +ffffffff81183290 t inotify_fdinfo +ffffffff81183310 t fanotify_fdinfo +ffffffff811833d0 t show_fdinfo.isra.0 +ffffffff81183440 T inotify_show_fdinfo +ffffffff81183450 T fanotify_show_fdinfo +ffffffff811834d0 t inotify_merge +ffffffff81183520 T inotify_handle_event +ffffffff81183670 t inotify_free_mark +ffffffff81183680 t inotify_free_event +ffffffff81183690 t inotify_freeing_mark +ffffffff811836a0 t inotify_free_group_priv +ffffffff811836f0 t idr_callback +ffffffff81183720 t inotify_ioctl +ffffffff811837b0 t inotify_release +ffffffff811837c0 t inotify_poll +ffffffff81183810 t inotify_idr_find_locked +ffffffff81183860 t inotify_remove_from_idr +ffffffff81183920 t inotify_read +ffffffff81183c30 T inotify_ignored_and_remove_idr +ffffffff81183c80 T SyS_inotify_init1 +ffffffff81183c80 T sys_inotify_init1 +ffffffff81183dd0 T sys_inotify_init +ffffffff81183de0 T SyS_inotify_add_watch +ffffffff81183de0 T sys_inotify_add_watch +ffffffff81184120 T SyS_inotify_rm_watch +ffffffff81184120 T sys_inotify_rm_watch +ffffffff811841d0 t fanotify_merge +ffffffff81184220 t fanotify_free_mark +ffffffff81184230 t fanotify_free_event +ffffffff81184260 t fanotify_free_group_priv +ffffffff81184270 T fanotify_alloc_event +ffffffff81184320 t fanotify_handle_event +ffffffff81184440 t fanotify_write +ffffffff81184450 t fanotify_mark_remove_from_mask +ffffffff811844e0 t fanotify_mark_add_to_mask +ffffffff81184560 t fanotify_ioctl +ffffffff811845d0 t fanotify_poll +ffffffff81184620 t fanotify_release +ffffffff81184710 t fanotify_read +ffffffff81184a90 t fanotify_add_new_mark.part.1 +ffffffff81184b10 T SyS_fanotify_init +ffffffff81184b10 T sys_fanotify_init +ffffffff81184d50 T SyS_fanotify_mark +ffffffff81184d50 T sys_fanotify_mark +ffffffff81185380 t epi_rcu_free +ffffffff81185390 t ep_show_fdinfo +ffffffff81185420 t ep_ptable_queue_proc +ffffffff811854b0 t ep_poll_callback +ffffffff81185730 t ep_busy_loop_end +ffffffff81185780 t ep_call_nested.constprop.4 +ffffffff811858a0 t reverse_path_check_proc +ffffffff81185980 t ep_loop_check_proc +ffffffff81185a90 t ep_scan_ready_list.constprop.5 +ffffffff81185c80 t ep_poll +ffffffff81185ff0 t ep_item_poll.isra.1 +ffffffff81186090 t ep_read_events_proc +ffffffff81186140 t ep_send_events_proc +ffffffff811862b0 t ep_eventpoll_poll +ffffffff81186300 t ep_unregister_pollwait.isra.0 +ffffffff81186390 t ep_remove +ffffffff81186450 t ep_free +ffffffff81186510 t ep_eventpoll_release +ffffffff81186530 T eventpoll_release_file +ffffffff811865b0 T get_epoll_tfile_raw_ptr +ffffffff81186640 T SyS_epoll_create1 +ffffffff81186640 T sys_epoll_create1 +ffffffff81186790 T SyS_epoll_create +ffffffff81186790 T sys_epoll_create +ffffffff811867b0 T SyS_epoll_ctl +ffffffff811867b0 T sys_epoll_ctl +ffffffff81187610 T SyS_epoll_wait +ffffffff81187610 T sys_epoll_wait +ffffffff811876e0 T SyS_epoll_pwait +ffffffff811876e0 T sys_epoll_pwait +ffffffff811877c5 t ep_create_wakeup_source +ffffffff81187821 t ep_destroy_wakeup_source +ffffffff81187840 t anon_inodefs_dname +ffffffff81187850 t anon_inodefs_mount +ffffffff81187870 T anon_inode_getfile +ffffffff81187970 T anon_inode_getfd +ffffffff811879d0 t signalfd_release +ffffffff811879e0 t signalfd_show_fdinfo +ffffffff81187a10 t signalfd_poll +ffffffff81187ad0 t signalfd_read +ffffffff81187f30 T signalfd_cleanup +ffffffff81187f70 T SyS_signalfd4 +ffffffff81187f70 T sys_signalfd4 +ffffffff81188120 T SyS_signalfd +ffffffff81188120 T sys_signalfd +ffffffff81188130 t timerfd_poll +ffffffff81188190 t timerfd_triggered +ffffffff811881e0 t timerfd_alarmproc +ffffffff811881f0 t timerfd_tmrproc +ffffffff81188200 t timerfd_get_remaining +ffffffff81188240 t timerfd_show +ffffffff811882f0 t timerfd_fget +ffffffff81188350 t timerfd_ioctl +ffffffff81188420 t timerfd_release +ffffffff811884d0 t timerfd_read +ffffffff81188720 T timerfd_clock_was_set +ffffffff811887d0 T SyS_timerfd_create +ffffffff811887d0 T sys_timerfd_create +ffffffff81188960 T SyS_timerfd_settime +ffffffff81188960 T sys_timerfd_settime +ffffffff81188df0 T SyS_timerfd_gettime +ffffffff81188df0 T sys_timerfd_gettime +ffffffff81188f50 t eventfd_poll +ffffffff81188fb0 t eventfd_show_fdinfo +ffffffff81188ff0 t eventfd_read +ffffffff81189220 t eventfd_write +ffffffff81189450 t eventfd_ctx_fileget.part.1 +ffffffff81189470 T eventfd_signal +ffffffff811894e0 T eventfd_ctx_put +ffffffff81189500 t eventfd_release +ffffffff81189530 T eventfd_ctx_remove_wait_queue +ffffffff811895e0 T eventfd_fget +ffffffff81189610 T eventfd_ctx_fdget +ffffffff81189670 T eventfd_ctx_fileget +ffffffff81189690 T SyS_eventfd2 +ffffffff81189690 T sys_eventfd2 +ffffffff81189740 T SyS_eventfd +ffffffff81189740 T sys_eventfd +ffffffff81189750 t aio_ring_mmap +ffffffff81189770 t kiocb_cancel +ffffffff811897b0 t put_reqs_available +ffffffff81189800 t get_reqs_available +ffffffff81189860 t refill_reqs_available +ffffffff811898a0 t aio_nr_sub +ffffffff811898e0 t aio_mount +ffffffff81189910 t kill_ioctx +ffffffff811899d0 t free_ioctx_users +ffffffff81189a90 t free_ioctx_reqs +ffffffff81189ad0 t free_ioctx_rcufn +ffffffff81189b10 t aio_ring_mremap +ffffffff81189bb0 t lookup_ioctx +ffffffff81189c50 t aio_migratepage +ffffffff81189e20 t kiocb_free +ffffffff81189e50 t aio_complete +ffffffff8118a0c0 t aio_read_events +ffffffff8118a3c0 t read_events +ffffffff8118a500 t put_aio_ring_file.isra.0 +ffffffff8118a570 t aio_free_ring +ffffffff8118a610 t free_ioctx +ffffffff8118a650 t aio_write +ffffffff8118a7d0 t aio_read +ffffffff8118a930 t do_io_submit.constprop.1 +ffffffff8118aec0 T kiocb_set_cancel_fn +ffffffff8118af20 T exit_aio +ffffffff8118afe0 T SyS_io_setup +ffffffff8118afe0 T sys_io_setup +ffffffff8118b870 T SyS_io_destroy +ffffffff8118b870 T sys_io_destroy +ffffffff8118b930 T SyS_io_submit +ffffffff8118b930 T sys_io_submit +ffffffff8118b940 T SyS_io_cancel +ffffffff8118b940 T sys_io_cancel +ffffffff8118ba80 T SyS_io_getevents +ffffffff8118ba80 T sys_io_getevents +ffffffff8118bb90 t flock64_to_posix_lock +ffffffff8118bcc0 t locks_insert_global_locks +ffffffff8118bd20 t locks_delete_block +ffffffff8118bd90 t check_conflicting_open +ffffffff8118bdf0 t locks_dump_ctx_list +ffffffff8118be50 t locks_check_ctx_file_list +ffffffff8118bee0 t locks_wake_up_blocks +ffffffff8118bfb0 t locks_unlink_lock_ctx +ffffffff8118c030 t lease_setup +ffffffff8118c080 t lease_break_callback +ffffffff8118c0a0 t locks_open +ffffffff8118c0c0 t locks_next +ffffffff8118c0f0 t locks_stop +ffffffff8118c110 t locks_start +ffffffff8118c160 t posix_locks_conflict +ffffffff8118c1d0 t leases_conflict +ffffffff8118c210 t __locks_insert_block +ffffffff8118c2c0 t locks_get_lock_context.part.11 +ffffffff8118c330 t any_leases_conflict.isra.12 +ffffffff8118c370 t locks_translate_pid.isra.13.part.14 +ffffffff8118c3b0 t lock_get_status +ffffffff8118c6e0 t __show_fd_locks +ffffffff8118c770 t locks_show +ffffffff8118c820 T locks_free_lock_context +ffffffff8118c8d0 T locks_alloc_lock +ffffffff8118c940 T locks_release_private +ffffffff8118c9a0 T locks_free_lock +ffffffff8118c9f0 T lease_modify +ffffffff8118cad0 t time_out_leases.isra.17 +ffffffff8118cb80 t locks_dispose_list +ffffffff8118cbc0 t lease_alloc +ffffffff8118cc50 T locks_init_lock +ffffffff8118ccc0 T locks_copy_conflock +ffffffff8118cd30 T locks_copy_lock +ffffffff8118cd80 t posix_lock_inode +ffffffff8118d4d0 t flock_lock_inode +ffffffff8118d7d0 t locks_remove_flock +ffffffff8118d8a0 T posix_test_lock +ffffffff8118d940 T posix_lock_file +ffffffff8118d950 T __break_lease +ffffffff8118dd50 T lease_get_mtime +ffffffff8118ddd0 T fcntl_getlease +ffffffff8118df10 T generic_setlease +ffffffff8118e450 T vfs_setlease +ffffffff8118e480 T fcntl_setlease +ffffffff8118e550 T locks_lock_inode_wait +ffffffff8118e650 T SyS_flock +ffffffff8118e650 T sys_flock +ffffffff8118e7e0 T vfs_test_lock +ffffffff8118e820 T fcntl_getlk +ffffffff8118e980 T vfs_lock_file +ffffffff8118e9c0 t do_lock_file_wait +ffffffff8118ea50 t locks_remove_posix.part.21 +ffffffff8118eaf0 T fcntl_setlk +ffffffff8118ed00 T locks_remove_posix +ffffffff8118ed30 T locks_remove_file +ffffffff8118eeb0 T posix_unblock_lock +ffffffff8118ef30 T vfs_cancel_lock +ffffffff8118ef60 T show_fd_locks +ffffffff8118eff0 t load_script +ffffffff8118f1f0 t load_elf_phdrs +ffffffff8118f270 t elf_map +ffffffff8118f340 t load_elf_binary +ffffffff81190849 t total_mapping_size +ffffffff811908a2 t set_brk +ffffffff81190910 t mb_cache_count +ffffffff81190920 T __mb_cache_entry_free +ffffffff81190930 t mb_cache_shrink +ffffffff81190a90 t mb_cache_shrink_worker +ffffffff81190ab0 t mb_cache_scan +ffffffff81190ac0 T mb_cache_entry_create +ffffffff81190cb0 t __entry_find.isra.0 +ffffffff81190d70 T mb_cache_entry_find_first +ffffffff81190d80 T mb_cache_entry_find_next +ffffffff81190da0 T mb_cache_entry_get +ffffffff81190e30 T mb_cache_entry_delete +ffffffff81190f90 T mb_cache_entry_touch +ffffffff81190fa0 T mb_cache_create +ffffffff811910a0 T mb_cache_destroy +ffffffff81191180 t posix_acl_create_masq +ffffffff81191270 t posix_acl_xattr_list +ffffffff81191290 t __forget_cached_acl +ffffffff811912c0 t posix_acl_clone +ffffffff811912f0 t posix_acl_fix_xattr_userns +ffffffff81191390 T get_cached_acl +ffffffff81191420 T get_cached_acl_rcu +ffffffff81191440 T set_cached_acl +ffffffff811914a0 T forget_cached_acl +ffffffff811914d0 T forget_all_cached_acls +ffffffff811914f0 T get_acl +ffffffff811915f0 T posix_acl_init +ffffffff81191600 T posix_acl_alloc +ffffffff81191630 T posix_acl_valid +ffffffff81191700 T posix_acl_equiv_mode +ffffffff811917a0 T posix_acl_from_mode +ffffffff81191800 T posix_acl_permission +ffffffff81191930 T __posix_acl_create +ffffffff811919e0 T __posix_acl_chmod +ffffffff81191b10 T posix_acl_chmod +ffffffff81191be0 T posix_acl_create +ffffffff81191d40 T posix_acl_update_mode +ffffffff81191db0 T posix_acl_fix_xattr_from_user +ffffffff81191df0 T posix_acl_fix_xattr_to_user +ffffffff81191e30 T posix_acl_from_xattr +ffffffff81191f90 T posix_acl_to_xattr +ffffffff81192060 t posix_acl_xattr_get +ffffffff811920f0 T set_posix_acl +ffffffff81192190 t posix_acl_xattr_set +ffffffff81192220 T simple_set_acl +ffffffff81192290 T simple_acl_create +ffffffff81192337 t acl_by_type.part.0 +ffffffff81192340 t drop_pagecache_sb +ffffffff81192420 T drop_caches_sysctl_handler +ffffffff811924b0 t vfs_dentry_acceptable +ffffffff811924c0 T SyS_name_to_handle_at +ffffffff811924c0 T sys_name_to_handle_at +ffffffff81192670 T SyS_open_by_handle_at +ffffffff81192670 T sys_open_by_handle_at +ffffffff81192920 t iomap_page_mkwrite_actor +ffffffff81192950 t iomap_to_fiemap +ffffffff811929c0 t iomap_seek_hole_actor +ffffffff81192a00 t iomap_seek_data_actor +ffffffff81192a40 t iomap_dio_zero +ffffffff81192b50 t iomap_dio_actor +ffffffff81192eb0 t iomap_dio_complete +ffffffff81192fa0 t iomap_dio_complete_work +ffffffff81193010 t iomap_dio_bio_end_io +ffffffff81193120 t iomap_write_end +ffffffff81193190 t iomap_fiemap_actor +ffffffff81193200 t iomap_write_begin.constprop.4 +ffffffff81193300 t iomap_zero_range_actor +ffffffff81193460 t iomap_dirty_actor +ffffffff811935d0 t iomap_write_actor +ffffffff81193710 T iomap_apply +ffffffff81193800 T iomap_file_buffered_write +ffffffff81193880 T iomap_file_dirty +ffffffff811938f0 T iomap_zero_range +ffffffff81193960 T iomap_truncate_page +ffffffff81193990 T iomap_page_mkwrite +ffffffff81193ae0 T iomap_fiemap +ffffffff81193be0 T iomap_seek_hole +ffffffff81193c70 T iomap_seek_data +ffffffff81193d10 T iomap_dio_rw +ffffffff81194020 t proc_map_release +ffffffff81194070 t m_next +ffffffff811940b0 t m_stop +ffffffff81194100 t m_start +ffffffff81194240 t show_map_vma.isra.3 +ffffffff81194410 t proc_maps_open.constprop.7 +ffffffff81194470 t tid_maps_open +ffffffff81194480 t pid_maps_open +ffffffff81194490 t show_pid_map +ffffffff811944e0 t show_tid_map +ffffffff81194530 T task_mem +ffffffff81194670 T task_vsize +ffffffff81194680 T task_statm +ffffffff81194700 t init_once +ffffffff81194710 t proc_get_link +ffffffff81194750 t unuse_pde +ffffffff81194770 t proc_put_link +ffffffff81194780 t proc_reg_get_unmapped_area +ffffffff81194800 t proc_reg_mmap +ffffffff81194850 t proc_reg_unlocked_ioctl +ffffffff811948b0 t proc_reg_poll +ffffffff81194900 t proc_reg_write +ffffffff81194960 t proc_reg_read +ffffffff811949c0 t proc_reg_llseek +ffffffff81194a20 t proc_reg_open +ffffffff81194b30 t proc_alloc_inode +ffffffff81194b90 t proc_show_options +ffffffff81194bf0 t proc_evict_inode +ffffffff81194c40 t proc_destroy_inode +ffffffff81194c60 t proc_i_callback +ffffffff81194c80 t close_pdeo +ffffffff81194d50 t proc_reg_release +ffffffff81194dc0 T proc_entry_rundown +ffffffff81194e50 T proc_get_inode +ffffffff81194f60 T proc_fill_super +ffffffff81195040 t proc_kill_sb +ffffffff81195080 t proc_mount +ffffffff811950d0 t proc_root_readdir +ffffffff81195110 t proc_root_getattr +ffffffff81195140 t proc_root_lookup +ffffffff81195170 T proc_parse_options +ffffffff81195290 T proc_remount +ffffffff811952c0 T pid_ns_prepare_proc +ffffffff811952f0 T pid_ns_release_proc +ffffffff81195300 T mem_lseek +ffffffff81195330 T pid_delete_dentry +ffffffff81195350 T proc_setattr +ffffffff811953a0 t timers_stop +ffffffff81195400 t proc_single_show +ffffffff81195480 t proc_fd_access_allowed +ffffffff811954d0 t proc_pid_readlink +ffffffff811955a0 t proc_task_getattr +ffffffff81195600 t timerslack_ns_open +ffffffff81195620 t comm_open +ffffffff81195640 t sched_autogroup_open +ffffffff81195670 t proc_single_open +ffffffff81195690 t timerslack_ns_show +ffffffff81195730 t proc_pid_schedstat +ffffffff81195770 t comm_show +ffffffff811957f0 t timerslack_ns_write +ffffffff811958f0 t proc_timers_open +ffffffff81195930 t show_timer +ffffffff811959d0 t timers_next +ffffffff811959f0 t timers_start +ffffffff81195a50 t proc_setgroups_release +ffffffff81195a90 t proc_setgroups_open +ffffffff81195b60 t proc_id_map_release +ffffffff81195bb0 t proc_id_map_open +ffffffff81195c80 t proc_projid_map_open +ffffffff81195c90 t proc_gid_map_open +ffffffff81195ca0 t proc_uid_map_open +ffffffff81195cb0 t mem_release +ffffffff81195cd0 t __set_oom_adj +ffffffff81196050 t oom_score_adj_write +ffffffff81196100 t oom_adj_write +ffffffff811961e0 t oom_score_adj_read +ffffffff81196270 t oom_adj_read +ffffffff81196330 t auxv_read +ffffffff81196380 t proc_oom_score +ffffffff811963c0 t proc_root_link +ffffffff81196470 t proc_cwd_link +ffffffff81196520 t proc_exe_link +ffffffff811965a0 t environ_read +ffffffff81196770 t proc_pid_cmdline_read +ffffffff81196bd0 t comm_write +ffffffff81196c90 t sched_autogroup_show +ffffffff81196cf0 t sched_autogroup_write +ffffffff81196db0 t proc_pid_limits +ffffffff81196f40 t proc_tid_comm_permission +ffffffff81196fb0 t next_tgid +ffffffff81197060 t proc_pid_get_link.part.0 +ffffffff811970b0 t proc_pid_get_link +ffffffff811970c0 t proc_map_files_get_link +ffffffff81197100 t mem_rw.isra.5 +ffffffff81197280 t mem_write +ffffffff811972a0 t mem_read +ffffffff811972b0 t proc_pid_syscall +ffffffff811973c0 t dname_to_vma_addr.isra.9 +ffffffff81197440 t map_files_get_link +ffffffff81197540 t proc_pid_personality +ffffffff811975d0 t proc_pid_permission +ffffffff81197680 T proc_mem_open +ffffffff811976f0 t mem_open +ffffffff81197720 t auxv_open +ffffffff81197750 t environ_open +ffffffff81197780 T task_dump_owner +ffffffff81197850 T pid_getattr +ffffffff811978f0 T pid_revalidate +ffffffff81197960 t map_files_d_revalidate +ffffffff81197a80 T proc_pid_make_inode +ffffffff81197b20 t proc_pid_instantiate +ffffffff81197ba0 t proc_map_files_instantiate +ffffffff81197c20 t proc_map_files_lookup +ffffffff81197d40 t proc_task_instantiate +ffffffff81197dc0 t proc_task_lookup +ffffffff81197e90 t proc_pident_instantiate +ffffffff81197f30 t proc_pident_lookup +ffffffff81198000 t proc_tid_base_lookup +ffffffff81198020 t proc_tgid_base_lookup +ffffffff81198040 T proc_fill_cache +ffffffff81198190 t proc_map_files_readdir +ffffffff81198490 t proc_task_readdir +ffffffff81198730 t proc_pident_readdir +ffffffff811988d0 t proc_tgid_base_readdir +ffffffff811988f0 t proc_tid_base_readdir +ffffffff81198910 T proc_flush_task +ffffffff81198a90 T proc_pid_lookup +ffffffff81198b50 T proc_pid_readdir +ffffffff81198d20 t pde_subdir_find +ffffffff81198d90 t __xlate_proc_name +ffffffff81198e10 t __proc_create +ffffffff81198f70 t proc_getattr +ffffffff81198fc0 t proc_notify_change +ffffffff81199030 t proc_register +ffffffff81199140 T proc_alloc_inum +ffffffff81199170 T proc_free_inum +ffffffff81199190 T proc_lookup_de +ffffffff81199230 T proc_lookup +ffffffff81199240 T proc_symlink +ffffffff811992e0 T proc_mkdir_data +ffffffff81199360 T proc_mkdir_mode +ffffffff81199370 T proc_mkdir +ffffffff81199380 T proc_create_mount_point +ffffffff81199400 T proc_create_data +ffffffff811994a0 T proc_create +ffffffff811994b0 T proc_set_size +ffffffff811994c0 T proc_set_user +ffffffff811994d0 T pde_put +ffffffff81199520 T proc_readdir_de +ffffffff81199700 T proc_readdir +ffffffff81199710 T remove_proc_entry +ffffffff811997e0 T remove_proc_subtree +ffffffff81199910 T proc_get_parent_data +ffffffff81199920 T proc_remove +ffffffff81199940 T PDE_DATA +ffffffff81199950 t render_cap_t +ffffffff81199990 t children_seq_show +ffffffff811999c0 t children_seq_stop +ffffffff811999d0 t do_task_stat +ffffffff8119a540 t children_seq_open +ffffffff8119a570 t get_children_pid +ffffffff8119a650 t children_seq_next +ffffffff8119a690 t children_seq_start +ffffffff8119a6a0 T render_sigset_t +ffffffff8119a730 T proc_pid_status +ffffffff8119b060 T proc_tid_stat +ffffffff8119b070 T proc_tgid_stat +ffffffff8119b080 T proc_pid_statm +ffffffff8119b190 t proc_fd_link +ffffffff8119b280 t tid_fd_revalidate +ffffffff8119b3a0 t proc_fd_instantiate +ffffffff8119b420 t proc_fdinfo_instantiate +ffffffff8119b490 t proc_readfd_common +ffffffff8119b670 t proc_readfd +ffffffff8119b680 t proc_readfdinfo +ffffffff8119b690 T proc_fd_permission +ffffffff8119b6f0 t proc_lookupfd_common +ffffffff8119b770 t proc_lookupfd +ffffffff8119b780 t proc_lookupfdinfo +ffffffff8119b790 t seq_fdinfo_open +ffffffff8119b7b0 t seq_show +ffffffff8119b910 t tty_drivers_open +ffffffff8119b920 t show_tty_range +ffffffff8119bad0 t show_tty_driver +ffffffff8119bc90 t t_next +ffffffff8119bca0 t t_stop +ffffffff8119bcb0 t t_start +ffffffff8119bcd0 T proc_tty_register_driver +ffffffff8119bd20 T proc_tty_unregister_driver +ffffffff8119bd50 t cmdline_proc_open +ffffffff8119bd70 t cmdline_proc_show +ffffffff8119bd90 t c_next +ffffffff8119bda0 t consoles_open +ffffffff8119bdb0 t show_console_dev +ffffffff8119bee0 t c_stop +ffffffff8119bef0 t c_start +ffffffff8119bf40 t cpuinfo_open +ffffffff8119bf60 t devinfo_start +ffffffff8119bf80 t devinfo_next +ffffffff8119bfa0 t devinfo_stop +ffffffff8119bfb0 t devinfo_open +ffffffff8119bfc0 t devinfo_show +ffffffff8119c030 t int_seq_start +ffffffff8119c050 t int_seq_next +ffffffff8119c070 t int_seq_stop +ffffffff8119c080 t interrupts_open +ffffffff8119c090 t loadavg_proc_open +ffffffff8119c0b0 t loadavg_proc_show +ffffffff8119c170 t meminfo_proc_open +ffffffff8119c190 t show_val_kb +ffffffff8119c220 t meminfo_proc_show +ffffffff8119c660 t get_idle_time +ffffffff8119c6b0 t get_iowait_time +ffffffff8119c700 t show_stat +ffffffff8119ccd0 t stat_open +ffffffff8119cd10 t uptime_proc_open +ffffffff8119cd30 t uptime_proc_show +ffffffff8119ce00 T name_to_int +ffffffff8119ce50 t version_proc_open +ffffffff8119ce70 t version_proc_show +ffffffff8119ceb0 t softirqs_open +ffffffff8119ced0 t show_softirqs +ffffffff8119cfc0 t proc_ns_instantiate +ffffffff8119d030 t proc_ns_dir_readdir +ffffffff8119d1c0 t proc_ns_readlink +ffffffff8119d260 t proc_ns_get_link +ffffffff8119d2f0 t proc_ns_dir_lookup +ffffffff8119d3b0 t proc_self_get_link +ffffffff8119d460 T proc_setup_self +ffffffff8119d560 t proc_thread_self_get_link +ffffffff8119d620 T proc_setup_thread_self +ffffffff8119d720 t proc_sys_revalidate +ffffffff8119d740 t proc_sys_delete +ffffffff8119d760 t sysctl_err +ffffffff8119d7c0 t append_path +ffffffff8119d820 t erase_header +ffffffff8119d870 t first_usable_entry +ffffffff8119d8a0 t proc_sys_make_inode +ffffffff8119d9f0 t test_perm +ffffffff8119da50 t proc_sys_setattr +ffffffff8119daa0 t proc_sys_compare +ffffffff8119db60 t count_subheaders.part.5 +ffffffff8119dbb0 t sysctl_print_dir.isra.6 +ffffffff8119dbe0 t find_entry.isra.8 +ffffffff8119dc80 t find_subdir +ffffffff8119dcd0 t get_links +ffffffff8119dda0 t xlate_dir.isra.9 +ffffffff8119ddf0 t sysctl_head_grab +ffffffff8119de30 t drop_sysctl_table +ffffffff8119e000 t put_links +ffffffff8119e100 t unuse_table.isra.13.part.14 +ffffffff8119e110 t sysctl_follow_link +ffffffff8119e200 t sysctl_head_finish.part.15 +ffffffff8119e240 t proc_sys_open +ffffffff8119e2a0 t proc_sys_poll +ffffffff8119e360 t proc_sys_permission +ffffffff8119e400 t proc_sys_getattr +ffffffff8119e480 t proc_sys_lookup +ffffffff8119e600 t proc_sys_fill_cache.isra.16 +ffffffff8119e750 t proc_sys_readdir +ffffffff8119ea00 t proc_sys_call_handler.isra.17 +ffffffff8119eae0 t proc_sys_write +ffffffff8119eaf0 t proc_sys_read +ffffffff8119eb00 t insert_header +ffffffff8119ef50 T proc_sys_poll_notify +ffffffff8119ef70 T proc_sys_evict_inode +ffffffff8119efd0 T __register_sysctl_table +ffffffff8119f650 t register_leaf_sysctl_tables +ffffffff8119f7f0 T register_sysctl +ffffffff8119f810 T unregister_sysctl_table +ffffffff8119f8b0 T __register_sysctl_paths +ffffffff8119fa60 T register_sysctl_paths +ffffffff8119fa80 T register_sysctl_table +ffffffff8119faa0 T setup_sysctl_set +ffffffff8119fb20 T retire_sysctl_set +ffffffff8119fb30 t get_proc_net +ffffffff8119fba0 t get_proc_task_net +ffffffff8119fc00 t proc_tgid_net_getattr +ffffffff8119fc60 t proc_tgid_net_lookup +ffffffff8119fcd0 t proc_tgid_net_readdir +ffffffff8119fd30 t proc_net_ns_exit +ffffffff8119fd60 t proc_net_ns_init +ffffffff8119fe40 T seq_open_net +ffffffff8119feb0 T single_open_net +ffffffff8119ff10 T seq_release_net +ffffffff8119ff50 T single_release_net +ffffffff8119ff90 t kmsg_release +ffffffff8119ffb0 t kmsg_open +ffffffff8119ffd0 t kmsg_poll +ffffffff811a0010 t kmsg_read +ffffffff811a0060 t kernfs_sop_remount_fs +ffffffff811a0090 t kernfs_sop_show_options +ffffffff811a00d0 t kernfs_test_super +ffffffff811a0100 t kernfs_sop_show_path +ffffffff811a0150 t kernfs_set_super +ffffffff811a0170 t kernfs_get_parent_dentry +ffffffff811a01a0 t kernfs_fh_to_parent +ffffffff811a01b0 t kernfs_fh_get_inode +ffffffff811a0230 t kernfs_fh_to_dentry +ffffffff811a0240 T kernfs_get_node_by_id +ffffffff811a0270 T kernfs_root_from_sb +ffffffff811a0290 T kernfs_node_dentry +ffffffff811a0380 T kernfs_super_ns +ffffffff811a0390 T kernfs_mount_ns +ffffffff811a0580 T kernfs_kill_sb +ffffffff811a05e0 T kernfs_pin_sb +ffffffff811a0670 t kernfs_refresh_inode +ffffffff811a0730 T kernfs_iop_getattr +ffffffff811a0780 T kernfs_iop_permission +ffffffff811a07d0 t kernfs_iattrs.isra.1 +ffffffff811a0880 t __kernfs_setattr +ffffffff811a0940 T kernfs_iop_setattr +ffffffff811a09c0 t kernfs_security_xattr_set +ffffffff811a09f0 T kernfs_iop_listxattr +ffffffff811a0a50 t kernfs_xattr_get +ffffffff811a0ab0 t kernfs_xattr_set +ffffffff811a0b20 T kernfs_setattr +ffffffff811a0b60 T kernfs_get_inode +ffffffff811a0c70 T kernfs_evict_inode +ffffffff811a0ca0 t kernfs_path_from_node_locked +ffffffff811a0fe0 t kernfs_dop_revalidate +ffffffff811a10a0 t __kernfs_new_node +ffffffff811a11c0 t kernfs_name_hash +ffffffff811a1230 t kernfs_unlink_sibling +ffffffff811a1280 t kernfs_name_locked +ffffffff811a12c0 t kernfs_find_ns.isra.4 +ffffffff811a1340 t kernfs_iop_lookup +ffffffff811a13d0 t kernfs_next_descendant_post +ffffffff811a1460 t kernfs_get_active.part.6 +ffffffff811a1490 t kernfs_link_sibling +ffffffff811a1540 T kernfs_name +ffffffff811a1590 T kernfs_path_from_node +ffffffff811a15e0 T pr_cont_kernfs_name +ffffffff811a1630 T pr_cont_kernfs_path +ffffffff811a16b0 T kernfs_get_parent +ffffffff811a16f0 T kernfs_get_active +ffffffff811a1700 T kernfs_put_active +ffffffff811a1740 t kernfs_iop_rename +ffffffff811a1800 t kernfs_iop_rmdir +ffffffff811a1870 t kernfs_iop_mkdir +ffffffff811a18f0 T kernfs_get +ffffffff811a1900 T kernfs_put +ffffffff811a1a40 t __kernfs_remove.part.8 +ffffffff811a1bc0 t kernfs_dir_fop_release +ffffffff811a1bd0 t kernfs_dir_pos +ffffffff811a1c80 t kernfs_fop_readdir +ffffffff811a1ec0 T kernfs_node_from_dentry +ffffffff811a1ef0 T kernfs_new_node +ffffffff811a1f20 T kernfs_find_and_get_node_by_ino +ffffffff811a1f80 T kernfs_find_and_get_ns +ffffffff811a1fd0 T kernfs_walk_and_get_ns +ffffffff811a20b0 T kernfs_activate +ffffffff811a2110 T kernfs_add_one +ffffffff811a2220 T kernfs_create_dir_ns +ffffffff811a22a0 T kernfs_create_empty_dir +ffffffff811a2320 T kernfs_create_root +ffffffff811a2410 T kernfs_remove +ffffffff811a2450 T kernfs_destroy_root +ffffffff811a2460 T kernfs_break_active_protection +ffffffff811a2470 T kernfs_unbreak_active_protection +ffffffff811a2480 T kernfs_remove_self +ffffffff811a2590 T kernfs_remove_by_name_ns +ffffffff811a2610 T kernfs_rename_ns +ffffffff811a27f0 t kernfs_seq_show +ffffffff811a2810 t kernfs_notify_workfn +ffffffff811a29a0 t kernfs_seq_stop_active +ffffffff811a29d0 t kernfs_seq_next +ffffffff811a2a20 t kernfs_seq_stop +ffffffff811a2a40 t kernfs_seq_start +ffffffff811a2ac0 t kernfs_fop_mmap +ffffffff811a2ba0 t kernfs_vma_access +ffffffff811a2c40 t kernfs_vma_fault +ffffffff811a2cb0 t kernfs_vma_open +ffffffff811a2d10 t kernfs_fop_poll +ffffffff811a2da0 t kernfs_vma_page_mkwrite +ffffffff811a2e20 t kernfs_fop_write +ffffffff811a2fa0 t kernfs_fop_read +ffffffff811a3110 t kernfs_put_open_node.isra.3 +ffffffff811a31a0 t kernfs_fop_release +ffffffff811a3230 t kernfs_fop_open +ffffffff811a35b0 T kernfs_drain_open_files +ffffffff811a3690 T kernfs_notify +ffffffff811a3700 T __kernfs_create_file +ffffffff811a37b0 t kernfs_iop_get_link +ffffffff811a3970 T kernfs_create_link +ffffffff811a39f0 t sysfs_kf_bin_read +ffffffff811a3a60 t sysfs_kf_write +ffffffff811a3aa0 t sysfs_kf_bin_write +ffffffff811a3b10 t sysfs_kf_bin_mmap +ffffffff811a3b30 t sysfs_kf_seq_show +ffffffff811a3c40 t sysfs_kf_read +ffffffff811a3cd0 T sysfs_notify +ffffffff811a3d60 T sysfs_add_file_mode_ns +ffffffff811a3ec0 T sysfs_add_file +ffffffff811a3ed0 T sysfs_create_file_ns +ffffffff811a3f00 T sysfs_add_file_to_group +ffffffff811a3f60 T sysfs_chmod_file +ffffffff811a3fc0 T sysfs_remove_file_ns +ffffffff811a3fd0 T sysfs_create_files +ffffffff811a4050 T sysfs_remove_file_self +ffffffff811a4090 T sysfs_remove_files +ffffffff811a40d0 T sysfs_remove_file_from_group +ffffffff811a4120 T sysfs_create_bin_file +ffffffff811a4150 T sysfs_remove_bin_file +ffffffff811a4160 T sysfs_warn_dup +ffffffff811a41c0 T sysfs_create_dir_ns +ffffffff811a4240 T sysfs_remove_dir +ffffffff811a4280 T sysfs_rename_dir_ns +ffffffff811a42c0 T sysfs_move_dir_ns +ffffffff811a4300 T sysfs_create_mount_point +ffffffff811a4350 T sysfs_remove_mount_point +ffffffff811a4360 t sysfs_do_create_link_sd.isra.0 +ffffffff811a4420 T sysfs_create_link_sd +ffffffff811a4430 T sysfs_create_link +ffffffff811a4460 T sysfs_create_link_nowarn +ffffffff811a4490 T sysfs_delete_link +ffffffff811a44f0 T sysfs_remove_link +ffffffff811a4510 T sysfs_rename_link_ns +ffffffff811a45b0 t sysfs_kill_sb +ffffffff811a45e0 t sysfs_mount +ffffffff811a4680 t remove_files.isra.0 +ffffffff811a46e0 t internal_create_group +ffffffff811a48f0 T sysfs_create_group +ffffffff811a4900 T sysfs_update_group +ffffffff811a4910 T sysfs_remove_group +ffffffff811a4970 T sysfs_create_groups +ffffffff811a4a10 T sysfs_remove_groups +ffffffff811a4a50 T sysfs_merge_group +ffffffff811a4af0 T sysfs_unmerge_group +ffffffff811a4b40 T sysfs_add_link_to_group +ffffffff811a4b90 T sysfs_remove_link_from_group +ffffffff811a4bd0 T __compat_only_sysfs_link_entry_to_kobj +ffffffff811a4cc0 t devpts_kill_sb +ffffffff811a4cf0 t devpts_mount +ffffffff811a4d00 t devpts_show_options +ffffffff811a4dc0 t parse_mount_options +ffffffff811a4f90 t devpts_remount +ffffffff811a4fd0 t devpts_ptmx_path +ffffffff811a5020 t devpts_fill_super +ffffffff811a52e0 T devpts_mntget +ffffffff811a5370 T devpts_acquire +ffffffff811a53d0 T devpts_release +ffffffff811a53e0 T devpts_new_index +ffffffff811a54b0 T devpts_kill_index +ffffffff811a54f0 T devpts_pty_new +ffffffff811a5660 T devpts_get_priv +ffffffff811a5680 T devpts_pty_kill +ffffffff811a56b0 t ext4_has_free_clusters +ffffffff811a5810 t num_clusters_in_group.isra.0 +ffffffff811a5850 t ext4_validate_block_bitmap +ffffffff811a5bb0 T ext4_get_group_number +ffffffff811a5bf0 T ext4_get_group_no_and_offset +ffffffff811a5c40 T ext4_get_group_desc +ffffffff811a5cd0 t ext4_wait_block_bitmap.part.3 +ffffffff811a5d70 T ext4_wait_block_bitmap +ffffffff811a5d80 T ext4_claim_free_clusters +ffffffff811a5dc0 T ext4_should_retry_alloc +ffffffff811a5e30 T ext4_new_meta_blocks +ffffffff811a5f20 T ext4_count_free_clusters +ffffffff811a5fd0 T ext4_bg_has_super +ffffffff811a6130 T ext4_bg_num_gdb +ffffffff811a61b0 t ext4_num_base_meta_clusters +ffffffff811a6230 T ext4_free_clusters_after_init +ffffffff811a6490 T ext4_read_block_bitmap_nowait +ffffffff811a6a40 T ext4_read_block_bitmap +ffffffff811a6a90 T ext4_inode_to_goal_block +ffffffff811a6b60 T ext4_count_free +ffffffff811a6b80 T ext4_inode_bitmap_csum_verify +ffffffff811a6c20 T ext4_inode_bitmap_csum_set +ffffffff811a6ca0 T ext4_block_bitmap_csum_verify +ffffffff811a6d40 T ext4_block_bitmap_csum_set +ffffffff811a6dc0 t add_system_zone +ffffffff811a6f50 T ext4_exit_system_zone +ffffffff811a6f60 T ext4_release_system_zone +ffffffff811a6fd0 T ext4_setup_system_zone +ffffffff811a71c0 T ext4_data_block_valid +ffffffff811a7230 T ext4_check_blockref +ffffffff811a72c0 t ext4_dir_open +ffffffff811a72e0 t free_rb_tree_fname +ffffffff811a7350 t ext4_release_dir +ffffffff811a7380 t call_filldir +ffffffff811a7470 t is_dx_dir +ffffffff811a74d0 t ext4_dir_llseek +ffffffff811a7520 T __ext4_check_dir_entry +ffffffff811a7640 t ext4_readdir +ffffffff811a7e20 T ext4_htree_free_dir_info +ffffffff811a7e40 T ext4_htree_store_dirent +ffffffff811a7f30 T ext4_check_all_de +ffffffff811a7fd0 t ext4_journal_check_start +ffffffff811a8030 t ext4_journal_abort_handle.isra.2 +ffffffff811a80b0 T __ext4_journal_start_sb +ffffffff811a8140 T __ext4_journal_stop +ffffffff811a81e0 T __ext4_journal_start_reserved +ffffffff811a8280 T __ext4_journal_get_write_access +ffffffff811a8300 T __ext4_forget +ffffffff811a8440 T __ext4_journal_get_create_access +ffffffff811a84a0 T __ext4_handle_dirty_metadata +ffffffff811a8640 T __ext4_handle_dirty_super +ffffffff811a86c9 t ext4_get_nojournal.part.1 +ffffffff811a86d0 t ext4_ext_find_goal +ffffffff811a8720 t ext4_ext_zeroout +ffffffff811a8750 t ext4_zeroout_es +ffffffff811a8790 t ext4_ext_put_gap_in_cache +ffffffff811a87f0 t check_eofblocks_fl.part.2 +ffffffff811a88e0 t ext4_extent_block_csum +ffffffff811a8940 t ext4_extent_block_csum_set +ffffffff811a8980 t __ext4_ext_check +ffffffff811a8cd0 t __read_extent_tree_block +ffffffff811a8e60 t ext4_ext_search_right +ffffffff811a9130 t ext4_ext_truncate_extend_restart.part.9 +ffffffff811a9180 t ext4_alloc_file_blocks.isra.10 +ffffffff811a9410 t ext4_access_path +ffffffff811a9480 T __ext4_ext_dirty +ffffffff811a94e0 t ext4_ext_correct_indexes +ffffffff811a9660 t ext4_ext_rm_idx +ffffffff811a9810 T ext4_ext_calc_metadata_amount +ffffffff811a98c0 T ext4_ext_check_inode +ffffffff811a98f0 T ext4_ext_drop_refs +ffffffff811a9930 t ext4_ext_precache.part.12 +ffffffff811a9af0 T ext4_ext_precache +ffffffff811a9b10 T ext4_ext_tree_init +ffffffff811a9b50 T ext4_find_extent +ffffffff811a9df0 T ext4_ext_next_allocated_block +ffffffff811a9e80 t get_implied_cluster_alloc.isra.13 +ffffffff811a9f60 T ext4_can_extents_be_merged +ffffffff811aa030 t ext4_ext_try_to_merge_right +ffffffff811aa180 t ext4_ext_try_to_merge +ffffffff811aa2b0 t ext4_ext_shift_extents +ffffffff811aa710 T ext4_ext_insert_extent +ffffffff811aba30 t ext4_split_extent_at +ffffffff811abe20 t ext4_split_extent.isra.16 +ffffffff811abfb0 t ext4_split_convert_extents +ffffffff811ac060 T ext4_ext_calc_credits_for_single_extent +ffffffff811ac090 T ext4_ext_index_trans_blocks +ffffffff811ac0d0 T ext4_ext_remove_space +ffffffff811ad0c0 T ext4_ext_init +ffffffff811ad0d0 T ext4_ext_release +ffffffff811ad0e0 T ext4_find_delalloc_range +ffffffff811ad130 t get_reserved_cluster_alloc +ffffffff811ad1c0 t ext4_ext_handle_unwritten_extents +ffffffff811adb40 T ext4_find_delalloc_cluster +ffffffff811adb60 T ext4_ext_map_blocks +ffffffff811ae6c0 T ext4_ext_truncate +ffffffff811ae740 T ext4_convert_unwritten_extents +ffffffff811ae8d0 T ext4_fiemap +ffffffff811aeeb0 T ext4_collapse_range +ffffffff811af270 T ext4_insert_range +ffffffff811af690 T ext4_fallocate +ffffffff811afde0 T ext4_swap_extents +ffffffff811b0480 t ext4_es_count +ffffffff811b04a0 t __es_tree_search +ffffffff811b0500 t ext4_es_free_extent +ffffffff811b0600 t es_do_reclaim_extents +ffffffff811b0710 t es_reclaim_extents +ffffffff811b07e0 t __es_shrink +ffffffff811b0a20 t ext4_es_scan +ffffffff811b0a50 t ext4_es_can_be_merged.isra.1 +ffffffff811b0af0 t __es_insert_extent +ffffffff811b0e30 t __es_remove_extent +ffffffff811b10b0 T ext4_exit_es +ffffffff811b10d0 T ext4_es_init_tree +ffffffff811b10e0 T ext4_es_find_delayed_extent_range +ffffffff811b11c0 T ext4_es_insert_extent +ffffffff811b12d0 T ext4_es_cache_extent +ffffffff811b1360 T ext4_es_lookup_extent +ffffffff811b1450 T ext4_es_remove_extent +ffffffff811b14b0 T ext4_seq_es_shrinker_info_show +ffffffff811b1710 T ext4_es_register_shrinker +ffffffff811b1820 T ext4_es_unregister_shrinker +ffffffff811b1850 T ext4_llseek +ffffffff811b1950 t ext4_release_file +ffffffff811b19f0 t ext4_file_open +ffffffff811b1b80 t ext4_file_mmap +ffffffff811b1bf0 t ext4_file_write_iter +ffffffff811b1f70 t ext4_file_read_iter +ffffffff811b1fb0 t ext4_getfsmap_dev_compare +ffffffff811b1fc0 t ext4_getfsmap_compare +ffffffff811b1fe0 t ext4_getfsmap_free_fixed_metadata +ffffffff811b2040 t ext4_getfsmap_helper +ffffffff811b21e0 t ext4_getfsmap_logdev +ffffffff811b22b0 t ext4_getfsmap_datadev_helper +ffffffff811b24a0 t ext4_getfsmap_is_valid_device.isra.1 +ffffffff811b2510 T ext4_fsmap_from_internal +ffffffff811b2570 T ext4_fsmap_to_internal +ffffffff811b25b0 T ext4_getfsmap_find_fixed_metadata +ffffffff811b2970 t ext4_getfsmap_datadev +ffffffff811b2bc0 T ext4_getfsmap +ffffffff811b2ee0 T ext4_sync_file +ffffffff811b31c0 t str2hashbuf_signed +ffffffff811b3260 t str2hashbuf_unsigned +ffffffff811b3300 T ext4fs_dirhash +ffffffff811b37d0 T ext4_end_bitmap_read +ffffffff811b3800 t get_orlov_stats.part.0 +ffffffff811b3860 t find_inode_bit.isra.1 +ffffffff811b39c0 t ext4_mark_bitmap_end.part.2 +ffffffff811b3a10 t ext4_read_inode_bitmap +ffffffff811b4040 t find_group_orlov +ffffffff811b4500 T ext4_mark_bitmap_end +ffffffff811b4510 T ext4_free_inode +ffffffff811b4aa0 T __ext4_new_inode +ffffffff811b5e70 T ext4_orphan_get +ffffffff811b6150 T ext4_count_free_inodes +ffffffff811b61b0 T ext4_count_dirs +ffffffff811b6210 T ext4_init_inode_table +ffffffff811b6510 t ext4_get_branch +ffffffff811b6630 t ext4_find_shared +ffffffff811b6750 t try_to_extend_transaction.isra.1.part.2 +ffffffff811b67b0 t ext4_clear_blocks +ffffffff811b6a30 t ext4_free_data +ffffffff811b6b80 t ext4_free_branches +ffffffff811b6e40 t ext4_block_to_path.isra.3 +ffffffff811b6f50 T ext4_ind_map_blocks +ffffffff811b78e0 T ext4_ind_calc_metadata_amount +ffffffff811b7970 T ext4_ind_trans_blocks +ffffffff811b7990 T ext4_ind_truncate +ffffffff811b7c60 T ext4_ind_remove_space +ffffffff811b8310 t ext4_create_inline_data +ffffffff811b84d0 t ext4_update_inline_data +ffffffff811b8680 t ext4_destroy_inline_data_nolock +ffffffff811b8810 t get_max_inline_xattr_value_size.isra.0 +ffffffff811b88e0 t ext4_update_final_de +ffffffff811b8940 t ext4_get_inline_xattr_pos.isra.2 +ffffffff811b8980 t ext4_read_inline_data.isra.4 +ffffffff811b8a90 t ext4_read_inline_page +ffffffff811b8c80 t ext4_write_inline_data.isra.6 +ffffffff811b8d70 t ext4_convert_inline_data_nolock +ffffffff811b9180 t ext4_add_dirent_to_inline.isra.7 +ffffffff811b9280 T ext4_get_max_inline_size +ffffffff811b9320 t ext4_prepare_inline_data +ffffffff811b93d0 T ext4_find_inline_data_nolock +ffffffff811b94b0 T ext4_readpage_inline +ffffffff811b95e0 T ext4_try_to_write_inline_data +ffffffff811b9c30 T ext4_write_inline_data_end +ffffffff811b9db0 T ext4_journalled_write_inline_data +ffffffff811b9eb0 T ext4_da_write_inline_data_begin +ffffffff811ba290 T ext4_da_write_inline_data_end +ffffffff811ba340 T ext4_try_add_inline_entry +ffffffff811ba540 T htree_inlinedir_to_tree +ffffffff811ba870 T ext4_read_inline_dir +ffffffff811babe0 T ext4_get_first_inline_block +ffffffff811bac20 T ext4_try_create_inline_dir +ffffffff811bacd0 T ext4_find_inline_entry +ffffffff811bae10 T ext4_delete_inline_entry +ffffffff811baff0 T empty_inline_dir +ffffffff811bb200 T ext4_destroy_inline_data +ffffffff811bb260 T ext4_inline_data_iomap +ffffffff811bb330 T ext4_inline_data_fiemap +ffffffff811bb440 T ext4_try_to_evict_inline_data +ffffffff811bb4e0 T ext4_inline_data_truncate +ffffffff811bb960 T ext4_convert_inline_data +ffffffff811bba80 t ext4_update_bh_state +ffffffff811bbac0 t ext4_end_io_dio +ffffffff811bbb50 t ext4_releasepage +ffffffff811bbb90 t ext4_bmap +ffffffff811bbc60 t ext4_set_page_dirty +ffffffff811bbc90 t ext4_meta_trans_blocks +ffffffff811bbcf0 t mpage_release_unused_pages +ffffffff811bbe70 t ext4_nonda_switch +ffffffff811bbef0 t __ext4_journalled_invalidatepage +ffffffff811bbf30 t ext4_journalled_invalidatepage +ffffffff811bbf40 t ext4_journalled_set_page_dirty +ffffffff811bbf50 t __ext4_get_inode_loc +ffffffff811bc330 t ext4_inode_csum.isra.0 +ffffffff811bc530 t ext4_inode_csum_set +ffffffff811bc5c0 t write_end_fn +ffffffff811bc610 t ext4_journalled_zero_new_buffers +ffffffff811bc730 t ext4_invalidatepage +ffffffff811bc750 t ext4_readpages +ffffffff811bc780 t mpage_submit_page +ffffffff811bc7f0 t mpage_process_page_bufs +ffffffff811bc8e0 t mpage_prepare_extent_to_map +ffffffff811bcb60 t mpage_map_and_submit_buffers +ffffffff811bcd10 t ext4_readpage +ffffffff811bcd80 t other_inode_match +ffffffff811bcf00 t __ext4_expand_extra_isize.isra.16 +ffffffff811bcf80 t ext4_inode_attach_jinode.part.20 +ffffffff811bd020 T ext4_da_get_block_prep +ffffffff811bd3c0 t ext4_da_invalidatepage +ffffffff811bd630 t __check_block_validity.constprop.30 +ffffffff811bd690 T ext4_inode_is_fast_symlink +ffffffff811bd730 T ext4_truncate_restart_trans +ffffffff811bd7a0 T ext4_da_update_reserve_space +ffffffff811bd8a0 T ext4_issue_zeroout +ffffffff811bd8f0 T ext4_map_blocks +ffffffff811bde60 t _ext4_get_block +ffffffff811bdf40 T ext4_get_block +ffffffff811bdf50 t ext4_block_zero_page_range +ffffffff811be3c0 T ext4_get_block_unwritten +ffffffff811be3d0 t ext4_dio_get_block_overwrite +ffffffff811be3f0 t ext4_get_block_trans +ffffffff811be4d0 t ext4_dio_get_block_unwritten_async +ffffffff811be550 t ext4_dio_get_block_unwritten_sync +ffffffff811be580 T ext4_dio_get_block +ffffffff811be5a0 t ext4_iomap_begin +ffffffff811be990 T ext4_getblk +ffffffff811beb00 T ext4_bread +ffffffff811beb70 T ext4_bread_batch +ffffffff811becc0 T ext4_walk_page_buffers +ffffffff811bed60 T do_journal_get_write_access +ffffffff811bedf0 T ext4_alloc_da_blocks +ffffffff811bee10 T ext4_set_aops +ffffffff811beeb0 T ext4_zero_partial_blocks +ffffffff811bef70 T ext4_can_truncate +ffffffff811befb0 T ext4_inode_attach_jinode +ffffffff811befe0 T ext4_get_inode_loc +ffffffff811bf000 T ext4_set_inode_flags +ffffffff811bf060 T ext4_get_projid +ffffffff811bf090 T ext4_iget +ffffffff811bfba0 T ext4_iget_normal +ffffffff811bfbd0 T ext4_write_inode +ffffffff811bfcf0 T ext4_getattr +ffffffff811bfd70 T ext4_file_getattr +ffffffff811bfdf0 T ext4_writepage_trans_blocks +ffffffff811bfe90 t ext4_writepage +ffffffff811c04e0 t __writepage +ffffffff811c0520 T ext4_chunk_trans_blocks +ffffffff811c0530 T ext4_mark_iloc_dirty +ffffffff811c0d50 T ext4_reserve_inode_write +ffffffff811c0e00 T ext4_expand_extra_isize +ffffffff811c0f60 T ext4_mark_inode_dirty +ffffffff811c1070 t ext4_writepages +ffffffff811c1d30 T ext4_update_disksize_before_punch +ffffffff811c1de0 T ext4_punch_hole +ffffffff811c2270 T ext4_truncate +ffffffff811c2570 t ext4_write_begin +ffffffff811c29e0 t ext4_da_write_begin +ffffffff811c2cf0 t ext4_iomap_end +ffffffff811c2eb0 t ext4_direct_IO +ffffffff811c3360 t ext4_write_end +ffffffff811c3630 t ext4_da_write_end +ffffffff811c3840 t ext4_journalled_write_end +ffffffff811c3c20 T ext4_evict_inode +ffffffff811c4050 T ext4_setattr +ffffffff811c48c0 T ext4_dirty_inode +ffffffff811c4920 T ext4_change_inode_journal_flag +ffffffff811c4b10 T ext4_page_mkwrite +ffffffff811c4fd0 T ext4_filemap_fault +ffffffff811c5010 t swap_inode_data +ffffffff811c5160 t ext4_getfsmap_format +ffffffff811c51c0 t ext4_ioc_getfsmap +ffffffff811c5390 t ext4_ioctl_setflags +ffffffff811c55e0 T ext4_ioctl +ffffffff811c6620 t mb_clear_bits +ffffffff811c6680 t ext4_mb_seq_groups_start +ffffffff811c66b0 t ext4_mb_seq_groups_next +ffffffff811c66e0 t ext4_mb_seq_groups_stop +ffffffff811c66f0 t ext4_mb_seq_groups_open +ffffffff811c6720 t mb_find_order_for_block +ffffffff811c6790 t ext4_mb_use_inode_pa +ffffffff811c6850 t ext4_mb_new_inode_pa +ffffffff811c6b90 t ext4_mb_new_group_pa +ffffffff811c6e10 t ext4_mb_initialize_context +ffffffff811c6f80 t ext4_mb_unload_buddy.isra.1 +ffffffff811c6fd0 t ext4_mb_generate_buddy +ffffffff811c72e0 t mb_find_buddy +ffffffff811c7350 t mb_find_extent +ffffffff811c7520 t ext4_try_merge_freed_extent +ffffffff811c75d0 t ext4_mb_free_metadata +ffffffff811c7790 t ext4_mb_pa_callback +ffffffff811c77c0 t ext4_mb_use_preallocated.constprop.13 +ffffffff811c7a00 t ext4_mb_normalize_request.constprop.14 +ffffffff811c7ec0 T ext4_set_bits +ffffffff811c7f20 t ext4_mb_generate_from_pa +ffffffff811c7fe0 t ext4_mb_init_cache +ffffffff811c8610 t ext4_mb_init_group +ffffffff811c8860 t ext4_mb_good_group +ffffffff811c89d0 t ext4_mb_load_buddy_gfp +ffffffff811c8da0 t ext4_mb_seq_groups_show +ffffffff811c8f70 t mb_free_blocks +ffffffff811c94d0 t ext4_mb_release_inode_pa.isra.11 +ffffffff811c9660 t ext4_discard_allocated_blocks +ffffffff811c9790 t ext4_mb_release_group_pa +ffffffff811c9800 t ext4_mb_discard_group_preallocations +ffffffff811c9c10 t ext4_mb_discard_lg_preallocations +ffffffff811c9ed0 t mb_mark_used +ffffffff811ca1c0 t ext4_mb_use_best_found +ffffffff811ca2b0 t ext4_mb_find_by_goal +ffffffff811ca530 t ext4_mb_simple_scan_group +ffffffff811ca660 t ext4_mb_scan_aligned +ffffffff811ca770 t ext4_mb_check_limits +ffffffff811ca7f0 t ext4_mb_try_best_found +ffffffff811ca960 t ext4_mb_complex_scan_group +ffffffff811caba0 t ext4_mb_regular_allocator +ffffffff811caf70 t ext4_mb_mark_diskspace_used +ffffffff811cb3a0 T ext4_mb_alloc_groupinfo +ffffffff811cb470 T ext4_mb_add_groupinfo +ffffffff811cb670 T ext4_mb_init +ffffffff811cbb70 T ext4_mb_release +ffffffff811cbf00 T ext4_process_freed_data +ffffffff811cc2e0 T ext4_exit_mballoc +ffffffff811cc340 T ext4_discard_preallocations +ffffffff811cc6f0 T ext4_mb_new_blocks +ffffffff811ccf90 T ext4_free_blocks +ffffffff811cd8e0 T ext4_group_add_blocks +ffffffff811cdd60 T ext4_trim_fs +ffffffff811ce4e0 T ext4_mballoc_query_range +ffffffff811ce7bf t get_groupinfo_cache.part.4 +ffffffff811ce7c1 t mb_find_buddy.part.5 +ffffffff811ce7d0 t finish_range +ffffffff811ce920 t update_extent_range +ffffffff811ce980 t update_ind_extent_range +ffffffff811cea20 t update_dind_extent_range +ffffffff811ceac0 t extend_credit_for_blkdel.isra.0 +ffffffff811ceb00 t free_dind_blocks +ffffffff811cebf0 t free_ext_idx.isra.2 +ffffffff811cece0 t free_ext_block.part.3 +ffffffff811ced40 T ext4_ext_migrate +ffffffff811cf450 T ext4_ind_migrate +ffffffff811cf620 t ext4_mmp_csum.isra.0 +ffffffff811cf670 t read_mmp_block +ffffffff811cf7b0 t write_mmp_block +ffffffff811cf860 T __dump_mmp_msg +ffffffff811cf8b0 t kmmpd +ffffffff811cfc80 T ext4_multi_mount_protect +ffffffff811cffd0 t mext_check_coverage.constprop.1 +ffffffff811d00f0 T ext4_double_down_write_data_sem +ffffffff811d0130 T ext4_double_up_write_data_sem +ffffffff811d0150 T ext4_move_extents +ffffffff811d1290 t ext4_dx_csum +ffffffff811d1360 t ext4_dx_csum_set +ffffffff811d1430 t dx_release +ffffffff811d1480 t ext4_append +ffffffff811d1550 t ext4_dirent_csum +ffffffff811d15a0 t ext4_inc_count.isra.6 +ffffffff811d15f0 t ext4_update_dir_count.isra.8 +ffffffff811d1650 t dx_insert_block.isra.10 +ffffffff811d16b0 T initialize_dirent_tail +ffffffff811d16e0 T ext4_dirent_csum_verify +ffffffff811d1760 t __ext4_read_dirblock +ffffffff811d19e0 t dx_probe +ffffffff811d1e50 t htree_dirblock_to_tree +ffffffff811d2000 t ext4_htree_next_block +ffffffff811d2120 t ext4_rename_dir_prepare +ffffffff811d21e0 T ext4_handle_dirty_dirent_node +ffffffff811d22a0 t ext4_setent +ffffffff811d23e0 t ext4_rename_dir_finish +ffffffff811d24a0 t do_split +ffffffff811d2b50 T ext4_htree_fill_tree +ffffffff811d2de0 T ext4_search_dir +ffffffff811d2eb0 t ext4_dx_find_entry +ffffffff811d2ff0 t ext4_find_entry +ffffffff811d33d0 t ext4_lookup +ffffffff811d3590 t ext4_cross_rename +ffffffff811d3a20 T ext4_get_parent +ffffffff811d3af0 T ext4_find_dest_de +ffffffff811d3c20 T ext4_insert_dentry +ffffffff811d3cb0 t add_dirent_to_buf +ffffffff811d3e50 t ext4_dx_add_entry +ffffffff811d4570 t make_indexed_dir +ffffffff811d4950 t ext4_add_entry +ffffffff811d4c30 t ext4_add_nondir +ffffffff811d4ca0 t ext4_mknod +ffffffff811d4df0 t ext4_create +ffffffff811d4f40 T ext4_generic_delete_entry +ffffffff811d5060 t ext4_delete_entry +ffffffff811d5180 t ext4_find_delete_entry +ffffffff811d51f0 T ext4_init_dot_dotdot +ffffffff811d52a0 t ext4_mkdir +ffffffff811d5640 T ext4_empty_dir +ffffffff811d5890 T ext4_orphan_add +ffffffff811d5a70 t ext4_tmpfile +ffffffff811d5bb0 t ext4_rename +ffffffff811d6350 t ext4_rename2 +ffffffff811d63a0 t ext4_rmdir +ffffffff811d6640 t ext4_unlink +ffffffff811d6870 T ext4_orphan_del +ffffffff811d6a70 t ext4_symlink +ffffffff811d6e00 t ext4_link +ffffffff811d6fc0 t ext4_finish_bio +ffffffff811d71a0 t ext4_release_io_end +ffffffff811d7200 T ext4_exit_pageio +ffffffff811d7210 T ext4_end_io_rsv_work +ffffffff811d7370 T ext4_init_io_end +ffffffff811d73a0 T ext4_put_io_end_defer +ffffffff811d7460 t ext4_end_bio +ffffffff811d7550 T ext4_put_io_end +ffffffff811d75f0 T ext4_get_io_end +ffffffff811d7600 T ext4_io_submit +ffffffff811d7650 T ext4_io_submit_init +ffffffff811d7670 T ext4_bio_write_page +ffffffff811d7aa0 t mpage_end_io +ffffffff811d7b00 T ext4_mpage_readpages +ffffffff811d8280 t ext4_group_overhead_blocks +ffffffff811d82d0 t ext4_list_backups.isra.2.part.3 +ffffffff811d8310 t update_backups +ffffffff811d86b0 t ext4_group_extend_no_check +ffffffff811d8880 t verify_reserved_gdb.isra.5 +ffffffff811d8970 t bclean.isra.6 +ffffffff811d89f0 t ext4_get_bitmap.isra.7 +ffffffff811d8a40 t extend_or_restart_transaction.constprop.10 +ffffffff811d8a80 t set_flexbg_block_bitmap +ffffffff811d8c20 t ext4_flex_group_add +ffffffff811da470 T ext4_resize_begin +ffffffff811da510 T ext4_resize_end +ffffffff811da520 T ext4_group_add +ffffffff811dab30 T ext4_group_extend +ffffffff811dad40 T ext4_resize_fs +ffffffff811dbb80 t ext4_drop_inode +ffffffff811dbba0 t ext4_statfs +ffffffff811dbce0 t ext4_i_callback +ffffffff811dbd00 t ext4_mount +ffffffff811dbd10 t ext4_fh_to_parent +ffffffff811dbd20 t ext4_fh_to_dentry +ffffffff811dbd30 t bdev_try_to_free_page +ffffffff811dbd70 t ext4_sync_fs +ffffffff811dbeb0 t ext4_alloc_inode +ffffffff811dbfe0 t init_once +ffffffff811dc050 t ext4_superblock_csum.isra.1 +ffffffff811dc0a0 t ext4_init_journal_params.isra.6 +ffffffff811dc130 t __save_error_info.isra.7 +ffffffff811dc230 t _ext4_show_options.isra.8 +ffffffff811dc930 t ext4_show_options +ffffffff811dc950 t ext4_group_desc_csum.isra.9 +ffffffff811dcb30 t ext4_remove_li_request.part.10 +ffffffff811dcb70 t ext4_clear_request_list +ffffffff811dcbd0 t ext4_lazyinit_thread +ffffffff811dcf50 t ext4_unregister_li_request.isra.11 +ffffffff811dcfb0 t ext4_journal_commit_callback +ffffffff811dd070 t ext4_nfs_get_inode +ffffffff811dd0e0 T ext4_superblock_csum_set +ffffffff811dd110 T ext4_kvmalloc +ffffffff811dd140 T ext4_kvzalloc +ffffffff811dd180 T ext4_block_bitmap +ffffffff811dd1a0 T ext4_inode_bitmap +ffffffff811dd1c0 T ext4_inode_table +ffffffff811dd1e0 T ext4_free_group_clusters +ffffffff811dd200 T ext4_free_inodes_count +ffffffff811dd220 T ext4_used_dirs_count +ffffffff811dd240 T ext4_itable_unused_count +ffffffff811dd260 T ext4_block_bitmap_set +ffffffff811dd280 T ext4_inode_bitmap_set +ffffffff811dd2a0 T ext4_inode_table_set +ffffffff811dd2c0 T ext4_free_group_clusters_set +ffffffff811dd2e0 T ext4_free_inodes_set +ffffffff811dd300 T ext4_used_dirs_set +ffffffff811dd320 T ext4_itable_unused_set +ffffffff811dd340 T ext4_decode_error +ffffffff811dd3e0 T __ext4_msg +ffffffff811dd480 t ext4_commit_super +ffffffff811dd720 t ext4_unfreeze +ffffffff811dd760 t ext4_freeze +ffffffff811dd7e0 t ext4_mark_recovery_complete.isra.20 +ffffffff811dd860 t ext4_handle_error.part.22 +ffffffff811dd900 T __ext4_error +ffffffff811dda00 T __ext4_error_inode +ffffffff811ddb80 T __ext4_error_file +ffffffff811ddd40 T __ext4_std_error +ffffffff811dde10 T __ext4_abort +ffffffff811ddf90 t ext4_get_journal_inode +ffffffff811de040 t ext4_put_super +ffffffff811de3b0 t ext4_destroy_inode +ffffffff811de440 t print_daily_error_info +ffffffff811de580 t parse_options +ffffffff811dee80 t ext4_feature_set_ok +ffffffff811defb0 T __ext4_warning +ffffffff811df060 t ext4_clear_journal_err.isra.25 +ffffffff811df120 T __ext4_warning_inode +ffffffff811df1e0 T __ext4_grp_locked_error +ffffffff811df400 T ext4_update_dynamic_rev +ffffffff811df450 t ext4_setup_super +ffffffff811df600 T ext4_clear_inode +ffffffff811df670 T ext4_seq_options_show +ffffffff811df6d0 T ext4_alloc_flex_bg_array +ffffffff811df7b0 T ext4_group_desc_csum_verify +ffffffff811df800 T ext4_group_desc_csum_set +ffffffff811df840 T ext4_register_li_request +ffffffff811dfa90 t ext4_remount +ffffffff811e0070 T ext4_calculate_overhead +ffffffff811e04f0 t ext4_fill_super +ffffffff811e3700 T ext4_force_commit +ffffffff811e3721 t descriptor_loc +ffffffff811e37b0 t ext4_encrypted_get_link +ffffffff811e3820 t ext4_kset_release +ffffffff811e3830 t es_shrinker_info_open +ffffffff811e3850 t options_open +ffffffff811e3870 t ext4_sb_release +ffffffff811e3880 t ext4_attr_store +ffffffff811e3aa0 t ext4_attr_show +ffffffff811e3cf0 T ext4_register_sysfs +ffffffff811e3e10 T ext4_unregister_sysfs +ffffffff811e3e80 T ext4_exit_sysfs +ffffffff811e3ec0 t ext4_xattr_check_entries +ffffffff811e3f50 t ext4_xattr_free_space +ffffffff811e3fa0 t __xattr_check_inode +ffffffff811e4000 t ext4_xattr_list_entries +ffffffff811e41a0 t ext4_xattr_find_entry +ffffffff811e4240 t ext4_xattr_inode_iget +ffffffff811e4390 t ext4_xattr_inode_read +ffffffff811e4550 t ext4_xattr_inode_update_ref +ffffffff811e46c0 t ext4_xattr_block_csum.isra.0 +ffffffff811e47e0 t ext4_xattr_block_csum_verify +ffffffff811e4860 t ext4_xattr_get_block +ffffffff811e4920 t ext4_xattr_block_csum_set.isra.1 +ffffffff811e4960 t ext4_xattr_inode_hash.isra.3 +ffffffff811e49a0 t ext4_xattr_inode_get +ffffffff811e4b20 t ext4_xattr_inode_free_quota.part.7 +ffffffff811e4b50 t ext4_xattr_block_find.isra.8 +ffffffff811e4ca0 t ext4_xattr_set_entry +ffffffff811e5a80 t ext4_xattr_ibody_set +ffffffff811e5b00 t ext4_xattr_ensure_credits +ffffffff811e5c80 t ext4_xattr_inode_dec_ref_all +ffffffff811e5f30 t ext4_xattr_release_block +ffffffff811e6160 t ext4_xattr_block_set +ffffffff811e6f60 T ext4_xattr_ibody_get +ffffffff811e70a0 T ext4_xattr_get +ffffffff811e7310 T ext4_listxattr +ffffffff811e75a0 T ext4_get_inode_usage +ffffffff811e77e0 T __ext4_xattr_set_credits +ffffffff811e78b0 t ext4_xattr_set_credits.part.15 +ffffffff811e7930 T ext4_xattr_ibody_find +ffffffff811e79e0 T ext4_xattr_ibody_inline_set +ffffffff811e7b00 T ext4_xattr_set_handle +ffffffff811e80a0 T ext4_xattr_set_credits +ffffffff811e80d0 T ext4_xattr_set +ffffffff811e81f0 T ext4_expand_extra_isize_ea +ffffffff811e8a40 T ext4_xattr_delete_inode +ffffffff811e8dd0 T ext4_xattr_inode_array_free +ffffffff811e8e10 T ext4_xattr_create_cache +ffffffff811e8e20 T ext4_xattr_destroy_cache +ffffffff811e8e30 t ext4_xattr_trusted_set +ffffffff811e8e50 t ext4_xattr_trusted_get +ffffffff811e8e70 t ext4_xattr_trusted_list +ffffffff811e8e80 t ext4_xattr_user_list +ffffffff811e8ea0 t ext4_xattr_user_set +ffffffff811e8ee0 t ext4_xattr_user_get +ffffffff811e8f10 t __ext4_set_acl +ffffffff811e9160 T ext4_get_acl +ffffffff811e93d0 T ext4_set_acl +ffffffff811e9580 T ext4_init_acl +ffffffff811e9670 t jbd2_journal_file_inode +ffffffff811e9770 t wait_transaction_locked +ffffffff811e9810 t sub_reserved_credits +ffffffff811e9830 t add_transaction_credits +ffffffff811e9aa0 t start_this_handle +ffffffff811e9e30 t __jbd2_journal_temp_unlink_buffer +ffffffff811e9f30 t jbd2_write_access_granted.part.0 +ffffffff811e9fb0 T jbd2_journal_destroy_transaction_cache +ffffffff811e9fd0 T jbd2_journal_free_transaction +ffffffff811e9ff0 T jbd2__journal_start +ffffffff811ea160 T jbd2_journal_start +ffffffff811ea180 T jbd2_journal_free_reserved +ffffffff811ea1a0 T jbd2_journal_extend +ffffffff811ea2a0 T jbd2__journal_restart +ffffffff811ea400 T jbd2_journal_restart +ffffffff811ea410 T jbd2_journal_lock_updates +ffffffff811ea580 T jbd2_journal_unlock_updates +ffffffff811ea5d0 T jbd2_journal_set_triggers +ffffffff811ea5f0 T jbd2_buffer_frozen_trigger +ffffffff811ea620 T jbd2_buffer_abort_trigger +ffffffff811ea640 T jbd2_journal_stop +ffffffff811ea8f0 T jbd2_journal_start_reserved +ffffffff811ea9b0 T jbd2_journal_unfile_buffer +ffffffff811eaa50 T jbd2_journal_try_to_free_buffers +ffffffff811eab80 T __jbd2_journal_file_buffer +ffffffff811ead30 t do_get_write_access +ffffffff811eb1b0 T jbd2_journal_get_write_access +ffffffff811eb200 T jbd2_journal_get_undo_access +ffffffff811eb340 T jbd2_journal_get_create_access +ffffffff811eb4b0 T jbd2_journal_dirty_metadata +ffffffff811eb810 T jbd2_journal_forget +ffffffff811eba80 t __dispose_buffer +ffffffff811ebae0 T jbd2_journal_invalidatepage +ffffffff811ebef0 T jbd2_journal_file_buffer +ffffffff811ebf80 T __jbd2_journal_refile_buffer +ffffffff811ec050 T jbd2_journal_refile_buffer +ffffffff811ec0d0 T jbd2_journal_inode_add_write +ffffffff811ec0e0 T jbd2_journal_inode_add_wait +ffffffff811ec0f0 T jbd2_journal_begin_ordered_truncate +ffffffff811ec190 t journal_end_buffer_io_sync +ffffffff811ec1d0 t journal_submit_commit_record +ffffffff811ec360 T jbd2_journal_commit_transaction +ffffffff811edb00 t jread +ffffffff811edd70 t jbd2_descriptor_block_csum_verify +ffffffff811eddf0 t count_tags.isra.1 +ffffffff811ede60 t do_one_pass +ffffffff811ee7e0 T jbd2_journal_recover +ffffffff811ee910 T jbd2_journal_skip_recovery +ffffffff811ee980 T jbd2_cleanup_journal_tail +ffffffff811ee9f0 T __jbd2_journal_insert_checkpoint +ffffffff811eea60 T __jbd2_journal_drop_transaction +ffffffff811eeb20 T __jbd2_journal_remove_checkpoint +ffffffff811eec00 T jbd2_log_do_checkpoint +ffffffff811ef020 T __jbd2_log_wait_for_space +ffffffff811ef1e0 t journal_clean_one_cp_list +ffffffff811ef270 T __jbd2_journal_clean_checkpoint_list +ffffffff811ef2e0 T jbd2_journal_destroy_checkpoint +ffffffff811ef320 t find_revoke_record +ffffffff811ef3b0 t insert_revoke_hash +ffffffff811ef450 t jbd2_journal_init_revoke_table +ffffffff811ef4e0 t jbd2_journal_destroy_revoke_table +ffffffff811ef540 t flush_descriptor +ffffffff811ef590 T jbd2_journal_destroy_revoke_caches +ffffffff811ef5d0 T jbd2_journal_init_revoke +ffffffff811ef660 T jbd2_journal_destroy_revoke +ffffffff811ef6a0 T jbd2_journal_revoke +ffffffff811ef7e0 T jbd2_journal_cancel_revoke +ffffffff811ef8c0 T jbd2_clear_buffer_revoked_flags +ffffffff811ef940 T jbd2_journal_switch_revoke_table +ffffffff811ef9a0 T jbd2_journal_write_revoke_records +ffffffff811efbe0 T jbd2_journal_set_revoke +ffffffff811efc20 T jbd2_journal_test_revoke +ffffffff811efc40 T jbd2_journal_clear_revoke +ffffffff811efcc0 t jbd2_seq_info_start +ffffffff811efcd0 t jbd2_seq_info_next +ffffffff811efce0 t jbd2_seq_info_stop +ffffffff811efcf0 t get_slab +ffffffff811efd30 t journal_init_common +ffffffff811eff80 t jbd2_stats_proc_init +ffffffff811effd0 t jbd2_seq_info_release +ffffffff811f0010 t jbd2_seq_info_open +ffffffff811f0150 t jbd2_seq_info_show +ffffffff811f0320 t commit_timeout +ffffffff811f0330 t kjournald2 +ffffffff811f0570 t jbd2_superblock_csum.isra.2 +ffffffff811f05d0 t journal_get_superblock +ffffffff811f08f0 t load_superblock.part.4 +ffffffff811f0940 t __jbd2_log_start_commit.part.5 +ffffffff811f0990 t __jbd2_journal_abort_hard.part.8 +ffffffff811f09f0 T __jbd2_log_start_commit +ffffffff811f0a00 T jbd2_log_start_commit +ffffffff811f0a50 T jbd2_journal_start_commit +ffffffff811f0ad0 T jbd2_trans_will_send_data_barrier +ffffffff811f0b60 T jbd2_log_wait_commit +ffffffff811f0c40 t __jbd2_journal_force_commit +ffffffff811f0ce0 T jbd2_journal_force_commit_nested +ffffffff811f0cf0 T jbd2_journal_force_commit +ffffffff811f0d20 T jbd2_transaction_committed +ffffffff811f0d80 T jbd2_complete_transaction +ffffffff811f0e00 T jbd2_descriptor_block_csum_set +ffffffff811f0e80 T jbd2_journal_get_log_tail +ffffffff811f0f30 T jbd2_journal_init_dev +ffffffff811f0f80 T jbd2_journal_init_inode +ffffffff811f1040 T jbd2_journal_update_sb_errno +ffffffff811f1080 t __journal_abort_soft +ffffffff811f10d0 t jbd2_write_superblock +ffffffff811f11e0 T jbd2_journal_update_sb_log_tail +ffffffff811f1240 T __jbd2_update_log_tail +ffffffff811f12f0 T jbd2_update_log_tail +ffffffff811f1340 t jbd2_mark_journal_empty +ffffffff811f13d0 T jbd2_journal_bmap +ffffffff811f1440 T jbd2_journal_next_log_block +ffffffff811f14c0 T jbd2_journal_get_descriptor_buffer +ffffffff811f1580 T jbd2_journal_load +ffffffff811f1890 T jbd2_journal_destroy +ffffffff811f1af0 T jbd2_journal_check_used_features +ffffffff811f1b70 T jbd2_journal_check_available_features +ffffffff811f1bb0 T jbd2_journal_set_features +ffffffff811f1d60 T jbd2_journal_clear_features +ffffffff811f1d80 T jbd2_journal_flush +ffffffff811f1f50 T jbd2_journal_wipe +ffffffff811f2000 T __jbd2_journal_abort_hard +ffffffff811f2010 T jbd2_journal_abort +ffffffff811f2020 T jbd2_journal_errno +ffffffff811f2050 T jbd2_journal_clear_err +ffffffff811f2090 T jbd2_journal_ack_err +ffffffff811f20c0 T jbd2_journal_blocks_per_page +ffffffff811f20e0 T journal_tag_bytes +ffffffff811f2130 T jbd2_alloc +ffffffff811f2180 T jbd2_free +ffffffff811f21c0 T jbd2_journal_write_metadata_buffer +ffffffff811f2630 T jbd2_journal_add_journal_head +ffffffff811f2780 T jbd2_journal_grab_journal_head +ffffffff811f27e0 T jbd2_journal_put_journal_head +ffffffff811f2950 T jbd2_journal_init_jbd_inode +ffffffff811f2980 T jbd2_journal_release_jbd_inode +ffffffff811f2a8d t jbd2_journal_destroy_caches +ffffffff811f2b10 t ramfs_kill_sb +ffffffff811f2b30 t ramfs_show_options +ffffffff811f2b60 T ramfs_mount +ffffffff811f2b70 T ramfs_get_inode +ffffffff811f2cb0 t ramfs_mknod +ffffffff811f2d20 t ramfs_mkdir +ffffffff811f2d50 t ramfs_create +ffffffff811f2d60 t ramfs_symlink +ffffffff811f2e10 T ramfs_fill_super +ffffffff811f2f50 t ramfs_mmu_get_unmapped_area +ffffffff811f2f70 t init_once +ffffffff811f2f80 t fat_cache_merge +ffffffff811f2fc0 t fat_cache_add.part.1 +ffffffff811f30f0 T fat_cache_destroy +ffffffff811f3100 T fat_cache_inval_inode +ffffffff811f3180 T fat_get_cluster +ffffffff811f3490 T fat_get_mapped_cluster +ffffffff811f3590 T fat_bmap +ffffffff811f3640 t fat__get_entry +ffffffff811f3880 t fat_get_short_entry +ffffffff811f3920 t fat_ioctl_filldir +ffffffff811f3b10 t __fat_remove_entries +ffffffff811f3c30 t fat_parse_long +ffffffff811f3e80 t uni16_to_x8.isra.1 +ffffffff811f3fa0 t fat_parse_short +ffffffff811f45b0 t __fat_readdir.isra.2 +ffffffff811f4c50 t fat_readdir +ffffffff811f4c70 t fat_zeroed_cluster.constprop.3 +ffffffff811f4e00 t fat_add_new_entries +ffffffff811f5080 t fat_dir_ioctl +ffffffff811f51c0 T fat_search_long +ffffffff811f5510 T fat_get_dotdot_entry +ffffffff811f5580 T fat_dir_empty +ffffffff811f5610 T fat_subdirs +ffffffff811f5670 T fat_scan +ffffffff811f5740 T fat_scan_logstart +ffffffff811f5810 T fat_remove_entries +ffffffff811f5980 T fat_alloc_new_dir +ffffffff811f5b90 T fat_add_entries +ffffffff811f6110 t fat12_ent_blocknr +ffffffff811f6140 t fat_ent_blocknr +ffffffff811f6180 t fat16_ent_set_ptr +ffffffff811f6190 t fat32_ent_set_ptr +ffffffff811f61a0 t fat12_ent_get +ffffffff811f6210 t fat16_ent_get +ffffffff811f6230 t fat32_ent_get +ffffffff811f6250 t fat16_ent_next +ffffffff811f6290 t fat32_ent_next +ffffffff811f62d0 t fat_collect_bhs +ffffffff811f6340 t fat12_ent_next +ffffffff811f63d0 t fat16_ent_put +ffffffff811f6400 t fat32_ent_put +ffffffff811f6420 t fat_mirror_bhs +ffffffff811f6560 t fat12_ent_set_ptr +ffffffff811f65a0 t fat12_ent_bread +ffffffff811f6670 t fat12_ent_put +ffffffff811f6700 t fat_ent_bread +ffffffff811f6790 T fat_ent_access_init +ffffffff811f6810 T fat_ent_read +ffffffff811f6a10 T fat_ent_write +ffffffff811f6a70 T fat_free_clusters +ffffffff811f6d80 T fat_alloc_clusters +ffffffff811f7210 T fat_count_free_clusters +ffffffff811f7500 T fat_file_fsync +ffffffff811f7540 t fat_cont_expand +ffffffff811f7630 t fat_fallocate +ffffffff811f7720 T fat_getattr +ffffffff811f7770 t fat_file_release +ffffffff811f77b0 T fat_truncate_blocks +ffffffff811f7aa0 T fat_setattr +ffffffff811f7d20 T fat_generic_ioctl +ffffffff811f8210 t fat_get_block_bmap +ffffffff811f82b0 t _fat_bmap +ffffffff811f82f0 t fat_readpages +ffffffff811f8310 t fat_writepages +ffffffff811f8320 t fat_readpage +ffffffff811f8330 t fat_writepage +ffffffff811f8340 t fat_calc_dir_size +ffffffff811f83a0 t __fat_write_inode +ffffffff811f85e0 t fat_set_state +ffffffff811f86c0 t delayed_free +ffffffff811f8710 t fat_show_options +ffffffff811f8bd0 t fat_statfs +ffffffff811f8ca0 t fat_put_super +ffffffff811f8ce0 t fat_destroy_inode +ffffffff811f8d00 t fat_i_callback +ffffffff811f8d20 t fat_alloc_inode +ffffffff811f8d60 t parse_options +ffffffff811f92d0 t init_once +ffffffff811f9320 t fat_write_failed.isra.3 +ffffffff811f9350 t fat_direct_IO +ffffffff811f93e0 t fat_write_end +ffffffff811f9470 t fat_write_begin +ffffffff811f94d0 t fat_remount +ffffffff811f9540 t fat_write_inode +ffffffff811f95a0 t writeback_inode +ffffffff811f95c0 T fat_add_cluster +ffffffff811f9620 t fat_get_block +ffffffff811f9820 T fat_block_truncate_page +ffffffff811f9830 T fat_attach +ffffffff811f9920 T fat_detach +ffffffff811f99e0 t fat_evict_inode +ffffffff811f9aa0 T fat_iget +ffffffff811f9b40 T fat_fill_inode +ffffffff811f9f60 T fat_build_inode +ffffffff811fa040 T fat_sync_inode +ffffffff811fa050 T fat_fill_super +ffffffff811fae00 T fat_flush_inodes +ffffffff811fae60 T fat_clusters_flush +ffffffff811faf30 T fat_chain_add +ffffffff811fb120 T fat_time_fat2unix +ffffffff811fb250 T fat_time_unix2fat +ffffffff811fb380 T fat_sync_bhs +ffffffff811fb3ef T fat_msg +ffffffff811fb447 T __fat_fs_error +ffffffff811fb500 t fat_fh_to_parent +ffffffff811fb510 t __fat_nfs_get_inode +ffffffff811fb650 t fat_nfs_get_inode +ffffffff811fb660 t fat_fh_to_parent_nostale +ffffffff811fb6a0 t fat_fh_to_dentry +ffffffff811fb6b0 t fat_encode_fh_nostale +ffffffff811fb740 t fat_dget +ffffffff811fb7e0 t fat_get_parent +ffffffff811fb9a0 t fat_fh_to_dentry_nostale +ffffffff811fb9e0 t vfat_hashi +ffffffff811fba70 t vfat_cmpi +ffffffff811fbb50 t setup +ffffffff811fbb90 t vfat_mount +ffffffff811fbba0 t vfat_fill_super +ffffffff811fbbc0 t vfat_cmp +ffffffff811fbc70 t vfat_hash +ffffffff811fbcb0 t vfat_find +ffffffff811fbcf0 t vfat_find_form +ffffffff811fbd30 t vfat_rmdir +ffffffff811fbe30 t vfat_unlink +ffffffff811fbf20 t vfat_lookup +ffffffff811fc0d0 t vfat_revalidate_ci +ffffffff811fc140 t vfat_add_entry +ffffffff811fcf20 t vfat_rename +ffffffff811fd510 t vfat_create +ffffffff811fd660 t vfat_mkdir +ffffffff811fd810 t vfat_revalidate +ffffffff811fd880 t get_name +ffffffff811fda10 t exportfs_get_name +ffffffff811fda50 t reconnect_path +ffffffff811fdcf0 t filldir_one +ffffffff811fdd90 t find_acceptable_alias +ffffffff811fdeb0 T exportfs_encode_inode_fh +ffffffff811fdf30 T exportfs_encode_fh +ffffffff811fdf90 T exportfs_decode_fh +ffffffff811fe220 t uni2char +ffffffff811fe260 t char2uni +ffffffff811fe280 t find_nls +ffffffff811fe2e0 T utf8_to_utf32 +ffffffff811fe3a0 T utf32_to_utf8 +ffffffff811fe440 T utf8s_to_utf16s +ffffffff811fe580 T utf16s_to_utf8s +ffffffff811fe6a0 T __register_nls +ffffffff811fe720 T unregister_nls +ffffffff811fe790 T load_nls +ffffffff811fe7a0 T unload_nls +ffffffff811fe7b0 T load_nls_default +ffffffff811fe7d0 t uni2char +ffffffff811fe810 t char2uni +ffffffff811fe830 t uni2char +ffffffff811fe8e0 t char2uni +ffffffff811fe950 t char2uni +ffffffff811fec00 t uni2char +ffffffff811fef00 t uni2char +ffffffff811fefb0 t char2uni +ffffffff811ff010 t uni2char +ffffffff811ff070 t char2uni +ffffffff811ff0c0 t uni2char +ffffffff811ff100 t char2uni +ffffffff811ff120 t uni2char +ffffffff811ff160 t char2uni +ffffffff811ff180 t char2uni +ffffffff811ff1c0 t uni2char +ffffffff811ff1f0 t ntfs_bmap +ffffffff811ff3c0 t ntfs_end_buffer_async_read +ffffffff811ff6c0 t ntfs_readpage +ffffffff81200070 t ntfs_attr_find +ffffffff812002b0 T load_attribute_list +ffffffff81200550 T ntfs_attr_reinit_search_ctx +ffffffff812005c0 T ntfs_attr_lookup +ffffffff81200c60 T ntfs_attr_get_search_ctx +ffffffff81200cb0 T ntfs_attr_put_search_ctx +ffffffff81200ce0 T ntfs_map_runlist_nolock +ffffffff81201160 T ntfs_map_runlist +ffffffff812011c0 T ntfs_attr_vcn_to_lcn_nolock +ffffffff81201340 T ntfs_attr_find_vcn_nolock +ffffffff812014a0 t ntfs_collate_binary +ffffffff812014e0 t ntfs_collate_ntofs_ulong +ffffffff81201510 T ntfs_collate +ffffffff81201550 t zero_partial_compressed_page +ffffffff812015f0 T allocate_compression_buffers +ffffffff81201620 T free_compression_buffers +ffffffff81201640 T ntfs_read_compressed_block +ffffffff81202be0 T __ntfs_warning +ffffffff81202ce0 T __ntfs_error +ffffffff81202de0 t ntfs_dir_open +ffffffff81202df0 t ntfs_readdir +ffffffff81203bf0 T ntfs_lookup_inode_by_name +ffffffff81204aa0 t ntfs_file_open +ffffffff81204ab0 T ntfs_index_ctx_get +ffffffff81204af0 T ntfs_index_ctx_put +ffffffff81204b80 T ntfs_index_lookup +ffffffff81205420 t ntfs_init_locked_inode +ffffffff812054f0 t ntfs_i_callback +ffffffff81205510 T ntfs_test_inode +ffffffff81205570 t __ntfs_clear_inode +ffffffff81205620 T ntfs_alloc_big_inode +ffffffff81205670 T ntfs_destroy_big_inode +ffffffff812056a0 T __ntfs_init_inode +ffffffff812057b0 T ntfs_attr_iget +ffffffff81205ee0 t ntfs_read_locked_inode +ffffffff81207130 T ntfs_iget +ffffffff812071b0 T ntfs_index_iget +ffffffff81207a50 T ntfs_new_extent_inode +ffffffff81207ad0 T ntfs_read_inode_mount +ffffffff81208420 T ntfs_clear_extent_inode +ffffffff81208470 T ntfs_evict_big_inode +ffffffff81208500 T ntfs_show_options +ffffffff81208690 T map_mft_record +ffffffff812088e0 T unmap_mft_record +ffffffff81208940 T map_extent_mft_record +ffffffff81208c00 T post_read_mst_fixup +ffffffff81208cb0 T pre_write_mst_fixup +ffffffff81208d60 T post_write_mst_fixup +ffffffff81208db0 t ntfs_nfs_get_inode +ffffffff81208df0 t ntfs_lookup +ffffffff812091d0 t ntfs_get_parent +ffffffff812092f0 t ntfs_fh_to_parent +ffffffff81209300 t ntfs_fh_to_dentry +ffffffff81209310 T ntfs_runlists_merge +ffffffff8120a710 T ntfs_mapping_pairs_decompress +ffffffff8120ac30 T ntfs_rl_vcn_to_lcn +ffffffff8120acb0 t ntfs_mount +ffffffff8120acc0 t ntfs_put_super +ffffffff8120ae90 t ntfs_big_inode_init_once +ffffffff8120aea0 t ntfs_statfs +ffffffff8120b200 t simple_getbool +ffffffff8120b2a0 t parse_options +ffffffff8120bc90 t ntfs_remount +ffffffff8120bcc0 t is_boot_sector_ntfs +ffffffff8120be60 t ntfs_fill_super +ffffffff8120d2d0 T ntfs_collate_names +ffffffff8120d390 T ntfs_ucsncmp +ffffffff8120d3e0 T ntfs_ucsncasecmp +ffffffff8120d440 T ntfs_are_names_equal +ffffffff8120d4b0 T ntfs_upcase_name +ffffffff8120d4e0 T ntfs_file_upcase_value +ffffffff8120d510 T ntfs_file_compare_values +ffffffff8120d540 T ntfs_nlstoucs +ffffffff8120d6e0 T ntfs_ucstonls +ffffffff8120d8f0 T generate_default_upcase +ffffffff8120da20 t autofs_mount +ffffffff8120da30 t autofs4_show_options +ffffffff8120dbe0 t autofs4_evict_inode +ffffffff8120dc00 T autofs4_new_ino +ffffffff8120dc50 T autofs4_clean_ino +ffffffff8120dc70 T autofs4_free_ino +ffffffff8120dc80 T autofs4_kill_sb +ffffffff8120dcd0 T autofs4_get_inode +ffffffff8120dda0 T autofs4_fill_super +ffffffff8120e300 t autofs4_dir_open +ffffffff8120e3a0 t autofs4_dir_rmdir +ffffffff8120e570 t autofs4_dir_unlink +ffffffff8120e690 t do_expire_wait +ffffffff8120e880 t autofs4_mount_wait +ffffffff8120e8d0 t autofs4_d_manage +ffffffff8120ea30 t autofs4_dentry_release +ffffffff8120eae0 t autofs4_del_active.isra.1 +ffffffff8120eb40 t autofs4_dir_mkdir +ffffffff8120ec90 t autofs4_dir_symlink +ffffffff8120ede0 t autofs4_root_ioctl +ffffffff8120f010 t autofs4_lookup +ffffffff8120f2b0 t autofs4_d_automount +ffffffff8120f460 T is_autofs4_dentry +ffffffff8120f490 t autofs4_get_link +ffffffff8120f500 t autofs4_find_wait.isra.0 +ffffffff8120f550 T autofs4_catatonic_mode +ffffffff8120f600 T autofs4_wait_release +ffffffff8120f6c0 t autofs4_notify_daemon +ffffffff8120f920 T autofs4_wait +ffffffff81210070 t get_next_positive_dentry +ffffffff812101e0 t autofs4_mount_busy +ffffffff81210260 t should_expire +ffffffff81210440 t autofs4_direct_busy.isra.0 +ffffffff812104a0 T autofs4_expire_direct +ffffffff812105b0 T autofs4_expire_indirect +ffffffff81210830 T autofs4_expire_wait +ffffffff81210900 T autofs4_expire_run +ffffffff81210a00 T autofs4_do_expire_multi +ffffffff81210aa0 T autofs4_expire_multi +ffffffff81210ad0 t autofs_dev_ioctl_version +ffffffff81210ae0 t autofs_dev_ioctl_protover +ffffffff81210af0 t autofs_dev_ioctl_protosubver +ffffffff81210b00 t test_by_dev +ffffffff81210b20 t test_by_type +ffffffff81210b40 t autofs_dev_ioctl_timeout +ffffffff81210b80 t find_autofs_mount +ffffffff81210c30 t autofs_dev_ioctl_ismountpoint +ffffffff81210db0 t autofs_dev_ioctl_askumount +ffffffff81210de0 t autofs_dev_ioctl_expire +ffffffff81210e00 t autofs_dev_ioctl_requester +ffffffff81210ee0 t autofs_dev_ioctl_catatonic +ffffffff81210ef0 t autofs_dev_ioctl_setpipefd +ffffffff81211040 t autofs_dev_ioctl_fail +ffffffff81211060 t autofs_dev_ioctl_ready +ffffffff81211070 t autofs_dev_ioctl_closemount +ffffffff81211080 t autofs_dev_ioctl_openmount +ffffffff81211160 t autofs_dev_ioctl +ffffffff812114c0 T autofs_dev_ioctl_exit +ffffffff812114d0 t btrfs_test_super +ffffffff812114f0 t btrfs_cmp_device_free_bytes +ffffffff81211510 t btrfs_control_open +ffffffff81211520 t btrfs_unfreeze +ffffffff81211530 T btrfs_sync_fs +ffffffff812115e0 t btrfs_freeze +ffffffff81211620 t btrfs_kill_super +ffffffff812116b0 t btrfs_set_super +ffffffff812116d0 t btrfs_put_super +ffffffff812116e0 t btrfs_show_devname +ffffffff812117b0 t btrfs_show_options +ffffffff81211cd0 t btrfs_statfs +ffffffff812121d0 t btrfs_control_ioctl +ffffffff812122b0 T btrfs_decode_error +ffffffff812122d0 T btrfs_printk +ffffffff81212410 t btrfs_mount_root +ffffffff81212920 t btrfs_resize_thread_pool.part.5 +ffffffff812129f0 T btrfs_parse_options +ffffffff81213860 t btrfs_remount +ffffffff81213c80 t btrfs_mount +ffffffff8121458a T __btrfs_handle_fs_error +ffffffff81214662 T __btrfs_abort_transaction +ffffffff8121470c T __btrfs_panic +ffffffff812147c0 t add_root_to_dirty_list +ffffffff81214880 t unlock_up +ffffffff81214a20 t __tree_mod_log_search +ffffffff81214ac0 t alloc_tree_mod_elem +ffffffff81214b60 t __tree_mod_log_insert +ffffffff81214be0 t tree_mod_log_free_eb +ffffffff81214e60 t tree_mod_log_insert_key +ffffffff81214fa0 t tree_mod_log_set_node_key +ffffffff81214fd0 t tree_mod_log_insert_move +ffffffff812152e0 t tree_mod_log_eb_copy +ffffffff812155b0 t read_node_slot +ffffffff81215680 t fixup_low_keys +ffffffff81215750 t push_node_left +ffffffff81215a10 t balance_node_right +ffffffff81215bf0 t __tree_mod_log_rewind +ffffffff81215e00 t reada_for_balance +ffffffff81216050 t leaf_space_used +ffffffff81216120 t __tree_mod_log_oldest_root.isra.1 +ffffffff81216190 t tree_mod_log_insert_root.isra.2 +ffffffff812164c0 t tree_mod_log_set_root_pointer.isra.3 +ffffffff812164e0 t insert_new_root +ffffffff81216780 t tree_advance +ffffffff81216930 t insert_ptr.isra.5 +ffffffff81216ae0 t copy_for_split +ffffffff81216e10 t del_ptr.isra.6 +ffffffff81216fa0 T btrfs_alloc_path +ffffffff81216fc0 T btrfs_set_path_blocking +ffffffff81217010 T btrfs_clear_path_blocking +ffffffff812170c0 T btrfs_release_path +ffffffff81217140 t btrfs_free_path.part.9 +ffffffff81217160 T btrfs_free_path +ffffffff81217170 T btrfs_root_node +ffffffff812171d0 T btrfs_lock_root_node +ffffffff81217210 T btrfs_read_lock_root_node +ffffffff81217250 T btrfs_copy_root +ffffffff81217420 T btrfs_get_tree_mod_seq +ffffffff812174a0 T btrfs_put_tree_mod_seq +ffffffff812175b0 T btrfs_block_can_be_shared +ffffffff81217630 t update_ref_for_cow +ffffffff81217940 t __btrfs_cow_block +ffffffff81217d50 T btrfs_old_root_level +ffffffff81217dd0 T btrfs_cow_block +ffffffff81217ea0 t push_nodes_for_insert +ffffffff812182a0 t split_node +ffffffff81218640 t balance_level +ffffffff81218ea0 T btrfs_comp_cpu_keys +ffffffff81218ed0 t generic_bin_search.constprop.16 +ffffffff812190a0 T btrfs_realloc_node +ffffffff81219470 T btrfs_bin_search +ffffffff812194b0 T btrfs_unlock_up_safe +ffffffff81219530 t read_block_for_search.isra.14 +ffffffff81219810 t btrfs_del_leaf +ffffffff812198a0 T btrfs_set_item_key_safe +ffffffff81219a10 T btrfs_leaf_free_space +ffffffff81219aa0 t __push_leaf_right +ffffffff8121a0e0 t push_leaf_right +ffffffff8121a290 t __push_leaf_left +ffffffff8121a960 t push_leaf_left +ffffffff8121aac0 t push_for_double_split +ffffffff8121abf0 t split_leaf +ffffffff8121b2b0 T btrfs_search_slot +ffffffff8121bc80 T btrfs_search_old_slot +ffffffff8121c3a0 t setup_leaf_for_split +ffffffff8121c5b0 t split_item +ffffffff8121c860 T btrfs_split_item +ffffffff8121c8b0 T btrfs_truncate_item +ffffffff8121cb60 T btrfs_extend_item +ffffffff8121cd40 T setup_items_for_insert +ffffffff8121d100 T btrfs_duplicate_item +ffffffff8121d1f0 T btrfs_insert_empty_items +ffffffff8121d2a0 T btrfs_insert_item +ffffffff8121d360 T btrfs_del_items +ffffffff8121d790 T btrfs_prev_leaf +ffffffff8121d890 T btrfs_compare_trees +ffffffff8121de90 T btrfs_find_next_key +ffffffff8121e0d0 T btrfs_search_forward +ffffffff8121e410 T btrfs_next_old_leaf +ffffffff8121e820 T btrfs_next_leaf +ffffffff8121e830 T btrfs_find_item +ffffffff8121e910 T btrfs_search_slot_for_read +ffffffff8121ea10 T btrfs_previous_item +ffffffff8121eaf0 T btrfs_previous_extent_item +ffffffff8121ebd0 t block_group_cache_tree_search +ffffffff8121eca0 t get_caching_control +ffffffff8121ece0 t set_avail_alloc_bits +ffffffff8121ed70 t should_alloc_chunk +ffffffff8121ee20 t block_rsv_use_bytes +ffffffff8121ee70 t block_rsv_add_bytes +ffffffff8121eed0 t update_global_block_rsv +ffffffff8121eff0 t btrfs_free_reserved_bytes +ffffffff8121f060 t inc_block_group_ro +ffffffff8121f150 t put_caching_control +ffffffff8121f170 t __find_space_info +ffffffff8121f1e0 t unselect_delayed_ref_head +ffffffff8121f220 t __btrfs_mod_ref +ffffffff8121f440 t btrfs_issue_discard +ffffffff8121f5a0 t add_pinned_bytes +ffffffff8121f5e0 T btrfs_inc_extent_ref +ffffffff8121f6a0 t convert_extent_item_v0 +ffffffff8121f950 t find_next_key +ffffffff8121fa60 t free_excluded_extents +ffffffff8121fac0 t cache_block_group +ffffffff8121fe50 t add_excluded_extent +ffffffff8121feb0 t hash_extent_data_ref +ffffffff8121ff20 t check_delayed_ref +ffffffff812200b0 t create_space_info +ffffffff812202a0 t dump_space_info +ffffffff81220410 t btrfs_create_block_group_cache +ffffffff812205a0 t exclude_super_stripes +ffffffff812206d0 t btrfs_add_block_group_cache +ffffffff81220780 t block_group_cache_done.isra.0 +ffffffff812207a0 t wait_block_group_cache_progress +ffffffff81220840 t wait_block_group_cache_done +ffffffff81220900 t match_extent_data_ref +ffffffff81220970 t get_restripe_target.isra.3 +ffffffff812209d0 t get_alloc_profile +ffffffff81220b60 t pin_down_extent.isra.6 +ffffffff81220c10 t fetch_cluster_info +ffffffff81220c80 t update_block_group_flags +ffffffff81220cf0 t __run_delayed_extent_op +ffffffff81220d70 t setup_inline_extent_backref +ffffffff81220ff0 t insert_tree_block_ref.isra.10 +ffffffff81221050 t lookup_tree_block_ref.isra.11 +ffffffff81221110 t check_ref_cleanup.isra.12 +ffffffff81221260 t remove_extent_data_ref.isra.13 +ffffffff81221460 t write_one_cache_group.isra.15 +ffffffff812214f0 t insert_extent_data_ref.isra.16 +ffffffff81221780 t lookup_extent_data_ref.isra.17 +ffffffff812219c0 t space_info_add_new_bytes.isra.19 +ffffffff81221a70 t update_space_info +ffffffff81221b00 t btrfs_calculate_inode_block_rsv_size.isra.28 +ffffffff81221b70 t can_overcommit.part.29 +ffffffff81221c40 t block_rsv_release_bytes +ffffffff81221e90 T btrfs_get_block_group +ffffffff81221ea0 T btrfs_put_block_group +ffffffff81221ed0 t next_block_group +ffffffff81221f60 t update_block_group.isra.22 +ffffffff81222290 t alloc_reserved_file_extent +ffffffff81222500 t __exclude_logged_extent +ffffffff81222620 t unpin_extent_range +ffffffff812228b0 T add_new_free_space +ffffffff81222980 t caching_thread +ffffffff81222df0 T btrfs_lookup_block_group +ffffffff81222e00 T btrfs_clear_space_info_full +ffffffff81222e50 T btrfs_lookup_data_extent +ffffffff81222ec0 T btrfs_lookup_extent_info +ffffffff81223260 t reada_walk_down.isra.23 +ffffffff81223510 T btrfs_get_extent_inline_ref_type +ffffffff81223600 t lookup_inline_extent_backref +ffffffff81223bf0 t update_inline_extent_backref +ffffffff81223e50 t insert_inline_extent_backref +ffffffff81223f20 t __btrfs_inc_extent_ref.isra.24 +ffffffff81224100 t remove_extent_backref +ffffffff81224170 t extent_data_ref_count.isra.26 +ffffffff81224280 t __btrfs_free_extent.isra.27 +ffffffff81224d10 t check_committed_ref +ffffffff81224f00 T btrfs_discard_extent +ffffffff81225030 t __btrfs_free_reserved_extent +ffffffff812250f0 T btrfs_csum_bytes_to_leaves +ffffffff81225120 T btrfs_check_space_for_delayed_refs +ffffffff81225210 T btrfs_should_throttle_delayed_refs +ffffffff81225250 T btrfs_async_run_delayed_refs +ffffffff81225370 T btrfs_set_disk_extent_flags +ffffffff81225410 t walk_down_proc +ffffffff812256f0 T btrfs_cross_ref_exist +ffffffff81225790 T btrfs_inc_ref +ffffffff812257a0 T btrfs_dec_ref +ffffffff812257b0 T btrfs_extent_readonly +ffffffff812257e0 T btrfs_inc_nocow_writers +ffffffff81225840 T btrfs_dec_nocow_writers +ffffffff81225880 T btrfs_wait_nocow_writers +ffffffff812258b0 T btrfs_data_alloc_profile +ffffffff812258c0 T btrfs_metadata_alloc_profile +ffffffff812258d0 T btrfs_system_alloc_profile +ffffffff812258e0 T btrfs_free_reserved_data_space_noquota +ffffffff81225940 T btrfs_free_reserved_data_space +ffffffff812259a0 T btrfs_init_async_reclaim_work +ffffffff812259d0 T btrfs_cond_migrate_bytes +ffffffff81225aa0 T btrfs_block_rsv_migrate +ffffffff81225ae0 T btrfs_init_block_rsv +ffffffff81225b10 T btrfs_init_metadata_block_rsv +ffffffff81225b50 T btrfs_alloc_block_rsv +ffffffff81225b90 T btrfs_free_block_rsv +ffffffff81225be0 T __btrfs_free_block_rsv +ffffffff81225bf0 T btrfs_block_rsv_check +ffffffff81225c50 T btrfs_block_rsv_release +ffffffff81225c90 T btrfs_trans_release_metadata +ffffffff81225cf0 T btrfs_trans_release_chunk_metadata +ffffffff81225d20 T btrfs_orphan_reserve_metadata +ffffffff81225d80 T btrfs_orphan_release_metadata +ffffffff81225de0 T btrfs_subvolume_release_metadata +ffffffff81225e20 T btrfs_delalloc_release_metadata +ffffffff81225eb0 T btrfs_delalloc_release_extents +ffffffff81225f30 T btrfs_delalloc_release_space +ffffffff81225f70 T btrfs_pin_extent +ffffffff81225fd0 T btrfs_free_extent +ffffffff812260b0 t do_walk_down +ffffffff812265f0 t walk_down_tree +ffffffff812266c0 t __btrfs_run_delayed_refs +ffffffff812274b0 T btrfs_pin_extent_for_log_replay +ffffffff81227520 T btrfs_exclude_logged_extents +ffffffff81227670 T btrfs_dec_block_group_reservations +ffffffff812276b0 T btrfs_wait_block_group_reservations +ffffffff81227710 T btrfs_prepare_extent_commit +ffffffff81227800 T btrfs_finish_extent_commit +ffffffff81227a10 T btrfs_free_tree_block +ffffffff81227c10 t walk_up_proc +ffffffff812280b0 t walk_up_tree +ffffffff812282b0 T __get_raid_index +ffffffff81228300 t link_block_group +ffffffff81228440 T get_block_group_index +ffffffff81228450 T btrfs_free_reserved_extent +ffffffff81228460 T btrfs_free_and_pin_reserved_extent +ffffffff81228470 T btrfs_alloc_reserved_file_extent +ffffffff812284c0 T btrfs_alloc_logged_file_extent +ffffffff812285c0 T btrfs_drop_snapshot +ffffffff81228cf0 T btrfs_drop_subtree +ffffffff81228ed0 T btrfs_account_ro_block_groups_free_space +ffffffff81228f70 T btrfs_dec_block_group_ro +ffffffff81229000 T btrfs_can_relocate +ffffffff812292c0 T btrfs_put_block_group_cache +ffffffff81229370 T btrfs_free_block_groups +ffffffff81229630 T btrfs_read_block_groups +ffffffff81229c30 T btrfs_create_pending_block_groups +ffffffff81229dd0 T btrfs_run_delayed_refs +ffffffff81229f40 t delayed_ref_async_start +ffffffff81229fe0 t do_chunk_alloc +ffffffff8122a250 T btrfs_alloc_data_chunk_ondemand +ffffffff8122a480 T btrfs_check_data_free_space +ffffffff8122a520 t cache_save_setup +ffffffff8122a860 T btrfs_setup_space_cache +ffffffff8122a910 T btrfs_write_dirty_block_groups +ffffffff8122ac20 t flush_space +ffffffff8122b0a0 t btrfs_async_reclaim_metadata_space +ffffffff8122b520 t reserve_metadata_bytes +ffffffff8122bc10 T btrfs_block_rsv_add +ffffffff8122bc60 T check_system_chunk +ffffffff8122bd70 T btrfs_subvolume_reserve_metadata +ffffffff8122be70 T btrfs_block_rsv_refill +ffffffff8122bef0 T btrfs_delalloc_reserve_metadata +ffffffff8122c1a0 T btrfs_delalloc_reserve_space +ffffffff8122c210 t find_free_extent +ffffffff8122ce30 T btrfs_reserve_extent +ffffffff8122cfa0 T btrfs_alloc_tree_block +ffffffff8122d400 T btrfs_inc_block_group_ro +ffffffff8122d560 T btrfs_force_chunk_alloc +ffffffff8122d590 T btrfs_start_dirty_block_groups +ffffffff8122d990 T btrfs_make_block_group +ffffffff8122db60 T btrfs_remove_block_group +ffffffff8122e350 T btrfs_start_trans_remove_block_group +ffffffff8122e3c0 T btrfs_delete_unused_bgs +ffffffff8122e770 T btrfs_init_space_info +ffffffff8122e7f0 T btrfs_error_unpin_extent_range +ffffffff8122e800 T btrfs_trim_fs +ffffffff8122ebb0 T btrfs_end_write_no_snapshotting +ffffffff8122ec00 t btrfs_start_write_no_snapshotting.part.35 +ffffffff8122ec40 T btrfs_start_write_no_snapshotting +ffffffff8122ec50 T btrfs_wait_for_snapshot_creation +ffffffff8122eca0 t btrfs_print_leaf.part.0 +ffffffff8122f810 T btrfs_print_leaf +ffffffff8122f820 T btrfs_print_tree +ffffffff8122f9f9 t print_extent_data_ref +ffffffff8122fa70 T btrfs_find_root +ffffffff8122fc70 T btrfs_set_root_node +ffffffff8122fcd0 T btrfs_update_root +ffffffff8122ff50 T btrfs_insert_root +ffffffff8122ff70 T btrfs_find_orphan_roots +ffffffff812301f0 T btrfs_del_root +ffffffff81230270 T btrfs_del_root_ref +ffffffff812303e0 T btrfs_add_root_ref +ffffffff81230590 T btrfs_check_and_init_root_item +ffffffff812305c0 T btrfs_update_root_times +ffffffff81230620 T btrfs_match_dir_item_name +ffffffff81230710 t insert_with_overflow +ffffffff812307f0 T btrfs_insert_xattr_item +ffffffff81230980 T btrfs_insert_dir_item +ffffffff81230bd0 T btrfs_lookup_dir_item +ffffffff81230c80 T btrfs_check_dir_item_collision +ffffffff81230d70 T btrfs_lookup_dir_index_item +ffffffff81230df0 T btrfs_search_dir_index_item +ffffffff81230f20 T btrfs_lookup_xattr +ffffffff81230fd0 T btrfs_delete_one_dir_name +ffffffff812310d0 t btrfs_lookup_csum +ffffffff812311f0 t btrfs_io_bio_endio_readpage +ffffffff81231200 t __btrfs_lookup_bio_sums +ffffffff81231840 t truncate_one_csum +ffffffff81231920 T btrfs_insert_file_extent +ffffffff81231b00 T btrfs_lookup_file_extent +ffffffff81231b40 T btrfs_lookup_bio_sums +ffffffff81231b50 T btrfs_lookup_bio_sums_dio +ffffffff81231b60 T btrfs_lookup_csums_range +ffffffff81231f70 T btrfs_csum_one_bio +ffffffff81232410 T btrfs_del_csums +ffffffff81232760 T btrfs_csum_file_blocks +ffffffff81232cb0 T btrfs_extent_item_to_extent_map +ffffffff81232fe0 T btrfs_find_name_in_backref +ffffffff812330c0 T btrfs_find_name_in_ext_backref +ffffffff812331d0 T btrfs_lookup_inode_extref +ffffffff81233290 T btrfs_del_inode_ref +ffffffff812335e0 T btrfs_insert_inode_ref +ffffffff812339b0 T btrfs_insert_empty_inode +ffffffff812339f0 T btrfs_lookup_inode +ffffffff81233a80 t use_bitmap +ffffffff81233aa0 t pinned_recalc_thresholds +ffffffff81233ab0 t pinned_use_bitmap +ffffffff81233ac0 t recalculate_thresholds +ffffffff81233b30 T btrfs_unpin_free_ino +ffffffff81233c10 t caching_kthread +ffffffff81233f10 T btrfs_init_free_ino_ctl +ffffffff81233fa0 T btrfs_save_ino_cache +ffffffff81234320 T btrfs_find_highest_objectid +ffffffff812343e0 T btrfs_find_free_objectid +ffffffff81234460 t start_caching +ffffffff812345a0 T btrfs_return_ino +ffffffff81234670 T btrfs_find_free_ino +ffffffff81234760 t run_one_async_start +ffffffff81234790 t btree_fs_info +ffffffff812347a0 T btree_get_extent +ffffffff812348d0 t end_workqueue_bio +ffffffff812349b0 t end_workqueue_fn +ffffffff812349f0 t run_one_async_done +ffffffff81234a30 t run_one_async_free +ffffffff81234a40 t btrfs_alloc_root +ffffffff81234a70 t verify_parent_transid +ffffffff81234c20 t btree_read_extent_buffer_pages +ffffffff81234d10 t __setup_root +ffffffff81235110 t free_fs_root +ffffffff812351d0 t btrfs_destroy_pinned_extent +ffffffff81235270 t cleaner_kthread +ffffffff812353d0 t btrfs_congested_fn +ffffffff81235470 t btree_io_failed_hook +ffffffff812354a0 t csum_tree_block +ffffffff81235640 t __btree_submit_bio_done +ffffffff81235680 t btree_migratepage +ffffffff812356f0 t btree_set_page_dirty +ffffffff81235700 t btree_writepages +ffffffff81235760 t btree_readpage +ffffffff81235780 t btrfs_stop_all_workers +ffffffff81235860 t btrfs_end_empty_barrier +ffffffff81235870 t btrfs_end_buffer_write_sync +ffffffff812358f0 t btrfs_cleanup_bg_io +ffffffff81235940 t free_root_extent_buffers.part.1 +ffffffff81235970 t free_root_pointers +ffffffff812359f0 t btree_readpage_end_io_hook +ffffffff81235c00 t btree_releasepage +ffffffff81235c40 t btree_invalidatepage +ffffffff81235cd0 t __btrfs_btree_balance_dirty +ffffffff81235d20 t btree_csum_one_bio.isra.9 +ffffffff81235e00 t __btree_submit_bio_start +ffffffff81235e10 T btrfs_end_io_wq_exit +ffffffff81235e20 T btrfs_csum_data +ffffffff81235e30 T btrfs_csum_final +ffffffff81235e40 T btrfs_bio_wq_end_io +ffffffff81235ea0 T btrfs_async_submit_limit +ffffffff81235ec0 T btrfs_wq_submit_bio +ffffffff81235fa0 t btree_submit_bio_hook +ffffffff81236060 T readahead_tree_block +ffffffff812360a0 T reada_tree_block_flagged +ffffffff81236140 T btrfs_find_create_tree_block +ffffffff81236150 T btrfs_write_tree_block +ffffffff81236170 T btrfs_wait_tree_block_writeback +ffffffff81236190 T read_tree_block +ffffffff812361e0 T clean_tree_block +ffffffff81236260 T btrfs_init_fs_root +ffffffff812363b0 T btrfs_lookup_fs_root +ffffffff812363f0 T btrfs_insert_fs_root +ffffffff81236470 T btrfs_read_dev_one_super +ffffffff81236500 T btrfs_read_dev_super +ffffffff81236530 T btrfs_get_num_tolerated_disk_barrier_failures +ffffffff812365a0 T write_all_supers +ffffffff81237050 T btrfs_drop_and_free_fs_root +ffffffff81237130 T btrfs_free_fs_roots +ffffffff81237260 T btrfs_free_fs_root +ffffffff81237270 T btrfs_cleanup_fs_roots +ffffffff81237400 T btrfs_commit_super +ffffffff81237470 T btrfs_buffer_uptodate +ffffffff812374d0 t btrfs_read_tree_root +ffffffff812375d0 T btrfs_read_fs_root +ffffffff81237610 t btrfs_get_fs_root.part.13 +ffffffff81237750 T btrfs_get_fs_root +ffffffff812377e0 T btrfs_mark_buffer_dirty +ffffffff81237830 T btrfs_create_tree +ffffffff81237ac0 t alloc_log_tree +ffffffff81237c00 T btrfs_init_log_root_tree +ffffffff81237c20 T btrfs_add_log_tree +ffffffff81237cc0 T btrfs_btree_balance_dirty +ffffffff81237cd0 T btrfs_btree_balance_dirty_nodelay +ffffffff81237ce0 T btrfs_read_buffer +ffffffff81237d10 T btrfs_cleanup_dirty_bgs +ffffffff81237ed0 T btrfs_cleanup_one_transaction +ffffffff812382a0 t btrfs_cleanup_transaction +ffffffff81238770 t transaction_kthread +ffffffff81238910 T close_ctree +ffffffff81238bc0 T open_ctree +ffffffff8123af34 t next_root_backup +ffffffff8123b000 t record_root_in_trans +ffffffff8123b0c0 t join_transaction +ffffffff8123b460 t wait_for_commit +ffffffff8123b4c0 t should_end_transaction +ffffffff8123b500 t commit_fs_roots +ffffffff8123b670 t commit_cowonly_roots +ffffffff8123b920 t clear_btree_io_tree +ffffffff8123b990 t switch_commit_roots +ffffffff8123baf0 t __btrfs_wait_marked_extents.isra.3 +ffffffff8123bbb0 T btrfs_put_transaction +ffffffff8123bcc0 t wait_current_trans +ffffffff8123bd80 t cleanup_transaction.isra.5 +ffffffff8123bf40 T btrfs_add_dropped_root +ffffffff8123bfd0 T btrfs_record_root_in_trans +ffffffff8123c030 T btrfs_wait_for_commit +ffffffff8123c160 T btrfs_throttle +ffffffff8123c180 T btrfs_should_end_transaction +ffffffff8123c1e0 T btrfs_write_marked_extents +ffffffff8123c2f0 T btrfs_wait_extents +ffffffff8123c320 t btrfs_write_and_wait_marked_extents.constprop.7 +ffffffff8123c390 t create_pending_snapshot +ffffffff8123ce70 t create_pending_snapshots +ffffffff8123cf10 T btrfs_wait_tree_log_extents +ffffffff8123cf80 T btrfs_add_dead_root +ffffffff8123cff0 T btrfs_transaction_in_commit +ffffffff8123d030 T btrfs_transaction_blocked +ffffffff8123d080 T btrfs_clean_one_deleted_snapshot +ffffffff8123d150 T btrfs_apply_pending_changes +ffffffff8123d1a0 T btrfs_commit_transaction +ffffffff8123da00 t start_transaction +ffffffff8123dd40 T btrfs_start_transaction +ffffffff8123dd60 T btrfs_start_transaction_lflush +ffffffff8123dd80 T btrfs_join_transaction +ffffffff8123dda0 T btrfs_join_transaction_nolock +ffffffff8123ddc0 T btrfs_start_ioctl_transaction +ffffffff8123dde0 T btrfs_attach_transaction +ffffffff8123de00 T btrfs_attach_transaction_barrier +ffffffff8123de40 t __btrfs_end_transaction +ffffffff8123e0f0 T btrfs_end_transaction +ffffffff8123e100 T btrfs_start_transaction_fallback_global_rsv +ffffffff8123e1c0 T btrfs_defrag_root +ffffffff8123e270 T btrfs_commit_transaction_async +ffffffff8123e420 T btrfs_end_transaction_throttle +ffffffff8123e430 t do_async_commit +ffffffff8123e460 t btrfs_find_actor +ffffffff8123e490 t btrfs_dentry_delete +ffffffff8123e4f0 t btrfs_filldir +ffffffff8123e570 t btrfs_readpage_io_failed_hook +ffffffff8123e580 t iotree_fs_info +ffffffff8123e590 t btrfs_check_extent_io_range +ffffffff8123e5a0 t init_once +ffffffff8123e5b0 T btrfs_merge_bio_hook +ffffffff8123e630 t btrfs_orphan_del +ffffffff8123e6c0 t btrfs_dentry_release +ffffffff8123e6d0 t create_io_em +ffffffff8123e800 t btrfs_init_locked_inode +ffffffff8123e840 t btrfs_getattr +ffffffff8123e920 t btrfs_permission +ffffffff8123e970 t add_pending_csums +ffffffff8123e9e0 t add_async_extent +ffffffff8123ea60 t btrfs_opendir +ffffffff8123eac0 t btrfs_init_inode_security +ffffffff8123eb00 t btrfs_real_readdir +ffffffff8123ef50 t btrfs_fiemap +ffffffff8123efa0 t btrfs_clear_bit_hook +ffffffff8123f310 t btrfs_set_bit_hook +ffffffff8123f590 t btrfs_writepage_end_io_hook +ffffffff8123f660 t btrfs_writepage_start_hook +ffffffff8123f710 t btrfs_writepage_fixup_worker +ffffffff8123f9a0 t get_extent_allocation_hint +ffffffff8123fa30 t btrfs_set_page_dirty +ffffffff8123fa40 t __endio_write_update_ordered +ffffffff8123fb70 t btrfs_submit_bio_hook +ffffffff8123fce0 t __btrfs_submit_bio_done +ffffffff8123fd20 t btrfs_endio_direct_write +ffffffff8123fd70 t btrfs_end_dio_bio +ffffffff8123fe70 t btrfs_retry_endio_nocsum +ffffffff8123ff40 t btrfs_submit_direct +ffffffff81240550 t btrfs_create_dio_extent +ffffffff81240620 t btrfs_readpages +ffffffff81240630 t btrfs_writepages +ffffffff81240650 t acls_after_inode_item +ffffffff812407a0 t inode_tree_add +ffffffff812408c0 T btrfs_readpage +ffffffff812408e0 t btrfs_i_callback +ffffffff81240900 T btrfs_set_range_writeback +ffffffff81240980 t btrfs_split_extent_hook +ffffffff81240a00 t btrfs_merge_extent_hook +ffffffff81240aa0 t fill_inode_item.isra.3 +ffffffff81240ce0 t btrfs_update_inode_item +ffffffff81240de0 t free_async_extent_pages.isra.6.part.7 +ffffffff81240e50 t __btrfs_releasepage +ffffffff81240ec0 t btrfs_releasepage +ffffffff81240f00 t __readpage_endio_check.isra.11 +ffffffff812410e0 t btrfs_readpage_end_io_hook +ffffffff812411f0 t btrfs_retry_endio +ffffffff81241320 t __btrfs_submit_bio_start +ffffffff81241340 t __btrfs_submit_bio_start_direct_io +ffffffff81241360 t dio_read_error +ffffffff81241630 t btrfs_subio_endio_read +ffffffff81241bd0 t btrfs_endio_direct_read +ffffffff81241c80 t btrfs_direct_IO +ffffffff812420a0 T btrfs_get_extent +ffffffff81242920 t insert_reserved_file_extent.constprop.24 +ffffffff81242be0 T btrfs_set_extent_delalloc +ffffffff81242c00 T btrfs_add_delayed_iput +ffffffff81242ca0 t btrfs_writepage +ffffffff81242d30 t async_cow_free +ffffffff81242d50 t btrfs_run_delalloc_work +ffffffff81242db0 T btrfs_run_delayed_iputs +ffffffff81242e60 T btrfs_orphan_commit_root +ffffffff81242f50 T btrfs_orphan_add +ffffffff81243120 T btrfs_update_inode +ffffffff81243210 t __btrfs_unlink_inode +ffffffff81243600 t btrfs_dirty_inode +ffffffff812436c0 t btrfs_update_time +ffffffff812437e0 t __btrfs_prealloc_file_range +ffffffff81243bc0 t cow_file_range_inline.constprop.26 +ffffffff812441a0 t compress_file_range.constprop.25 +ffffffff81244860 t async_cow_start +ffffffff812448b0 t cow_file_range.isra.20 +ffffffff81244cd0 t run_delalloc_nocow +ffffffff812457a0 t run_delalloc_range +ffffffff81245ac0 t submit_compressed_extents +ffffffff81245f20 t async_cow_submit +ffffffff81245fa0 T btrfs_update_inode_fallback +ffffffff81245fd0 t btrfs_finish_ordered_io +ffffffff81246760 t btrfs_invalidatepage +ffffffff81246a30 t finish_ordered_fn +ffffffff81246a40 T btrfs_unlink_inode +ffffffff81246a80 t btrfs_unlink +ffffffff81246b50 T btrfs_unlink_subvol +ffffffff81246eb0 t btrfs_rmdir +ffffffff81247030 T btrfs_truncate_inode_items +ffffffff81247b50 T btrfs_truncate_block +ffffffff81247fd0 t btrfs_truncate +ffffffff81248350 T btrfs_cont_expand +ffffffff81248800 t btrfs_setattr +ffffffff81248bc0 T btrfs_evict_inode +ffffffff812490e0 T btrfs_invalidate_inodes +ffffffff81249250 T btrfs_iget +ffffffff81249920 T btrfs_orphan_cleanup +ffffffff81249cd0 T btrfs_lookup_dentry +ffffffff8124a1c0 t btrfs_lookup +ffffffff8124a1f0 T btrfs_write_inode +ffffffff8124a280 T btrfs_set_inode_index +ffffffff8124a3f0 t btrfs_new_inode +ffffffff8124a930 t btrfs_tmpfile +ffffffff8124aae0 T btrfs_add_link +ffffffff8124ae60 t btrfs_mknod +ffffffff8124b030 t btrfs_symlink +ffffffff8124b420 t btrfs_link +ffffffff8124b630 t btrfs_create +ffffffff8124b7f0 t btrfs_rename2 +ffffffff8124ccf0 t btrfs_mkdir +ffffffff8124cec0 T btrfs_get_extent_fiemap +ffffffff8124d0c0 T can_nocow_extent +ffffffff8124d4f0 T btrfs_page_exists_in_range +ffffffff8124d610 t btrfs_get_blocks_direct +ffffffff8124dc70 T btrfs_page_mkwrite +ffffffff8124e140 T btrfs_create_subvol_root +ffffffff8124e240 T btrfs_alloc_inode +ffffffff8124e470 T btrfs_destroy_inode +ffffffff8124e630 T btrfs_drop_inode +ffffffff8124e670 T btrfs_destroy_cachep +ffffffff8124e6b0 T btrfs_alloc_delalloc_work +ffffffff8124e730 t __start_delalloc_inodes +ffffffff8124e9a0 T btrfs_wait_and_free_delalloc_work +ffffffff8124e9c0 T btrfs_start_delalloc_inodes +ffffffff8124e9f0 T btrfs_start_delalloc_roots +ffffffff8124eca0 T btrfs_prealloc_file_range +ffffffff8124ecb0 T btrfs_prealloc_file_range_trans +ffffffff8124ecd6 t csum_exist_in_range.isra.10 +ffffffff8124ed57 t uncompress_inline.isra.18 +ffffffff8124ee80 t __btrfs_add_inode_defrag +ffffffff8124ef20 t btrfs_requeue_inode_defrag +ffffffff8124ef90 t find_first_non_hole +ffffffff8124f040 t btrfs_zero_range_check_range_boundary +ffffffff8124f0a0 T btrfs_release_file +ffffffff8124f110 t btrfs_fallocate_update_isize +ffffffff8124f1b0 t btrfs_punch_hole_lock_range +ffffffff8124f2d0 t btrfs_file_open +ffffffff8124f2e0 t btrfs_file_mmap +ffffffff8124f330 t check_can_nocow +ffffffff8124f4a0 t btrfs_drop_pages +ffffffff8124f500 t lock_and_cleanup_extent_if_need +ffffffff8124f710 t btrfs_copy_from_user +ffffffff8124f820 t btrfs_file_llseek +ffffffff8124fab0 t extent_mergeable +ffffffff8124fc50 t hole_mergeable +ffffffff8124fd70 t prepare_uptodate_page +ffffffff8124fe10 t prepare_pages +ffffffff81250010 T btrfs_add_inode_defrag +ffffffff81250130 T btrfs_cleanup_defrag_inodes +ffffffff812501a0 T btrfs_run_defrag_inodes +ffffffff81250490 T btrfs_dirty_pages +ffffffff812506f0 t __btrfs_buffered_write.isra.4 +ffffffff81250da0 T btrfs_drop_extent_cache +ffffffff81251160 t fill_holes +ffffffff81251470 T __btrfs_drop_extents +ffffffff81252160 t btrfs_fallocate +ffffffff812535c0 T btrfs_drop_extents +ffffffff81253640 T btrfs_mark_extent_written +ffffffff81254030 T btrfs_auto_defrag_exit +ffffffff81254040 T btrfs_fdatawrite_range +ffffffff81254080 t start_ordered_ops +ffffffff812540f0 T btrfs_sync_file +ffffffff81254490 t btrfs_file_write_iter +ffffffff81254a60 T btrfs_defrag_leaves +ffffffff81254da0 t __lookup_extent_mapping +ffffffff81254ec0 t mergable_maps +ffffffff81254fc0 T extent_map_exit +ffffffff81254fd0 T extent_map_tree_init +ffffffff81254ff0 T alloc_extent_map +ffffffff81255040 T free_extent_map +ffffffff812550b0 t try_merge_map +ffffffff812551d0 T unpin_extent_cache +ffffffff81255280 T clear_em_logging +ffffffff812552a0 T add_extent_mapping +ffffffff81255480 t merge_extent_mapping +ffffffff812555b0 T lookup_extent_mapping +ffffffff812555c0 T search_extent_mapping +ffffffff812555d0 T remove_extent_mapping +ffffffff81255620 T replace_extent_mapping +ffffffff812556f0 T btrfs_add_extent_mapping +ffffffff812557c0 t btrfs_release_fsid_kobj +ffffffff81255820 t btrfs_feature_attr_store +ffffffff81255a10 t btrfs_show_u64 +ffffffff81255a60 t global_rsv_size_show +ffffffff81255a90 t global_rsv_reserved_show +ffffffff81255ac0 t btrfs_space_info_show_disk_total +ffffffff81255ad0 t btrfs_space_info_show_disk_used +ffffffff81255ae0 t btrfs_space_info_show_bytes_readonly +ffffffff81255af0 t btrfs_space_info_show_bytes_may_use +ffffffff81255b00 t btrfs_space_info_show_bytes_reserved +ffffffff81255b10 t btrfs_space_info_show_bytes_pinned +ffffffff81255b20 t btrfs_space_info_show_bytes_used +ffffffff81255b30 t btrfs_space_info_show_total_bytes +ffffffff81255b40 t btrfs_space_info_show_flags +ffffffff81255b50 t quota_override_show +ffffffff81255b90 t btrfs_sectorsize_show +ffffffff81255bd0 t btrfs_clone_alignment_show +ffffffff81255be0 t btrfs_nodesize_show +ffffffff81255c20 t btrfs_label_show +ffffffff81255ca0 t raid_bytes_show +ffffffff81255d50 t release_raid_kobj +ffffffff81255d60 t btrfs_space_info_show_total_bytes_pinned +ffffffff81255d90 t space_info_release +ffffffff81255db0 t quota_override_store +ffffffff81255e50 t btrfs_label_store +ffffffff81255f60 t addrm_unknown_feature_attrs +ffffffff81256070 t can_modify_feature.isra.2 +ffffffff812560b0 t btrfs_feature_attr_show +ffffffff81256130 t btrfs_feature_visible +ffffffff812561c0 t __btrfs_sysfs_remove_fsid +ffffffff81256220 t btrfs_sysfs_rm_device_link.part.5 +ffffffff81256270 T btrfs_sysfs_remove_fsid +ffffffff812562c0 T btrfs_sysfs_remove_mounted +ffffffff81256350 T btrfs_printable_features +ffffffff812563f0 T btrfs_sysfs_rm_device_link +ffffffff81256430 T btrfs_sysfs_add_device +ffffffff81256470 T btrfs_sysfs_add_device_link +ffffffff812564e0 T btrfs_sysfs_add_fsid +ffffffff81256540 T btrfs_sysfs_add_mounted +ffffffff81256620 T btrfs_sysfs_feature_update +ffffffff81256660 T btrfs_exit_sysfs +ffffffff81256690 T btrfs_get_token_8 +ffffffff812567b0 T btrfs_set_token_8 +ffffffff812568d0 T btrfs_get_token_16 +ffffffff812569f0 T btrfs_set_token_16 +ffffffff81256b10 T btrfs_get_token_32 +ffffffff81256c20 T btrfs_set_token_32 +ffffffff81256d40 T btrfs_get_token_64 +ffffffff81256e50 T btrfs_set_token_64 +ffffffff81256f70 T btrfs_node_key +ffffffff81256f90 t do_setxattr +ffffffff812573f0 t btrfs_xattr_handler_set_prop +ffffffff81257430 T __btrfs_getxattr +ffffffff81257560 t btrfs_xattr_handler_get +ffffffff81257590 T __btrfs_setxattr +ffffffff812576b0 t btrfs_xattr_handler_set +ffffffff812576f0 T btrfs_listxattr +ffffffff81257950 T btrfs_xattr_security_init +ffffffff81257960 t __tree_search +ffffffff81257a90 t __btrfs_add_ordered_extent +ffffffff81257d90 T btrfs_add_ordered_extent +ffffffff81257da0 T btrfs_add_ordered_extent_dio +ffffffff81257db0 T btrfs_add_ordered_extent_compress +ffffffff81257dc0 T btrfs_add_ordered_sum +ffffffff81257e10 T btrfs_dec_test_first_ordered_pending +ffffffff81258020 T btrfs_dec_test_ordered_pending +ffffffff812581f0 T btrfs_get_logged_extents +ffffffff812582c0 T btrfs_submit_logged_extents +ffffffff81258340 T btrfs_put_ordered_extent +ffffffff812583d0 T btrfs_put_logged_extents +ffffffff81258410 T btrfs_wait_logged_extents +ffffffff81258580 T btrfs_free_logged_extents +ffffffff81258610 T btrfs_remove_ordered_extent +ffffffff81258800 T btrfs_wait_ordered_extents +ffffffff81258b00 T btrfs_wait_ordered_roots +ffffffff81258d40 T btrfs_start_ordered_extent +ffffffff81258dd0 t btrfs_run_ordered_extent_work +ffffffff81258e00 T btrfs_lookup_ordered_extent +ffffffff81258ec0 T btrfs_lookup_ordered_range +ffffffff81259000 T btrfs_have_ordered_extents_in_range +ffffffff81259030 T btrfs_lookup_first_ordered_extent +ffffffff812590d0 T btrfs_wait_ordered_range +ffffffff812591d0 T btrfs_ordered_update_i_size +ffffffff81259420 T btrfs_find_ordered_sum +ffffffff81259570 T ordered_data_exit +ffffffff81259580 t btrfs_release_extent_buffer_rcu +ffffffff81259590 t set_btree_ioerr +ffffffff812595e0 t alloc_extent_state +ffffffff81259640 t __process_pages_contig +ffffffff812598f0 t submit_one_bio +ffffffff81259960 t end_extent_buffer_writeback +ffffffff81259980 t end_bio_extent_buffer_writepage +ffffffff81259a30 t get_extent_skip_holes +ffffffff81259ad0 t copy_pages +ffffffff81259bb0 t cache_state_if_flags.part.4 +ffffffff81259bc0 t cache_state.part.5 +ffffffff81259bd0 t check_buffer_tree_ref.part.9 +ffffffff81259c00 t mark_extent_buffer_accessed +ffffffff81259c70 t attach_extent_buffer_page.part.10 +ffffffff81259c90 t alloc_extent_state_atomic.part.11 +ffffffff81259ca0 t extent_io_tree_panic.isra.12 +ffffffff81259ce0 t __unlock_for_delalloc.isra.14 +ffffffff81259d10 t lock_delalloc_pages +ffffffff81259d90 t flush_write_bio.isra.15 +ffffffff81259dc0 t __alloc_extent_buffer +ffffffff81259e90 t set_page_extent_mapped.part.24 +ffffffff81259ec0 t extent_buffer_under_io.part.25 +ffffffff81259ed0 t btrfs_release_extent_buffer_page +ffffffff8125a020 t release_extent_buffer +ffffffff8125a0b0 t __etree_search.constprop.32 +ffffffff8125a130 t find_delalloc_range.constprop.30 +ffffffff8125a270 t get_state_failrec +ffffffff8125a2f0 t set_state_failrec +ffffffff8125a360 t find_first_extent_bit_state +ffffffff8125a3c0 t set_state_bits +ffffffff8125a470 T extent_io_exit +ffffffff8125a4a0 T extent_io_tree_init +ffffffff8125a4d0 T free_extent_state +ffffffff8125a500 t split_state +ffffffff8125a5e0 t merge_state.part.20 +ffffffff8125a710 t insert_state +ffffffff8125a810 t clear_state_bit +ffffffff8125a980 t __set_extent_bit +ffffffff8125aec0 T __clear_extent_bit +ffffffff8125b200 T set_extent_bit +ffffffff8125b220 t endio_readpage_release_extent +ffffffff8125b2a0 T convert_extent_bit +ffffffff8125b740 T set_record_extent_bits +ffffffff8125b760 T clear_extent_bit +ffffffff8125b780 T clear_record_extent_bits +ffffffff8125b7a0 T lock_extent_bits +ffffffff8125b920 T try_lock_extent +ffffffff8125b9b0 T extent_range_clear_dirty_for_io +ffffffff8125ba30 T extent_range_redirty_for_io +ffffffff8125bab0 T find_first_extent_bit +ffffffff8125bbb0 T extent_clear_unlock_delalloc +ffffffff8125bc20 T count_range_bits +ffffffff8125bd90 T test_range_bit +ffffffff8125be90 t find_lock_delalloc_range.constprop.29 +ffffffff8125c080 t writepage_delalloc +ffffffff8125c1e0 T free_io_failure +ffffffff8125c2b0 T btrfs_free_io_failure_record +ffffffff8125c360 T btrfs_get_io_failure_record +ffffffff8125c550 T btrfs_check_repairable +ffffffff8125c5e0 T end_extent_writepage +ffffffff8125c670 t end_bio_extent_writepage +ffffffff8125c740 T btrfs_bio_alloc +ffffffff8125c7c0 t submit_extent_page.constprop.28 +ffffffff8125ca10 t __do_readpage +ffffffff8125d270 t __extent_readpages +ffffffff8125d5b0 t __extent_read_full_page +ffffffff8125d6b0 t __extent_writepage_io +ffffffff8125dab0 t __extent_writepage +ffffffff8125dd50 t extent_write_cache_pages +ffffffff8125e0c0 T btrfs_bio_clone +ffffffff8125e120 T btrfs_io_bio_alloc +ffffffff8125e170 T repair_io_failure +ffffffff8125e3b0 T repair_eb_io_failure +ffffffff8125e460 T clean_io_failure +ffffffff8125e5c0 T btrfs_create_repair_bio +ffffffff8125e6b0 t end_bio_extent_readpage +ffffffff8125ec10 T btrfs_bio_clone_partial +ffffffff8125ec90 T set_page_extent_mapped +ffffffff8125eca0 T extent_read_full_page +ffffffff8125ecf0 T wait_on_extent_buffer_writeback +ffffffff8125ed20 t lock_extent_buffer_for_io +ffffffff8125eed0 T extent_write_full_page +ffffffff8125ef30 T extent_write_locked_range +ffffffff8125f0a0 T extent_writepages +ffffffff8125f0f0 T extent_readpages +ffffffff8125f280 T extent_invalidatepage +ffffffff8125f350 T try_release_extent_mapping +ffffffff8125f560 T extent_buffer_under_io +ffffffff8125f580 T btrfs_clone_extent_buffer +ffffffff8125f6b0 T find_extent_buffer +ffffffff8125f740 T alloc_extent_buffer +ffffffff8125fb00 T free_extent_buffer +ffffffff8125fb90 T free_extent_buffer_stale +ffffffff8125fbf0 T clear_extent_buffer_dirty +ffffffff8125fce0 T set_extent_buffer_dirty +ffffffff8125fd60 T clear_extent_buffer_uptodate +ffffffff8125fdb0 T set_extent_buffer_uptodate +ffffffff8125fdf0 T __alloc_dummy_extent_buffer +ffffffff8125fec0 T alloc_dummy_extent_buffer +ffffffff8125fed0 T extent_buffer_uptodate +ffffffff8125fee0 T read_extent_buffer_pages +ffffffff812601a0 T read_extent_buffer +ffffffff812602b0 T extent_fiemap +ffffffff812608d0 T read_extent_buffer_to_user +ffffffff81260970 T map_private_extent_buffer +ffffffff81260a10 T memcmp_extent_buffer +ffffffff81260ab0 T write_extent_buffer_chunk_tree_uuid +ffffffff81260b10 T write_extent_buffer_fsid +ffffffff81260b70 T write_extent_buffer +ffffffff81260ca0 T memzero_extent_buffer +ffffffff81260da0 t write_one_eb +ffffffff81260ff0 T btree_write_cache_pages +ffffffff81261310 T copy_extent_buffer_full +ffffffff81261390 T copy_extent_buffer +ffffffff81261440 T le_bitmap_set +ffffffff812614b0 T le_bitmap_clear +ffffffff81261520 T extent_buffer_test_bit +ffffffff81261590 T extent_buffer_bitmap_set +ffffffff81261690 T extent_buffer_bitmap_clear +ffffffff812617a0 T memcpy_extent_buffer +ffffffff81261880 T memmove_extent_buffer +ffffffff81261980 T try_release_extent_buffer +ffffffff81261a54 t add_extent_changeset.part.13 +ffffffff81261a60 t contains_pending_extent +ffffffff81261b00 t free_device +ffffffff81261b30 t free_fs_devices +ffffffff81261b90 t free_device_rcu +ffffffff81261ba0 t alloc_btrfs_bio +ffffffff81261bd0 t btrfs_close_bdev +ffffffff81261c10 t find_fsid +ffffffff81261c60 t find_device +ffffffff81261cb0 t btrfs_get_bdev_and_sb +ffffffff81261d50 t __btrfs_open_devices +ffffffff81261f70 t alloc_fs_devices +ffffffff81262030 t btrfs_release_disk_super +ffffffff81262050 t find_next_chunk +ffffffff81262090 t btrfs_update_device +ffffffff81262210 t update_dev_time +ffffffff81262240 t get_chunk_map +ffffffff81262300 t btrfs_uuid_scan_kthread +ffffffff81262620 t btrfs_uuid_rescan_kthread +ffffffff81262670 t btrfs_schedule_bio +ffffffff81262730 t run_scheduled_bios +ffffffff81262b30 t pending_bios_fn +ffffffff81262b40 t btrfs_cmp_device_info +ffffffff81262b70 t find_live_mirror.isra.1 +ffffffff81262c30 t set_balance_control +ffffffff81262c70 t btrfs_check_uuid_tree_entry +ffffffff81262d10 t find_next_devid.isra.6 +ffffffff81262de0 t __cancel_balance +ffffffff81262f50 t insert_balance_item.isra.10 +ffffffff81263290 t btrfs_may_alloc_data_chunk +ffffffff81263320 t btrfs_report_missing_device +ffffffff81263390 t btrfs_scratch_superblocks.part.16 +ffffffff81263440 T btrfs_get_fs_uuids +ffffffff81263450 T btrfs_cleanup_fs_uuids +ffffffff812634c0 T btrfs_close_extra_devices +ffffffff81263620 T btrfs_open_devices +ffffffff81263680 T btrfs_account_dev_extents_size +ffffffff812638e0 T find_free_dev_extent_start +ffffffff81263c20 t __btrfs_alloc_chunk +ffffffff81264300 t init_first_rw_device +ffffffff81264360 T find_free_dev_extent +ffffffff81264380 T btrfs_assign_next_active_device +ffffffff81264420 T btrfs_rm_dev_replace_remove_srcdev +ffffffff812644a0 T btrfs_destroy_dev_replace_tgtdev +ffffffff81264570 T btrfs_init_dev_replace_tgtdev_for_resume +ffffffff812645a0 T btrfs_grow_device +ffffffff812646d0 T btrfs_remove_chunk +ffffffff81264d90 t btrfs_relocate_chunk +ffffffff81264e50 T btrfs_resume_balance_async +ffffffff81264ed0 T btrfs_recover_balance +ffffffff81265230 T btrfs_pause_balance +ffffffff81265300 T btrfs_cancel_balance +ffffffff81265430 T btrfs_create_uuid_tree +ffffffff81265530 T btrfs_check_uuid_tree +ffffffff812655b0 T btrfs_shrink_device +ffffffff81265a20 T btrfs_balance +ffffffff81266b70 t balance_kthread +ffffffff81266be0 T btrfs_finish_chunk_alloc +ffffffff81267010 T btrfs_alloc_chunk +ffffffff81267030 T btrfs_chunk_readonly +ffffffff812670e0 T btrfs_mapping_init +ffffffff812670f0 T btrfs_mapping_tree_free +ffffffff81267160 T btrfs_num_copies +ffffffff81267200 T btrfs_full_stripe_len +ffffffff81267260 T btrfs_is_parity_mirror +ffffffff81267290 T btrfs_get_bbio +ffffffff812672a0 T btrfs_put_bbio +ffffffff812672c0 t __btrfs_map_block +ffffffff81268370 T btrfs_map_block +ffffffff81268380 T btrfs_map_sblock +ffffffff81268390 T btrfs_rmap_block +ffffffff812685c0 T btrfs_map_bio +ffffffff812688e0 T btrfs_find_device +ffffffff81268940 T btrfs_find_device_missing_or_by_path +ffffffff81268a60 T btrfs_find_device_by_devspec +ffffffff81268aa0 t btrfs_finish_sprout +ffffffff81268ce0 T btrfs_alloc_device +ffffffff81268e80 t __btrfs_close_devices +ffffffff812690a0 T btrfs_close_devices +ffffffff81269120 T btrfs_rm_device +ffffffff81269610 T btrfs_rm_dev_replace_free_srcdev +ffffffff812696d0 t device_list_add +ffffffff81269ae0 T btrfs_scan_one_device +ffffffff81269c00 t clone_fs_devices +ffffffff81269d40 T btrfs_init_new_device +ffffffff8126ab90 T btrfs_init_dev_replace_tgtdev +ffffffff8126ae60 t add_missing_dev +ffffffff8126aeb0 t read_one_chunk +ffffffff8126b440 T btrfs_read_sys_array +ffffffff8126b6d0 T btrfs_check_rw_degradable +ffffffff8126b860 T btrfs_read_chunk_tree +ffffffff8126bf50 T btrfs_init_devices_late +ffffffff8126bfb0 T btrfs_init_dev_stats +ffffffff8126c230 T btrfs_run_dev_stats +ffffffff8126c4f0 T btrfs_dev_stat_inc_and_print +ffffffff8126c580 t btrfs_end_bio +ffffffff8126c680 T btrfs_get_dev_stats +ffffffff8126c790 T btrfs_scratch_superblocks +ffffffff8126c7a0 T btrfs_update_commit_device_size +ffffffff8126c860 T btrfs_update_commit_device_bytes_used +ffffffff8126c8f0 T btrfs_set_fs_info_ptr +ffffffff8126c920 T btrfs_reset_fs_info_ptr +ffffffff8126c950 t normal_work_helper +ffffffff8126cb20 t __btrfs_alloc_workqueue +ffffffff8126cc20 T btrfs_workqueue_owner +ffffffff8126cc30 T btrfs_work_owner +ffffffff8126cc40 T btrfs_workqueue_normal_congested +ffffffff8126cc60 T btrfs_worker_helper +ffffffff8126cc70 T btrfs_delalloc_helper +ffffffff8126cc80 T btrfs_flush_delalloc_helper +ffffffff8126cc90 T btrfs_cache_helper +ffffffff8126cca0 T btrfs_submit_helper +ffffffff8126ccb0 T btrfs_fixup_helper +ffffffff8126ccc0 T btrfs_endio_helper +ffffffff8126ccd0 T btrfs_endio_meta_helper +ffffffff8126cce0 T btrfs_endio_meta_write_helper +ffffffff8126ccf0 T btrfs_endio_raid56_helper +ffffffff8126cd00 T btrfs_endio_repair_helper +ffffffff8126cd10 T btrfs_rmw_helper +ffffffff8126cd20 T btrfs_endio_write_helper +ffffffff8126cd30 T btrfs_freespace_write_helper +ffffffff8126cd40 T btrfs_delayed_meta_helper +ffffffff8126cd50 T btrfs_readahead_helper +ffffffff8126cd60 T btrfs_qgroup_rescan_helper +ffffffff8126cd70 T btrfs_extent_refs_helper +ffffffff8126cd80 T btrfs_scrub_helper +ffffffff8126cd90 T btrfs_scrubwrc_helper +ffffffff8126cda0 T btrfs_scrubnc_helper +ffffffff8126cdb0 T btrfs_scrubparity_helper +ffffffff8126cdc0 T btrfs_alloc_workqueue +ffffffff8126ce60 T btrfs_init_work +ffffffff8126cea0 T btrfs_queue_work +ffffffff8126cf20 T btrfs_destroy_workqueue +ffffffff8126cf70 T btrfs_workqueue_set_max +ffffffff8126cf90 T btrfs_set_work_high_priority +ffffffff8126cfa0 t btrfs_flags_to_ioctl +ffffffff8126d020 t extent_same_check_offsets +ffffffff8126d090 t build_ino_list +ffffffff8126d0e0 t defrag_lookup_extent +ffffffff8126d1d0 t btrfs_double_extent_unlock +ffffffff8126d230 t btrfs_cmp_data_free +ffffffff8126d2e0 t lock_extent_range +ffffffff8126d420 t btrfs_double_extent_lock +ffffffff8126d4d0 t clone_copy_inline_extent +ffffffff8126d810 t clone_finish_inode_update +ffffffff8126d920 t btrfs_mksubvol +ffffffff8126de30 t btrfs_ioctl_snap_create_transid +ffffffff8126dfc0 t btrfs_ioctl_snap_create +ffffffff8126e040 t btrfs_ioctl_snap_create_v2 +ffffffff8126e190 t btrfs_ioctl_subvol_setflags +ffffffff8126e370 t _btrfs_ioctl_set_received_subvol +ffffffff8126e610 t btrfs_ioctl_resize +ffffffff8126e9b0 t key_in_sk +ffffffff8126ea20 t btrfs_search_path_in_tree +ffffffff8126ec60 t btrfs_ioctl_logical_to_ino +ffffffff8126ede0 t btrfs_ioctl_start_sync +ffffffff8126ee80 t btrfs_ioctl_wait_sync +ffffffff8126eed0 t btrfs_ioctl_balance +ffffffff8126f240 t btrfs_ioctl_set_fslabel +ffffffff8126f370 t gather_extent_pages +ffffffff8126f520 t clone_update_extent_map.isra.4 +ffffffff8126f660 t btrfs_clone +ffffffff812701d0 t btrfs_clone_files.isra.5 +ffffffff812705c0 t btrfs_ioctl_fitrim.isra.7 +ffffffff81270730 t btrfs_ioctl_subvol_getflags.isra.8 +ffffffff812707d0 t copy_to_sk.isra.9 +ffffffff81270ae0 t search_ioctl +ffffffff81270c60 t btrfs_ioctl_tree_search.isra.10 +ffffffff81270cf0 t btrfs_ioctl_tree_search_v2.isra.11 +ffffffff81270dc0 t btrfs_ioctl_ino_lookup.isra.12 +ffffffff81270e90 t btrfs_ioctl_get_fslabel.isra.14 +ffffffff81270f30 t check_feature_bits.constprop.16 +ffffffff812710f0 t find_new_extents.constprop.17 +ffffffff812713c0 t btrfs_ioctl_snap_destroy +ffffffff812719e0 T btrfs_update_iflags +ffffffff81271a50 T btrfs_is_empty_uuid +ffffffff81271a70 T btrfs_defrag_file +ffffffff81272960 t btrfs_ioctl_defrag +ffffffff81272ab0 T btrfs_dedupe_file_range +ffffffff81273070 T btrfs_clone_file_range +ffffffff812730a0 T btrfs_get_block_group_info +ffffffff81273100 T btrfs_ioctl_trans_end +ffffffff81273160 T update_ioctl_balance_args +ffffffff81273310 T btrfs_ioctl_get_supported_features +ffffffff81273330 T btrfs_ioctl +ffffffff81275613 t create_subvol +ffffffff81275cdf t may_destroy_subvol +ffffffff81275e50 T btrfs_set_lock_blocking_rw +ffffffff81275ec0 T btrfs_clear_lock_blocking_rw +ffffffff81275f70 T btrfs_tree_read_lock +ffffffff81276050 T btrfs_tree_read_lock_atomic +ffffffff812760a0 T btrfs_try_tree_read_lock +ffffffff812760f0 T btrfs_try_tree_write_lock +ffffffff81276150 T btrfs_tree_read_unlock +ffffffff812761a0 T btrfs_tree_read_unlock_blocking +ffffffff81276210 T btrfs_tree_lock +ffffffff812763b0 T btrfs_tree_unlock +ffffffff81276420 T btrfs_assert_tree_locked +ffffffff8127642e t btrfs_assert_tree_read_locked.part.0 +ffffffff81276430 t btrfs_assert_tree_locked.part.1 +ffffffff81276440 T btrfs_insert_orphan_item +ffffffff812764b0 T btrfs_del_orphan_item +ffffffff81276550 t btrfs_get_dentry +ffffffff81276650 t btrfs_get_parent +ffffffff81276840 t btrfs_fh_to_parent +ffffffff81276880 t btrfs_fh_to_dentry +ffffffff812768c0 t btrfs_get_name +ffffffff81276af0 t btrfs_encode_fh +ffffffff81276bb0 t extent_cmp +ffffffff81276bd0 t join_running_log_trans +ffffffff81276c30 t wait_log_commit +ffffffff81276cf0 t wait_for_writer +ffffffff81276d80 t process_one_buffer +ffffffff81276e80 t walk_up_log_tree +ffffffff81277070 t walk_down_log_tree +ffffffff812772a0 t walk_log_tree +ffffffff81277430 t free_log_tree +ffffffff81277530 t inode_in_dir +ffffffff81277600 t find_dir_range +ffffffff81277820 t drop_objectid_items +ffffffff81277980 t insert_dir_log_key +ffffffff81277a20 t extref_get_fields +ffffffff81277ac0 t ref_get_fields +ffffffff81277b50 t btrfs_log_trailing_hole +ffffffff81277db0 t overwrite_item +ffffffff81278360 t log_dir_items +ffffffff81278890 t log_directory_changes +ffffffff81278930 t read_one_inode +ffffffff812789a0 t link_to_fixup_dir +ffffffff81278a70 t check_item_in_log +ffffffff81278d70 t replay_dir_deletes +ffffffff81278fd0 t drop_one_dir_item +ffffffff81279100 t insert_one_name +ffffffff812791c0 t backref_in_log +ffffffff812792f0 t add_inode_ref +ffffffff81279f50 t replay_one_extent +ffffffff8127a660 t replay_one_name +ffffffff8127aa10 t replay_one_dir_item +ffffffff8127ab60 t replay_one_buffer +ffffffff8127b2e0 t fixup_inode_link_count +ffffffff8127b6c0 t fixup_inode_link_counts +ffffffff8127b800 t btrfs_must_commit_transaction.isra.0 +ffffffff8127b860 t check_parent_dirs_for_sync +ffffffff8127b980 t fill_inode_item.isra.2 +ffffffff8127bbe0 t copy_items +ffffffff8127c6d0 t btrfs_log_all_xattrs +ffffffff8127c8a0 t wait_ordered_extents.isra.3.constprop.7 +ffffffff8127cc30 t btrfs_log_changed_extents +ffffffff8127d200 t btrfs_log_inode +ffffffff8127e0d0 T btrfs_pin_log_trans +ffffffff8127e100 T btrfs_end_log_trans +ffffffff8127e140 t btrfs_log_inode_parent +ffffffff8127ec10 T btrfs_sync_log +ffffffff8127f590 T btrfs_free_log +ffffffff8127f5c0 T btrfs_free_log_root_tree +ffffffff8127f5f0 T btrfs_del_dir_entries_in_log +ffffffff8127f900 T btrfs_del_inode_ref_in_log +ffffffff8127fa30 T btrfs_log_dentry_safe +ffffffff8127faa0 T btrfs_recover_log_trees +ffffffff8127fee0 T btrfs_record_unlink_dir +ffffffff8127ff70 T btrfs_record_snapshot_destroy +ffffffff8127ffa0 T btrfs_log_new_name +ffffffff8128000c t log_new_dir_dentries +ffffffff81280490 t cleanup_bitmap_list +ffffffff812804d0 t recalculate_thresholds +ffffffff81280540 t use_bitmap +ffffffff81280580 t __lookup_free_space_inode +ffffffff812806c0 t io_ctl_init +ffffffff812807f0 t io_ctl_set_crc +ffffffff812808b0 t io_ctl_check_crc +ffffffff81280a10 t tree_insert_offset +ffffffff81280a80 t write_bitmap_entries +ffffffff81280c00 t free_bitmap +ffffffff81280c50 t io_ctl_drop_pages +ffffffff81280ce0 t io_ctl_prepare_pages +ffffffff81280e50 t update_cache_item +ffffffff81280fe0 t __btrfs_wait_cache_io +ffffffff81281180 t cleanup_write_cache_enospc +ffffffff812811d0 t search_bitmap +ffffffff81281360 t __btrfs_remove_free_space_cache_locked +ffffffff812813d0 t bitmap_clear_bits.isra.1 +ffffffff81281420 t remove_from_bitmap +ffffffff812815c0 t bitmap_set_bits.isra.2 +ffffffff81281610 t __create_free_space_inode.part.3 +ffffffff81281850 t link_free_space +ffffffff81281890 t tree_search_offset.isra.11 +ffffffff81281a20 t try_merge_free_space +ffffffff81281b90 t steal_from_bitmap.part.12 +ffffffff81281e80 t __btrfs_return_cluster_to_free_space +ffffffff81281fa0 t setup_cluster_bitmap +ffffffff81282230 t setup_cluster_no_bitmap.isra.15 +ffffffff81282410 t io_ctl_map_page.constprop.16 +ffffffff81282460 t io_ctl_add_entry +ffffffff812824c0 t write_cache_extent_entries +ffffffff81282670 t write_pinned_extent_entries.isra.10 +ffffffff81282750 t __btrfs_write_out_cache +ffffffff81282b70 T lookup_free_space_inode +ffffffff81282c50 T create_free_space_inode +ffffffff81282cc0 T btrfs_check_trunc_cache_free_space +ffffffff81282d00 T btrfs_truncate_free_space_cache +ffffffff81282ed0 T btrfs_wait_cache_io +ffffffff81282f00 T btrfs_write_out_cache +ffffffff81282fe0 T __btrfs_add_free_space +ffffffff812833a0 t do_trimming +ffffffff81283520 T btrfs_remove_free_space +ffffffff81283710 T btrfs_dump_free_space +ffffffff812837f0 T btrfs_init_free_space_ctl +ffffffff81283850 T __btrfs_remove_free_space_cache +ffffffff81283870 t __load_free_space_cache +ffffffff81283ec0 T load_free_space_cache +ffffffff81284040 T btrfs_remove_free_space_cache +ffffffff812840a0 T btrfs_find_space_for_alloc +ffffffff812842c0 T btrfs_return_cluster_to_free_space +ffffffff81284340 T btrfs_alloc_from_cluster +ffffffff81284570 T btrfs_find_space_cluster +ffffffff81284730 T btrfs_init_free_cluster +ffffffff81284760 T btrfs_get_block_group_trimming +ffffffff81284770 T btrfs_put_block_group_trimming +ffffffff81284840 T btrfs_trim_block_group +ffffffff81284ca0 T btrfs_find_ino_for_alloc +ffffffff81284db0 T lookup_free_ino_inode +ffffffff81284e60 T create_free_ino_inode +ffffffff81284eb0 T load_free_ino_cache +ffffffff81284fa0 T btrfs_write_out_ino_cache +ffffffff81285050 t zlib_set_level +ffffffff81285070 t zlib_decompress +ffffffff81285340 t zlib_decompress_bio +ffffffff812855a0 t zlib_compress_pages +ffffffff81285930 t zlib_free_workspace +ffffffff81285950 t zlib_alloc_workspace +ffffffff812859f0 t lzo_set_level +ffffffff81285a00 t lzo_decompress +ffffffff81285be0 t lzo_decompress_bio +ffffffff81285e20 t lzo_compress_pages +ffffffff81286260 t lzo_free_workspace +ffffffff81286290 t lzo_alloc_workspace +ffffffff81286330 t zstd_set_level +ffffffff81286340 t zstd_decompress +ffffffff81286590 t zstd_decompress_bio +ffffffff81286760 t zstd_get_btrfs_parameters +ffffffff81286790 t zstd_compress_pages +ffffffff81286c70 t zstd_free_workspace +ffffffff81286c90 t zstd_alloc_workspace +ffffffff81286d80 t free_heuristic_ws +ffffffff81286db0 t alloc_heuristic_ws +ffffffff81286e50 t __find_workspace +ffffffff812870c0 t __free_workspace +ffffffff81287200 t end_compressed_bio_read +ffffffff81287540 t end_compressed_writeback.isra.4 +ffffffff81287660 t end_compressed_bio_write +ffffffff81287750 t add_ra_bio_pages.isra.5 +ffffffff81287b10 T btrfs_compress_type2str +ffffffff81287b30 T btrfs_submit_compressed_write +ffffffff81287e30 T btrfs_submit_compressed_read +ffffffff812882c0 T btrfs_compress_pages +ffffffff81288360 T btrfs_decompress +ffffffff812883e0 T btrfs_exit_compress +ffffffff812884c0 T btrfs_decompress_buf2page +ffffffff81288680 T btrfs_compress_heuristic +ffffffff81288b40 T btrfs_compress_str2level +ffffffff81288b90 t find_ref_head +ffffffff81288c00 t comp_refs +ffffffff81288cb0 t update_existing_head_ref.isra.3 +ffffffff81288e10 t add_delayed_ref_head.isra.4 +ffffffff812890f0 t insert_delayed_ref.isra.5 +ffffffff81289330 t add_delayed_tree_ref +ffffffff81289420 t add_delayed_data_ref +ffffffff81289520 T btrfs_delayed_ref_lock +ffffffff812895e0 T btrfs_merge_delayed_refs +ffffffff81289920 T btrfs_check_delayed_seq +ffffffff81289980 T btrfs_select_ref_head +ffffffff81289a60 T btrfs_add_delayed_tree_ref +ffffffff81289c40 T btrfs_add_delayed_data_ref +ffffffff81289e20 T btrfs_add_delayed_extent_op +ffffffff81289ed0 T btrfs_find_delayed_ref_head +ffffffff81289ee0 T btrfs_delayed_ref_exit +ffffffff81289f10 t create_reloc_root +ffffffff8128a0f0 t tree_insert +ffffffff8128a140 t __add_reloc_root +ffffffff8128a220 t __del_reloc_root +ffffffff8128a300 t free_reloc_roots +ffffffff8128a360 t set_reloc_control +ffffffff8128a3a0 t delete_block_group_cache +ffffffff8128a470 t mark_garbage_root +ffffffff8128a4f0 t prepare_to_relocate +ffffffff8128a640 t find_next_extent +ffffffff8128a830 t walk_up_reloc_tree +ffffffff8128a970 t find_inline_backref +ffffffff8128aa50 t tree_block_processed +ffffffff8128aa90 t free_block_list +ffffffff8128aac0 t walk_down_reloc_tree +ffffffff8128aca0 t __mark_block_processed +ffffffff8128ad00 t update_processed_blocks +ffffffff8128adc0 t prealloc_file_extent_cluster +ffffffff8128afc0 t setup_extent_mapping +ffffffff8128b0e0 t relocate_file_extent_cluster +ffffffff8128b540 t relocate_data_extent +ffffffff8128b600 t memcmp_node_keys +ffffffff8128b650 t replace_path +ffffffff8128bdd0 t find_next_inode +ffffffff8128bf10 t invalidate_extent_cache +ffffffff8128c0b0 t replace_file_extents +ffffffff8128c6d0 t alloc_backref_node.isra.0 +ffffffff8128c720 t should_ignore_root.part.2 +ffffffff8128c750 t is_cowonly_root +ffffffff8128c780 t read_fs_root +ffffffff8128c7d0 t alloc_reloc_control.isra.11 +ffffffff8128c890 t find_tree_root.isra.12 +ffffffff8128c910 t create_reloc_inode.isra.13 +ffffffff8128cb00 t describe_relocation.isra.14 +ffffffff8128cd90 t get_ref_objectid_v0.isra.18 +ffffffff8128cea0 t block_use_full_backref.isra.19 +ffffffff8128cf10 t walk_up_backref +ffffffff8128cf60 t select_one_root +ffffffff8128d050 t select_reloc_root +ffffffff8128d250 t find_data_references +ffffffff8128d6d0 t add_tree_block +ffffffff8128d880 t __add_tree_block +ffffffff8128da90 t add_data_references +ffffffff8128dd60 t update_backref_node +ffffffff8128dda0 t calcu_metadata_size.isra.22.constprop.26 +ffffffff8128de80 t drop_node_buffer +ffffffff8128dec0 t drop_backref_node +ffffffff8128df50 t remove_backref_node +ffffffff8128e070 t update_backref_cache.isra.16.part.17 +ffffffff8128e170 t do_relocation +ffffffff8128e650 t build_backref_tree +ffffffff8128f7e0 t relocate_tree_blocks +ffffffff8128fd40 T btrfs_init_reloc_root +ffffffff8128fde0 T btrfs_update_reloc_root +ffffffff8128fe80 t prepare_to_merge +ffffffff812900a0 t merge_reloc_root +ffffffff81290580 t merge_reloc_roots +ffffffff81290790 t relocate_block_group +ffffffff81290d70 T btrfs_relocate_block_group +ffffffff81290f70 T btrfs_recover_relocation +ffffffff81291390 T btrfs_reloc_clone_csums +ffffffff81291460 T btrfs_reloc_cow_block +ffffffff81291750 T btrfs_reloc_pre_snapshot +ffffffff81291790 T btrfs_reloc_post_snapshot +ffffffff81291ae9 t backref_tree_panic.constprop.25 +ffffffff81291b20 t btrfs_first_delayed_node +ffffffff81291b60 t btrfs_next_delayed_node +ffffffff81291bd0 t btrfs_alloc_delayed_item +ffffffff81291c10 t btrfs_get_delayed_node +ffffffff81291d30 t btrfs_get_or_create_delayed_node +ffffffff81291ee0 t __btrfs_add_delayed_item +ffffffff81291ff0 t finish_one_item +ffffffff81292040 t btrfs_release_delayed_iref +ffffffff81292070 t btrfs_release_delayed_item.part.3 +ffffffff812920e0 t btrfs_insert_delayed_items +ffffffff81292550 t btrfs_delete_delayed_items +ffffffff81292870 t btrfs_release_delayed_inode +ffffffff812928c0 t __btrfs_kill_delayed_node +ffffffff81292a00 t __btrfs_update_delayed_inode +ffffffff81292c00 t __btrfs_release_delayed_node.part.5 +ffffffff81292de0 t btrfs_async_run_delayed_root +ffffffff81292fd0 t btrfs_wq_run_delayed_node.isra.6 +ffffffff81293040 t fill_stack_inode_item.isra.10 +ffffffff81293130 t __btrfs_run_delayed_items +ffffffff812932d0 T btrfs_delayed_inode_exit +ffffffff812932e0 T btrfs_run_delayed_items +ffffffff812932f0 T btrfs_run_delayed_items_nr +ffffffff81293300 T btrfs_commit_inode_delayed_items +ffffffff81293430 T btrfs_commit_inode_delayed_inode +ffffffff81293540 T btrfs_remove_delayed_node +ffffffff81293570 T btrfs_assert_delayed_root_empty +ffffffff81293580 T btrfs_balance_delayed_items +ffffffff81293660 T btrfs_insert_delayed_dir_index +ffffffff81293800 T btrfs_delete_delayed_dir_index +ffffffff812939f0 T btrfs_inode_delayed_dir_index_count +ffffffff81293a40 T btrfs_readdir_get_delayed_items +ffffffff81293b30 T btrfs_readdir_put_delayed_items +ffffffff81293c20 T btrfs_should_delete_dir_index +ffffffff81293c50 T btrfs_readdir_delayed_dir_index +ffffffff81293d80 T btrfs_fill_inode +ffffffff81293f20 T btrfs_delayed_update_inode +ffffffff81294050 T btrfs_delayed_delete_inode_ref +ffffffff812940f0 T btrfs_kill_delayed_inode_items +ffffffff81294120 T btrfs_kill_all_delayed_nodes +ffffffff812941f0 T btrfs_destroy_delayed_inodes +ffffffff81294230 t scrub_pending_bio_inc +ffffffff81294250 t scrub_block_get +ffffffff81294260 t get_raid56_logic_offset +ffffffff81294360 t __scrub_blocked_if_needed +ffffffff812943f0 t scrub_pending_trans_workers_inc +ffffffff81294460 t scrub_pause_on +ffffffff81294480 t scrub_pause_off +ffffffff812944d0 t scrub_workers_get +ffffffff812945e0 t scrub_workers_put +ffffffff81294620 t scrub_wr_bio_end_io +ffffffff81294670 t scrub_missing_raid56_end_io +ffffffff812946b0 t scrub_bio_end_io +ffffffff812946e0 t scrub_free_csums +ffffffff81294750 t scrub_find_csum +ffffffff812948b0 t scrub_fixup_readpage +ffffffff81294bb0 t record_inode_for_nocow +ffffffff81294c10 t scrub_print_warning_inode +ffffffff81294e90 t scrub_repair_page_from_good_copy +ffffffff81295000 t scrub_bio_wait_endio +ffffffff81295010 t scrub_checksum_data +ffffffff812951b0 t scrub_checksum_tree_block +ffffffff812953c0 t scrub_recheck_block_checksum +ffffffff812953e0 t scrub_recheck_block +ffffffff812955c0 t scrub_parity_bio_endio +ffffffff81295630 t scrub_wr_submit +ffffffff81295660 t scrub_write_page_to_dev_replace +ffffffff812958d0 t scrub_write_block_to_dev_replace +ffffffff81295930 t scrub_submit +ffffffff81295960 t scrub_add_page_to_rd_bio +ffffffff81295c00 t check_extent_to_block +ffffffff81295cf0 t scrub_print_warning.isra.1 +ffffffff81295f20 t scrub_page_put +ffffffff81295f50 t scrub_free_parity +ffffffff81296000 t scrub_parity_put +ffffffff81296170 t scrub_handle_errored_block +ffffffff81297130 t scrub_block_put +ffffffff81297190 t scrub_raid56_parity +ffffffff81297df0 t scrub_free_ctx +ffffffff81297e90 t scrub_put_ctx +ffffffff81297eb0 t scrub_pending_trans_workers_dec +ffffffff81297f30 t scrub_fixup_nodatasum +ffffffff81298090 t copy_nocow_pages_worker +ffffffff81298770 t scrub_pending_bio_dec +ffffffff812987a0 t scrub_wr_bio_end_io_worker +ffffffff81298840 t scrub_parity_bio_endio_worker +ffffffff81298860 t scrub_bio_end_io_worker +ffffffff81298ca0 t scrub_pages +ffffffff81299090 t scrub_supers +ffffffff812991b0 t scrub_stripe +ffffffff8129a1c0 t scrub_chunk +ffffffff8129a310 t scrub_enumerate_chunks +ffffffff8129a8c0 t scrub_missing_raid56_worker +ffffffff8129aa30 t scrub_setup_ctx.isra.5 +ffffffff8129ac00 T btrfs_scrub_dev +ffffffff8129b110 T btrfs_scrub_pause +ffffffff8129b1d0 T btrfs_scrub_continue +ffffffff8129b1f0 T btrfs_scrub_cancel +ffffffff8129b2c0 T btrfs_scrub_cancel_dev +ffffffff8129b390 T btrfs_scrub_progress +ffffffff8129b4b0 t reada_peer_zones_set_lock +ffffffff8129b510 t reada_zone_release +ffffffff8129b540 t reada_extent_put +ffffffff8129b660 t reada_pick_zone +ffffffff8129b780 t reada_add_block +ffffffff8129bfd0 t __readahead_hook +ffffffff8129c2e0 t reada_start_machine +ffffffff8129c340 t reada_start_machine_worker +ffffffff8129c700 T btree_readahead_hook +ffffffff8129c790 T btrfs_reada_add +ffffffff8129c8b0 T btrfs_reada_wait +ffffffff8129c990 T btrfs_reada_detach +ffffffff8129c9b0 t check_extent_in_eb +ffffffff8129cab0 t prelim_release +ffffffff8129cb10 t free_leaf_list +ffffffff8129cb70 t update_share_count +ffffffff8129cba0 t prelim_ref_insert.isra.2 +ffffffff8129cce0 t resolve_indirect_refs +ffffffff8129d430 t add_prelim_ref.isra.3.part.4 +ffffffff8129d520 t find_parent_nodes +ffffffff8129e6d0 t btrfs_find_all_roots_safe +ffffffff8129e7d0 T btrfs_prelim_ref_exit +ffffffff8129e7e0 T btrfs_find_all_roots +ffffffff8129e850 T btrfs_check_shared +ffffffff8129ea10 T btrfs_find_one_extref +ffffffff8129eb10 T btrfs_ref_to_path +ffffffff8129ecd0 t inode_to_path +ffffffff8129ed70 T extent_from_logical +ffffffff8129eef0 T tree_backref_for_extent +ffffffff8129f060 T iterate_extent_inodes +ffffffff8129f2f0 T iterate_inodes_from_logical +ffffffff8129f3a0 T paths_from_inode +ffffffff8129f740 T init_data_container +ffffffff8129f7a0 T init_ipath +ffffffff8129f800 T free_ipath +ffffffff8129f820 T ulist_init +ffffffff8129f840 T ulist_release +ffffffff8129f890 T ulist_reinit +ffffffff8129f8c0 T ulist_alloc +ffffffff8129f910 T ulist_free +ffffffff8129f930 T ulist_add_merge +ffffffff8129fa40 T ulist_add +ffffffff8129fa50 T ulist_del +ffffffff8129faf0 T ulist_next +ffffffff8129fb30 t add_relation_rb +ffffffff8129fc10 t add_qgroup_rb +ffffffff8129fd00 t update_qgroup_limit_item +ffffffff8129fe30 t qgroup_rescan_init +ffffffff8129ffb0 t __del_qgroup_rb +ffffffff812a00b0 t add_qgroup_item +ffffffff812a02b0 t add_qgroup_relation_item +ffffffff812a0330 t del_qgroup_relation_item +ffffffff812a03d0 t quick_update_accounting +ffffffff812a0600 t __del_qgroup_relation +ffffffff812a0840 t qgroup_update_refcnt +ffffffff812a09f0 t qgroup_rescan_zero_tracking +ffffffff812a0a50 t qgroup_reserve +ffffffff812a0ca0 t update_qgroup_status_item.isra.4 +ffffffff812a0db0 t maybe_fs_roots.part.5 +ffffffff812a0e00 t btrfs_qgroup_account_extent.part.8 +ffffffff812a1280 t btrfs_qgroup_rescan_worker +ffffffff812a17d0 T btrfs_read_qgroup_config +ffffffff812a1d80 T btrfs_free_qgroup_config +ffffffff812a1de0 T btrfs_quota_enable +ffffffff812a2150 T btrfs_add_qgroup_relation +ffffffff812a2330 T btrfs_del_qgroup_relation +ffffffff812a2380 T btrfs_create_qgroup +ffffffff812a2450 T btrfs_remove_qgroup +ffffffff812a26d0 T btrfs_limit_qgroup +ffffffff812a28e0 T btrfs_qgroup_trace_extent_nolock +ffffffff812a2940 T btrfs_qgroup_trace_extent_post +ffffffff812a29a0 T btrfs_qgroup_trace_extent +ffffffff812a2a90 T btrfs_qgroup_trace_leaf_items +ffffffff812a2bc0 T btrfs_qgroup_trace_subtree +ffffffff812a2f50 T btrfs_qgroup_account_extent +ffffffff812a2f70 T btrfs_qgroup_account_extents +ffffffff812a30c0 T btrfs_run_qgroups +ffffffff812a3380 T btrfs_qgroup_inherit +ffffffff812a3960 T btrfs_qgroup_free_refroot +ffffffff812a3aa0 t qgroup_free_reserved_data +ffffffff812a3bd0 t __btrfs_qgroup_release_data.part.11 +ffffffff812a3c60 T btrfs_qgroup_rescan +ffffffff812a3ce0 T btrfs_qgroup_wait_for_completion +ffffffff812a3d60 T btrfs_quota_disable +ffffffff812a3f60 T btrfs_qgroup_rescan_resume +ffffffff812a3f80 T btrfs_qgroup_reserve_data +ffffffff812a40f0 T btrfs_qgroup_free_data +ffffffff812a4110 T btrfs_qgroup_release_data +ffffffff812a4120 T btrfs_qgroup_reserve_meta +ffffffff812a4190 T btrfs_qgroup_free_meta_all +ffffffff812a41e0 T btrfs_qgroup_free_meta +ffffffff812a4250 T btrfs_qgroup_check_reserved_leak +ffffffff812a4310 t __clone_root_cmp_bsearch +ffffffff812a4330 t __clone_root_cmp_sort +ffffffff812a4360 t tail_append_pending_moves +ffffffff812a4400 t fs_path_free +ffffffff812a4430 t __free_recorded_refs +ffffffff812a44a0 t free_pending_move +ffffffff812a4500 t get_last_extent +ffffffff812a4710 t lookup_dir_item_inode +ffffffff812a47e0 t tlv_put +ffffffff812a4830 t tlv_put_string +ffffffff812a4870 t tlv_put_btrfs_timespec +ffffffff812a48b0 t fs_path_ensure_buf +ffffffff812a49b0 t name_cache_search +ffffffff812a4a00 t inconsistent_snapshot_error +ffffffff812a4a60 t btrfs_root_dec_send_in_progress +ffffffff812a4ac0 t name_cache_delete +ffffffff812a4b90 t fs_path_reset.part.0 +ffffffff812a4bb0 t fs_path_alloc +ffffffff812a4bf0 t dup_ref.isra.1 +ffffffff812a4c50 t add_pending_dir_move +ffffffff812a4ea0 t did_create_dir.isra.11 +ffffffff812a4ff0 t fs_path_prepare_for_add +ffffffff812a5080 t fs_path_add +ffffffff812a50c0 t fs_path_add_from_extent_buffer +ffffffff812a5110 t fs_path_add_path +ffffffff812a5150 t fs_path_copy +ffffffff812a5190 t __copy_first_ref +ffffffff812a51b0 t gen_unique_name.isra.16 +ffffffff812a5380 t iterate_inode_ref.isra.17 +ffffffff812a56b0 t iterate_dir_item.isra.22 +ffffffff812a5970 t __find_xattr +ffffffff812a59f0 t get_inode_info.constprop.32 +ffffffff812a5b50 t __find_iref +ffffffff812a5be0 t get_first_ref +ffffffff812a5dc0 t is_ancestor +ffffffff812a6160 t get_cur_inode_state +ffffffff812a6270 t is_inode_existent.part.8 +ffffffff812a6290 t did_overwrite_ref +ffffffff812a63e0 t __get_cur_name_and_parent +ffffffff812a6770 t get_cur_path +ffffffff812a69d0 t record_ref +ffffffff812a6af0 t __record_deleted_ref +ffffffff812a6b10 t __record_new_ref +ffffffff812a6b30 t __record_changed_deleted_ref +ffffffff812a6c10 t update_ref_path +ffffffff812a6cc0 t dir_changed.isra.6 +ffffffff812a6d30 t send_cmd +ffffffff812a6df0 t send_update_extent +ffffffff812a6f10 t send_hole +ffffffff812a7080 t maybe_send_hole.isra.25 +ffffffff812a7580 t send_create_inode +ffffffff812a7a50 t send_create_inode_if_needed +ffffffff812a7ab0 t send_rename +ffffffff812a7b30 t orphanize_inode +ffffffff812a7ba0 t send_unlink +ffffffff812a7c00 t send_utimes +ffffffff812a7dd0 t send_rmdir +ffffffff812a7e30 t send_clone +ffffffff812a8180 t send_extent_data +ffffffff812a86f0 t clone_range +ffffffff812a8b20 t process_extent +ffffffff812a9680 t __process_new_xattr +ffffffff812a97f0 t __process_changed_new_xattr +ffffffff812a98f0 t __process_deleted_xattr +ffffffff812a99c0 t __process_changed_deleted_xattr +ffffffff812a9ab0 t __iterate_backrefs +ffffffff812a9c30 t __record_changed_new_ref +ffffffff812a9d10 t can_rmdir +ffffffff812a9f90 t process_recorded_refs +ffffffff812aafe0 t process_all_refs +ffffffff812ab160 t apply_children_dir_moves +ffffffff812ab800 t finish_inode_if_needed +ffffffff812abe60 t changed_cb +ffffffff812acba0 T btrfs_ioctl_send +ffffffff812adb65 t begin_cmd.isra.3.part.4 +ffffffff812adb70 t btrfs_rm_dev_replace_blocked +ffffffff812adbf0 t btrfs_rm_dev_replace_unblocked +ffffffff812adc10 t btrfs_dev_replace_progress +ffffffff812adc70 t btrfs_dev_replace_lock.part.1 +ffffffff812adc90 t btrfs_dev_replace_unlock.part.2 +ffffffff812adcb0 T btrfs_init_dev_replace +ffffffff812ae0d0 T btrfs_after_dev_replace_commit +ffffffff812ae0e0 T btrfs_dev_replace_status +ffffffff812ae150 T btrfs_dev_replace_is_ongoing +ffffffff812ae180 T btrfs_dev_replace_lock +ffffffff812ae210 T btrfs_run_dev_replace +ffffffff812ae510 t btrfs_dev_replace_finishing +ffffffff812ae9c0 t btrfs_dev_replace_kthread +ffffffff812aea90 T btrfs_dev_replace_start +ffffffff812aed70 T btrfs_dev_replace_by_ioctl +ffffffff812aedc0 T btrfs_dev_replace_cancel +ffffffff812aef50 T btrfs_dev_replace_suspend_for_unmount +ffffffff812aefd0 T btrfs_resume_dev_replace_async +ffffffff812af0a0 T btrfs_dev_replace_unlock +ffffffff812af0c0 T btrfs_dev_replace_set_lock_blocking +ffffffff812af0e0 T btrfs_dev_replace_clear_lock_blocking +ffffffff812af130 T btrfs_bio_counter_inc_noblocked +ffffffff812af150 T btrfs_bio_counter_sub +ffffffff812af1a0 T btrfs_bio_counter_inc_blocked +ffffffff812af240 t page_in_rbio +ffffffff812af2b0 t fail_rbio_index +ffffffff812af330 t plug_cmp +ffffffff812af350 t index_rbio_pages +ffffffff812af480 t async_read_rebuild +ffffffff812af4c0 t async_rmw_stripe +ffffffff812af500 t async_scrub_parity +ffffffff812af540 t alloc_rbio +ffffffff812af6b0 t rbio_add_io_page +ffffffff812af830 t rbio_can_merge +ffffffff812af8f0 t alloc_rbio_pages.isra.3 +ffffffff812af960 t fail_bio_stripe +ffffffff812af9d0 t rbio_is_full +ffffffff812afa20 t steal_rbio.isra.9.part.10 +ffffffff812afac0 t __free_raid_bio +ffffffff812afb40 t __remove_rbio_from_cache +ffffffff812afc60 t remove_rbio_from_cache.part.13 +ffffffff812afca0 t lock_stripe_add +ffffffff812b0030 t unlock_stripe +ffffffff812b03c0 t rbio_orig_end_io +ffffffff812b0480 t raid_write_end_io +ffffffff812b04f0 t cache_rbio_pages +ffffffff812b05c0 t run_xor.constprop.19 +ffffffff812b0620 t finish_parity_scrub +ffffffff812b0c50 t finish_rmw +ffffffff812b1140 t full_stripe_write +ffffffff812b11f0 t __raid56_parity_write +ffffffff812b1220 t run_plug +ffffffff812b1350 t btrfs_raid_unplug +ffffffff812b13a0 t unplug_work +ffffffff812b13b0 t __raid_recover_end_io +ffffffff812b1840 t __raid56_parity_recover +ffffffff812b1a60 t read_rebuild_work +ffffffff812b1a70 t missing_raid56_work +ffffffff812b1a80 t raid_recover_end_io +ffffffff812b1b00 t validate_rbio_for_parity_scrub +ffffffff812b1bc0 t raid56_parity_scrub_end_io +ffffffff812b1c20 t scrub_parity_work +ffffffff812b1ed0 t validate_rbio_for_rmw +ffffffff812b1f00 t rmw_work +ffffffff812b20f0 t raid_rmw_end_io +ffffffff812b2170 T btrfs_alloc_stripe_hash_table +ffffffff812b21f0 T btrfs_free_stripe_hash_table +ffffffff812b2260 T raid56_parity_write +ffffffff812b2390 T raid56_parity_recover +ffffffff812b2570 T raid56_parity_alloc_scrub_rbio +ffffffff812b2670 T raid56_add_scrub_pages +ffffffff812b2690 T raid56_parity_submit_scrub_rbio +ffffffff812b26b0 T raid56_alloc_missing_rbio +ffffffff812b2770 T raid56_submit_missing_rbio +ffffffff812b27c0 T btrfs_uuid_tree_add +ffffffff812b2ac0 T btrfs_uuid_tree_rem +ffffffff812b2cb0 T btrfs_uuid_tree_iterate +ffffffff812b2f20 t prop_compression_extract +ffffffff812b2f40 t find_prop_handler +ffffffff812b2fc0 t __btrfs_set_prop +ffffffff812b30e0 t inherit_props +ffffffff812b31b0 t prop_compression_apply +ffffffff812b3250 t prop_compression_validate +ffffffff812b32e0 T btrfs_set_prop +ffffffff812b3300 T btrfs_load_inode_props +ffffffff812b36c0 T btrfs_inode_inherit_props +ffffffff812b36d0 T btrfs_subvol_inherit_props +ffffffff812b3790 T btrfs_crc32c_impl +ffffffff812b37b0 T btrfs_hash_exit +ffffffff812b37c0 T btrfs_crc32c +ffffffff812b3830 t alloc_bitmap +ffffffff812b3870 t add_new_free_space_info.isra.1 +ffffffff812b3920 t btrfs_search_prev_slot.constprop.6 +ffffffff812b3950 t free_space_next_bitmap +ffffffff812b3a10 T set_free_space_tree_thresholds +ffffffff812b3a70 T search_free_space_info +ffffffff812b3b10 T convert_free_space_to_bitmaps +ffffffff812b3ef0 T convert_free_space_to_extents +ffffffff812b4370 t update_free_space_extent_count.part.4 +ffffffff812b4450 T free_space_test_bit +ffffffff812b44f0 t modify_free_space_bitmap +ffffffff812b4890 T __add_to_free_space_tree +ffffffff812b4b90 t __add_block_group_free_space +ffffffff812b4be0 T __remove_from_free_space_tree +ffffffff812b4ea0 T remove_from_free_space_tree +ffffffff812b4fa0 T add_to_free_space_tree +ffffffff812b50a0 T btrfs_create_free_space_tree +ffffffff812b54b0 T btrfs_clear_free_space_tree +ffffffff812b5760 T add_block_group_free_space +ffffffff812b5860 T remove_block_group_free_space +ffffffff812b59f0 T load_free_space_tree +ffffffff812b5de0 t generic_err +ffffffff812b5e80 t file_extent_err +ffffffff812b5f80 t dir_item_err +ffffffff812b6070 t check_leaf +ffffffff812b6c90 T btrfs_check_leaf_full +ffffffff812b6ca0 T btrfs_check_leaf_relaxed +ffffffff812b6cb0 T btrfs_check_node +ffffffff812b6ec0 t __btrfs_set_acl +ffffffff812b7020 T btrfs_get_acl +ffffffff812b7100 T btrfs_set_acl +ffffffff812b7160 T btrfs_init_acl +ffffffff812b7270 t sysvipc_proc_release +ffffffff812b72a0 t sysvipc_proc_open +ffffffff812b7300 t sysvipc_proc_show +ffffffff812b7330 t sysvipc_proc_stop +ffffffff812b7370 t ipc_kht_remove.part.0 +ffffffff812b74e0 t sysvipc_find_ipc +ffffffff812b75b0 t sysvipc_proc_next +ffffffff812b7600 t sysvipc_proc_start +ffffffff812b7660 T ipc_init_ids +ffffffff812b76c0 T ipc_addid +ffffffff812b7a30 T ipc_rmid +ffffffff812b7ac0 T ipc_set_key_private +ffffffff812b7ae0 T ipc_rcu_getref +ffffffff812b7b40 T ipc_rcu_putref +ffffffff812b7b60 T ipcperms +ffffffff812b7c10 T kernel_to_ipc64_perm +ffffffff812b7cb0 T ipc64_perm_to_ipc_perm +ffffffff812b7ce0 T ipc_obtain_object_idr +ffffffff812b7d20 T ipc_lock +ffffffff812b7da0 T ipc_obtain_object_check +ffffffff812b7e00 T ipcget +ffffffff812b8050 T ipc_update_perm +ffffffff812b80d0 T ipcctl_pre_down_nolock +ffffffff812b8140 T copy_msg +ffffffff812b82d0 T store_msg +ffffffff812b8360 T free_msg +ffffffff812b8390 T load_msg +ffffffff812b84c0 t msg_security +ffffffff812b84d0 t msg_rcu_free +ffffffff812b84e0 t newque +ffffffff812b8620 t ss_wakeup +ffffffff812b86f0 t freeque +ffffffff812b87f0 t sysvipc_msg_proc_show +ffffffff812b88d0 t testmsg.isra.0 +ffffffff812b8910 T SyS_msgget +ffffffff812b8910 T sys_msgget +ffffffff812b8950 T SyS_msgctl +ffffffff812b8950 T sys_msgctl +ffffffff812b8df0 T SyS_msgsnd +ffffffff812b8df0 T sys_msgsnd +ffffffff812b91e0 T SyS_msgrcv +ffffffff812b91e0 T sys_msgrcv +ffffffff812b9750 T msg_init_ns +ffffffff812b9790 T msg_exit_ns +ffffffff812b97c0 t sem_security +ffffffff812b97d0 t sem_more_checks +ffffffff812b97f0 t sem_rcu_free +ffffffff812b9800 t perform_atomic_semop +ffffffff812b9aa0 t wake_const_ops +ffffffff812b9b80 t do_smart_wakeup_zero +ffffffff812b9c80 t update_queue +ffffffff812b9df0 t complexmode_enter.part.0 +ffffffff812b9e40 t unmerge_queues.part.1 +ffffffff812b9eb0 t complexmode_tryleave.part.2 +ffffffff812b9ed0 t freeary +ffffffff812ba240 t sysvipc_sem_proc_show +ffffffff812ba370 t newary +ffffffff812ba560 t lookup_undo +ffffffff812ba5c0 t copy_semid_to_user.constprop.5 +ffffffff812ba5d0 t check_qop.constprop.6 +ffffffff812ba640 t count_semcnt +ffffffff812ba700 t do_smart_update +ffffffff812ba800 t semctl_main +ffffffff812badd0 t do_semtimedop +ffffffff812bbbd0 T sem_init_ns +ffffffff812bbc10 T sem_exit_ns +ffffffff812bbc40 T SyS_semget +ffffffff812bbc40 T sys_semget +ffffffff812bbca0 T SyS_semctl +ffffffff812bbca0 T sys_semctl +ffffffff812bc2d0 T SyS_semtimedop +ffffffff812bc2d0 T sys_semtimedop +ffffffff812bc330 T SyS_semop +ffffffff812bc330 T sys_semop +ffffffff812bc340 T copy_semundo +ffffffff812bc3d0 T exit_sem +ffffffff812bc680 t shm_fault +ffffffff812bc6a0 t shm_split +ffffffff812bc6d0 t shm_fsync +ffffffff812bc700 t shm_fallocate +ffffffff812bc730 t shm_get_unmapped_area +ffffffff812bc750 t shm_security +ffffffff812bc760 t shm_more_checks +ffffffff812bc780 t shm_rcu_free +ffffffff812bc790 t shm_destroy +ffffffff812bc840 t shm_release +ffffffff812bc870 t shm_close +ffffffff812bc930 t newseg +ffffffff812bcb70 t sysvipc_shm_proc_show +ffffffff812bcc90 t do_shm_rmid +ffffffff812bccd0 t shm_try_destroy_orphaned +ffffffff812bcd20 t __shm_open.isra.4 +ffffffff812bcd90 t shm_open +ffffffff812bcda0 t shm_mmap +ffffffff812bce10 T shm_init_ns +ffffffff812bce50 T shm_exit_ns +ffffffff812bce80 T shm_destroy_orphaned +ffffffff812bcec0 T exit_shm +ffffffff812bd060 T is_file_shm_hugepages +ffffffff812bd070 T SyS_shmget +ffffffff812bd070 T sys_shmget +ffffffff812bd0c0 T SyS_shmctl +ffffffff812bd0c0 T sys_shmctl +ffffffff812bd740 T do_shmat +ffffffff812bdb20 T SyS_shmat +ffffffff812bdb20 T sys_shmat +ffffffff812bdb40 T SyS_shmdt +ffffffff812bdb40 T sys_shmdt +ffffffff812bdcb0 t proc_ipc_auto_msgmni +ffffffff812bdd60 t proc_ipc_dointvec_minmax +ffffffff812bdde0 t proc_ipc_dointvec_minmax_orphans +ffffffff812bde30 t proc_ipc_dointvec +ffffffff812bdeb0 t proc_ipc_doulongvec_minmax +ffffffff812bdf30 t mqueue_poll_file +ffffffff812bdfa0 t mqueue_get_inode +ffffffff812be2f0 t mqueue_unlink +ffffffff812be350 t remove_notification +ffffffff812be3d0 t mqueue_flush_file +ffffffff812be430 t mqueue_read_file +ffffffff812be570 t mqueue_create_attr +ffffffff812be6e0 t mqueue_create +ffffffff812be6f0 t mqueue_alloc_inode +ffffffff812be720 t msg_insert +ffffffff812be830 t __do_notify +ffffffff812be9b0 t mqueue_mount +ffffffff812be9f0 t mqueue_fill_super +ffffffff812bea50 t mqueue_destroy_inode +ffffffff812bea70 t mqueue_i_callback +ffffffff812bea90 t init_once +ffffffff812beaa0 t mqueue_evict_inode +ffffffff812bed30 t wq_sleep.constprop.3 +ffffffff812beeb0 T SyS_mq_open +ffffffff812beeb0 T sys_mq_open +ffffffff812bf140 T SyS_mq_unlink +ffffffff812bf140 T sys_mq_unlink +ffffffff812bf270 T SyS_mq_timedsend +ffffffff812bf270 T sys_mq_timedsend +ffffffff812bf610 T SyS_mq_timedreceive +ffffffff812bf610 T sys_mq_timedreceive +ffffffff812bfb10 T SyS_mq_notify +ffffffff812bfb10 T sys_mq_notify +ffffffff812bfee0 T SyS_mq_getsetattr +ffffffff812bfee0 T sys_mq_getsetattr +ffffffff812c0110 T mq_init_ns +ffffffff812c0180 T mq_clear_sbinfo +ffffffff812c01a0 T mq_put_mnt +ffffffff812c01b0 t ipcns_get +ffffffff812c0210 t ipcns_owner +ffffffff812c0220 T copy_ipcs +ffffffff812c03a0 T free_ipcs +ffffffff812c0430 T put_ipc_ns +ffffffff812c04c0 t ipcns_install +ffffffff812c0550 t ipcns_put +ffffffff812c0560 t proc_mq_dointvec_minmax +ffffffff812c05e0 t proc_mq_dointvec +ffffffff812c0660 T mq_register_sysctl_table +ffffffff812c0670 t key_gc_unused_keys.constprop.1 +ffffffff812c07b0 T key_schedule_gc +ffffffff812c0820 t key_garbage_collector +ffffffff812c0c10 T key_schedule_gc_links +ffffffff812c0c30 t key_gc_timer_func +ffffffff812c0c50 T key_gc_keytype +ffffffff812c0cc0 T key_user_lookup +ffffffff812c0df0 T key_user_put +ffffffff812c0e30 T key_alloc +ffffffff812c1200 T key_payload_reserve +ffffffff812c12a0 T key_put +ffffffff812c12d0 T key_lookup +ffffffff812c1370 T key_type_lookup +ffffffff812c13e0 T key_set_timeout +ffffffff812c1430 T key_type_put +ffffffff812c1440 T key_update +ffffffff812c1550 T key_revoke +ffffffff812c15c0 t __key_instantiate_and_link +ffffffff812c1700 T key_instantiate_and_link +ffffffff812c1830 T key_create_or_update +ffffffff812c1c40 T key_reject_and_link +ffffffff812c1de0 T key_invalidate +ffffffff812c1e30 T generic_key_instantiate +ffffffff812c1ea0 T register_key_type +ffffffff812c1f40 T unregister_key_type +ffffffff812c1fb0 t keyring_preparse +ffffffff812c1fc0 t keyring_free_preparse +ffffffff812c1fd0 t keyring_instantiate +ffffffff812c20b0 T restrict_link_reject +ffffffff812c20c0 t keyring_detect_cycle_iterator +ffffffff812c20e0 t keyring_gc_select_iterator +ffffffff812c2120 t keyring_gc_check_iterator +ffffffff812c2150 t keyring_read +ffffffff812c21c0 t keyring_read_iterator +ffffffff812c2200 t keyring_free_object +ffffffff812c2210 t keyring_destroy +ffffffff812c22c0 t hash_key_type_and_desc +ffffffff812c2440 t keyring_diff_objects +ffffffff812c2540 t keyring_get_key_chunk +ffffffff812c25f0 t keyring_get_object_key_chunk +ffffffff812c2600 t keyring_compare_object +ffffffff812c2640 t keyring_revoke +ffffffff812c2680 T key_default_cmp +ffffffff812c26a0 t keyring_search_iterator +ffffffff812c2780 t search_nested_keyrings +ffffffff812c2a80 t keyring_detect_cycle +ffffffff812c2b00 t keyring_describe +ffffffff812c2b60 T keyring_alloc +ffffffff812c2bd0 T keyring_search_aux +ffffffff812c2c60 T keyring_search +ffffffff812c2d10 T keyring_restrict +ffffffff812c2eb0 T find_key_to_update +ffffffff812c2f00 T find_keyring_by_name +ffffffff812c30a0 T __key_link_begin +ffffffff812c3190 T __key_link_check_live_key +ffffffff812c31b0 T __key_link +ffffffff812c31f0 T __key_link_end +ffffffff812c3250 T key_link +ffffffff812c3300 T key_unlink +ffffffff812c3390 T keyring_clear +ffffffff812c3400 T keyring_gc +ffffffff812c3480 T keyring_restriction_gc +ffffffff812c34e0 t keyctl_change_reqkey_auth +ffffffff812c3520 t get_instantiation_keyring.isra.0 +ffffffff812c35a0 t key_get_type_from_user.constprop.5 +ffffffff812c35e0 T SyS_add_key +ffffffff812c35e0 T sys_add_key +ffffffff812c37a0 T SyS_request_key +ffffffff812c37a0 T sys_request_key +ffffffff812c38f0 T keyctl_get_keyring_ID +ffffffff812c3930 T keyctl_join_session_keyring +ffffffff812c3980 T keyctl_update_key +ffffffff812c3a40 T keyctl_revoke_key +ffffffff812c3ac0 T keyctl_invalidate_key +ffffffff812c3b50 T keyctl_keyring_clear +ffffffff812c3be0 T keyctl_keyring_link +ffffffff812c3c60 T keyctl_keyring_unlink +ffffffff812c3d00 T keyctl_describe_key +ffffffff812c3e80 T keyctl_keyring_search +ffffffff812c3ff0 T keyctl_read_key +ffffffff812c40d0 T keyctl_chown_key +ffffffff812c43c0 T keyctl_setperm_key +ffffffff812c4460 T keyctl_instantiate_key_common +ffffffff812c4600 T keyctl_instantiate_key +ffffffff812c4660 T keyctl_instantiate_key_iov +ffffffff812c4700 T keyctl_reject_key +ffffffff812c47f0 T keyctl_negate_key +ffffffff812c4800 T keyctl_set_reqkey_keyring +ffffffff812c48b0 T keyctl_set_timeout +ffffffff812c4950 T keyctl_assume_authority +ffffffff812c49b0 T keyctl_get_security +ffffffff812c4a70 T keyctl_session_to_parent +ffffffff812c4c90 T keyctl_restrict_keyring +ffffffff812c4d40 T SyS_keyctl +ffffffff812c4d40 T sys_keyctl +ffffffff812c4e40 T key_task_permission +ffffffff812c4ed0 T key_validate +ffffffff812c4f10 T lookup_user_key_possessed +ffffffff812c4f20 t install_thread_keyring_to_cred.part.0 +ffffffff812c4f60 t install_process_keyring_to_cred.part.1 +ffffffff812c4fa0 T install_user_keyrings +ffffffff812c5140 T install_thread_keyring_to_cred +ffffffff812c5150 T install_process_keyring_to_cred +ffffffff812c5160 T install_session_keyring_to_cred +ffffffff812c51d0 T key_fsuid_changed +ffffffff812c5220 T key_fsgid_changed +ffffffff812c5270 T search_my_process_keyrings +ffffffff812c53d0 T search_process_keyrings +ffffffff812c54c0 T join_session_keyring +ffffffff812c5610 T lookup_user_key +ffffffff812c5ab0 T key_change_session_keyring +ffffffff812c5bc0 t umh_keys_cleanup +ffffffff812c5bd0 t umh_keys_init +ffffffff812c5be0 T complete_request_key +ffffffff812c5c30 t call_sbin_request_key +ffffffff812c5f20 T request_key_and_link +ffffffff812c6540 T wait_for_key_construction +ffffffff812c6590 T request_key +ffffffff812c6610 T request_key_with_auxdata +ffffffff812c6660 T request_key_async +ffffffff812c6670 T request_key_async_with_auxdata +ffffffff812c6680 t request_key_auth_preparse +ffffffff812c6690 t request_key_auth_free_preparse +ffffffff812c66a0 t request_key_auth_instantiate +ffffffff812c66b0 t request_key_auth_read +ffffffff812c66f0 t request_key_auth_describe +ffffffff812c6750 t request_key_auth_revoke +ffffffff812c6780 t free_request_key_auth.part.0 +ffffffff812c67c0 t request_key_auth_destroy +ffffffff812c67d0 T request_key_auth_new +ffffffff812c6980 T key_get_instantiation_authkey +ffffffff812c6a30 t logon_vet_description +ffffffff812c6a60 T user_preparse +ffffffff812c6ac0 T user_free_preparse +ffffffff812c6ad0 T user_destroy +ffffffff812c6ae0 t user_free_payload_rcu +ffffffff812c6af0 T user_revoke +ffffffff812c6b30 T user_read +ffffffff812c6b70 T user_update +ffffffff812c6bf0 T user_describe +ffffffff812c6c30 t proc_keys_stop +ffffffff812c6c40 t proc_key_users_stop +ffffffff812c6c50 t proc_key_users_open +ffffffff812c6c60 t proc_keys_open +ffffffff812c6c70 t proc_key_users_show +ffffffff812c6d10 t __key_user_next +ffffffff812c6d50 t proc_key_users_next +ffffffff812c6d80 t proc_key_users_start +ffffffff812c6e10 t proc_keys_show +ffffffff812c7170 t proc_keys_next +ffffffff812c71e0 t proc_keys_start +ffffffff812c72b0 t cap_safe_nice +ffffffff812c7320 t rootid_owns_currentns +ffffffff812c7370 T cap_capable +ffffffff812c73d0 T cap_settime +ffffffff812c73f0 T cap_ptrace_access_check +ffffffff812c7470 T cap_ptrace_traceme +ffffffff812c74e0 T cap_capget +ffffffff812c7530 T cap_capset +ffffffff812c7650 T cap_inode_need_killpriv +ffffffff812c7670 T cap_inode_killpriv +ffffffff812c7690 T cap_inode_getsecurity +ffffffff812c7870 T cap_convert_nscap +ffffffff812c79e0 T get_vfs_caps_from_disk +ffffffff812c7b20 T cap_bprm_set_creds +ffffffff812c7fd0 T cap_inode_setxattr +ffffffff812c8030 T cap_inode_removexattr +ffffffff812c80a0 T cap_task_fix_setuid +ffffffff812c8210 T cap_task_setscheduler +ffffffff812c8220 T cap_task_setioprio +ffffffff812c8230 T cap_task_setnice +ffffffff812c8240 T cap_task_prctl +ffffffff812c8550 T cap_vm_enough_memory +ffffffff812c8580 T cap_mmap_addr +ffffffff812c85c0 T cap_mmap_file +ffffffff812c85d0 T mmap_min_addr_handler +ffffffff812c8640 T crypto_mod_get +ffffffff812c8650 T crypto_mod_put +ffffffff812c8670 t crypto_larval_destroy +ffffffff812c86a0 t __crypto_alg_lookup +ffffffff812c8780 t crypto_larval_wait +ffffffff812c8800 T crypto_larval_alloc +ffffffff812c8890 T crypto_larval_kill +ffffffff812c8900 T crypto_alg_lookup +ffffffff812c8940 T crypto_probing_notify +ffffffff812c8980 T crypto_alg_mod_lookup +ffffffff812c8b00 T crypto_shoot_alg +ffffffff812c8b30 T __crypto_alloc_tfm +ffffffff812c8c90 T crypto_alloc_base +ffffffff812c8d20 T crypto_create_tfm +ffffffff812c8df0 T crypto_find_alg +ffffffff812c8e30 T crypto_alloc_tfm +ffffffff812c8f10 T crypto_destroy_tfm +ffffffff812c8f90 T crypto_has_alg +ffffffff812c8fb0 T crypto_req_done +ffffffff812c8fd0 t cipher_crypt_unaligned +ffffffff812c9050 t cipher_decrypt_unaligned +ffffffff812c9080 t cipher_encrypt_unaligned +ffffffff812c90b0 t setkey +ffffffff812c91a0 T crypto_init_cipher_ops +ffffffff812c91f0 t crypto_compress +ffffffff812c9200 t crypto_decompress +ffffffff812c9210 T crypto_init_compress_ops +ffffffff812c9230 T __crypto_memneq +ffffffff812c92b0 t crypto_check_alg +ffffffff812c9340 t __crypto_register_alg +ffffffff812c9560 t crypto_free_instance +ffffffff812c9590 t crypto_destroy_instance +ffffffff812c95a0 t crypto_remove_instance +ffffffff812c9640 t crypto_spawn_alg.isra.2 +ffffffff812c96b0 T crypto_remove_spawns +ffffffff812c98f0 T crypto_remove_final +ffffffff812c9950 T crypto_alg_tested +ffffffff812c9af0 t crypto_wait_for_test +ffffffff812c9b40 T crypto_register_alg +ffffffff812c9ba0 T crypto_unregister_alg +ffffffff812c9c40 T crypto_register_algs +ffffffff812c9cf0 T crypto_unregister_algs +ffffffff812c9d60 T crypto_register_template +ffffffff812c9dd0 T crypto_unregister_template +ffffffff812c9ee0 T crypto_lookup_template +ffffffff812c9f40 T crypto_unregister_instance +ffffffff812c9fa0 T crypto_register_instance +ffffffff812ca090 T crypto_init_spawn +ffffffff812ca0f0 T crypto_init_spawn2 +ffffffff812ca110 T crypto_grab_spawn +ffffffff812ca160 T crypto_drop_spawn +ffffffff812ca1b0 T crypto_spawn_tfm +ffffffff812ca220 T crypto_spawn_tfm2 +ffffffff812ca270 T crypto_register_notifier +ffffffff812ca280 T crypto_unregister_notifier +ffffffff812ca290 T crypto_get_attr_type +ffffffff812ca2d0 T crypto_check_attr_type +ffffffff812ca320 T crypto_attr_alg_name +ffffffff812ca360 T crypto_attr_alg2 +ffffffff812ca3b0 T crypto_attr_u32 +ffffffff812ca3e0 T crypto_inst_setname +ffffffff812ca450 T crypto_alloc_instance2 +ffffffff812ca4d0 T crypto_alloc_instance +ffffffff812ca530 T crypto_init_queue +ffffffff812ca550 T crypto_enqueue_request +ffffffff812ca5a0 T crypto_dequeue_request +ffffffff812ca5f0 T crypto_tfm_in_queue +ffffffff812ca620 T crypto_inc +ffffffff812ca6b0 T __crypto_xor +ffffffff812ca730 T crypto_alg_extsize +ffffffff812ca740 T crypto_type_has_alg +ffffffff812ca760 T scatterwalk_copychunks +ffffffff812ca910 T scatterwalk_ffwd +ffffffff812ca9d0 T scatterwalk_map_and_copy +ffffffff812caa20 t crypto_info_open +ffffffff812caa30 t c_show +ffffffff812cabd0 t c_next +ffffffff812cabe0 t c_stop +ffffffff812cabf0 t c_start +ffffffff812cac10 t crypto_aead_exit_tfm +ffffffff812cac30 t crypto_aead_init_tfm +ffffffff812cac70 t aead_geniv_setauthsize +ffffffff812cacb0 t crypto_aead_report +ffffffff812cada0 t crypto_aead_show +ffffffff812cae20 t crypto_aead_free_instance +ffffffff812cae50 T crypto_aead_setkey +ffffffff812caf00 t aead_geniv_setkey +ffffffff812caf10 T crypto_aead_setauthsize +ffffffff812caf40 T aead_geniv_alloc +ffffffff812cb100 T aead_geniv_free +ffffffff812cb120 T aead_init_geniv +ffffffff812cb1c0 T aead_exit_geniv +ffffffff812cb1e0 T crypto_grab_aead +ffffffff812cb1f0 T crypto_alloc_aead +ffffffff812cb200 T crypto_register_aead +ffffffff812cb250 T crypto_unregister_aead +ffffffff812cb260 T crypto_register_aeads +ffffffff812cb300 T crypto_unregister_aeads +ffffffff812cb350 T aead_register_instance +ffffffff812cb3a0 t crypto_ablkcipher_ctxsize +ffffffff812cb3b0 t crypto_init_ablkcipher_ops +ffffffff812cb400 t crypto_init_givcipher_ops +ffffffff812cb460 t crypto_ablkcipher_report +ffffffff812cb540 t crypto_givcipher_report +ffffffff812cb620 t crypto_ablkcipher_show +ffffffff812cb6d0 t crypto_givcipher_show +ffffffff812cb780 t setkey +ffffffff812cb860 T __ablkcipher_walk_complete +ffffffff812cb8e0 T ablkcipher_walk_done +ffffffff812cba70 t ablkcipher_walk_next +ffffffff812cbd00 T ablkcipher_walk_phys +ffffffff812cbe50 t async_encrypt +ffffffff812cbe90 t async_decrypt +ffffffff812cbed0 t crypto_blkcipher_ctxsize +ffffffff812cbf00 t crypto_init_blkcipher_ops +ffffffff812cbf90 t crypto_blkcipher_report +ffffffff812cc070 t crypto_blkcipher_show +ffffffff812cc100 t setkey +ffffffff812cc1e0 t async_setkey +ffffffff812cc1f0 T blkcipher_walk_done +ffffffff812cc430 t blkcipher_walk_next +ffffffff812cc8b0 t blkcipher_walk_first +ffffffff812cc9e0 T blkcipher_walk_virt +ffffffff812cca20 T blkcipher_walk_phys +ffffffff812cca60 T blkcipher_walk_virt_block +ffffffff812ccaa0 T blkcipher_aead_walk_virt_block +ffffffff812ccad0 t skcipher_setkey_blkcipher +ffffffff812ccb10 t skcipher_encrypt_blkcipher +ffffffff812ccb60 t skcipher_decrypt_blkcipher +ffffffff812ccbb0 t skcipher_setkey_ablkcipher +ffffffff812ccc00 t skcipher_encrypt_ablkcipher +ffffffff812ccc60 t skcipher_decrypt_ablkcipher +ffffffff812cccc0 t crypto_skcipher_exit_tfm +ffffffff812ccce0 t crypto_skcipher_free_instance +ffffffff812cccf0 t crypto_skcipher_report +ffffffff812ccde0 t crypto_skcipher_show +ffffffff812cce90 t skcipher_setkey +ffffffff812ccf60 t crypto_skcipher_init_tfm +ffffffff812cd0e0 t crypto_exit_skcipher_ops_blkcipher +ffffffff812cd0f0 t crypto_exit_skcipher_ops_ablkcipher +ffffffff812cd100 t crypto_skcipher_extsize +ffffffff812cd130 T skcipher_walk_done +ffffffff812cd310 t skcipher_walk_next +ffffffff812cd880 t skcipher_walk_first +ffffffff812cd980 t skcipher_walk_skcipher +ffffffff812cda40 t skcipher_walk_aead_common +ffffffff812cdb80 T skcipher_walk_complete +ffffffff812cdce0 T skcipher_walk_virt +ffffffff812cdd10 T skcipher_walk_atomise +ffffffff812cdd20 T skcipher_walk_async +ffffffff812cdd40 T skcipher_walk_aead +ffffffff812cdd50 T skcipher_walk_aead_encrypt +ffffffff812cdd60 T skcipher_walk_aead_decrypt +ffffffff812cdd80 T crypto_grab_skcipher +ffffffff812cdd90 T crypto_alloc_skcipher +ffffffff812cdda0 T crypto_has_skcipher2 +ffffffff812cddb0 T crypto_register_skcipher +ffffffff812cde10 T crypto_unregister_skcipher +ffffffff812cde20 T crypto_register_skciphers +ffffffff812cded0 T crypto_unregister_skciphers +ffffffff812cdf30 T skcipher_register_instance +ffffffff812cdf90 t seqiv_create +ffffffff812ce040 t seqiv_free +ffffffff812ce050 t seqiv_aead_decrypt +ffffffff812ce110 t seqiv_aead_encrypt_complete2.part.0 +ffffffff812ce150 t seqiv_aead_encrypt +ffffffff812ce380 t seqiv_aead_encrypt_complete +ffffffff812ce3b0 t hash_walk_next +ffffffff812ce440 t hash_walk_new_entry +ffffffff812ce490 t ahash_nosetkey +ffffffff812ce4a0 t ahash_no_export +ffffffff812ce4b0 t ahash_restore_req +ffffffff812ce510 t ahash_op_unaligned_done +ffffffff812ce590 t ahash_def_finup_finish1 +ffffffff812ce5e0 t ahash_def_finup_done1 +ffffffff812ce660 t ahash_def_finup_done2 +ffffffff812ce690 t ahash_save_req +ffffffff812ce720 t crypto_ahash_op +ffffffff812ce780 t ahash_def_finup +ffffffff812ce7c0 t crypto_ahash_report +ffffffff812ce850 t crypto_ahash_show +ffffffff812ce8b0 t crypto_ahash_init_tfm +ffffffff812ce950 t crypto_ahash_extsize +ffffffff812ce970 t ahash_no_import +ffffffff812ce980 T crypto_hash_walk_done +ffffffff812cea50 T crypto_hash_walk_first +ffffffff812cea90 T crypto_ahash_walk_first +ffffffff812cead0 T crypto_ahash_setkey +ffffffff812ceb80 T crypto_ahash_final +ffffffff812ceb90 T crypto_ahash_finup +ffffffff812ceba0 T crypto_ahash_digest +ffffffff812cebc0 T crypto_alloc_ahash +ffffffff812cebd0 T crypto_has_ahash +ffffffff812cebe0 T crypto_register_ahash +ffffffff812cec20 T crypto_unregister_ahash +ffffffff812cec30 T crypto_register_ahashes +ffffffff812cecd0 T crypto_unregister_ahashes +ffffffff812ced20 T ahash_register_instance +ffffffff812ced60 T ahash_free_instance +ffffffff812ced80 T crypto_init_ahash_spawn +ffffffff812ced90 T ahash_attr_alg +ffffffff812cedb0 T crypto_hash_alg_has_setkey +ffffffff812cede0 T shash_no_setkey +ffffffff812cedf0 t shash_async_init +ffffffff812cee30 t shash_async_export +ffffffff812cee50 t shash_async_import +ffffffff812cee90 t crypto_shash_init_tfm +ffffffff812ceeb0 t shash_prepare_alg +ffffffff812cef40 t shash_default_import +ffffffff812cef60 t shash_default_export +ffffffff812cef80 t crypto_exit_shash_ops_async +ffffffff812cef90 t crypto_shash_report +ffffffff812cf020 t crypto_shash_show +ffffffff812cf060 T crypto_shash_setkey +ffffffff812cf120 t shash_async_setkey +ffffffff812cf130 T crypto_shash_update +ffffffff812cf230 T crypto_shash_final +ffffffff812cf2d0 t shash_finup_unaligned +ffffffff812cf300 t shash_async_final +ffffffff812cf310 T crypto_shash_finup +ffffffff812cf330 t shash_digest_unaligned +ffffffff812cf380 T crypto_shash_digest +ffffffff812cf3b0 T shash_ahash_update +ffffffff812cf3f0 t shash_async_update +ffffffff812cf400 T shash_ahash_finup +ffffffff812cf480 t shash_async_finup +ffffffff812cf4a0 T shash_ahash_digest +ffffffff812cf570 t shash_async_digest +ffffffff812cf590 T crypto_init_shash_ops_async +ffffffff812cf660 T crypto_alloc_shash +ffffffff812cf670 T crypto_register_shash +ffffffff812cf690 T crypto_unregister_shash +ffffffff812cf6a0 T crypto_register_shashes +ffffffff812cf750 T crypto_unregister_shashes +ffffffff812cf7d0 T shash_register_instance +ffffffff812cf7f0 T shash_free_instance +ffffffff812cf810 T crypto_init_shash_spawn +ffffffff812cf820 T shash_attr_alg +ffffffff812cf840 t crypto_akcipher_exit_tfm +ffffffff812cf850 t crypto_akcipher_init_tfm +ffffffff812cf880 t crypto_akcipher_free_instance +ffffffff812cf890 t crypto_akcipher_report +ffffffff812cf910 t crypto_akcipher_show +ffffffff812cf920 T crypto_grab_akcipher +ffffffff812cf930 T crypto_alloc_akcipher +ffffffff812cf940 T crypto_register_akcipher +ffffffff812cf960 T crypto_unregister_akcipher +ffffffff812cf970 T akcipher_register_instance +ffffffff812cf990 t crypto_kpp_exit_tfm +ffffffff812cf9a0 t crypto_kpp_init_tfm +ffffffff812cf9d0 t crypto_kpp_report +ffffffff812cfa40 t crypto_kpp_show +ffffffff812cfa50 T crypto_alloc_kpp +ffffffff812cfa60 T crypto_register_kpp +ffffffff812cfa80 T crypto_unregister_kpp +ffffffff812cfa90 t rsa_max_size +ffffffff812cfaa0 t rsa_free_mpi_key +ffffffff812cfae0 t rsa_exit_tfm +ffffffff812cfaf0 t rsa_set_priv_key +ffffffff812cfbf0 t rsa_set_pub_key +ffffffff812cfcd0 t rsa_exit +ffffffff812cfcf0 t rsa_init +ffffffff812cfd40 t _rsa_dec.isra.1 +ffffffff812cfd40 t _rsa_enc.isra.2 +ffffffff812cfd40 t _rsa_sign.isra.4 +ffffffff812cfd40 t _rsa_verify.isra.3 +ffffffff812cfda0 t rsa_dec +ffffffff812cfe60 t rsa_enc +ffffffff812cff20 t rsa_verify +ffffffff812cffe0 t rsa_sign +ffffffff812d00a0 T rsa_get_n +ffffffff812d00c0 T rsa_get_e +ffffffff812d00f0 T rsa_get_d +ffffffff812d0120 T rsa_get_p +ffffffff812d0150 T rsa_get_q +ffffffff812d0180 T rsa_get_dp +ffffffff812d01b0 T rsa_get_dq +ffffffff812d01e0 T rsa_get_qinv +ffffffff812d0210 T rsa_parse_pub_key +ffffffff812d0230 T rsa_parse_priv_key +ffffffff812d0250 t pkcs1pad_set_pub_key +ffffffff812d02a0 t pkcs1pad_set_priv_key +ffffffff812d02f0 t pkcs1pad_get_max_size +ffffffff812d0300 t pkcs1pad_decrypt_complete +ffffffff812d0400 t pkcs1pad_decrypt_complete_cb +ffffffff812d0460 t pkcs1pad_verify_complete +ffffffff812d05a0 t pkcs1pad_verify_complete_cb +ffffffff812d0600 t pkcs1pad_encrypt_sign_complete +ffffffff812d06c0 t pkcs1pad_encrypt_sign_complete_cb +ffffffff812d0720 t pkcs1pad_exit_tfm +ffffffff812d0730 t pkcs1pad_init_tfm +ffffffff812d0760 t pkcs1pad_free +ffffffff812d0780 t pkcs1pad_create +ffffffff812d09a0 t pkcs1pad_sg_set_buf +ffffffff812d0a60 t pkcs1pad_verify +ffffffff812d0b40 t pkcs1pad_decrypt +ffffffff812d0c20 t pkcs1pad_sign +ffffffff812d0da0 t pkcs1pad_encrypt +ffffffff812d0f60 t crypto_acomp_exit_tfm +ffffffff812d0f80 t crypto_acomp_report +ffffffff812d1000 t crypto_acomp_show +ffffffff812d1010 t crypto_acomp_init_tfm +ffffffff812d1070 t crypto_acomp_extsize +ffffffff812d1090 T crypto_alloc_acomp +ffffffff812d10a0 T acomp_request_alloc +ffffffff812d10e0 T acomp_request_free +ffffffff812d1130 T crypto_register_acomp +ffffffff812d1150 T crypto_unregister_acomp +ffffffff812d1160 T crypto_register_acomps +ffffffff812d1220 T crypto_unregister_acomps +ffffffff812d1270 t scomp_acomp_comp_decomp +ffffffff812d13a0 t scomp_acomp_decompress +ffffffff812d13b0 t scomp_acomp_compress +ffffffff812d13c0 t crypto_scomp_report +ffffffff812d1440 t crypto_scomp_show +ffffffff812d1450 t crypto_scomp_free_scratches.part.0 +ffffffff812d14a0 t crypto_exit_scomp_ops_async +ffffffff812d1510 t crypto_scomp_alloc_scratches +ffffffff812d1590 t crypto_scomp_init_tfm +ffffffff812d1610 T crypto_init_scomp_ops_async +ffffffff812d1690 T crypto_acomp_scomp_alloc_ctx +ffffffff812d16d0 T crypto_acomp_scomp_free_ctx +ffffffff812d1700 T crypto_register_scomp +ffffffff812d1720 T crypto_unregister_scomp +ffffffff812d1730 T crypto_register_scomps +ffffffff812d1800 T crypto_unregister_scomps +ffffffff812d1860 t cryptomgr_probe +ffffffff812d1930 t cryptomgr_notify +ffffffff812d1e30 t cryptomgr_test +ffffffff812d1e70 t alg_test_null +ffffffff812d1e80 t testmgr_alloc_buf +ffffffff812d1ef0 t test_cipher +ffffffff812d21a0 t do_test_kpp +ffffffff812d26f0 t test_akcipher_one +ffffffff812d2d90 t alg_test_drbg +ffffffff812d30d0 t alg_test_kpp +ffffffff812d3190 t test_comp +ffffffff812d33e0 t __test_skcipher +ffffffff812d3f30 t alg_test_cprng +ffffffff812d4210 t test_acomp +ffffffff812d47a0 t __test_hash +ffffffff812d58a0 t test_hash +ffffffff812d5910 t alg_test_hash +ffffffff812d59a0 t __test_aead +ffffffff812d6f90 t alg_find_test +ffffffff812d7020 t alg_test_akcipher +ffffffff812d70e0 t test_skcipher +ffffffff812d7180 t alg_test_skcipher +ffffffff812d7210 t alg_test_comp +ffffffff812d72e0 t alg_test_crc32c +ffffffff812d73f0 t test_aead +ffffffff812d7490 t alg_test_aead +ffffffff812d7520 T alg_test +ffffffff812d77c0 t crypto_cmac_digest_init +ffffffff812d77f0 t crypto_cmac_digest_setkey +ffffffff812d7920 t crypto_cmac_digest_final +ffffffff812d79d0 t crypto_cmac_digest_update +ffffffff812d7b00 t cmac_exit_tfm +ffffffff812d7b10 t cmac_init_tfm +ffffffff812d7b40 t cmac_create +ffffffff812d7c90 t hmac_export +ffffffff812d7cc0 t hmac_import +ffffffff812d7d20 t hmac_init +ffffffff812d7d40 t hmac_update +ffffffff812d7d60 t hmac_setkey +ffffffff812d7f30 t hmac_finup +ffffffff812d7fe0 t hmac_final +ffffffff812d8090 t hmac_exit_tfm +ffffffff812d80c0 t hmac_init_tfm +ffffffff812d8120 t hmac_create +ffffffff812d82b0 t null_init +ffffffff812d82c0 t null_update +ffffffff812d82d0 t null_final +ffffffff812d82e0 t null_digest +ffffffff812d82f0 t null_crypt +ffffffff812d8300 t null_compress +ffffffff812d8330 t skcipher_null_crypt +ffffffff812d83b0 t null_hash_setkey +ffffffff812d83c0 t null_setkey +ffffffff812d83d0 T crypto_get_default_null_skcipher +ffffffff812d8430 T crypto_put_default_null_skcipher +ffffffff812d8470 t sha1_base_init +ffffffff812d84a0 t sha1_generic_block_fn +ffffffff812d8500 T crypto_sha1_update +ffffffff812d8620 t sha1_final +ffffffff812d8760 T crypto_sha1_finup +ffffffff812d88a0 t sha224_base_init +ffffffff812d88f0 t sha256_base_init +ffffffff812d8940 t sha256_transform +ffffffff812da410 t sha256_generic_block_fn +ffffffff812da450 T crypto_sha256_update +ffffffff812da570 t sha256_final +ffffffff812da6b0 T crypto_sha256_finup +ffffffff812da7f0 T gf128mul_x8_ble +ffffffff812da830 T gf128mul_lle +ffffffff812daa70 T gf128mul_bbe +ffffffff812daca0 T gf128mul_free_64k +ffffffff812dacd0 T gf128mul_init_64k_bbe +ffffffff812daeb0 T gf128mul_64k_bbe +ffffffff812daf00 T gf128mul_init_4k_lle +ffffffff812db010 T gf128mul_init_4k_bbe +ffffffff812db110 T gf128mul_4k_lle +ffffffff812db190 T gf128mul_4k_bbe +ffffffff812db210 t crypto_ecb_setkey +ffffffff812db250 t crypto_ecb_free +ffffffff812db270 t crypto_ecb_crypt +ffffffff812db310 t crypto_ecb_decrypt +ffffffff812db370 t crypto_ecb_encrypt +ffffffff812db3d0 t crypto_ecb_exit_tfm +ffffffff812db3e0 t crypto_ecb_init_tfm +ffffffff812db410 t crypto_ecb_alloc +ffffffff812db500 t crypto_ctr_setkey +ffffffff812db540 t crypto_rfc3686_setkey +ffffffff812db5a0 t crypto_rfc3686_crypt +ffffffff812db630 t crypto_ctr_free +ffffffff812db650 t crypto_rfc3686_free +ffffffff812db670 t crypto_ctr_crypt +ffffffff812db8d0 t crypto_ctr_exit_tfm +ffffffff812db8e0 t crypto_rfc3686_exit_tfm +ffffffff812db8f0 t crypto_ctr_init_tfm +ffffffff812db920 t crypto_rfc3686_init_tfm +ffffffff812db960 t crypto_rfc3686_create +ffffffff812dbc10 t crypto_ctr_alloc +ffffffff812dbd40 t crypto_gcm_setauthsize +ffffffff812dbd70 t gcm_hash_len_done +ffffffff812dbdc0 t gcm_enc_copy_hash +ffffffff812dbe10 t crypto_gcm_verify +ffffffff812dbe80 t gcm_dec_hash_continue +ffffffff812dbf30 t gcm_decrypt_done +ffffffff812dbf50 t crypto_gcm_init_common +ffffffff812dc110 t crypto_rfc4106_crypt +ffffffff812dc3d0 t crypto_rfc4106_decrypt +ffffffff812dc410 t crypto_rfc4106_encrypt +ffffffff812dc450 t gcm_hash_crypt_remain_continue +ffffffff812dc570 t gcm_hash_crypt_continue +ffffffff812dc610 t gcm_hash_crypt_done +ffffffff812dc640 t gcm_hash_assoc_remain_continue +ffffffff812dc6d0 t gcm_hash_assoc_continue +ffffffff812dc770 t gcm_hash_assoc_done +ffffffff812dc7a0 t gcm_hash_init_continue +ffffffff812dc830 t gcm_hash +ffffffff812dc8b0 t crypto_gcm_decrypt +ffffffff812dc920 t gcm_encrypt_continue +ffffffff812dc990 t crypto_gcm_encrypt +ffffffff812dca80 t gcm_encrypt_done +ffffffff812dcab0 t gcm_hash_init_done +ffffffff812dcae0 t gcm_hash_assoc_remain_done +ffffffff812dcb10 t gcm_hash_crypt_remain_done +ffffffff812dcb40 t crypto_gcm_exit_tfm +ffffffff812dcb60 t crypto_rfc4106_exit_tfm +ffffffff812dcb70 t crypto_gcm_init_tfm +ffffffff812dcc00 t crypto_rfc4106_init_tfm +ffffffff812dcc50 t crypto_gcm_setkey +ffffffff812dcde0 t crypto_gcm_free +ffffffff812dce10 t crypto_rfc4106_free +ffffffff812dce30 t crypto_rfc4543_free +ffffffff812dce40 t crypto_gcm_create_common +ffffffff812dd190 t crypto_gcm_base_create +ffffffff812dd210 t crypto_gcm_create +ffffffff812dd2b0 t crypto_rfc4106_create +ffffffff812dd480 t crypto_rfc4543_create +ffffffff812dd650 t crypto_rfc4106_setauthsize +ffffffff812dd680 t crypto_rfc4543_setauthsize +ffffffff812dd6a0 t crypto_rfc4106_setkey +ffffffff812dd700 t crypto_rfc4543_setkey +ffffffff812dd760 t crypto_rfc4543_crypt +ffffffff812dd980 t crypto_rfc4543_decrypt +ffffffff812dd990 t crypto_rfc4543_encrypt +ffffffff812dd9a0 t crypto_rfc4543_exit_tfm +ffffffff812dd9c0 t crypto_rfc4543_init_tfm +ffffffff812dda40 t crypto_ccm_setauthsize +ffffffff812dda70 t crypto_cbcmac_digest_setkey +ffffffff812dda80 t crypto_cbcmac_digest_final +ffffffff812ddad0 t crypto_cbcmac_digest_update +ffffffff812ddb70 t crypto_cbcmac_digest_init +ffffffff812ddba0 t crypto_ccm_exit_tfm +ffffffff812ddbc0 t crypto_rfc4309_exit_tfm +ffffffff812ddbd0 t cbcmac_exit_tfm +ffffffff812ddbe0 t cbcmac_init_tfm +ffffffff812ddc10 t crypto_ccm_encrypt_done +ffffffff812ddc60 t crypto_ccm_init_crypt +ffffffff812dde90 t crypto_rfc4309_crypt +ffffffff812de160 t crypto_rfc4309_decrypt +ffffffff812de1a0 t crypto_rfc4309_encrypt +ffffffff812de1e0 t crypto_ccm_auth +ffffffff812de760 t crypto_ccm_encrypt +ffffffff812de8a0 t crypto_ccm_decrypt +ffffffff812dea20 t crypto_ccm_decrypt_done +ffffffff812deac0 t crypto_ccm_setkey +ffffffff812deb60 t crypto_ccm_init_tfm +ffffffff812debe0 t crypto_rfc4309_init_tfm +ffffffff812dec30 t crypto_ccm_create_common +ffffffff812defa0 t crypto_ccm_base_create +ffffffff812df020 t crypto_ccm_create +ffffffff812df0e0 t crypto_ccm_free +ffffffff812df110 t crypto_rfc4309_free +ffffffff812df130 t crypto_rfc4309_create +ffffffff812df300 t crypto_rfc4309_setauthsize +ffffffff812df330 t crypto_rfc4309_setkey +ffffffff812df390 t cbcmac_create +ffffffff812df4c0 t cryptd_blkcipher_setkey +ffffffff812df500 t cryptd_skcipher_setkey +ffffffff812df540 t cryptd_hash_export +ffffffff812df560 t cryptd_hash_import +ffffffff812df5a0 t cryptd_blkcipher_exit_tfm +ffffffff812df5b0 t cryptd_skcipher_exit_tfm +ffffffff812df5c0 t cryptd_hash_exit_tfm +ffffffff812df5d0 t cryptd_aead_exit_tfm +ffffffff812df5e0 t cryptd_skcipher_free +ffffffff812df5f0 t cryptd_skcipher_complete +ffffffff812df650 t cryptd_hash_complete +ffffffff812df6b0 t cryptd_hash_init +ffffffff812df700 t cryptd_blkcipher_crypt +ffffffff812df7c0 t cryptd_blkcipher_decrypt +ffffffff812df7e0 t cryptd_blkcipher_encrypt +ffffffff812df800 t cryptd_aead_crypt +ffffffff812df890 t cryptd_aead_decrypt +ffffffff812df8b0 t cryptd_aead_encrypt +ffffffff812df8d0 t cryptd_enqueue_request +ffffffff812df950 t cryptd_blkcipher_decrypt_enqueue +ffffffff812df980 t cryptd_blkcipher_encrypt_enqueue +ffffffff812df9b0 t cryptd_skcipher_decrypt_enqueue +ffffffff812df9e0 t cryptd_skcipher_encrypt_enqueue +ffffffff812dfa10 t cryptd_hash_digest_enqueue +ffffffff812dfa40 t cryptd_hash_finup_enqueue +ffffffff812dfa70 t cryptd_hash_final_enqueue +ffffffff812dfaa0 t cryptd_hash_update_enqueue +ffffffff812dfad0 t cryptd_hash_init_enqueue +ffffffff812dfb00 t cryptd_aead_decrypt_enqueue +ffffffff812dfb30 t cryptd_aead_encrypt_enqueue +ffffffff812dfb60 t cryptd_blkcipher_init_tfm +ffffffff812dfba0 t cryptd_init_instance +ffffffff812dfca0 t cryptd_skcipher_decrypt +ffffffff812dfdb0 t cryptd_skcipher_encrypt +ffffffff812dfec0 t cryptd_skcipher_init_tfm +ffffffff812dfef0 t cryptd_hash_init_tfm +ffffffff812dff20 t cryptd_aead_init_tfm +ffffffff812dff60 t cryptd_hash_digest +ffffffff812dffa0 t cryptd_hash_setkey +ffffffff812dffe0 t cryptd_hash_finup +ffffffff812e0010 t cryptd_hash_final +ffffffff812e0040 t cryptd_hash_update +ffffffff812e0070 t cryptd_aead_setauthsize +ffffffff812e0080 t cryptd_aead_setkey +ffffffff812e0090 t cryptd_queue_worker +ffffffff812e0140 t cryptd_free +ffffffff812e0190 t cryptd_create +ffffffff812e08f0 T cryptd_alloc_ablkcipher +ffffffff812e0990 T cryptd_ablkcipher_child +ffffffff812e09a0 T cryptd_ablkcipher_queued +ffffffff812e09b0 T cryptd_free_ablkcipher +ffffffff812e09c0 T cryptd_alloc_skcipher +ffffffff812e0a50 T cryptd_skcipher_child +ffffffff812e0a60 T cryptd_skcipher_queued +ffffffff812e0a70 T cryptd_free_skcipher +ffffffff812e0a90 T cryptd_alloc_ahash +ffffffff812e0b20 T cryptd_ahash_child +ffffffff812e0b30 T cryptd_shash_desc +ffffffff812e0b40 T cryptd_ahash_queued +ffffffff812e0b50 T cryptd_free_ahash +ffffffff812e0b70 T cryptd_alloc_aead +ffffffff812e0c00 T cryptd_aead_child +ffffffff812e0c10 T cryptd_aead_queued +ffffffff812e0c20 T cryptd_free_aead +ffffffff812e0c31 t cryptd_fini_queue.constprop.9 +ffffffff812e0c80 t des_encrypt +ffffffff812e0eb0 t des_decrypt +ffffffff812e10e0 t des3_ede_encrypt +ffffffff812e1560 t des3_ede_decrypt +ffffffff812e19e0 T des_ekey +ffffffff812e2180 t des_setkey +ffffffff812e2260 T __des3_ede_setkey +ffffffff812e29e0 t des3_ede_setkey +ffffffff812e2a00 t aes_encrypt +ffffffff812e36f0 t aes_decrypt +ffffffff812e4420 T crypto_aes_expand_key +ffffffff812e4840 T crypto_aes_set_key +ffffffff812e4860 t arc4_set_key +ffffffff812e48d0 t arc4_crypt +ffffffff812e4970 t arc4_crypt_one +ffffffff812e4980 t ecb_arc4_crypt +ffffffff812e4a10 t chksum_init +ffffffff812e4a20 t chksum_setkey +ffffffff812e4a40 t chksum_final +ffffffff812e4a50 t crc32c_cra_init +ffffffff812e4a60 t chksum_digest +ffffffff812e4a80 t chksum_finup +ffffffff812e4aa0 t chksum_update +ffffffff812e4ac0 t crypto_authenc_genicv +ffffffff812e4b70 t crypto_authenc_encrypt_done +ffffffff812e4ba0 t authenc_geniv_ahash_done +ffffffff812e4bf0 t crypto_authenc_encrypt +ffffffff812e4d80 t crypto_authenc_exit_tfm +ffffffff812e4db0 t crypto_authenc_init_tfm +ffffffff812e4e70 t crypto_authenc_create +ffffffff812e5130 t crypto_authenc_free +ffffffff812e5160 t crypto_authenc_decrypt_tail.isra.0 +ffffffff812e5270 t crypto_authenc_decrypt +ffffffff812e5300 t authenc_verify_ahash_done +ffffffff812e5330 T crypto_authenc_extractkeys +ffffffff812e5390 t crypto_authenc_setkey +ffffffff812e5450 t crypto_authenc_esn_setauthsize +ffffffff812e5460 t crypto_authenc_esn_copy +ffffffff812e5510 t crypto_authenc_esn_decrypt_tail +ffffffff812e5680 t authenc_esn_verify_ahash_done +ffffffff812e56a0 t crypto_authenc_esn_decrypt +ffffffff812e5820 t crypto_authenc_esn_setkey +ffffffff812e58e0 t crypto_authenc_esn_exit_tfm +ffffffff812e5910 t crypto_authenc_esn_init_tfm +ffffffff812e59e0 t crypto_authenc_esn_create +ffffffff812e5c90 t crypto_authenc_esn_free +ffffffff812e5cc0 t crypto_authenc_esn_genicv_tail.isra.0 +ffffffff812e5d80 t authenc_esn_geniv_ahash_done +ffffffff812e5da0 t crypto_authenc_esn_genicv +ffffffff812e5ed0 t crypto_authenc_esn_encrypt_done +ffffffff812e5f00 t crypto_authenc_esn_encrypt +ffffffff812e6020 t crypto_rng_init_tfm +ffffffff812e6030 t crypto_rng_report +ffffffff812e60b0 t crypto_rng_show +ffffffff812e60e0 T crypto_rng_reset +ffffffff812e6170 T crypto_alloc_rng +ffffffff812e6180 T crypto_get_default_rng +ffffffff812e6210 T crypto_put_default_rng +ffffffff812e6230 T crypto_del_default_rng +ffffffff812e6280 T crypto_register_rng +ffffffff812e62c0 T crypto_unregister_rng +ffffffff812e62d0 T crypto_register_rngs +ffffffff812e63f0 T crypto_unregister_rngs +ffffffff812e6450 t drbg_kcapi_set_entropy +ffffffff812e64a0 t drbg_fini_hash_kernel +ffffffff812e64d0 t drbg_kcapi_hmacsetkey +ffffffff812e6500 t drbg_schedule_async_seed +ffffffff812e6520 t drbg_async_seed +ffffffff812e6630 t drbg_seed +ffffffff812e6990 t drbg_kcapi_random +ffffffff812e6bb0 t drbg_init_hash_kernel +ffffffff812e6c60 t drbg_kcapi_init +ffffffff812e6c80 t drbg_kcapi_hash.isra.0 +ffffffff812e6ce0 t drbg_hmac_update +ffffffff812e6f20 t drbg_hmac_generate +ffffffff812e71c0 t drbg_uninstantiate +ffffffff812e7280 t drbg_kcapi_seed +ffffffff812e76f0 t drbg_kcapi_cleanup +ffffffff812e76f9 t jent_loop_shuffle +ffffffff812e77cb t jent_fold_time +ffffffff812e789e t jent_memaccess +ffffffff812e79c3 t jent_stuck +ffffffff812e7a42 t jent_measure_jitter +ffffffff812e7ae1 t jent_unbiased_bit +ffffffff812e7b32 t jent_stir_pool +ffffffff812e7bd8 t jent_gen_entropy +ffffffff812e7d95 t jent_fips_test +ffffffff812e7e05 T jent_read_entropy +ffffffff812e7e9e T jent_entropy_collector_alloc +ffffffff812e7fa6 T jent_entropy_collector_free +ffffffff812e7fe4 T jent_entropy_init +ffffffff812e81d0 t jent_kcapi_reset +ffffffff812e81e0 t jent_kcapi_cleanup +ffffffff812e8220 t jent_kcapi_init +ffffffff812e8250 t jent_kcapi_random +ffffffff812e8290 T jent_rol64 +ffffffff812e82a0 T jent_zalloc +ffffffff812e82b0 T jent_zfree +ffffffff812e82c0 T jent_fips_enabled +ffffffff812e82d0 T jent_panic +ffffffff812e82e0 T jent_memcpy +ffffffff812e82f0 T jent_get_nstime +ffffffff812e8320 t ghash_exit_tfm +ffffffff812e8330 t ghash_setkey +ffffffff812e8370 t ghash_final +ffffffff812e83c0 t ghash_update +ffffffff812e84c0 t ghash_init +ffffffff812e84e0 t alg_sock_destruct +ffffffff812e8510 T af_alg_release +ffffffff812e8540 t alg_create +ffffffff812e85b0 t alg_setsockopt +ffffffff812e86e0 t alg_get_type +ffffffff812e8750 t alg_bind +ffffffff812e8870 t af_alg_data_wakeup.part.1 +ffffffff812e88f0 T af_alg_register_type +ffffffff812e89c0 T af_alg_unregister_type +ffffffff812e8a60 T af_alg_release_parent +ffffffff812e8ae0 T af_alg_accept +ffffffff812e8c60 t alg_accept +ffffffff812e8c70 T af_alg_make_sg +ffffffff812e8da0 T af_alg_link_sg +ffffffff812e8de0 T af_alg_free_sg +ffffffff812e8e40 T af_alg_cmsg_send +ffffffff812e8f30 T af_alg_alloc_tsgl +ffffffff812e9000 T af_alg_count_tsgl +ffffffff812e9080 T af_alg_pull_tsgl +ffffffff812e9220 T af_alg_free_areq_sgls +ffffffff812e9390 T af_alg_wait_for_wmem +ffffffff812e94c0 T af_alg_wmem_wakeup +ffffffff812e9560 T af_alg_wait_for_data +ffffffff812e9680 T af_alg_data_wakeup +ffffffff812e96a0 T af_alg_sendmsg +ffffffff812e9af0 T af_alg_sendpage +ffffffff812e9ce0 T af_alg_free_resources +ffffffff812e9d10 T af_alg_async_cb +ffffffff812e9d70 T af_alg_poll +ffffffff812e9e00 T af_alg_alloc_areq +ffffffff812e9e70 T af_alg_get_rsgl +ffffffff812ea070 t hash_accept +ffffffff812ea210 t hash_sock_destruct +ffffffff812ea270 t hash_accept_parent_nokey +ffffffff812ea330 t hash_accept_parent +ffffffff812ea350 t hash_setkey +ffffffff812ea360 t hash_release +ffffffff812ea370 t hash_bind +ffffffff812ea380 t hash_check_key.isra.1 +ffffffff812ea430 t hash_accept_nokey +ffffffff812ea470 t hash_alloc_result.part.2 +ffffffff812ea4c0 t hash_sendpage +ffffffff812ea720 t hash_sendpage_nokey +ffffffff812ea770 t hash_recvmsg +ffffffff812ea980 t hash_recvmsg_nokey +ffffffff812ea9c0 t hash_sendmsg +ffffffff812eac90 t hash_sendmsg_nokey +ffffffff812eacd0 t vli_num_bits +ffffffff812ead30 t mul_64_64 +ffffffff812ead90 t vli_mod_add +ffffffff812eae60 t ecc_point_is_zero +ffffffff812eaeb0 t ecc_alloc_digits_space +ffffffff812eaed0 t ecc_alloc_point +ffffffff812eaf30 t vli_mmod_fast +ffffffff812eb600 t vli_mod_square_fast +ffffffff812eb760 t vli_mod_mult_fast +ffffffff812eb8c0 t apply_z +ffffffff812eb960 t vli_mod_sub +ffffffff812eb9e0 t xycz_add_c +ffffffff812ebbd0 t xycz_add +ffffffff812ebd30 t ecc_free_point.part.1 +ffffffff812ebd50 t ecc_point_mult.isra.2 +ffffffff812ecda0 T ecc_is_key_valid +ffffffff812ece50 T ecc_gen_privkey +ffffffff812ecfb0 T ecc_make_pub_key +ffffffff812ed100 T crypto_ecdh_shared_secret +ffffffff812ed300 t ecdh_max_size +ffffffff812ed310 t ecdh_init +ffffffff812ed320 t ecdh_compute_value +ffffffff812ed450 t ecdh_set_secret +ffffffff812ed4e0 t ecdh_exit +ffffffff812ed4f0 T crypto_ecdh_key_len +ffffffff812ed500 T crypto_ecdh_encode_key +ffffffff812ed550 T crypto_ecdh_decode_key +ffffffff812ed5a0 t xor_sse_5 +ffffffff812ed9c0 t xor_sse_4 +ffffffff812edd10 t xor_sse_3 +ffffffff812edfc0 t xor_sse_2 +ffffffff812ee1a0 t xor_sse_5_pf64 +ffffffff812ee520 t xor_sse_4_pf64 +ffffffff812ee800 t xor_sse_3_pf64 +ffffffff812eea50 t xor_sse_2_pf64 +ffffffff812eebe0 t xor_avx_5 +ffffffff812eef50 t xor_avx_4 +ffffffff812ef230 t xor_avx_3 +ffffffff812ef480 t xor_avx_2 +ffffffff812ef630 T xor_blocks +ffffffff812ef6a0 t asymmetric_key_match_free +ffffffff812ef6b0 t asymmetric_key_preparse +ffffffff812ef730 t asymmetric_key_free_kids.part.1 +ffffffff812ef750 t asymmetric_key_destroy +ffffffff812ef7c0 t asymmetric_key_free_preparse +ffffffff812ef800 t asymmetric_lookup_restriction +ffffffff812ef9e0 t asymmetric_key_describe +ffffffff812efaa0 t asymmetric_key_hex_to_key_id.part.6 +ffffffff812efb20 t asymmetric_key_match_preparse +ffffffff812efbb0 T find_asymmetric_key +ffffffff812efd00 T asymmetric_key_generate_id +ffffffff812efd70 T asymmetric_key_id_same +ffffffff812efda0 t asymmetric_key_cmp +ffffffff812efde0 T asymmetric_key_id_partial +ffffffff812efe20 t asymmetric_key_cmp_partial +ffffffff812efe60 T __asymmetric_key_hex_to_key_id +ffffffff812efe80 T asymmetric_key_hex_to_key_id +ffffffff812efea0 T register_asymmetric_key_parser +ffffffff812eff40 T unregister_asymmetric_key_parser +ffffffff812effa0 t match_either_id +ffffffff812effd0 t key_or_keyring_common +ffffffff812f0170 T restrict_link_by_signature +ffffffff812f0240 T restrict_link_by_key_or_keyring +ffffffff812f0250 T restrict_link_by_key_or_keyring_chain +ffffffff812f0260 T public_key_signature_free +ffffffff812f02a0 T verify_signature +ffffffff812f02e0 t public_key_describe +ffffffff812f0310 t public_key_destroy +ffffffff812f0340 T public_key_free +ffffffff812f0360 T public_key_verify_signature +ffffffff812f0620 t public_key_verify_signature_2 +ffffffff812f0630 t x509_free_certificate.part.0 +ffffffff812f0680 t x509_fabricate_name.constprop.1 +ffffffff812f0980 T x509_free_certificate +ffffffff812f0990 T x509_cert_parse +ffffffff812f0b30 T x509_note_OID +ffffffff812f0b90 T x509_note_tbs_certificate +ffffffff812f0bb0 T x509_note_pkey_algo +ffffffff812f0ca0 T x509_note_signature +ffffffff812f0cd0 T x509_note_serial +ffffffff812f0cf0 T x509_extract_name_segment +ffffffff812f0d40 T x509_note_issuer +ffffffff812f0d60 T x509_note_subject +ffffffff812f0d80 T x509_extract_key_data +ffffffff812f0dc0 T x509_process_extension +ffffffff812f0e50 T x509_decode_time +ffffffff812f10c0 T x509_note_not_before +ffffffff812f10d0 T x509_note_not_after +ffffffff812f10e0 T x509_akid_note_kid +ffffffff812f1130 T x509_akid_note_name +ffffffff812f1140 T x509_akid_note_serial +ffffffff812f1190 t x509_key_preparse +ffffffff812f1330 T x509_get_sig_params +ffffffff812f1480 T x509_check_for_self_signed +ffffffff812f1560 t pkcs7_free_message.part.2 +ffffffff812f15e0 T pkcs7_free_message +ffffffff812f15f0 T pkcs7_parse_message +ffffffff812f1780 T pkcs7_get_content_data +ffffffff812f17b0 T pkcs7_note_OID +ffffffff812f1810 T pkcs7_sig_note_digest_algo +ffffffff812f18d0 T pkcs7_sig_note_pkey_algo +ffffffff812f1900 T pkcs7_check_content_type +ffffffff812f1920 T pkcs7_note_signeddata_version +ffffffff812f1950 T pkcs7_note_signerinfo_version +ffffffff812f19b0 T pkcs7_extract_cert +ffffffff812f1a00 T pkcs7_note_certificate_list +ffffffff812f1a30 T pkcs7_note_content +ffffffff812f1a60 T pkcs7_note_data +ffffffff812f1a80 T pkcs7_sig_note_authenticated_attr +ffffffff812f1b90 T pkcs7_sig_note_set_of_authattrs +ffffffff812f1c00 T pkcs7_sig_note_serial +ffffffff812f1c10 T pkcs7_sig_note_issuer +ffffffff812f1c20 T pkcs7_sig_note_skid +ffffffff812f1c30 T pkcs7_sig_note_signature +ffffffff812f1c80 T pkcs7_note_signed_info +ffffffff812f1d60 T pkcs7_validate_trust +ffffffff812f1f60 T pkcs7_verify +ffffffff812f25c0 T pkcs7_supply_detached_data +ffffffff812f25e0 t simd_skcipher_setkey +ffffffff812f2620 t simd_skcipher_decrypt +ffffffff812f26f0 t simd_skcipher_encrypt +ffffffff812f27c0 t simd_skcipher_exit +ffffffff812f27d0 t simd_skcipher_init +ffffffff812f2810 T simd_skcipher_create_compat +ffffffff812f2980 T simd_skcipher_create +ffffffff812f29d0 T simd_skcipher_free +ffffffff812f29f0 t punt_bios_to_rescuer +ffffffff812f2bd0 t submit_bio_wait_endio +ffffffff812f2be0 t bio_alloc_rescue +ffffffff812f2c40 T bvec_nr_vecs +ffffffff812f2c50 T bvec_free +ffffffff812f2c90 t bio_free +ffffffff812f2ce0 T bvec_alloc +ffffffff812f2dc0 T bio_uninit +ffffffff812f2dd0 T bio_init +ffffffff812f2e20 T bio_reset +ffffffff812f2e70 T bio_chain +ffffffff812f2ea0 T bio_alloc_bioset +ffffffff812f3080 T zero_fill_bio +ffffffff812f3160 T bio_put +ffffffff812f3180 t bio_map_kern_endio +ffffffff812f3190 t bio_copy_kern_endio +ffffffff812f31d0 t bio_copy_kern_endio_read +ffffffff812f3240 T bio_phys_segments +ffffffff812f3260 T __bio_clone_fast +ffffffff812f32d0 T bio_clone_fast +ffffffff812f3300 T bio_clone_bioset +ffffffff812f3560 T bio_add_pc_page +ffffffff812f3700 T bio_add_page +ffffffff812f3770 T bio_iov_iter_get_pages +ffffffff812f3860 T submit_bio_wait +ffffffff812f38c0 T bio_advance +ffffffff812f3960 T bio_copy_data +ffffffff812f3c30 T bio_free_pages +ffffffff812f3c70 T bio_uncopy_user +ffffffff812f3d90 T bio_copy_user_iov +ffffffff812f40c0 T bio_map_user_iov +ffffffff812f4350 T bio_unmap_user +ffffffff812f43c0 T bio_map_kern +ffffffff812f44d0 T bio_copy_kern +ffffffff812f46d0 T bio_set_pages_dirty +ffffffff812f4720 t bio_dirty_fn +ffffffff812f47d0 T bio_check_pages_dirty +ffffffff812f48c0 T generic_start_io_acct +ffffffff812f49c0 T generic_end_io_acct +ffffffff812f4a80 T bio_endio +ffffffff812f4b00 t bio_chain_endio +ffffffff812f4b20 T bio_split +ffffffff812f4b80 T bio_trim +ffffffff812f4bb0 T biovec_create_pool +ffffffff812f4bd0 T bioset_free +ffffffff812f4c70 T bioset_create +ffffffff812f4ee0 t elv_attr_store +ffffffff812f4f60 t elv_attr_show +ffffffff812f4fd0 t elevator_release +ffffffff812f4fe0 t elevator_match +ffffffff812f5020 t elevator_find +ffffffff812f5080 t elevator_get +ffffffff812f5110 t elv_rqhash_del.part.5 +ffffffff812f5150 t elv_unregister_queue.part.8 +ffffffff812f5190 T elv_bio_merge_ok +ffffffff812f5200 T elevator_alloc +ffffffff812f5290 T elevator_init +ffffffff812f53d0 T elevator_exit +ffffffff812f5430 T elv_rqhash_del +ffffffff812f5440 T elv_rqhash_add +ffffffff812f54a0 T elv_rqhash_reposition +ffffffff812f54e0 T elv_rqhash_find +ffffffff812f55d0 T elv_rb_add +ffffffff812f5620 T elv_rb_del +ffffffff812f5650 T elv_rb_find +ffffffff812f5680 T elv_dispatch_sort +ffffffff812f5760 T elv_dispatch_add_tail +ffffffff812f57c0 T elv_merge +ffffffff812f58a0 T elv_attempt_insert_merge +ffffffff812f5930 T elv_merged_request +ffffffff812f5990 T elv_merge_requests +ffffffff812f5a30 T elv_bio_merged +ffffffff812f5a50 T elv_drain_elevator +ffffffff812f5ac0 T __elv_add_request +ffffffff812f5c90 T elv_requeue_request +ffffffff812f5d40 T elv_add_request +ffffffff812f5d90 T elv_latter_request +ffffffff812f5dc0 T elv_former_request +ffffffff812f5df0 T elv_set_request +ffffffff812f5e20 T elv_put_request +ffffffff812f5e50 T elv_may_queue +ffffffff812f5e80 T elv_completed_request +ffffffff812f5ee0 T elv_register_queue +ffffffff812f5f90 t elevator_switch +ffffffff812f6110 T elv_unregister_queue +ffffffff812f6120 T elv_register +ffffffff812f6290 T elv_unregister +ffffffff812f6300 T elv_iosched_store +ffffffff812f6400 T elv_iosched_show +ffffffff812f65e0 T elv_rb_former_request +ffffffff812f6600 T elv_rb_latter_request +ffffffff812f6620 t plug_rq_cmp +ffffffff812f6650 t blk_queue_usage_counter_release +ffffffff812f6670 t free_request_simple +ffffffff812f6680 t alloc_request_simple +ffffffff812f6690 t free_request_size +ffffffff812f66c0 t alloc_request_size +ffffffff812f6720 t handle_bad_sector +ffffffff812f6780 t blk_rq_timed_out_timer +ffffffff812f67a0 t should_fail_bio.isra.3 +ffffffff812f67b0 t generic_make_request_checks +ffffffff812f6aa0 t __freed_request +ffffffff812f6b40 t freed_request +ffffffff812f6b90 t blk_init_rl.part.7 +ffffffff812f6c70 t blk_account_io_completion.part.10 +ffffffff812f6d10 T blk_queue_congestion_threshold +ffffffff812f6d50 T blk_rq_init +ffffffff812f6e00 t get_request +ffffffff812f73f0 T errno_to_blk_status +ffffffff812f7430 T blk_status_to_errno +ffffffff812f7450 T blk_dump_rq_flags +ffffffff812f74f0 T blk_delay_queue +ffffffff812f7530 T blk_stop_queue +ffffffff812f7550 T blk_sync_queue +ffffffff812f75d0 T blk_set_preempt_only +ffffffff812f7620 T blk_clear_preempt_only +ffffffff812f7670 T __blk_run_queue_uncond +ffffffff812f76a0 T __blk_run_queue +ffffffff812f76e0 T blk_start_queue +ffffffff812f7700 t __blk_drain_queue +ffffffff812f7870 t blk_delay_work +ffffffff812f78a0 T blk_run_queue_async +ffffffff812f78e0 T blk_start_queue_async +ffffffff812f78f0 T blk_run_queue +ffffffff812f7920 T blk_put_queue +ffffffff812f7930 T blk_drain_queue +ffffffff812f7960 T blk_queue_bypass_start +ffffffff812f79d0 T blk_queue_bypass_end +ffffffff812f7a00 T blk_set_queue_dying +ffffffff812f7aa0 T blk_cleanup_queue +ffffffff812f7bb0 T blk_init_rl +ffffffff812f7bd0 T blk_exit_rl +ffffffff812f7c10 T blk_queue_enter +ffffffff812f7e60 T blk_queue_exit +ffffffff812f7eb0 T blk_alloc_queue_node +ffffffff812f8150 T blk_alloc_queue +ffffffff812f8160 T blk_init_allocated_queue +ffffffff812f82a0 T blk_init_queue_node +ffffffff812f8300 T blk_init_queue +ffffffff812f8310 T blk_get_queue +ffffffff812f8330 T blk_update_nr_requests +ffffffff812f8520 T blk_get_request_flags +ffffffff812f8630 T blk_get_request +ffffffff812f8640 T blk_requeue_request +ffffffff812f86a0 T part_round_stats +ffffffff812f87f0 T __blk_put_request +ffffffff812f8920 T blk_put_request +ffffffff812f8970 T blk_plug_queued_count +ffffffff812f89d0 T generic_make_request +ffffffff812f8c70 T direct_make_request +ffffffff812f8d10 T submit_bio +ffffffff812f8de0 T blk_rq_err_bytes +ffffffff812f8e40 T blk_account_io_completion +ffffffff812f8e60 T blk_account_io_done +ffffffff812f8fe0 T blk_account_io_start +ffffffff812f91b0 T bio_attempt_back_merge +ffffffff812f9230 T bio_attempt_front_merge +ffffffff812f92b0 T bio_attempt_discard_merge +ffffffff812f9440 T blk_attempt_plug_merge +ffffffff812f9540 T blk_insert_cloned_request +ffffffff812f96f0 T blk_start_request +ffffffff812f97f0 T blk_steal_bios +ffffffff812f9830 T blk_update_request +ffffffff812f9a80 t blk_update_bidi_request +ffffffff812f9af0 T blk_unprep_request +ffffffff812f9b10 T blk_finish_request +ffffffff812f9c30 t blk_end_bidi_request +ffffffff812f9c90 t __blk_end_bidi_request +ffffffff812f9cc0 T blk_end_request +ffffffff812f9cd0 T blk_end_request_all +ffffffff812f9d00 T __blk_end_request +ffffffff812f9d10 T __blk_end_request_all +ffffffff812f9d40 T blk_peek_request +ffffffff812f9f80 T blk_fetch_request +ffffffff812f9fb0 T __blk_end_request_cur +ffffffff812fa010 T blk_rq_bio_prep +ffffffff812fa090 T blk_init_request_from_bio +ffffffff812fa100 T blk_lld_busy +ffffffff812fa120 T blk_rq_unprep_clone +ffffffff812fa150 T blk_rq_prep_clone +ffffffff812fa280 T kblockd_schedule_work +ffffffff812fa2a0 T kblockd_schedule_work_on +ffffffff812fa2c0 T kblockd_mod_delayed_work_on +ffffffff812fa2e0 T blk_start_plug +ffffffff812fa320 T blk_check_plugged +ffffffff812fa3b0 T blk_flush_plug_list +ffffffff812fa610 t blk_queue_bio +ffffffff812fa960 T blk_poll +ffffffff812fa9b0 T blk_finish_plug +ffffffff812fa9e0 T blk_pm_runtime_init +ffffffff812faa30 T blk_pre_runtime_suspend +ffffffff812faa90 T blk_post_runtime_suspend +ffffffff812fab00 T blk_pre_runtime_resume +ffffffff812fab40 T blk_post_runtime_resume +ffffffff812fabd0 T blk_set_runtime_active +ffffffff812fac20 t init_tag_map +ffffffff812facc0 t __blk_queue_init_tags +ffffffff812fad30 T blk_queue_find_tag +ffffffff812fad50 T blk_free_tags +ffffffff812fada0 T __blk_queue_free_tags +ffffffff812fadd0 T blk_queue_free_tags +ffffffff812fade0 T blk_init_tags +ffffffff812fadf0 T blk_queue_resize_tags +ffffffff812faeb0 T blk_queue_init_tags +ffffffff812faf30 T blk_queue_end_tag +ffffffff812faff0 T blk_queue_start_tag +ffffffff812fb190 T blk_queue_invalidate_tags +ffffffff812fb1d0 t queue_poll_delay_store +ffffffff812fb240 t queue_poll_delay_show +ffffffff812fb280 t queue_wb_lat_show +ffffffff812fb2c0 t queue_dax_show +ffffffff812fb2f0 t queue_poll_show +ffffffff812fb320 t queue_show_random +ffffffff812fb350 t queue_show_iostats +ffffffff812fb380 t queue_rq_affinity_show +ffffffff812fb3c0 t queue_nomerges_show +ffffffff812fb400 t queue_show_nonrot +ffffffff812fb430 t queue_discard_zeroes_data_show +ffffffff812fb450 t queue_discard_granularity_show +ffffffff812fb470 t queue_io_opt_show +ffffffff812fb490 t queue_io_min_show +ffffffff812fb4b0 t queue_chunk_sectors_show +ffffffff812fb4d0 t queue_physical_block_size_show +ffffffff812fb4f0 t queue_logical_block_size_show +ffffffff812fb520 t queue_max_integrity_segments_show +ffffffff812fb540 t queue_max_discard_segments_show +ffffffff812fb560 t queue_max_segments_show +ffffffff812fb580 t queue_max_sectors_show +ffffffff812fb5a0 t queue_max_hw_sectors_show +ffffffff812fb5c0 t queue_ra_show +ffffffff812fb5f0 t queue_requests_show +ffffffff812fb610 t queue_write_zeroes_max_show +ffffffff812fb630 t queue_write_same_max_show +ffffffff812fb650 t queue_discard_max_hw_show +ffffffff812fb670 t queue_discard_max_show +ffffffff812fb690 t queue_wb_lat_store +ffffffff812fb740 t queue_wc_store +ffffffff812fb7d0 t queue_ra_store +ffffffff812fb830 t queue_discard_max_store +ffffffff812fb8a0 t queue_max_sectors_store +ffffffff812fb960 t queue_store_nonrot +ffffffff812fb9e0 t queue_store_random +ffffffff812fba60 t queue_store_iostats +ffffffff812fbae0 t queue_nomerges_store +ffffffff812fbb80 t queue_rq_affinity_store +ffffffff812fbc50 t queue_poll_store +ffffffff812fbce0 t queue_requests_store +ffffffff812fbd80 t queue_attr_store +ffffffff812fbe00 t queue_attr_show +ffffffff812fbe80 t __blk_release_queue +ffffffff812fbf90 t blk_free_queue_rcu +ffffffff812fbfb0 t blk_release_queue +ffffffff812fc000 t queue_max_segment_size_show +ffffffff812fc040 t queue_wc_show +ffffffff812fc090 t queue_zoned_show +ffffffff812fc100 T blk_register_queue +ffffffff812fc260 T blk_unregister_queue +ffffffff812fc350 t blk_flush_queue_rq +ffffffff812fc3b0 t blk_flush_complete_seq +ffffffff812fc6b0 t flush_data_end_io +ffffffff812fc740 t mq_flush_data_end_io +ffffffff812fc820 t flush_end_io +ffffffff812fca60 T blk_insert_flush +ffffffff812fcc40 T blkdev_issue_flush +ffffffff812fcce0 T blk_alloc_flush_queue +ffffffff812fcd80 T blk_free_flush_queue +ffffffff812fcda0 T blk_queue_prep_rq +ffffffff812fcdb0 T blk_queue_unprep_rq +ffffffff812fcdc0 T blk_queue_softirq_done +ffffffff812fcdd0 T blk_queue_rq_timeout +ffffffff812fcde0 T blk_queue_rq_timed_out +ffffffff812fcdf0 T blk_queue_lld_busy +ffffffff812fce00 T blk_set_default_limits +ffffffff812fce90 T blk_set_stacking_limits +ffffffff812fcf20 T blk_queue_make_request +ffffffff812fd010 T blk_queue_bounce_limit +ffffffff812fd050 T blk_queue_max_hw_sectors +ffffffff812fd0d0 T blk_queue_chunk_sectors +ffffffff812fd0f0 T blk_queue_max_discard_sectors +ffffffff812fd100 T blk_queue_max_write_same_sectors +ffffffff812fd110 T blk_queue_max_write_zeroes_sectors +ffffffff812fd120 T blk_queue_max_segments +ffffffff812fd160 T blk_queue_max_discard_segments +ffffffff812fd170 T blk_queue_max_segment_size +ffffffff812fd1b0 T blk_queue_logical_block_size +ffffffff812fd1e0 T blk_queue_physical_block_size +ffffffff812fd210 T blk_queue_alignment_offset +ffffffff812fd230 T blk_limits_io_min +ffffffff812fd250 T blk_queue_io_min +ffffffff812fd280 T blk_limits_io_opt +ffffffff812fd290 T blk_queue_io_opt +ffffffff812fd2a0 T blk_stack_limits +ffffffff812fd6f0 T blk_queue_stack_limits +ffffffff812fd710 T bdev_stack_limits +ffffffff812fd740 T disk_stack_limits +ffffffff812fd7c0 T blk_queue_dma_pad +ffffffff812fd7d0 T blk_queue_update_dma_pad +ffffffff812fd7e0 T blk_queue_dma_drain +ffffffff812fd820 T blk_queue_segment_boundary +ffffffff812fd860 T blk_queue_virt_boundary +ffffffff812fd870 T blk_queue_dma_alignment +ffffffff812fd880 T blk_queue_update_dma_alignment +ffffffff812fd8a0 T blk_queue_flush_queueable +ffffffff812fd8f0 T blk_set_queue_depth +ffffffff812fd900 T blk_queue_write_cache +ffffffff812fd980 t ioc_exit_icq +ffffffff812fd9d0 t icq_free_icq_rcu +ffffffff812fd9e0 t ioc_destroy_icq +ffffffff812fda80 t __ioc_clear_queue +ffffffff812fdad0 t ioc_release_fn +ffffffff812fdb70 T get_io_context +ffffffff812fdb80 T put_io_context +ffffffff812fdc00 T put_io_context_active +ffffffff812fdcc0 T exit_io_context +ffffffff812fdd00 T ioc_clear_queue +ffffffff812fdda0 T create_task_io_context +ffffffff812fde90 T get_task_io_context +ffffffff812fdf00 T ioc_lookup_icq +ffffffff812fdf60 T ioc_create_icq +ffffffff812fe0f0 t __blk_rq_unmap_user +ffffffff812fe110 T blk_rq_append_bio +ffffffff812fe1a0 T blk_rq_map_user_iov +ffffffff812fe360 T blk_rq_map_user +ffffffff812fe3c0 T blk_rq_unmap_user +ffffffff812fe420 T blk_rq_map_kern +ffffffff812fe540 t blk_end_sync_rq +ffffffff812fe560 T blk_execute_rq_nowait +ffffffff812fe600 T blk_execute_rq +ffffffff812fe650 t __blk_recalc_rq_segments +ffffffff812fe8c0 t attempt_merge +ffffffff812ff280 T blk_queue_split +ffffffff812ff790 T blk_recalc_rq_segments +ffffffff812ff7c0 T blk_recount_segments +ffffffff812ff920 T blk_rq_map_sg +ffffffff812ffda0 T ll_back_merge_fn +ffffffff81300180 T ll_front_merge_fn +ffffffff81300510 T blk_rq_set_mixed_merge +ffffffff81300540 T attempt_back_merge +ffffffff81300570 T attempt_front_merge +ffffffff813005a0 T blk_attempt_req_merge +ffffffff81300600 T blk_rq_merge_ok +ffffffff813006d0 T blk_try_merge +ffffffff81300720 t blk_done_softirq +ffffffff813007a0 t trigger_softirq +ffffffff813007e0 t blk_softirq_cpu_dead +ffffffff81300840 T __blk_complete_request +ffffffff81300910 T blk_complete_request +ffffffff81300930 T blk_delete_timer +ffffffff81300960 T blk_rq_timeout +ffffffff81300990 T blk_add_timer +ffffffff81300aa0 t blk_rq_timed_out +ffffffff81300af0 T blk_timeout_work +ffffffff81300bf0 T blk_abort_request +ffffffff81300c60 t next_bio +ffffffff81300ca0 t __blkdev_issue_write_zeroes +ffffffff81300dd0 t __blkdev_issue_zero_pages +ffffffff81300f50 T __blkdev_issue_discard +ffffffff81301150 T blkdev_issue_discard +ffffffff81301200 T blkdev_issue_write_same +ffffffff813013e0 T __blkdev_issue_zeroout +ffffffff81301480 T blkdev_issue_zeroout +ffffffff81301650 t __blk_mq_complete_request_remote +ffffffff81301660 t plug_ctx_cmp +ffffffff81301690 t queue_set_hctx_shared +ffffffff81301700 t blk_mq_poll_stats_fn +ffffffff81301760 t blk_mq_poll_stats_bkt +ffffffff81301790 t blk_mq_get_request +ffffffff81301b00 t hctx_lock +ffffffff81301b30 t __blk_mq_complete_request +ffffffff81301ca0 t hctx_unlock +ffffffff81301cc0 t __blk_mq_requeue_request +ffffffff81301d80 t __blk_mq_run_hw_queue +ffffffff81301e00 t blk_mq_run_work_fn +ffffffff81301e30 t blk_mq_hctx_next_cpu +ffffffff81301f30 t __blk_mq_delay_run_hw_queue +ffffffff81301fd0 t blk_mq_timeout_work +ffffffff813021c0 t blk_mq_exit_hctx +ffffffff813022a0 t blk_mq_hctx_mark_pending.isra.0 +ffffffff813022d0 t blk_mq_check_inflight +ffffffff81302310 t blk_mq_check_expired +ffffffff81302390 t blk_mq_terminate_expired +ffffffff81302420 t blk_mq_update_queue_map +ffffffff81302480 t blk_mq_poll +ffffffff813027b0 T blk_mq_in_flight +ffffffff813027e0 T blk_mq_freeze_queue_wait +ffffffff81302860 T blk_mq_freeze_queue_wait_timeout +ffffffff81302950 T blk_mq_unfreeze_queue +ffffffff81302990 T blk_mq_quiesce_queue_nowait +ffffffff813029c0 T blk_mq_quiesce_queue +ffffffff81302a30 T blk_mq_wake_waiters +ffffffff81302a80 T blk_mq_can_queue +ffffffff81302a90 T blk_mq_alloc_request +ffffffff81302b40 T blk_mq_alloc_request_hctx +ffffffff81302c60 T blk_mq_free_request +ffffffff81302d90 T __blk_mq_end_request +ffffffff81302df0 T blk_mq_end_request +ffffffff81302e60 T blk_mq_complete_request +ffffffff81302ed0 T blk_mq_request_started +ffffffff81302ee0 T blk_mq_start_request +ffffffff81303000 T blk_mq_add_to_requeue_list +ffffffff813030c0 T blk_mq_requeue_request +ffffffff81303120 T blk_mq_kick_requeue_list +ffffffff81303140 T blk_mq_delay_kick_requeue_list +ffffffff81303160 T blk_mq_tag_to_rq +ffffffff81303180 T blk_mq_flush_busy_ctxs +ffffffff813032c0 T blk_mq_dequeue_from_ctx +ffffffff81303460 T blk_mq_get_driver_tag +ffffffff81303550 t __blk_mq_try_issue_directly +ffffffff813036e0 t blk_mq_try_issue_directly +ffffffff81303750 T blk_mq_delay_run_hw_queue +ffffffff81303760 T blk_mq_run_hw_queue +ffffffff81303830 T blk_mq_dispatch_rq_list +ffffffff81303d10 t blk_mq_dispatch_wake +ffffffff81303d50 t blk_mq_hctx_notify_dead +ffffffff81303e70 t blk_mq_start_stopped_hw_queue.part.17 +ffffffff81303e80 T blk_mq_run_hw_queues +ffffffff81303ed0 T blk_freeze_queue_start +ffffffff81303f10 T blk_freeze_queue +ffffffff81303f40 T blk_mq_freeze_queue +ffffffff81303f50 t blk_mq_update_tag_set_depth +ffffffff81303fa0 T blk_mq_unquiesce_queue +ffffffff81303fe0 t blk_mq_requeue_work +ffffffff81304100 T blk_mq_queue_stopped +ffffffff81304140 T blk_mq_stop_hw_queue +ffffffff81304160 T blk_mq_stop_hw_queues +ffffffff813041b0 T blk_mq_start_hw_queue +ffffffff813041c0 T blk_mq_start_hw_queues +ffffffff81304200 T blk_mq_start_stopped_hw_queue +ffffffff81304220 T blk_mq_start_stopped_hw_queues +ffffffff81304280 T blk_mq_delay_queue +ffffffff813042e0 T __blk_mq_insert_request +ffffffff81304330 t blk_mq_make_request +ffffffff813047c0 T blk_mq_request_bypass_insert +ffffffff81304830 T blk_mq_insert_requests +ffffffff813048c0 T blk_mq_flush_plug_list +ffffffff813049f0 T blk_mq_request_issue_directly +ffffffff81304a50 T blk_mq_free_rqs +ffffffff81304b10 T blk_mq_free_rq_map +ffffffff81304b50 t blk_mq_free_map_and_requests +ffffffff81304b90 t blk_mq_realloc_hw_ctxs +ffffffff81304fa0 T blk_mq_alloc_rq_map +ffffffff81305040 T blk_mq_alloc_rqs +ffffffff813052b0 t __blk_mq_alloc_rq_map +ffffffff81305330 t blk_mq_map_swqueue +ffffffff81305520 T blk_mq_release +ffffffff81305590 T blk_mq_init_allocated_queue +ffffffff813058e0 T blk_mq_init_queue +ffffffff81305940 T blk_mq_free_queue +ffffffff81305a20 T blk_mq_alloc_tag_set +ffffffff81305c30 T blk_mq_free_tag_set +ffffffff81305c80 T blk_mq_update_nr_requests +ffffffff81305d50 T blk_mq_update_nr_hw_queues +ffffffff81305e50 t bt_tags_for_each.part.0 +ffffffff81305f40 t __blk_mq_get_tag.isra.1 +ffffffff81305fb0 t bt_for_each +ffffffff813060c0 T blk_mq_has_free_tags +ffffffff813060e0 T __blk_mq_tag_busy +ffffffff81306110 T blk_mq_tag_wakeup_all +ffffffff81306140 T __blk_mq_tag_idle +ffffffff81306160 T blk_mq_get_tag +ffffffff813063c0 T blk_mq_put_tag +ffffffff813063f0 T blk_mq_tagset_busy_iter +ffffffff81306490 T blk_mq_tagset_iter +ffffffff81306520 T blk_mq_queue_tag_busy_iter +ffffffff813065c0 T blk_mq_init_tags +ffffffff813066a0 T blk_mq_free_tags +ffffffff81306700 T blk_mq_tag_update_depth +ffffffff81306800 T blk_mq_unique_tag +ffffffff81306840 t blk_stat_timer_fn +ffffffff81306980 t blk_stat_free_callback_rcu +ffffffff813069a0 T blk_stat_add +ffffffff81306a70 T blk_stat_alloc_callback +ffffffff81306b20 T blk_stat_add_callback +ffffffff81306be0 T blk_stat_remove_callback +ffffffff81306c50 T blk_stat_free_callback +ffffffff81306c70 T blk_stat_enable_accounting +ffffffff81306ca0 T blk_alloc_queue_stats +ffffffff81306cd0 T blk_free_queue_stats +ffffffff81306ce0 t blk_mq_sysfs_release +ffffffff81306cf0 t blk_mq_hw_sysfs_nr_reserved_tags_show +ffffffff81306d10 t blk_mq_hw_sysfs_nr_tags_show +ffffffff81306d30 t blk_mq_hw_sysfs_cpus_show +ffffffff81306db0 t blk_mq_hw_sysfs_store +ffffffff81306e30 t blk_mq_hw_sysfs_show +ffffffff81306eb0 t blk_mq_sysfs_store +ffffffff81306f30 t blk_mq_sysfs_show +ffffffff81306fa0 t blk_mq_hw_sysfs_release +ffffffff81306fc0 t blk_mq_register_hctx +ffffffff81307060 t blk_mq_unregister_hctx.part.0 +ffffffff813070b0 T blk_mq_unregister_dev +ffffffff81307130 T blk_mq_hctx_kobj_init +ffffffff81307150 T blk_mq_sysfs_deinit +ffffffff813071b0 T blk_mq_sysfs_init +ffffffff81307220 T __blk_mq_register_dev +ffffffff81307330 T blk_mq_register_dev +ffffffff81307370 T blk_mq_sysfs_unregister +ffffffff813073e0 T blk_mq_sysfs_register +ffffffff81307450 T blk_mq_map_queues +ffffffff81307510 T blk_mq_hw_queue_to_node +ffffffff81307560 t blk_mq_do_dispatch_sched +ffffffff81307630 t blk_mq_do_dispatch_ctx +ffffffff81307720 t blk_mq_sched_restart_hctx.part.1 +ffffffff81307760 t blk_mq_sched_free_tags.isra.2 +ffffffff81307790 t blk_mq_sched_tags_teardown +ffffffff813077e0 t blk_mq_sched_alloc_tags.isra.3 +ffffffff81307860 T blk_mq_sched_free_hctx_data +ffffffff813078d0 T blk_mq_sched_assign_ioc +ffffffff81307950 T blk_mq_sched_dispatch_requests +ffffffff81307ac0 T blk_mq_sched_try_merge +ffffffff81307c00 T __blk_mq_sched_bio_merge +ffffffff81307de0 T blk_mq_sched_try_insert_merge +ffffffff81307e20 T blk_mq_sched_request_inserted +ffffffff81307e30 T blk_mq_sched_restart +ffffffff81307f70 T blk_mq_sched_insert_request +ffffffff81308080 T blk_mq_sched_insert_requests +ffffffff813080f0 T blk_mq_sched_init_hctx +ffffffff81308190 T blk_mq_sched_exit_hctx +ffffffff813081f0 T blk_mq_exit_sched +ffffffff81308280 T blk_mq_init_sched +ffffffff813083c0 T blk_mq_sched_init +ffffffff813083f0 t blkdev_pr_preempt +ffffffff81308490 t blk_ioctl_discard +ffffffff81308570 t blkpg_ioctl +ffffffff81308980 T __blkdev_reread_part +ffffffff813089e0 T blkdev_reread_part +ffffffff81308a10 T __blkdev_driver_ioctl +ffffffff81308a40 T blkdev_ioctl +ffffffff81309350 t exact_match +ffffffff81309360 t base_probe +ffffffff81309370 t disk_visible +ffffffff81309390 t block_devnode +ffffffff813093b0 t disk_events_poll_msecs_show +ffffffff813093d0 t __disk_events_show +ffffffff81309460 t disk_events_async_show +ffffffff81309470 t disk_events_show +ffffffff81309480 t disk_capability_show +ffffffff813094a0 t disk_discard_alignment_show +ffffffff813094d0 t disk_alignment_offset_show +ffffffff81309500 t disk_ro_show +ffffffff81309530 t disk_hidden_show +ffffffff81309560 t disk_removable_show +ffffffff81309590 t disk_ext_range_show +ffffffff813095c0 t disk_range_show +ffffffff813095e0 t disk_seqf_next +ffffffff81309600 t disk_seqf_start +ffffffff81309670 t disk_seqf_stop +ffffffff813096a0 t disk_badblocks_store +ffffffff813096d0 t partitions_open +ffffffff813096e0 t diskstats_open +ffffffff813096f0 t exact_lock +ffffffff81309720 t disk_events_poll_jiffies.isra.0 +ffffffff81309750 t __disk_unblock_events +ffffffff813097f0 t disk_check_events +ffffffff81309910 t disk_events_workfn +ffffffff81309920 t disk_badblocks_show +ffffffff81309950 t show_partition_start +ffffffff813099a0 t blk_free_devt.part.7 +ffffffff813099d0 t disk_release +ffffffff81309a70 T part_inc_in_flight +ffffffff81309ab0 T part_dec_in_flight +ffffffff81309af0 T part_in_flight +ffffffff81309b40 T __disk_get_part +ffffffff81309b60 T disk_get_part +ffffffff81309bb0 T disk_part_iter_init +ffffffff81309c10 T disk_part_iter_next +ffffffff81309cf0 t show_partition +ffffffff81309dc0 t diskstats_show +ffffffff8130a140 T disk_part_iter_exit +ffffffff8130a160 T disk_map_sector_rcu +ffffffff8130a1d0 T blkdev_show +ffffffff8130a260 T register_blkdev +ffffffff8130a3b0 T unregister_blkdev +ffffffff8130a450 T blk_alloc_devt +ffffffff8130a520 T blk_free_devt +ffffffff8130a540 T blk_register_region +ffffffff8130a560 T blk_unregister_region +ffffffff8130a580 T get_gendisk +ffffffff8130a6b0 T bdget_disk +ffffffff8130a6e0 t __device_add_disk +ffffffff8130aac0 T device_add_disk +ffffffff8130aad0 T device_add_disk_no_queue_reg +ffffffff8130aae0 T disk_expand_part_tbl +ffffffff8130abb0 T blk_lookup_devt +ffffffff8130ac80 T __alloc_disk_node +ffffffff8130add0 T get_disk_and_module +ffffffff8130adf0 T put_disk +ffffffff8130ae00 T put_disk_and_module +ffffffff8130ae10 T set_device_ro +ffffffff8130ae20 T set_disk_ro +ffffffff8130af00 T bdev_read_only +ffffffff8130af20 T invalidate_partition +ffffffff8130af60 T disk_block_events +ffffffff8130aff0 t disk_events_poll_msecs_store +ffffffff8130b070 T del_gendisk +ffffffff8130b2e0 T disk_unblock_events +ffffffff8130b300 T disk_flush_events +ffffffff8130b360 t disk_events_set_dfl_poll_msecs +ffffffff8130b3b0 T disk_clear_events +ffffffff8130b490 t whole_disk_show +ffffffff8130b4a0 T part_size_show +ffffffff8130b4c0 T part_inflight_show +ffffffff8130b4f0 t part_discard_alignment_show +ffffffff8130b510 t part_alignment_offset_show +ffffffff8130b530 t part_ro_show +ffffffff8130b560 t part_start_show +ffffffff8130b580 t part_partition_show +ffffffff8130b5a0 T part_stat_show +ffffffff8130b910 t part_release +ffffffff8130b960 t part_uevent +ffffffff8130b9b0 T __delete_partition +ffffffff8130b9c0 t delete_partition_rcu_cb +ffffffff8130ba40 t disk_unlock_native_capacity +ffffffff8130baa0 T disk_name +ffffffff8130bb30 T bdevname +ffffffff8130bb50 T bio_devname +ffffffff8130bb60 T __bdevname +ffffffff8130bb90 T delete_partition +ffffffff8130bbf0 t drop_partitions.isra.2.part.3 +ffffffff8130bc40 T add_partition +ffffffff8130c170 T rescan_partitions +ffffffff8130c480 T invalidate_partitions +ffffffff8130c500 T read_dev_sector +ffffffff8130c590 t get_task_ioprio +ffffffff8130c5e0 T set_task_ioprio +ffffffff8130c680 T SyS_ioprio_set +ffffffff8130c680 T sys_ioprio_set +ffffffff8130c950 T ioprio_best +ffffffff8130c990 T SyS_ioprio_get +ffffffff8130c990 T sys_ioprio_get +ffffffff8130cc90 T badblocks_check +ffffffff8130cdd0 T badblocks_set +ffffffff8130d270 T badblocks_clear +ffffffff8130d550 T ack_all_badblocks +ffffffff8130d5f0 T badblocks_show +ffffffff8130d6f0 T badblocks_store +ffffffff8130d780 T badblocks_init +ffffffff8130d7e0 T devm_init_badblocks +ffffffff8130d850 T badblocks_exit +ffffffff8130d890 T free_partitions +ffffffff8130d8b0 T check_partition +ffffffff8130dad0 t parse_solaris_x86 +ffffffff8130dae0 t parse_unixware +ffffffff8130daf0 t parse_minix +ffffffff8130db00 t parse_freebsd +ffffffff8130db10 t parse_netbsd +ffffffff8130db20 t parse_openbsd +ffffffff8130db30 t parse_extended +ffffffff8130de30 T msdos_partition +ffffffff8130e3c0 t compare_gpts +ffffffff8130e620 t read_lba.isra.1 +ffffffff8130e7f0 t is_gpt_valid.part.2 +ffffffff8130ea40 T efi_partition +ffffffff8130f130 t __blk_send_generic.constprop.8 +ffffffff8130f1c0 T blk_verify_command +ffffffff8130f210 t sg_io +ffffffff8130f5c0 T sg_scsi_ioctl +ffffffff8130f8a0 T scsi_cmd_ioctl +ffffffff8130fc70 T scsi_verify_blk_ioctl +ffffffff8130fca0 T scsi_cmd_blk_ioctl +ffffffff8130fd00 T scsi_req_init +ffffffff8130fd30 t bsg_poll +ffffffff8130fdd0 t bsg_get_done_cmd +ffffffff8130fec0 t blk_complete_sgv4_hdr_rq +ffffffff81310030 t bsg_free_command +ffffffff81310080 t bsg_rq_end_io +ffffffff81310110 t bsg_devnode +ffffffff81310130 t bsg_complete +ffffffff81310190 t bsg_release +ffffffff81310340 t bsg_open +ffffffff813105d0 t bsg_map_hdr.isra.4 +ffffffff81310880 t bsg_ioctl +ffffffff81310a80 t bsg_write +ffffffff81310d30 t bsg_read +ffffffff81310ea0 T bsg_unregister_queue +ffffffff81310f50 T bsg_register_queue +ffffffff81311130 t noop_merged_requests +ffffffff81311150 t noop_add_request +ffffffff81311170 t noop_former_request +ffffffff81311190 t noop_latter_request +ffffffff813111b0 t noop_init_queue +ffffffff81311220 t noop_dispatch +ffffffff81311260 t noop_exit_queue +ffffffff81311280 t cfq_activate_request +ffffffff813112b0 t cfq_deactivate_request +ffffffff813112c0 t cfq_bio_merged +ffffffff813112d0 t cfq_allow_rq_merge +ffffffff813112f0 t cfq_target_latency_us_store +ffffffff81311340 t cfq_target_latency_store +ffffffff81311390 t cfq_low_latency_store +ffffffff813113d0 t cfq_group_idle_us_store +ffffffff81311410 t cfq_group_idle_store +ffffffff81311450 t cfq_slice_idle_us_store +ffffffff81311490 t cfq_slice_idle_store +ffffffff813114d0 t cfq_slice_async_rq_store +ffffffff81311510 t cfq_slice_async_us_store +ffffffff81311560 t cfq_slice_async_store +ffffffff813115b0 t cfq_slice_sync_us_store +ffffffff81311600 t cfq_slice_sync_store +ffffffff81311650 t cfq_back_seek_penalty_store +ffffffff81311690 t cfq_back_seek_max_store +ffffffff813116d0 t cfq_fifo_expire_async_store +ffffffff81311720 t cfq_fifo_expire_sync_store +ffffffff81311770 t cfq_quantum_store +ffffffff813117b0 t cfq_target_latency_us_show +ffffffff813117f0 t cfq_target_latency_show +ffffffff81311830 t cfq_low_latency_show +ffffffff81311850 t cfq_group_idle_us_show +ffffffff81311890 t cfq_group_idle_show +ffffffff813118d0 t cfq_slice_idle_us_show +ffffffff81311910 t cfq_slice_idle_show +ffffffff81311950 t cfq_slice_async_rq_show +ffffffff81311970 t cfq_slice_async_us_show +ffffffff813119b0 t cfq_slice_async_show +ffffffff813119f0 t cfq_slice_sync_us_show +ffffffff81311a30 t cfq_slice_sync_show +ffffffff81311a70 t cfq_back_seek_penalty_show +ffffffff81311a90 t cfq_back_seek_max_show +ffffffff81311ab0 t cfq_fifo_expire_async_show +ffffffff81311af0 t cfq_fifo_expire_sync_show +ffffffff81311b30 t cfq_quantum_show +ffffffff81311b50 t cfq_registered_queue +ffffffff81311b80 t __cfq_set_active_queue +ffffffff81311c00 t cfq_init_icq +ffffffff81311c10 t __cfq_update_io_thinktime +ffffffff81311c80 t cfq_rb_erase +ffffffff81311cb0 t cfq_group_service_tree_del +ffffffff81311ce0 t cfq_del_cfqq_rr +ffffffff81311da0 t cfq_kick_queue +ffffffff81311de0 t cfq_init_queue +ffffffff81312150 t cfq_allow_bio_merge +ffffffff813121d0 t cfq_choose_req.isra.1.part.2 +ffffffff813122e0 t cfq_find_next_rq +ffffffff81312390 t cfq_remove_request +ffffffff81312470 t cfq_merged_requests +ffffffff81312530 t cfq_dispatch_insert +ffffffff813125b0 t cfq_should_idle.isra.12 +ffffffff81312640 t cfq_group_service_tree_add +ffffffff81312700 t cfq_service_tree_add +ffffffff81312980 t cfq_prio_tree_add +ffffffff81312a30 t __cfq_slice_expired +ffffffff81312dd0 t cfq_exit_queue +ffffffff81312e50 t cfq_idle_slice_timer +ffffffff81312f00 t cfq_put_queue +ffffffff81312f80 t cfq_exit_cfqq +ffffffff81312ff0 t cfq_exit_icq +ffffffff81313040 t cfq_init_prio_data.isra.20 +ffffffff81313160 t cfq_may_queue +ffffffff81313230 t cfq_put_request +ffffffff81313280 t cfq_close_cooperator +ffffffff81313420 t cfq_completed_request +ffffffff813139e0 t cfq_dispatch_requests +ffffffff813144a0 t cfq_merge +ffffffff81314540 t cfq_get_queue.constprop.28 +ffffffff81314700 t cfq_set_request +ffffffff81314910 t cfq_add_rq_rb +ffffffff81314a00 t cfq_insert_request +ffffffff81314ec0 t cfq_merged_request +ffffffff81314f02 t cfqq_process_refs.isra.10.part.11 +ffffffff81314f10 T blk_mq_pci_map_queues +ffffffff81314fc0 t wbt_data_dir +ffffffff81314fe0 t rwb_wake_all +ffffffff81315030 t rwb_arm_timer +ffffffff81315090 t calc_wb_limits +ffffffff81315140 t scale_up.part.6 +ffffffff81315160 t __wbt_done.part.7 +ffffffff81315200 t wb_timer_fn +ffffffff81315360 T __wbt_done +ffffffff81315370 T wbt_done +ffffffff81315400 T wbt_update_limits +ffffffff81315420 T wbt_wait +ffffffff81315730 T wbt_issue +ffffffff81315770 T wbt_requeue +ffffffff813157a0 T wbt_set_queue_depth +ffffffff813157c0 T wbt_set_write_cache +ffffffff813157d0 T wbt_default_latency_nsec +ffffffff81315800 T wbt_init +ffffffff81315960 T wbt_enable_default +ffffffff81315990 T wbt_exit +ffffffff813159d0 T wbt_disable_default +ffffffff813159f0 T lockref_get +ffffffff81315a40 T lockref_get_not_zero +ffffffff81315ad0 T lockref_get_or_lock +ffffffff81315b50 T lockref_put_return +ffffffff81315bb0 T lockref_put_or_lock +ffffffff81315c30 T lockref_mark_dead +ffffffff81315c40 T lockref_get_not_dead +ffffffff81315cd0 T _bcd2bin +ffffffff81315cf0 T _bin2bcd +ffffffff81315d10 T iter_div_u64_rem +ffffffff81315d30 t u32_swap +ffffffff81315d40 t u64_swap +ffffffff81315d50 t generic_swap +ffffffff81315d70 T sort +ffffffff81315fa0 t match_number +ffffffff81316040 T match_token +ffffffff81316220 T match_int +ffffffff81316230 T match_u64 +ffffffff813162b0 T match_octal +ffffffff813162c0 T match_hex +ffffffff813162d0 T match_wildcard +ffffffff81316350 T match_strlcpy +ffffffff81316390 T match_strdup +ffffffff813163d0 T debug_locks_off +ffffffff81316410 T prandom_u32_state +ffffffff81316490 t prandom_warmup +ffffffff813164d0 T prandom_u32 +ffffffff81316500 T prandom_bytes_state +ffffffff81316560 T prandom_bytes +ffffffff813165a0 T prandom_seed +ffffffff81316600 t __prandom_timer +ffffffff81316660 T prandom_seed_full_state +ffffffff81316710 t __prandom_reseed +ffffffff81316760 T prandom_reseed_late +ffffffff81316767 t __extract_hwseed +ffffffff81316790 W bust_spinlocks +ffffffff813167c0 T kvasprintf +ffffffff81316840 T kvasprintf_const +ffffffff813168d0 T kasprintf +ffffffff81316920 t __reg_op +ffffffff813169d0 T __bitmap_equal +ffffffff81316a40 T __bitmap_complement +ffffffff81316a80 T __bitmap_shift_right +ffffffff81316b90 T __bitmap_shift_left +ffffffff81316c20 T __bitmap_and +ffffffff81316c90 T __bitmap_or +ffffffff81316cd0 T __bitmap_xor +ffffffff81316d10 T __bitmap_andnot +ffffffff81316d80 T __bitmap_intersects +ffffffff81316df0 T __bitmap_subset +ffffffff81316e70 T __bitmap_weight +ffffffff81316ed0 t bitmap_pos_to_ord +ffffffff81316ef0 T __bitmap_set +ffffffff81316f60 t __bitmap_parselist +ffffffff81317270 T __bitmap_clear +ffffffff813172f0 T bitmap_find_next_zero_area_off +ffffffff81317380 T __bitmap_parse +ffffffff81317560 T bitmap_parse_user +ffffffff813175a0 T bitmap_print_to_pagebuf +ffffffff813175f0 T bitmap_parselist +ffffffff81317630 T bitmap_parselist_user +ffffffff81317670 T bitmap_ord_to_pos +ffffffff813176c0 T bitmap_remap +ffffffff813177a0 T bitmap_bitremap +ffffffff81317800 T bitmap_onto +ffffffff81317880 T bitmap_fold +ffffffff81317900 T bitmap_find_free_region +ffffffff81317970 T bitmap_release_region +ffffffff81317980 T bitmap_allocate_region +ffffffff81317a00 T bitmap_from_arr32 +ffffffff81317a80 T bitmap_to_arr32 +ffffffff81317af0 t sg_kmalloc +ffffffff81317b10 t __sg_page_iter_next.part.4 +ffffffff81317b80 t sg_miter_get_next_page +ffffffff81317bf0 T sg_next +ffffffff81317c10 T sg_nents +ffffffff81317c50 T sg_nents_for_len +ffffffff81317cc0 T sg_last +ffffffff81317d00 T sg_init_table +ffffffff81317d30 T sg_init_one +ffffffff81317da0 T __sg_free_table +ffffffff81317e20 T sg_free_table +ffffffff81317e80 T __sg_alloc_table +ffffffff81317fd0 T sg_alloc_table +ffffffff81318070 t __sg_alloc_table_from_pages.part.3 +ffffffff81318260 T __sg_alloc_table_from_pages +ffffffff81318280 T sg_alloc_table_from_pages +ffffffff81318290 T sgl_free_n_order +ffffffff81318300 T sgl_alloc_order +ffffffff81318460 T sgl_alloc +ffffffff81318470 T sgl_free_order +ffffffff81318480 T sgl_free +ffffffff81318490 T __sg_page_iter_start +ffffffff813184b0 T __sg_page_iter_next +ffffffff813184d0 T sg_miter_start +ffffffff81318520 T sg_miter_stop +ffffffff813185b0 T sg_miter_skip +ffffffff81318600 T sg_miter_next +ffffffff813186a0 T sg_copy_buffer +ffffffff81318770 T sg_copy_from_buffer +ffffffff81318780 T sg_copy_to_buffer +ffffffff81318790 T sg_pcopy_from_buffer +ffffffff813187a0 T sg_pcopy_to_buffer +ffffffff813187b0 T sg_zero_buffer +ffffffff81318850 T gcd +ffffffff813188b0 T lcm +ffffffff813188e0 T lcm_not_zero +ffffffff81318920 t merge +ffffffff813189a0 T list_sort +ffffffff81318bb0 T generate_random_uuid +ffffffff81318be0 T guid_gen +ffffffff81318c10 T uuid_gen +ffffffff81318c40 T uuid_is_valid +ffffffff81318c80 t __uuid_parse +ffffffff81318d00 T guid_parse +ffffffff81318d10 T uuid_parse +ffffffff81318d20 t __fa_get_part.part.0 +ffffffff81318d80 T flex_array_alloc +ffffffff81318e70 T flex_array_free_parts +ffffffff81318ea0 T flex_array_free +ffffffff81318ef0 T flex_array_put +ffffffff81318fb0 T flex_array_clear +ffffffff81319030 T flex_array_prealloc +ffffffff81319100 T flex_array_get +ffffffff81319170 T flex_array_get_ptr +ffffffff81319190 T flex_array_shrink +ffffffff81319220 t memcpy_to_page +ffffffff81319280 t memcpy_from_page +ffffffff813192e0 t sanity +ffffffff813193b0 t push_pipe +ffffffff81319510 t copyout +ffffffff81319540 t copyin +ffffffff81319570 t memzero_page +ffffffff813195d0 T iov_iter_fault_in_readable +ffffffff81319710 T iov_iter_init +ffffffff81319750 T _copy_to_iter +ffffffff81319ae0 T _copy_from_iter +ffffffff81319d90 T _copy_from_iter_nocache +ffffffff8131a050 T _copy_from_iter_flushcache +ffffffff8131a300 T copy_page_to_iter +ffffffff8131a5b0 T copy_page_from_iter +ffffffff8131a7b0 T iov_iter_zero +ffffffff8131aad0 T iov_iter_copy_from_user_atomic +ffffffff8131add0 T iov_iter_advance +ffffffff8131b0c0 T _copy_from_iter_full +ffffffff8131b2d0 T _copy_from_iter_full_nocache +ffffffff8131b4e0 T iov_iter_revert +ffffffff8131b6c0 T iov_iter_single_seg_count +ffffffff8131b700 T iov_iter_kvec +ffffffff8131b720 T iov_iter_bvec +ffffffff8131b740 T iov_iter_pipe +ffffffff8131b780 T iov_iter_alignment +ffffffff8131b8f0 T iov_iter_gap_alignment +ffffffff8131ba80 T iov_iter_get_pages +ffffffff8131bd00 T iov_iter_get_pages_alloc +ffffffff8131c0d0 T csum_and_copy_from_iter +ffffffff8131c540 T csum_and_copy_from_iter_full +ffffffff8131c910 T csum_and_copy_to_iter +ffffffff8131cd70 T iov_iter_npages +ffffffff8131cf90 T dup_iter +ffffffff8131cfe0 T import_iovec +ffffffff8131d0a0 T import_single_range +ffffffff8131d110 T iov_iter_for_each_range +ffffffff8131d310 W __ctzsi2 +ffffffff8131d320 W __clzsi2 +ffffffff8131d330 W __clzdi2 +ffffffff8131d350 W __ctzdi2 +ffffffff8131d360 T bsearch +ffffffff8131d3e0 T find_next_bit +ffffffff8131d440 T find_next_zero_bit +ffffffff8131d4b0 T find_next_and_bit +ffffffff8131d520 T find_first_bit +ffffffff8131d570 T find_first_zero_bit +ffffffff8131d5c0 T find_last_bit +ffffffff8131d610 T llist_add_batch +ffffffff8131d630 T llist_del_first +ffffffff8131d670 T llist_reverse_order +ffffffff8131d690 T memweight +ffffffff8131d720 t kfifo_copy_in.isra.1 +ffffffff8131d780 t kfifo_copy_out.isra.2 +ffffffff8131d7e0 t kfifo_out_copy_r +ffffffff8131d840 t kfifo_copy_from_user.isra.3 +ffffffff8131d8f0 t kfifo_copy_to_user.isra.4 +ffffffff8131d9a0 t setup_sgl_buf.part.5 +ffffffff8131db10 t setup_sgl.isra.6 +ffffffff8131dbd0 T __kfifo_alloc +ffffffff8131dc50 T __kfifo_free +ffffffff8131dc80 T __kfifo_init +ffffffff8131dcd0 T __kfifo_in +ffffffff8131dd10 T __kfifo_out_peek +ffffffff8131dd40 T __kfifo_out +ffffffff8131dd70 T __kfifo_from_user +ffffffff8131dde0 T __kfifo_to_user +ffffffff8131de50 T __kfifo_dma_in_prepare +ffffffff8131de90 T __kfifo_dma_out_prepare +ffffffff8131dec0 T __kfifo_max_r +ffffffff8131dee0 T __kfifo_len_r +ffffffff8131df10 T __kfifo_in_r +ffffffff8131df90 T __kfifo_out_peek_r +ffffffff8131dfb0 T __kfifo_out_r +ffffffff8131dfe0 T __kfifo_from_user_r +ffffffff8131e0a0 T __kfifo_to_user_r +ffffffff8131e140 T __kfifo_dma_in_prepare_r +ffffffff8131e1b0 T __kfifo_dma_in_finish_r +ffffffff8131e200 T __kfifo_dma_out_prepare_r +ffffffff8131e260 T __kfifo_dma_out_finish_r +ffffffff8131e2a0 T __kfifo_skip_r +ffffffff8131e2b0 t percpu_ref_noop_confirm_switch +ffffffff8131e2c0 t percpu_ref_switch_to_atomic_rcu +ffffffff8131e390 t __percpu_ref_switch_mode +ffffffff8131e500 T percpu_ref_init +ffffffff8131e590 T percpu_ref_exit +ffffffff8131e5c0 T percpu_ref_switch_to_atomic +ffffffff8131e600 T percpu_ref_switch_to_atomic_sync +ffffffff8131e660 T percpu_ref_switch_to_percpu +ffffffff8131e6a0 T percpu_ref_kill_and_confirm +ffffffff8131e720 T percpu_ref_reinit +ffffffff8131e790 T percpu_ida_alloc +ffffffff8131ea70 T percpu_ida_free +ffffffff8131eb60 T percpu_ida_destroy +ffffffff8131eba0 T __percpu_ida_init +ffffffff8131ece0 T percpu_ida_for_each_free +ffffffff8131ee00 T percpu_ida_free_tags +ffffffff8131ee20 t jhash +ffffffff8131ef50 t rhashtable_jhash2 +ffffffff8131f030 t nested_table_free +ffffffff8131f080 t bucket_table_free +ffffffff8131f100 t bucket_table_free_rcu +ffffffff8131f110 t nested_table_alloc.isra.3.part.4 +ffffffff8131f180 t bucket_table_alloc +ffffffff8131f310 t rhashtable_rehash_alloc +ffffffff8131f370 T rhashtable_walk_enter +ffffffff8131f3d0 T rhashtable_walk_exit +ffffffff8131f430 T rhashtable_walk_start_check +ffffffff8131f4b0 T rhashtable_walk_stop +ffffffff8131f520 T rhashtable_init +ffffffff8131f770 T rhltable_init +ffffffff8131f790 T rht_bucket_nested +ffffffff8131f7f0 t rhashtable_lookup_one +ffffffff8131f8f0 t __rhashtable_walk_find_next +ffffffff8131fa10 T rhashtable_walk_next +ffffffff8131fa80 T rhashtable_walk_peek +ffffffff8131fab0 t rht_deferred_worker +ffffffff8131fe70 T rhashtable_free_and_destroy +ffffffff8131ff70 T rhashtable_destroy +ffffffff8131ff80 T rht_bucket_nested_insert +ffffffff81320050 t rhashtable_insert_one +ffffffff81320160 T rhashtable_insert_slow +ffffffff81320440 T reciprocal_value +ffffffff813204a0 t once_deferred +ffffffff813204d0 T __do_once_start +ffffffff81320510 T __do_once_done +ffffffff81320580 T refcount_dec_if_one +ffffffff81320590 T refcount_dec_not_one +ffffffff813205c0 T refcount_dec_and_mutex_lock +ffffffff81320610 T refcount_dec_and_lock +ffffffff81320660 T _copy_from_user +ffffffff813206c0 T _copy_to_user +ffffffff813206f0 T errseq_set +ffffffff81320750 T errseq_sample +ffffffff81320770 T errseq_check +ffffffff81320790 T errseq_check_and_advance +ffffffff813207c0 T alloc_bucket_spinlocks +ffffffff81320860 T free_bucket_spinlocks +ffffffff81320870 T string_get_size +ffffffff81320a10 T string_unescape +ffffffff81320be0 T string_escape_mem +ffffffff81320e70 T kstrdup_quotable +ffffffff81320f10 T kstrdup_quotable_cmdline +ffffffff81320fa0 T kstrdup_quotable_file +ffffffff81321030 T hex_to_bin +ffffffff81321070 T hex2bin +ffffffff81321110 T bin2hex +ffffffff81321160 T hex_dump_to_buffer +ffffffff81321610 T print_hex_dump +ffffffff81321740 T print_hex_dump_bytes +ffffffff81321770 T _parse_integer_fixup_radix +ffffffff813217d0 T _parse_integer +ffffffff81321850 t _kstrtoull +ffffffff813218c0 T kstrtoull +ffffffff813218d0 T kstrtoll +ffffffff81321930 T _kstrtoul +ffffffff81321960 T _kstrtol +ffffffff81321990 T kstrtouint +ffffffff813219d0 T kstrtoint +ffffffff81321a10 T kstrtou16 +ffffffff81321a50 T kstrtos16 +ffffffff81321a90 T kstrtou8 +ffffffff81321ad0 T kstrtos8 +ffffffff81321b10 T kstrtobool +ffffffff81321b60 T kstrtobool_from_user +ffffffff81321bb0 T kstrtoull_from_user +ffffffff81321c10 T kstrtoll_from_user +ffffffff81321c70 T kstrtoul_from_user +ffffffff81321cd0 T kstrtol_from_user +ffffffff81321d30 T kstrtouint_from_user +ffffffff81321d90 T kstrtoint_from_user +ffffffff81321e10 T kstrtou16_from_user +ffffffff81321e70 T kstrtos16_from_user +ffffffff81321ef0 T kstrtou8_from_user +ffffffff81321f50 T kstrtos8_from_user +ffffffff81321fd0 T ioread8 +ffffffff81322010 T ioread16 +ffffffff81322050 T ioread16be +ffffffff813220a0 T ioread32 +ffffffff813220e0 T ioread32be +ffffffff81322120 T iowrite8 +ffffffff81322160 T iowrite16 +ffffffff813221a0 T iowrite16be +ffffffff813221e0 T iowrite32 +ffffffff81322220 T iowrite32be +ffffffff81322260 T ioread8_rep +ffffffff813222b0 T ioread16_rep +ffffffff81322310 T ioread32_rep +ffffffff81322360 T iowrite8_rep +ffffffff813223b0 T iowrite16_rep +ffffffff81322400 T iowrite32_rep +ffffffff81322450 T ioport_map +ffffffff81322470 T ioport_unmap +ffffffff81322480 T pci_iounmap +ffffffff813224b0 T pci_iomap_range +ffffffff81322530 T pci_iomap_wc_range +ffffffff813225a0 T pci_iomap +ffffffff813225b0 T pci_iomap_wc +ffffffff813225e0 T __ioread32_copy +ffffffff81322600 W __iowrite64_copy +ffffffff81322630 t devm_ioremap_match +ffffffff81322640 T devm_ioremap_release +ffffffff81322650 t devm_ioport_map_release +ffffffff81322660 t pcim_iomap_release +ffffffff81322690 t devm_ioport_map_match +ffffffff813226a0 T devm_ioremap +ffffffff81322720 T devm_ioremap_nocache +ffffffff81322730 T devm_ioremap_wc +ffffffff813227b0 T devm_iounmap +ffffffff813227e0 T devm_ioremap_resource +ffffffff813228d0 T devm_ioport_map +ffffffff81322950 T devm_ioport_unmap +ffffffff81322980 T pcim_iomap_table +ffffffff813229e0 T pcim_iomap +ffffffff81322a30 T pcim_iounmap +ffffffff81322a70 T pcim_iomap_regions +ffffffff81322b80 T pcim_iomap_regions_request_all +ffffffff81322be0 T pcim_iounmap_regions +ffffffff81322c30 T check_signature +ffffffff81322c60 T __sw_hweight16 +ffffffff81322ca0 T __sw_hweight8 +ffffffff81322cd0 t assoc_array_subtree_iterate +ffffffff81322dd0 t assoc_array_walk.isra.0 +ffffffff81322f40 t assoc_array_delete_collapse_iterator +ffffffff81322f70 t assoc_array_destroy_subtree.part.3 +ffffffff813230a0 t assoc_array_rcu_cleanup +ffffffff81323110 T assoc_array_iterate +ffffffff81323130 T assoc_array_find +ffffffff813231c0 T assoc_array_destroy +ffffffff813231e0 T assoc_array_insert_set_object +ffffffff813231f0 T assoc_array_clear +ffffffff81323250 T assoc_array_apply_edit +ffffffff81323350 T assoc_array_cancel_edit +ffffffff81323390 T assoc_array_insert +ffffffff81323d80 T assoc_array_delete +ffffffff81324070 T assoc_array_gc +ffffffff81324530 T rational_best_approximation +ffffffff813245b0 T crc16 +ffffffff813245e0 t crc32_generic_shift +ffffffff813246c0 T crc32_le +ffffffff81324820 T __crc32c_le +ffffffff81324980 T crc32_le_shift +ffffffff81324990 T __crc32c_le_shift +ffffffff813249a0 T crc32_be +ffffffff81324b00 T xxh32_copy_state +ffffffff81324b30 T xxh64_copy_state +ffffffff81324b80 T xxh32 +ffffffff81324ca0 T xxh64 +ffffffff81324f10 T xxh32_reset +ffffffff81324fa0 T xxh64_reset +ffffffff81325010 T xxh32_update +ffffffff813251f0 T xxh32_digest +ffffffff813252c0 T xxh64_update +ffffffff813254b0 T xxh64_digest +ffffffff813256c0 t bitmap_clear_ll +ffffffff813257b0 T gen_pool_first_fit +ffffffff813257c0 t devm_gen_pool_match +ffffffff813257f0 T gen_pool_create +ffffffff81325840 T gen_pool_add_virt +ffffffff813258d0 T gen_pool_virt_to_phys +ffffffff81325930 T gen_pool_destroy +ffffffff81325a00 t devm_gen_pool_release +ffffffff81325a10 T gen_pool_alloc_algo +ffffffff81325c20 T gen_pool_alloc +ffffffff81325c30 T gen_pool_dma_alloc +ffffffff81325c80 T gen_pool_free +ffffffff81325d30 T gen_pool_for_each_chunk +ffffffff81325d80 T addr_in_gen_pool +ffffffff81325de0 T gen_pool_avail +ffffffff81325e20 T gen_pool_size +ffffffff81325e60 T gen_pool_set_algo +ffffffff81325ea0 T gen_pool_first_fit_align +ffffffff81325ed0 T gen_pool_fixed_alloc +ffffffff81325f20 T gen_pool_first_fit_order_align +ffffffff81325f50 T gen_pool_best_fit +ffffffff81325ff0 T gen_pool_get +ffffffff81326020 T devm_gen_pool_create +ffffffff81326110 T inflate_fast +ffffffff81326680 t zlib_updatewindow +ffffffff81326740 T zlib_inflate_workspacesize +ffffffff81326750 T zlib_inflateReset +ffffffff813267f0 T zlib_inflateInit2 +ffffffff81326850 T zlib_inflate +ffffffff81327f20 T zlib_inflateEnd +ffffffff81327f40 T zlib_inflateIncomp +ffffffff813281f0 T zlib_inflate_blob +ffffffff813282d0 T zlib_inflate_table +ffffffff81328790 t longest_match +ffffffff81328980 t fill_window +ffffffff81328de0 t flush_pending +ffffffff81328e50 t deflate_slow +ffffffff81329250 t deflate_fast +ffffffff81329510 t deflate_stored +ffffffff813296c0 T zlib_deflateReset +ffffffff81329800 T zlib_deflateInit2 +ffffffff81329990 T zlib_deflate +ffffffff81329d40 T zlib_deflateEnd +ffffffff81329d90 T zlib_deflate_workspacesize +ffffffff81329de0 t pqdownheap +ffffffff81329eb0 t scan_tree +ffffffff81329fc0 t send_tree +ffffffff8132a540 t compress_block +ffffffff8132a950 t gen_codes +ffffffff8132a9f0 t build_tree +ffffffff8132ae80 T zlib_tr_init +ffffffff8132b210 T zlib_tr_stored_block +ffffffff8132b3a0 T zlib_tr_stored_type_only +ffffffff8132b480 T zlib_tr_align +ffffffff8132b810 T zlib_tr_flush_block +ffffffff8132bef0 T zlib_tr_tally +ffffffff8132c010 t lzo1x_1_do_compress +ffffffff8132c390 T lzo1x_1_compress +ffffffff8132c590 T lzo1x_decompress_safe +ffffffff8132cac0 T FSE_buildCTable_wksp +ffffffff8132ccf0 T FSE_NCountWriteBound +ffffffff8132cd10 T FSE_writeNCount +ffffffff8132d150 T FSE_count_simple +ffffffff8132d1e0 T FSE_countFast_wksp +ffffffff8132d470 T FSE_count_wksp +ffffffff8132d780 T FSE_sizeof_CTable +ffffffff8132d7a0 T FSE_optimalTableLog_internal +ffffffff8132d810 T FSE_optimalTableLog +ffffffff8132d870 T FSE_normalizeCount +ffffffff8132dc20 T FSE_buildCTable_raw +ffffffff8132dc90 T FSE_buildCTable_rle +ffffffff8132dcc0 T FSE_compress_usingCTable +ffffffff8132e610 T FSE_compressBound +ffffffff8132e620 t HUF_sort +ffffffff8132e730 t HUF_setMaxHeight +ffffffff8132eb30 t HUF_compress1X_usingCTable.part.1 +ffffffff8132ed30 t HUF_compressCTable_internal +ffffffff8132ef90 T HUF_optimalTableLog +ffffffff8132efa0 T HUF_compressWeights_wksp +ffffffff8132f1c0 T HUF_writeCTable_wksp +ffffffff8132f5d0 T HUF_readCTable_wksp +ffffffff8132fd50 T HUF_buildCTable_wksp +ffffffff81330160 T HUF_compressBound +ffffffff81330170 T HUF_compress1X_usingCTable +ffffffff81330380 T HUF_compress4X_usingCTable +ffffffff81330530 T HUF_compress1X_wksp +ffffffff81330800 T HUF_compress1X_repeat +ffffffff81330d00 T HUF_compress4X_wksp +ffffffff81330f90 T HUF_compress4X_repeat +ffffffff81331400 t ZSTD_hashPtr +ffffffff81331490 t ZSTD_resetCCtx_advanced +ffffffff81331910 t ZSTD_count +ffffffff813319b0 t ZSTD_compressBlock_fast +ffffffff81332c60 t ZSTD_compressBlock_doubleFast +ffffffff81334770 t ZSTD_count_2segments +ffffffff813347d0 t ZSTD_compressBlock_doubleFast_extDict_generic +ffffffff813350c0 t ZSTD_compressBlock_doubleFast_extDict +ffffffff81335100 t ZSTD_compressBlock_fast_extDict_generic +ffffffff813356a0 t ZSTD_compressBlock_fast_extDict +ffffffff813356e0 t ZSTD_insertBtAndGetAllMatches +ffffffff81335bc0 t ZSTD_writeFrameHeader.isra.2 +ffffffff81335d40 t ZSTD_insertBt1.constprop.22 +ffffffff81336020 t ZSTD_BtGetAllMatches_selectMLS_extDict +ffffffff813361f0 t ZSTD_compressBlock_btopt_extDict +ffffffff81338ad0 t ZSTD_compressBlock_btopt2_extDict +ffffffff8133b360 t ZSTD_copyCCtx.part.10 +ffffffff8133b990 t ZSTD_BtFindBestMatch_extDict.part.5.constprop.19 +ffffffff8133bd50 t ZSTD_compressBlock_btlazy2_extDict +ffffffff8133c710 t ZSTD_updateTree +ffffffff8133cb20 t ZSTD_loadDictionaryContent +ffffffff8133cd20 t ZSTD_loadZstdDictionary +ffffffff8133cff0 t ZSTD_BtFindBestMatch.part.6.constprop.18 +ffffffff8133d280 t ZSTD_compressBlock_btlazy2 +ffffffff8133db40 t ZSTD_BtGetAllMatches_selectMLS +ffffffff8133dc70 t ZSTD_compressBlock_btopt +ffffffff81340430 t ZSTD_compressBlock_btopt2 +ffffffff81342b90 t ZSTD_createCDict_advanced +ffffffff81342fe0 t ZSTD_resetCStream_internal +ffffffff81343250 t ZSTD_compressBlock_lazy2 +ffffffff81344760 t ZSTD_compressBlock_greedy +ffffffff81344fe0 T ZSTD_compressBlock_greedy_extDict +ffffffff81345a70 t ZSTD_compressBlock_lazy +ffffffff81346910 t ZSTD_compressBlock_lazy2_extDict +ffffffff81348730 t ZSTD_compressBlock_lazy_extDict +ffffffff81349c70 T ZSTD_compressBound +ffffffff81349c80 T ZSTD_CCtxWorkspaceBound +ffffffff81349d80 T ZSTD_initCCtx +ffffffff81349e30 T ZSTD_freeCCtx +ffffffff81349e80 T ZSTD_getSeqStore +ffffffff81349e90 T ZSTD_checkCParams +ffffffff81349f00 T ZSTD_adjustCParams +ffffffff81349fb0 T ZSTD_invalidateRepCodes +ffffffff81349fc0 T ZSTD_copyCCtx +ffffffff81349fe0 T ZSTD_noCompressBlock +ffffffff8134a030 T ZSTD_seqToCodes +ffffffff8134a120 t ZSTD_compressBlock_internal +ffffffff8134b500 t ZSTD_compressContinue_internal +ffffffff8134b930 T ZSTD_compressContinue +ffffffff8134b940 T ZSTD_getBlockSizeMax +ffffffff8134b960 T ZSTD_compressBlock +ffffffff8134ba40 T ZSTD_compressBegin_advanced +ffffffff8134bb40 T ZSTD_compressEnd +ffffffff8134bc60 t ZSTD_compressStream_generic +ffffffff8134bf30 T ZSTD_compress_usingDict +ffffffff8134c520 T ZSTD_compressCCtx +ffffffff8134ca80 T ZSTD_CDictWorkspaceBound +ffffffff8134cb80 T ZSTD_initCDict +ffffffff8134cf60 T ZSTD_freeCDict +ffffffff8134d010 T ZSTD_compressBegin_usingCDict +ffffffff8134d120 T ZSTD_compress_usingCDict +ffffffff8134d3b0 T ZSTD_CStreamWorkspaceBound +ffffffff8134d4e0 T ZSTD_freeCStream +ffffffff8134d670 T ZSTD_createCStream_advanced +ffffffff8134d790 T ZSTD_CStreamInSize +ffffffff8134d7a0 T ZSTD_CStreamOutSize +ffffffff8134d7b0 T ZSTD_resetCStream +ffffffff8134da30 T ZSTD_initCStream +ffffffff8134dd70 T ZSTD_initCStream_usingCDict +ffffffff8134e0b0 T ZSTD_compressStream +ffffffff8134e110 T ZSTD_flushStream +ffffffff8134e170 T ZSTD_endStream +ffffffff8134e2d0 T ZSTD_maxCLevel +ffffffff8134e2e0 T ZSTD_getCParams +ffffffff8134e470 T ZSTD_getParams +ffffffff8134e640 T ZSTD_compressBegin_usingDict +ffffffff8134ec00 T ZSTD_compressBegin +ffffffff8134f120 T FSE_versionNumber +ffffffff8134f130 T FSE_isError +ffffffff8134f140 T HUF_isError +ffffffff8134f150 T FSE_readNCount +ffffffff8134f3d0 T HUF_readStats_wksp +ffffffff8134f5b0 T FSE_buildDTable_wksp +ffffffff8134f750 T FSE_buildDTable_rle +ffffffff8134f770 T FSE_buildDTable_raw +ffffffff8134f7c0 T FSE_decompress_usingDTable +ffffffff813501d0 T FSE_decompress_wksp +ffffffff813502d0 T ZSTD_stackAlloc +ffffffff813502f0 T ZSTD_stackFree +ffffffff81350300 T ZSTD_initStack +ffffffff81350360 T ZSTD_stackAllocAll +ffffffff813503a0 T ZSTD_malloc +ffffffff813503c0 T ZSTD_free +ffffffff813503e0 t HUF_decompress1X2_usingDTable_internal +ffffffff813507f0 t HUF_fillDTableX4Level2 +ffffffff813508f0 t HUF_decodeLastSymbolX4.isra.3 +ffffffff81350940 t HUF_decompress4X2_usingDTable_internal.part.4 +ffffffff81352620 t HUF_decompress4X4_usingDTable_internal.part.5 +ffffffff813542b0 t HUF_decompress1X4_usingDTable_internal +ffffffff81354770 T HUF_readDTableX2_wksp +ffffffff813548e0 T HUF_decompress1X2_usingDTable +ffffffff81354d10 T HUF_decompress1X2_DCtx_wksp +ffffffff81354ed0 T HUF_decompress4X2_usingDTable +ffffffff81354f00 T HUF_decompress4X2_DCtx_wksp +ffffffff813550d0 T HUF_readDTableX4_wksp +ffffffff813554d0 T HUF_decompress1X4_usingDTable +ffffffff813554f0 T HUF_decompress1X4_DCtx_wksp +ffffffff81355950 T HUF_decompress4X4_usingDTable +ffffffff81355980 T HUF_decompress4X4_DCtx_wksp +ffffffff81355df0 T HUF_decompress1X_usingDTable +ffffffff81356250 T HUF_decompress4X_usingDTable +ffffffff81356280 T HUF_selectDecoder +ffffffff813562c0 T HUF_decompress4X_DCtx_wksp +ffffffff81356420 T HUF_decompress4X_hufOnly_wksp +ffffffff81356560 T HUF_decompress1X_DCtx_wksp +ffffffff813566c0 t ZSTD_loadEntropy +ffffffff813568c0 t ZSTD_execSequenceLast7.isra.3 +ffffffff81356b20 t ZSTD_decodeLiteralsBlock.part.9 +ffffffff81356e40 t ZSTD_decompressSequences +ffffffff81357e40 t ZSTD_decompressSequencesLong +ffffffff81359a90 T ZSTD_DCtxWorkspaceBound +ffffffff81359aa0 T ZSTD_decompressBegin +ffffffff81359b50 T ZSTD_createDCtx_advanced +ffffffff81359c60 T ZSTD_initDCtx +ffffffff81359d90 T ZSTD_freeDCtx +ffffffff81359dc0 T ZSTD_copyDCtx +ffffffff81359dd0 T ZSTD_isFrame +ffffffff81359e00 T ZSTD_getFrameParams +ffffffff8135a000 T ZSTD_getFrameContentSize +ffffffff8135a1b0 T ZSTD_findDecompressedSize +ffffffff8135a4d0 T ZSTD_getcBlockSize +ffffffff8135a520 T ZSTD_decodeLiteralsBlock +ffffffff8135a830 T ZSTD_decodeSeqHeaders +ffffffff8135ac40 T ZSTD_decompressBlock +ffffffff8135b0a0 T ZSTD_insertBlock +ffffffff8135b0e0 T ZSTD_generateNxBytes +ffffffff8135b110 T ZSTD_findFrameCompressedSize +ffffffff8135b3a0 T ZSTD_nextSrcSizeToDecompress +ffffffff8135b3b0 T ZSTD_nextInputType +ffffffff8135b3d0 T ZSTD_isSkipFrame +ffffffff8135b3e0 T ZSTD_decompressContinue +ffffffff8135bc10 T ZSTD_decompressBegin_usingDict +ffffffff8135bd70 T ZSTD_decompress_usingDict +ffffffff8135c1c0 T ZSTD_decompressDCtx +ffffffff8135c600 T ZSTD_DDictWorkspaceBound +ffffffff8135c610 T ZSTD_initDDict +ffffffff8135c760 T ZSTD_freeDDict +ffffffff8135c7c0 T ZSTD_getDictID_fromDict +ffffffff8135c7e0 T ZSTD_getDictID_fromDDict +ffffffff8135c800 T ZSTD_getDictID_fromFrame +ffffffff8135c970 T ZSTD_decompress_usingDDict +ffffffff8135cf80 T ZSTD_DStreamWorkspaceBound +ffffffff8135cfb0 T ZSTD_freeDStream +ffffffff8135d0d0 T ZSTD_initDStream +ffffffff8135d3c0 T ZSTD_initDStream_usingDDict +ffffffff8135d6c0 T ZSTD_DStreamInSize +ffffffff8135d6d0 T ZSTD_DStreamOutSize +ffffffff8135d6e0 T ZSTD_resetDStream +ffffffff8135d720 T ZSTD_decompressStream +ffffffff8135e640 t raid6_exit +ffffffff8135e650 t raid6_2data_recov_intx1 +ffffffff8135e780 t raid6_datap_recov_intx1 +ffffffff8135e830 t raid6_int1_gen_syndrome +ffffffff8135e930 t raid6_int1_xor_syndrome +ffffffff8135ea40 t raid6_int2_gen_syndrome +ffffffff8135ebb0 t raid6_int2_xor_syndrome +ffffffff8135ed60 t raid6_int4_gen_syndrome +ffffffff8135f030 t raid6_int4_xor_syndrome +ffffffff8135f3a0 t raid6_int8_gen_syndrome +ffffffff8135f9c0 t raid6_int8_xor_syndrome +ffffffff813601a0 t raid6_has_ssse3 +ffffffff813601b0 t raid6_datap_recov_ssse3 +ffffffff81360300 t raid6_2data_recov_ssse3 +ffffffff81360570 t raid6_datap_recov_avx2 +ffffffff813606b0 t raid6_2data_recov_avx2 +ffffffff813608d0 t raid6_has_avx2 +ffffffff813608f0 t raid6_have_sse2 +ffffffff81360900 t raid6_sse21_xor_syndrome +ffffffff81360a00 t raid6_sse21_gen_syndrome +ffffffff81360b30 t raid6_sse22_xor_syndrome +ffffffff81360c80 t raid6_sse22_gen_syndrome +ffffffff81360db0 t raid6_sse24_xor_syndrome +ffffffff81361030 t raid6_sse24_gen_syndrome +ffffffff81361210 t raid6_avx21_xor_syndrome +ffffffff81361310 t raid6_avx21_gen_syndrome +ffffffff81361430 t raid6_avx22_xor_syndrome +ffffffff81361580 t raid6_avx22_gen_syndrome +ffffffff813616b0 t raid6_avx24_xor_syndrome +ffffffff81361920 t raid6_avx24_gen_syndrome +ffffffff81361ae0 t raid6_have_avx2 +ffffffff81361b00 t raid6_avx5121_xor_syndrome +ffffffff81361c20 t raid6_avx5121_gen_syndrome +ffffffff81361d70 t raid6_avx5122_xor_syndrome +ffffffff81361f20 t raid6_avx5122_gen_syndrome +ffffffff81362080 t raid6_avx5124_xor_syndrome +ffffffff81362390 t raid6_avx5124_gen_syndrome +ffffffff813625c0 t raid6_have_avx512 +ffffffff81362620 t raid6_datap_recov_avx512 +ffffffff81362790 t raid6_2data_recov_avx512 +ffffffff813629f0 t raid6_has_avx512 +ffffffff81362a50 t compute_batch_value +ffffffff81362a80 t percpu_counter_cpu_dead +ffffffff81362b00 T percpu_counter_set +ffffffff81362b60 T percpu_counter_add_batch +ffffffff81362bd0 T __percpu_counter_sum +ffffffff81362c30 T __percpu_counter_init +ffffffff81362cb0 T percpu_counter_destroy +ffffffff81362d20 T __percpu_counter_compare +ffffffff81362d80 t swiotlb_full +ffffffff81362e20 T swiotlb_nr_tbl +ffffffff81362e30 T swiotlb_max_segment +ffffffff81362e40 T swiotlb_set_max_segment +ffffffff81362e70 T swiotlb_size_or_default +ffffffff81362e90 W swiotlb_set_mem_attributes +ffffffff81362ea0 T swiotlb_print_info +ffffffff81362ef0 T swiotlb_late_init_with_tbl +ffffffff81363140 T swiotlb_late_init_with_default_size +ffffffff81363270 T is_swiotlb_buffer +ffffffff81363290 T swiotlb_tbl_map_single +ffffffff81363580 t map_single +ffffffff81363600 T swiotlb_tbl_unmap_single +ffffffff81363720 T swiotlb_tbl_sync_single +ffffffff813637a0 t swiotlb_sync_single +ffffffff813637c0 T swiotlb_alloc_coherent +ffffffff81363970 T swiotlb_free_coherent +ffffffff813639c0 T swiotlb_map_page +ffffffff81363a90 T swiotlb_unmap_page +ffffffff81363ac0 T swiotlb_sync_single_for_cpu +ffffffff81363ad0 T swiotlb_sync_single_for_device +ffffffff81363ae0 T swiotlb_unmap_sg_attrs +ffffffff81363b60 T swiotlb_map_sg_attrs +ffffffff81363c70 T swiotlb_sync_sg_for_cpu +ffffffff81363cc0 T swiotlb_sync_sg_for_device +ffffffff81363d10 T swiotlb_dma_mapping_error +ffffffff81363d20 T swiotlb_dma_supported +ffffffff81363d35 t unmap_single.part.3 +ffffffff81363d40 T iommu_is_span_boundary +ffffffff81363d70 T iommu_area_alloc +ffffffff81363e10 T iommu_tbl_pool_init +ffffffff81363f80 T iommu_tbl_range_alloc +ffffffff81364290 T iommu_tbl_range_free +ffffffff81364320 t collect_syscall +ffffffff81364420 T task_current_syscall +ffffffff813644e0 t validate_nla +ffffffff813646f0 T nla_validate +ffffffff81364780 T nla_policy_len +ffffffff813647d0 T nla_parse +ffffffff813648c0 T nla_find +ffffffff81364900 T nla_strlcpy +ffffffff81364950 T nla_strdup +ffffffff813649c0 T nla_memcpy +ffffffff81364a00 T nla_memcmp +ffffffff81364a20 T nla_strcmp +ffffffff81364a70 T __nla_reserve +ffffffff81364ac0 T __nla_reserve_64bit +ffffffff81364ad0 T __nla_reserve_nohdr +ffffffff81364af0 T nla_reserve +ffffffff81364b20 T nla_reserve_64bit +ffffffff81364b50 T nla_reserve_nohdr +ffffffff81364b80 T __nla_put +ffffffff81364ba0 T __nla_put_64bit +ffffffff81364bc0 T __nla_put_nohdr +ffffffff81364be0 T nla_put +ffffffff81364c20 T nla_put_64bit +ffffffff81364c80 T nla_put_nohdr +ffffffff81364cd0 T nla_append +ffffffff81364d20 t cpu_rmap_copy_neigh +ffffffff81364da0 T alloc_cpu_rmap +ffffffff81364e40 T cpu_rmap_put +ffffffff81364e60 t irq_cpu_rmap_release +ffffffff81364e80 T cpu_rmap_add +ffffffff81364eb0 T cpu_rmap_update +ffffffff81364fd0 t irq_cpu_rmap_notify +ffffffff81365000 T free_irq_cpu_rmap +ffffffff81365040 T irq_cpu_rmap_add +ffffffff813650d6 t cpu_rmap_add.part.0 +ffffffff813650e0 T dql_completed +ffffffff81365220 T dql_reset +ffffffff81365260 T dql_init +ffffffff813652b0 T glob_match +ffffffff81365460 T mpihelp_lshift +ffffffff813654e0 T mpihelp_mul_1 +ffffffff81365590 T mpihelp_addmul_1 +ffffffff81365650 T mpihelp_submul_1 +ffffffff81365710 T mpihelp_rshift +ffffffff813657a0 T mpihelp_sub_n +ffffffff813657f0 T mpihelp_add_n +ffffffff81365840 T mpi_read_raw_data +ffffffff81365950 T mpi_read_from_buffer +ffffffff813659e0 T mpi_read_buffer +ffffffff81365bc0 T mpi_get_buffer +ffffffff81365c50 T mpi_write_to_sgl +ffffffff81365da0 T mpi_read_raw_from_sgl +ffffffff81365f80 T mpi_normalize +ffffffff81365fc0 T mpi_get_nbits +ffffffff81366010 T mpi_cmp_ui +ffffffff81366060 T mpi_cmp +ffffffff813660d0 T mpihelp_cmp +ffffffff81366130 T mpihelp_divrem +ffffffff81366910 t mul_n_basecase +ffffffff81366a20 t mul_n +ffffffff81366dd0 T mpih_sqr_n_basecase +ffffffff81366ed0 T mpih_sqr_n +ffffffff81367230 T mpihelp_release_karatsuba_ctx +ffffffff81367290 T mpihelp_mul +ffffffff81367460 T mpihelp_mul_karatsuba_case +ffffffff81367740 T mpi_powm +ffffffff81368100 T mpi_alloc_limb_space +ffffffff81368120 T mpi_alloc +ffffffff81368180 T mpi_free_limb_space +ffffffff81368190 T mpi_assign_limb_space +ffffffff813681c0 T mpi_resize +ffffffff81368240 T mpi_free +ffffffff81368280 T strncpy_from_user +ffffffff813683d0 T strnlen_user +ffffffff813684d0 T mac_pton +ffffffff81368570 t sg_pool_free +ffffffff813685c0 t sg_pool_alloc +ffffffff81368610 T sg_free_table_chained +ffffffff81368640 T sg_alloc_table_chained +ffffffff813686e8 t sg_pool_alloc.part.1 +ffffffff813686e8 t sg_pool_free.part.0 +ffffffff813686f0 T asn1_ber_decoder +ffffffff81368e30 T find_font +ffffffff81368e80 T get_default_font +ffffffff81368f40 T look_up_OID +ffffffff81369040 T sprint_oid +ffffffff81369170 T sprint_OID +ffffffff813691c0 T ucs2_strnlen +ffffffff813691f0 T ucs2_strlen +ffffffff81369210 T ucs2_strsize +ffffffff81369240 T ucs2_strncmp +ffffffff81369290 T ucs2_utf8size +ffffffff813692e0 T ucs2_as_utf8 +ffffffff813693e0 t __sbitmap_get_word +ffffffff81369460 T sbitmap_init_node +ffffffff81369550 T sbitmap_resize +ffffffff813695a0 T sbitmap_get +ffffffff81369640 T sbitmap_get_shallow +ffffffff813696e0 T sbitmap_any_bit_set +ffffffff81369720 T sbitmap_any_bit_clear +ffffffff81369770 T sbitmap_weight +ffffffff813697b0 T sbitmap_show +ffffffff81369810 T sbitmap_bitmap_show +ffffffff813699e0 T sbitmap_queue_init_node +ffffffff81369b70 T sbitmap_queue_resize +ffffffff81369c00 T __sbitmap_queue_get +ffffffff81369c90 T __sbitmap_queue_get_shallow +ffffffff81369d30 T sbitmap_queue_clear +ffffffff81369e00 T sbitmap_queue_wake_all +ffffffff81369e60 T sbitmap_queue_show +ffffffff81369fa0 t __rdmsr_on_cpu +ffffffff81369fe0 t __wrmsr_on_cpu +ffffffff8136a010 t __rdmsr_safe_on_cpu +ffffffff8136a030 t __wrmsr_safe_on_cpu +ffffffff8136a040 t __rwmsr_on_cpus +ffffffff8136a0d0 t __rdmsr_safe_regs_on_cpu +ffffffff8136a0f0 t __wrmsr_safe_regs_on_cpu +ffffffff8136a110 T rdmsr_on_cpu +ffffffff8136a170 T rdmsrl_on_cpu +ffffffff8136a1c0 T wrmsr_on_cpu +ffffffff8136a210 T wrmsrl_on_cpu +ffffffff8136a260 T rdmsr_on_cpus +ffffffff8136a270 T wrmsr_on_cpus +ffffffff8136a280 T rdmsr_safe_on_cpu +ffffffff8136a2f0 T wrmsr_safe_on_cpu +ffffffff8136a350 T wrmsrl_safe_on_cpu +ffffffff8136a3a0 T rdmsrl_safe_on_cpu +ffffffff8136a400 T rdmsr_safe_regs_on_cpu +ffffffff8136a440 T wrmsr_safe_regs_on_cpu +ffffffff8136a480 t __wbinvd +ffffffff8136a490 T wbinvd_on_cpu +ffffffff8136a4b0 T wbinvd_on_all_cpus +ffffffff8136a4d0 T msrs_alloc +ffffffff8136a510 T msrs_free +ffffffff8136a520 T msr_read +ffffffff8136a540 T msr_write +ffffffff8136a560 T msr_set_bit +ffffffff8136a5c0 T msr_clear_bit +ffffffff8136a620 T rdmsr_safe_regs +ffffffff8136a670 T wrmsr_safe_regs +ffffffff8136a6c0 T __sw_hweight32 +ffffffff8136a700 T __sw_hweight64 +ffffffff8136a760 T __iowrite32_copy +ffffffff8136a770 t pci_vpd_set_size +ffffffff8136a7a0 t pci_vpd_size +ffffffff8136a930 t pci_wait_cfg +ffffffff8136a9e0 t pci_vpd_f0_read +ffffffff8136aa60 t pci_vpd_f0_write +ffffffff8136aae0 t pci_vpd_f0_set_size +ffffffff8136ab50 t pcie_capability_reg_implemented.part.1 +ffffffff8136abe0 t pci_read_config_word.part.2 +ffffffff8136ac40 t pci_read_config_dword.part.4 +ffffffff8136ac90 t pci_write_config_word.part.6 +ffffffff8136acc0 t pci_write_config_dword.part.7 +ffffffff8136acf0 T pci_bus_read_config_byte +ffffffff8136ad30 T pci_bus_read_config_word +ffffffff8136ad80 T pci_bus_read_config_dword +ffffffff8136add0 T pci_bus_write_config_byte +ffffffff8136adf0 T pci_bus_write_config_word +ffffffff8136ae20 T pci_bus_write_config_dword +ffffffff8136ae50 T pci_generic_config_read +ffffffff8136aeb0 T pci_generic_config_write +ffffffff8136af00 T pci_generic_config_read32 +ffffffff8136af70 T pci_generic_config_write32 +ffffffff8136b060 T pci_bus_set_ops +ffffffff8136b0a0 T pci_user_read_config_byte +ffffffff8136b140 T pci_user_read_config_word +ffffffff8136b1f0 t pci_vpd_wait +ffffffff8136b2d0 T pci_user_read_config_dword +ffffffff8136b380 T pci_user_write_config_byte +ffffffff8136b400 T pci_user_write_config_word +ffffffff8136b490 t pci_vpd_read +ffffffff8136b630 T pci_user_write_config_dword +ffffffff8136b6c0 t pci_vpd_write +ffffffff8136b820 T pci_read_vpd +ffffffff8136b850 T pci_write_vpd +ffffffff8136b880 T pci_set_vpd_size +ffffffff8136b8b0 T pci_vpd_init +ffffffff8136b940 T pci_vpd_release +ffffffff8136b950 T pci_cfg_access_lock +ffffffff8136b990 T pci_cfg_access_trylock +ffffffff8136b9e0 T pci_cfg_access_unlock +ffffffff8136ba20 T pcie_cap_has_lnkctl +ffffffff8136ba40 T pcie_capability_read_word +ffffffff8136bad0 T pcie_capability_read_dword +ffffffff8136bb60 T pcie_capability_write_word +ffffffff8136bbb0 T pcie_capability_write_dword +ffffffff8136bc10 T pcie_capability_clear_and_set_word +ffffffff8136bc60 T pcie_capability_clear_and_set_dword +ffffffff8136bcb0 T pci_read_config_byte +ffffffff8136bd10 T pci_read_config_word +ffffffff8136bd30 T pci_read_config_dword +ffffffff8136bd50 T pci_write_config_byte +ffffffff8136bd90 T pci_write_config_word +ffffffff8136bdb0 T pci_write_config_dword +ffffffff8136bdd0 t pci_bus_resource_n.part.0 +ffffffff8136be10 t pci_bus_alloc_from_region +ffffffff8136bfa0 T pci_add_resource_offset +ffffffff8136bff0 T pci_add_resource +ffffffff8136c000 T pci_free_resource_list +ffffffff8136c010 T pci_bus_add_resource +ffffffff8136c070 T pci_bus_resource_n +ffffffff8136c090 T pci_bus_remove_resources +ffffffff8136c110 T devm_request_pci_bus_resources +ffffffff8136c190 T pci_bus_alloc_resource +ffffffff8136c220 T pci_bus_clip_resource +ffffffff8136c3b0 W pcibios_bus_add_device +ffffffff8136c3c0 T pci_bus_add_device +ffffffff8136c440 T pci_bus_add_devices +ffffffff8136c4a0 T pci_walk_bus +ffffffff8136c530 T pci_bus_get +ffffffff8136c550 T pci_bus_put +ffffffff8136c570 t find_anything +ffffffff8136c580 t devm_pci_release_host_bridge_dev +ffffffff8136c5a0 t release_pcibus_dev +ffffffff8136c5d0 t pci_read_irq +ffffffff8136c620 t pci_release_host_bridge_dev +ffffffff8136c650 t pci_set_bus_msi_domain +ffffffff8136c6e0 t pci_release_dev +ffffffff8136c730 t pci_alloc_bus.isra.0 +ffffffff8136c790 t pci_cfg_space_size_ext +ffffffff8136c820 t next_fn.isra.7 +ffffffff8136c8a0 t pcie_bus_configure_set.part.9 +ffffffff8136c9f0 t pcie_bus_configure_set +ffffffff8136ca10 t pcie_find_smpss +ffffffff8136ca50 T no_pci_devices +ffffffff8136ca80 T __pci_read_base +ffffffff8136ce30 t pci_read_bases +ffffffff8136ceb0 T pci_read_bridge_bases +ffffffff8136d2b0 T pci_alloc_host_bridge +ffffffff8136d2f0 T devm_pci_alloc_host_bridge +ffffffff8136d330 T pci_free_host_bridge +ffffffff8136d350 T pcie_update_link_speed +ffffffff8136d370 T set_pcie_port_type +ffffffff8136d420 T set_pcie_hotplug_bridge +ffffffff8136d450 T pci_cfg_space_size +ffffffff8136d4b0 T pci_setup_device +ffffffff8136da00 T pci_configure_extended_tags +ffffffff8136dad0 t pci_configure_device +ffffffff8136e000 T pcie_relaxed_ordering_enabled +ffffffff8136e030 T pci_alloc_dev +ffffffff8136e080 T pci_bus_read_dev_vendor_id +ffffffff8136e1e0 T pci_device_add +ffffffff8136e3c0 T pci_scan_single_device +ffffffff8136e470 T pci_scan_slot +ffffffff8136e540 T pcie_bus_configure_settings +ffffffff8136e620 T pci_add_new_bus +ffffffff8136ea00 T pci_bus_insert_busn_res +ffffffff8136eb60 t pci_register_host_bridge +ffffffff8136ef00 T pci_create_root_bus +ffffffff8136efb0 T pci_bus_update_busn_res_end +ffffffff8136f0d0 t pci_scan_bridge_extend +ffffffff8136f6b0 T pci_scan_bridge +ffffffff8136f6c0 t pci_scan_child_bus_extend +ffffffff8136f8b0 T pci_scan_child_bus +ffffffff8136f8c0 T pci_bus_release_busn_res +ffffffff8136f920 T pci_scan_root_bus_bridge +ffffffff8136f9d0 T pci_host_probe +ffffffff8136fa60 T pci_scan_root_bus +ffffffff8136faf0 T pci_scan_bus +ffffffff8136fb80 T pci_rescan_bus_bridge_resize +ffffffff8136fbb0 T pci_rescan_bus +ffffffff8136fbe0 T pci_lock_rescan_remove +ffffffff8136fbf0 T pci_unlock_rescan_remove +ffffffff8136fc00 T pci_hp_add_bridge +ffffffff8136fcb0 T pci_find_host_bridge +ffffffff8136fcd0 T pci_get_host_bridge_device +ffffffff8136fd00 T pci_put_host_bridge_device +ffffffff8136fd10 T pci_set_host_bridge_release +ffffffff8136fd20 T pcibios_resource_to_bus +ffffffff8136fdc0 T pcibios_bus_to_resource +ffffffff8136fe50 t pci_stop_bus_device +ffffffff8136fef0 T pci_remove_bus +ffffffff8136ff70 t pci_remove_bus_device +ffffffff81370060 T pci_stop_and_remove_bus_device +ffffffff81370080 T pci_stop_and_remove_bus_device_locked +ffffffff813700a0 T pci_stop_root_bus +ffffffff813700f0 T pci_remove_root_bus +ffffffff81370150 t __pci_dev_set_current_state +ffffffff81370160 t pci_dev_check_d3cold +ffffffff813701c0 t pci_check_and_set_intx_mask +ffffffff81370290 t pci_dev_reset_slot_function +ffffffff813702f0 t __pci_find_next_cap_ttl +ffffffff813703a0 t __pci_find_next_ht_cap +ffffffff81370440 t __pci_set_master +ffffffff813704b0 t pci_flr_wait +ffffffff81370590 t pci_raw_set_power_state +ffffffff813707b0 t pci_wakeup +ffffffff813707e0 t pci_restore_config_dword +ffffffff81370850 t __pci_request_region +ffffffff81370970 t pci_bus_lock +ffffffff813709b0 t pci_bus_unlock +ffffffff813709f0 t pci_slot_unlock +ffffffff81370a50 t pci_set_resource_alignment_param +ffffffff81370aa0 t pci_resource_alignment_store +ffffffff81370ab0 t pci_target_state +ffffffff81370b90 t __pci_bus_find_cap_start +ffffffff81370bd0 t __pci_pme_active.part.4 +ffffffff81370c30 t pci_dev_trylock +ffffffff81370c70 t pci_bus_trylock +ffffffff81370cf0 t pci_bus_resetable.part.7 +ffffffff81370d50 t pci_slot_reset +ffffffff81370ea0 t pci_find_next_ext_capability.part.8 +ffffffff81370f30 t pci_load_saved_state.part.13 +ffffffff81371010 t pci_resource_alignment_show +ffffffff81371050 t pci_acs_flags_enabled.part.11 +ffffffff813710c0 t pci_rebar_find_pos +ffffffff81371170 t pci_std_enable_acs +ffffffff813711f0 T pci_bus_max_busnr +ffffffff81371230 T pci_ioremap_bar +ffffffff81371290 T pci_ioremap_wc_bar +ffffffff813712e0 T pci_find_next_capability +ffffffff81371310 T pci_find_capability +ffffffff81371360 t _pci_add_cap_save_buffer +ffffffff81371400 t pci_restore_state.part.19 +ffffffff81371600 t pci_dev_restore +ffffffff81371650 t pci_bus_restore +ffffffff813716b0 t pci_slot_restore +ffffffff81371710 T pci_bus_find_capability +ffffffff81371770 T pci_find_next_ext_capability +ffffffff81371790 T pci_find_ext_capability +ffffffff813717b0 T pci_find_next_ht_capability +ffffffff813717c0 T pci_find_ht_capability +ffffffff813717f0 T pci_find_parent_resource +ffffffff81371870 T pci_find_resource +ffffffff813718e0 T pci_find_pcie_root_port +ffffffff81371950 T pci_wait_for_pending +ffffffff813719e0 t pci_af_flr +ffffffff81371a90 T pci_set_platform_pm +ffffffff81371ad0 T pci_update_current_state +ffffffff81371b60 t pci_platform_power_transition +ffffffff81371be0 T pci_power_up +ffffffff81371c30 T __pci_complete_power_transition +ffffffff81371c90 T pci_set_power_state +ffffffff81371da0 T pci_choose_state +ffffffff81371e10 T pci_find_saved_cap +ffffffff81371e40 T pci_find_saved_ext_cap +ffffffff81371e70 T pci_save_state +ffffffff81371fe0 t pci_dev_save_and_disable +ffffffff81372030 t pci_bus_save_and_disable +ffffffff81372090 t pci_slot_save_and_disable +ffffffff813720f0 T pci_restore_state +ffffffff81372100 T pci_store_saved_state +ffffffff81372220 T pci_load_saved_state +ffffffff81372240 T pci_load_and_free_saved_state +ffffffff81372290 t do_pci_enable_device +ffffffff81372350 T pci_reenable_device +ffffffff81372370 T pcim_pin_device +ffffffff813723d0 t do_pci_disable_device +ffffffff81372430 T pci_disable_enabled_device +ffffffff81372440 T pci_disable_device +ffffffff813724a0 W pcibios_set_pcie_reset_state +ffffffff813724b0 T pci_set_pcie_reset_state +ffffffff813724c0 T pci_check_pme_status +ffffffff81372530 t pci_pme_wakeup +ffffffff81372590 t pci_pme_list_scan +ffffffff81372690 T pci_pme_wakeup_bus +ffffffff813726b0 T pci_pme_capable +ffffffff813726d0 T pci_pme_restore +ffffffff81372740 T pci_pme_active +ffffffff813728a0 T pci_enable_wake +ffffffff81372970 T pci_wake_from_d3 +ffffffff813729a0 T pci_prepare_to_sleep +ffffffff81372a10 T pci_back_from_sleep +ffffffff81372a30 T pci_dev_run_wake +ffffffff81372ac0 T pci_finish_runtime_suspend +ffffffff81372b50 T pci_dev_keep_suspended +ffffffff81372c10 T pci_dev_complete_resume +ffffffff81372c70 T pci_config_pm_runtime_get +ffffffff81372cc0 T pci_config_pm_runtime_put +ffffffff81372cf0 T pci_bridge_d3_possible +ffffffff81372d60 T pci_bridge_d3_update +ffffffff81372e40 T pci_d3cold_enable +ffffffff81372e60 T pci_d3cold_disable +ffffffff81372e80 T pci_pm_init +ffffffff813730c0 T pci_ea_init +ffffffff81373400 T pci_add_cap_save_buffer +ffffffff81373420 T pci_add_ext_cap_save_buffer +ffffffff81373430 T pci_allocate_cap_save_buffers +ffffffff813734a0 T pci_free_cap_save_buffers +ffffffff813734d0 T pci_configure_ari +ffffffff81373580 T pci_request_acs +ffffffff81373590 T pci_enable_acs +ffffffff813735c0 T pci_acs_enabled +ffffffff81373640 T pci_acs_path_enabled +ffffffff81373690 T pci_rebar_get_possible_sizes +ffffffff813736d0 T pci_rebar_get_current_size +ffffffff81373710 T pci_rebar_set_size +ffffffff81373770 T pci_enable_atomic_ops_to_root +ffffffff81373860 T pci_swizzle_interrupt_pin +ffffffff813738a0 T pci_get_interrupt_pin +ffffffff81373900 T pci_common_swizzle +ffffffff81373960 T pci_release_region +ffffffff81373a40 t __pci_request_selected_regions +ffffffff81373ab0 T pci_request_region +ffffffff81373ac0 T pci_request_region_exclusive +ffffffff81373ad0 T pci_release_selected_regions +ffffffff81373b10 T pci_request_selected_regions +ffffffff81373b20 T pci_request_selected_regions_exclusive +ffffffff81373b30 T pci_release_regions +ffffffff81373b70 T pci_request_regions +ffffffff81373b80 T pci_request_regions_exclusive +ffffffff81373ba0 W pci_register_io_range +ffffffff81373bb0 T pci_pio_to_address +ffffffff81373bc0 W pci_address_to_pio +ffffffff81373be0 T pci_remap_iospace +ffffffff81373bf0 T pci_unmap_iospace +ffffffff81373c00 T devm_pci_remap_cfgspace +ffffffff81373c80 T devm_pci_remap_cfg_resource +ffffffff81373d70 W pcibios_set_master +ffffffff81373de0 t pci_enable_bridge +ffffffff81373e50 t pci_enable_device_flags +ffffffff81373f30 T pci_enable_device_io +ffffffff81373f40 T pci_enable_device_mem +ffffffff81373f50 T pci_enable_device +ffffffff81373f60 T pcim_enable_device +ffffffff81374000 T pci_set_master +ffffffff81374020 T pci_clear_master +ffffffff81374030 T pci_set_cacheline_size +ffffffff813740d0 T pci_set_mwi +ffffffff81374130 T pcim_set_mwi +ffffffff81374180 T pci_try_set_mwi +ffffffff81374190 T pci_clear_mwi +ffffffff813741d0 T pci_intx +ffffffff81374260 t pcim_release +ffffffff81374330 T pci_check_and_mask_intx +ffffffff81374340 T pci_check_and_unmask_intx +ffffffff81374350 T pci_wait_for_pending_transaction +ffffffff81374370 T pcie_flr +ffffffff813743c0 T pci_reset_secondary_bus +ffffffff81374430 W pcibios_reset_secondary_bus +ffffffff81374440 t pci_parent_bus_reset +ffffffff813744c0 t pci_bus_reset +ffffffff81374520 T pci_reset_bridge_secondary_bus +ffffffff81374530 T __pci_reset_function_locked +ffffffff81374690 T pci_probe_reset_function +ffffffff81374740 T pci_reset_function +ffffffff813747a0 T pci_reset_function_locked +ffffffff813747e0 T pci_try_reset_function +ffffffff81374850 T pci_probe_reset_slot +ffffffff81374860 T pci_reset_slot +ffffffff813748a0 T pci_try_reset_slot +ffffffff813749e0 T pci_probe_reset_bus +ffffffff813749f0 T pci_reset_bus +ffffffff81374a30 T pci_try_reset_bus +ffffffff81374a90 T pcix_get_max_mmrbc +ffffffff81374ae0 T pcix_get_mmrbc +ffffffff81374b30 T pcix_set_mmrbc +ffffffff81374c20 T pcie_get_readrq +ffffffff81374c50 T pcie_set_readrq +ffffffff81374ce0 T pcie_get_mps +ffffffff81374d10 T pcie_set_mps +ffffffff81374d60 T pcie_get_minimum_link +ffffffff81374df0 T pci_select_bars +ffffffff81374e20 T pci_set_vga_state +ffffffff81374f20 T pci_add_dma_alias +ffffffff81374fa0 T pci_devs_are_dma_aliases +ffffffff81374fd0 T pci_device_is_present +ffffffff81375000 T pci_ignore_hotplug +ffffffff81375020 W pcibios_default_alignment +ffffffff81375030 T pci_reassigndev_resource_alignment +ffffffff81375510 T pci_get_new_domain_nr +ffffffff81375540 W pci_fixup_cardbus +ffffffff81375550 t pci_pm_runtime_idle +ffffffff813755a0 t pci_bus_num_vf +ffffffff813755b0 t pci_restore_standard_config +ffffffff813755f0 t pci_pm_runtime_resume +ffffffff81375690 t pci_pm_runtime_suspend +ffffffff81375770 t pci_pm_resume_noirq +ffffffff81375840 t pci_pm_reenable_device +ffffffff81375870 t pci_pm_resume +ffffffff81375950 t pci_pm_prepare +ffffffff813759a0 t pci_device_shutdown +ffffffff813759d0 t pci_pm_complete +ffffffff81375a40 t pci_uevent +ffffffff81375b10 t remove_id_store +ffffffff81375c60 t pci_pm_suspend_late +ffffffff81375c90 t pci_match_id.part.4 +ffffffff81375d00 t pci_match_device +ffffffff81375e00 t pci_bus_match +ffffffff81375e30 t pci_pm_suspend_noirq +ffffffff81376060 t pci_pm_suspend +ffffffff81376180 T pci_add_dynid +ffffffff81376250 t new_id_store +ffffffff813763f0 T pci_match_id +ffffffff81376400 W pcibios_alloc_irq +ffffffff81376410 W pcibios_free_irq +ffffffff81376420 t pci_device_remove +ffffffff813764d0 t pci_device_probe +ffffffff81376600 T __pci_register_driver +ffffffff81376660 T pci_unregister_driver +ffffffff813766f0 T pci_dev_driver +ffffffff81376730 T pci_dev_get +ffffffff81376750 T pci_dev_put +ffffffff81376770 t pci_do_find_bus +ffffffff813767c0 t match_pci_dev_by_id +ffffffff81376820 t pci_get_dev_by_id +ffffffff81376870 T pci_for_each_dma_alias +ffffffff813769d0 T pci_find_next_bus +ffffffff81376a20 T pci_find_bus +ffffffff81376a60 T pci_get_slot +ffffffff81376ac0 T pci_get_domain_bus_and_slot +ffffffff81376b40 T pci_get_subsys +ffffffff81376b80 T pci_get_device +ffffffff81376bc0 T pci_get_class +ffffffff81376c00 T pci_dev_present +ffffffff81376c40 t pci_write_rom +ffffffff81376c70 t pci_dev_attrs_are_visible +ffffffff81376c90 t pci_dev_hp_attrs_are_visible +ffffffff81376cb0 t pci_bridge_attrs_are_visible +ffffffff81376cd0 t pcie_dev_attrs_are_visible +ffffffff81376ce0 t bus_rescan_store +ffffffff81376d40 t broken_parity_status_store +ffffffff81376d90 t dev_rescan_store +ffffffff81376de0 t local_cpulist_show +ffffffff81376e00 t cpulistaffinity_show +ffffffff81376e10 t local_cpus_show +ffffffff81376e30 t cpuaffinity_show +ffffffff81376e40 t dev_bus_rescan_store +ffffffff81376ec0 t pci_remove_resource_files +ffffffff81376f30 t pci_read_rom +ffffffff81376fd0 t pci_write_config +ffffffff813771a0 t pci_read_config +ffffffff813773d0 t consistent_dma_mask_bits_show +ffffffff81377400 t ari_enabled_show +ffffffff81377440 t d3cold_allowed_show +ffffffff81377470 t msi_bus_show +ffffffff813774c0 t broken_parity_status_show +ffffffff813774f0 t enable_show +ffffffff81377510 t dma_mask_bits_show +ffffffff81377540 t modalias_show +ffffffff81377580 t irq_show +ffffffff813775a0 t class_show +ffffffff813775c0 t revision_show +ffffffff813775e0 t subsystem_device_show +ffffffff81377600 t subsystem_vendor_show +ffffffff81377620 t device_show +ffffffff81377640 t vendor_show +ffffffff81377660 t resource_show +ffffffff813776d0 t boot_vga_show +ffffffff81377700 t pci_create_attr +ffffffff81377840 t reset_store +ffffffff81377890 t write_vpd_attr +ffffffff813778d0 t read_vpd_attr +ffffffff81377910 t driver_override_store +ffffffff813779c0 t driver_override_show +ffffffff81377a10 t d3cold_allowed_store +ffffffff81377a90 t msi_bus_store +ffffffff81377b90 t enable_store +ffffffff81377c10 t secondary_bus_number_show +ffffffff81377c60 t subordinate_bus_number_show +ffffffff81377cb0 t max_link_speed_show +ffffffff81377d20 t max_link_width_show +ffffffff81377d70 t current_link_width_show +ffffffff81377dc0 t current_link_speed_show +ffffffff81377e30 t remove_store +ffffffff81377e90 t pci_read_resource_io +ffffffff81377f00 t pci_write_resource_io +ffffffff81377f70 T pci_mmap_fits +ffffffff81378010 t pci_mmap_resource.isra.0 +ffffffff813780a0 t pci_mmap_resource_uc +ffffffff813780c0 t pci_mmap_resource_wc +ffffffff813780e0 T pci_create_sysfs_dev_files +ffffffff81378430 T pci_remove_sysfs_dev_files +ffffffff81378510 t pci_disable_rom.part.0 +ffffffff81378550 T pci_enable_rom +ffffffff813785d0 T pci_disable_rom +ffffffff813785e0 T pci_get_rom_size +ffffffff81378680 T pci_map_rom +ffffffff81378750 T pci_unmap_rom +ffffffff81378770 T pci_platform_rom +ffffffff813787b0 t pci_std_update_resource +ffffffff813789b0 t _pci_assign_resource +ffffffff81378ad0 T pci_update_resource +ffffffff81378ae0 T pci_claim_resource +ffffffff81378bc0 T pci_disable_bridge_window +ffffffff81378c30 T pci_assign_resource +ffffffff81378e10 T pci_reassign_resource +ffffffff81378f20 T pci_release_resource +ffffffff81378f70 T pci_resize_resource +ffffffff81379090 T pci_enable_resources +ffffffff813791f0 t pci_note_irq_problem +ffffffff81379250 T pci_lost_interrupt +ffffffff813792c0 T pci_request_irq +ffffffff81379360 T pci_free_irq +ffffffff81379380 T pci_vpd_find_tag +ffffffff813793f0 T pci_vpd_find_info_keyword +ffffffff81379440 t pci_bus_get_depth +ffffffff81379480 t pci_setup_bridge_mmio +ffffffff81379500 t pci_setup_bridge_mmio_pref +ffffffff813795e0 t pci_setup_bridge_io +ffffffff813796e0 t __pci_setup_bridge +ffffffff81379760 t pci_bus_allocate_dev_resources +ffffffff813797d0 t add_to_list +ffffffff81379850 t find_free_bus_resource +ffffffff813798d0 t pci_bus_dump_resources +ffffffff81379950 t remove_from_list +ffffffff813799b0 t free_list +ffffffff81379a10 t assign_requested_resources_sorted +ffffffff81379ab0 t pci_bus_release_bridge_resources +ffffffff81379c50 t extend_bridge_window.isra.4.part.5 +ffffffff81379c90 T pci_setup_cardbus +ffffffff81379e20 W pcibios_setup_bridge +ffffffff81379e30 T pci_setup_bridge +ffffffff81379e50 T pci_claim_bridge_resource +ffffffff81379ee0 t pci_bus_allocate_resources +ffffffff81379f60 W pcibios_window_alignment +ffffffff81379f70 T pci_cardbus_resource_alignment +ffffffff81379f90 t __dev_sort_resources +ffffffff8137a120 t __assign_resources_sorted +ffffffff8137a630 t pci_bus_distribute_available_resources +ffffffff8137aa20 t pbus_size_mem +ffffffff8137aee0 T __pci_bus_size_bridges +ffffffff8137b880 T pci_bus_size_bridges +ffffffff8137b890 T __pci_bus_assign_resources +ffffffff8137ba80 t __pci_bridge_assign_resources +ffffffff8137bb50 T pci_bus_assign_resources +ffffffff8137bb60 T pci_bus_claim_resources +ffffffff8137bb80 T pci_assign_unassigned_root_bus_resources +ffffffff8137bdc0 T pci_assign_unassigned_bridge_resources +ffffffff8137bfc0 T pci_reassign_bridge_resources +ffffffff8137c250 T pci_assign_unassigned_bus_resources +ffffffff8137c2e0 t pci_vc_save_restore_dwords +ffffffff8137c340 t pci_vc_do_save_buffer +ffffffff8137c9b0 T pci_save_vc_state +ffffffff8137ca90 T pci_restore_vc_state +ffffffff8137caf0 T pci_allocate_vc_save_buffers +ffffffff8137cb80 T pci_mmap_resource_range +ffffffff8137cc70 T pci_mmap_page_range +ffffffff8137cc90 T pci_assign_irq +ffffffff8137cd40 t proc_bus_pci_release +ffffffff8137cd60 t proc_bus_pci_open +ffffffff8137cda0 t proc_bus_pci_mmap +ffffffff8137ce80 t proc_bus_pci_ioctl +ffffffff8137cf40 t proc_bus_pci_write +ffffffff8137d160 t proc_bus_pci_read +ffffffff8137d3b0 t proc_bus_pci_lseek +ffffffff8137d3e0 t pci_seq_next +ffffffff8137d400 t pci_seq_start +ffffffff8137d430 t proc_bus_pci_dev_open +ffffffff8137d440 t pci_seq_stop +ffffffff8137d450 t show_device +ffffffff8137d560 T pci_proc_attach_device +ffffffff8137d660 T pci_proc_detach_device +ffffffff8137d680 T pci_proc_detach_bus +ffffffff8137d690 t pci_slot_attr_show +ffffffff8137d6b0 t pci_slot_attr_store +ffffffff8137d6e0 t pci_slot_release +ffffffff8137d770 t cur_speed_read_file +ffffffff8137d7b0 t max_speed_read_file +ffffffff8137d7f0 t make_slot_name +ffffffff8137d8a0 t pci_slot_init +ffffffff8137d8e0 t address_read_file +ffffffff8137d930 T pci_dev_assign_slot +ffffffff8137d990 T pci_create_slot +ffffffff8137dbb0 T pci_destroy_slot +ffffffff8137dbe0 t quirk_mmio_always_on +ffffffff8137dbf0 t quirk_mellanox_tavor +ffffffff8137dc00 t quirk_citrine +ffffffff8137dc10 t quirk_nfp6000 +ffffffff8137dc20 t quirk_s3_64M +ffffffff8137dc60 t quirk_dunord +ffffffff8137dc90 t quirk_transparent_bridge +ffffffff8137dca0 t quirk_no_ata_d3 +ffffffff8137dcb0 t quirk_eisa_bridge +ffffffff8137dcc0 t quirk_pcie_mch +ffffffff8137dcd0 t quirk_intel_pcie_pm +ffffffff8137dcf0 t quirk_brcm_570x_limit_vpd +ffffffff8137dd40 t quirk_msi_intx_disable_bug +ffffffff8137dd50 t quirk_hotplug_bridge +ffffffff8137dd60 t fixup_mpss_256 +ffffffff8137dd70 t quirk_remove_d3_delay +ffffffff8137dd80 t quirk_broken_intx_masking +ffffffff8137dd90 t quirk_no_bus_reset +ffffffff8137dda0 t quirk_no_pm_reset +ffffffff8137ddc0 t quirk_use_pcie_bridge_dma_alias +ffffffff8137de00 t quirk_bridge_cavm_thrx2_pcie_root +ffffffff8137de10 t pci_quirk_cavium_acs +ffffffff8137de50 t pci_quirk_xgene_acs +ffffffff8137de60 t pci_quirk_mf_endpoint_acs +ffffffff8137de70 t quirk_intel_no_flr +ffffffff8137de80 t quirk_fsl_no_msi +ffffffff8137dea0 t quirk_via_acpi +ffffffff8137ded0 t quirk_intel_ntb +ffffffff8137df50 t quirk_extend_bar_to_page +ffffffff8137dfd0 t quirk_amd_nl_class +ffffffff8137e000 t quirk_amd_8131_mmrbc +ffffffff8137e040 t quirk_netmos +ffffffff8137e0b0 t fixup_ti816x_class +ffffffff8137e0e0 t quirk_tw686x_class +ffffffff8137e110 t quirk_relaxedordering_disable +ffffffff8137e130 t pci_quirk_qcom_rp_acs +ffffffff8137e160 t quirk_no_ats +ffffffff8137e190 t quirk_via_ioapic +ffffffff8137e1e0 t quirk_via_vt8237_bypass_apic_deassert +ffffffff8137e230 t quirk_mediagx_master +ffffffff8137e290 t quirk_amd_ide_mode +ffffffff8137e340 t quirk_svwks_csb5ide +ffffffff8137e390 t quirk_ide_samemode +ffffffff8137e400 t quirk_sis_96x_smbus +ffffffff8137e460 t quirk_nvidia_ck804_pcie_aer_ext_cap +ffffffff8137e4c0 t quirk_unhide_mch_dev6 +ffffffff8137e520 t quirk_passive_release +ffffffff8137e5a0 t quirk_tigerpoint_bm_sts +ffffffff8137e5f0 t piix4_io_quirk +ffffffff8137e680 t ich6_lpc_generic_decode +ffffffff8137e6f0 t ich7_lpc_generic_decode +ffffffff8137e750 t quirk_vialatency +ffffffff8137e800 t quirk_via_cx700_pci_parking_caching +ffffffff8137e8f0 t quirk_msi_intx_disable_ati_bug +ffffffff8137e930 t quirk_io +ffffffff8137e9f0 t quirk_cs5536_vsa +ffffffff8137ea80 t quirk_ati_exploding_mce +ffffffff8137eae0 t quirk_vt82c598_id +ffffffff8137eb10 t quirk_sis_503 +ffffffff8137eba0 t quirk_io_region +ffffffff8137ec80 t quirk_ali7101_acpi +ffffffff8137ecc0 t quirk_vt8235_acpi +ffffffff8137ed00 t quirk_pcie_pxh +ffffffff8137ed20 t quirk_blacklist_vpd +ffffffff8137ed50 t quirk_xio2000a +ffffffff8137ede0 t quirk_via_vlink +ffffffff8137ee90 t quirk_cardbus_legacy +ffffffff8137eea0 t quirk_amd_ordering +ffffffff8137ef30 t vtd_mask_spec_errors +ffffffff8137ef70 t asus_hides_smbus_hostbridge +ffffffff8137f1d0 t quirk_e100_interrupt +ffffffff8137f330 t dmi_disable_ioapicreroute +ffffffff8137f350 t quirk_f0_vpd_link +ffffffff8137f3b0 t quirk_disable_aspm_l0s +ffffffff8137f3e0 t quirk_disable_all_msi +ffffffff8137f400 t msi_ht_cap_enabled +ffffffff8137f4a0 t ht_enable_msi_mapping +ffffffff8137f540 t ht_check_msi_mapping +ffffffff8137f5c0 t disable_igfx_irq +ffffffff8137f640 t quirk_chelsio_extend_vpd +ffffffff8137f680 t quirk_apple_poweroff_thunderbolt +ffffffff8137f790 t pci_do_fixups +ffffffff8137f820 t reset_intel_82599_sfp_virtfn +ffffffff8137f830 t quirk_dma_func0_alias +ffffffff8137f850 t quirk_dma_func1_alias +ffffffff8137f870 t quirk_mic_x200_dma_alias +ffffffff8137f8a0 t quirk_fixed_dma_alias +ffffffff8137f8d0 t quirk_chelsio_T5_disable_root_port_attributes +ffffffff8137f950 t pci_quirk_amd_sb_acs +ffffffff8137f9b0 t quirk_intel_qat_vf_cap +ffffffff8137fb90 t quirk_no_ext_tags +ffffffff8137fbe0 t quirk_via_bridge +ffffffff8137fc60 t quirk_tc86c001_ide +ffffffff8137fc90 t quirk_thunderbolt_hotplug_msi +ffffffff8137fcc0 t pci_quirk_intel_spt_pch_acs_match.isra.6.part.7 +ffffffff8137fd00 t pci_quirk_intel_spt_pch_acs +ffffffff8137fdb0 t pci_quirk_enable_intel_spt_pch_acs +ffffffff8137fe50 t quirk_isa_dma_hangs +ffffffff8137fe80 t quirk_nopcipci +ffffffff8137feb0 t quirk_nopciamd +ffffffff8137ff00 t quirk_triton +ffffffff8137ff30 t quirk_viaetbf +ffffffff8137ff60 t quirk_vsfx +ffffffff8137ff90 t quirk_alimagik +ffffffff8137ffc0 t quirk_natoma +ffffffff8137fff0 t quirk_jmicron_async_suspend +ffffffff81380030 t quirk_radeon_pm +ffffffff81380070 t quirk_plx_pci9050 +ffffffff813800f0 t fixup_rev1_53c810 +ffffffff81380120 t quirk_msi_intx_disable_qca_bug +ffffffff81380150 t quirk_p64h2_1k_io +ffffffff81380190 t quirk_ich4_lpc_acpi +ffffffff81380210 t ich6_lpc_acpi_gpio +ffffffff81380290 t quirk_ich6_lpc +ffffffff813802d0 t quirk_ich7_lpc +ffffffff81380330 t quirk_vt82c686_acpi +ffffffff813803a0 t quirk_amd_ioapic +ffffffff813803d0 t quirk_disable_msi.part.26 +ffffffff813803d0 t quirk_msi_ht_cap.part.41 +ffffffff81380400 t quirk_disable_msi +ffffffff81380410 t quirk_amd_780_apc_msi +ffffffff81380470 t quirk_disable_pxb +ffffffff813804d0 t quirk_disable_intel_boot_interrupt +ffffffff81380540 t quirk_disable_amd_8111_boot_interrupt +ffffffff813805c0 t quirk_jmicron_ata +ffffffff813806e0 t quirk_disable_broadcom_boot_interrupt +ffffffff81380770 t quirk_disable_amd_813x_boot_interrupt +ffffffff813807e0 t asus_hides_smbus_lpc +ffffffff81380870 t asus_hides_smbus_lpc_ich6_resume_early.part.34 +ffffffff813808a0 t asus_hides_smbus_lpc_ich6_resume_early +ffffffff813808b0 t asus_hides_ac97_lpc +ffffffff81380940 t asus_hides_smbus_lpc_ich6_suspend.part.36 +ffffffff81380980 t asus_hides_smbus_lpc_ich6_suspend +ffffffff81380990 t asus_hides_smbus_lpc_ich6_resume.part.37 +ffffffff813809d0 t asus_hides_smbus_lpc_ich6_resume +ffffffff813809e0 t asus_hides_smbus_lpc_ich6 +ffffffff81380a10 t quirk_alder_ioapic +ffffffff81380aa0 t quirk_reroute_to_boot_interrupts_intel +ffffffff81380b00 t quirk_brcm_5719_limit_mrrs +ffffffff81380b50 t quirk_msi_ht_cap +ffffffff81380b80 t quirk_nvidia_ck804_msi_ht_cap +ffffffff81380bf0 t nvenet_msi_disable +ffffffff81380c50 t nvbridge_check_legacy_irq_routing +ffffffff81380cc0 t __nv_msi_ht_cap_quirk.part.46 +ffffffff81380f20 t nv_msi_ht_cap_quirk_leaf +ffffffff81380f40 t nv_msi_ht_cap_quirk_all +ffffffff81380f60 t quirk_intel_mc_errata +ffffffff81381000 t mellanox_check_broken_intx_masking +ffffffff81381120 t quirk_apple_wait_for_thunderbolt +ffffffff813811f0 t reset_chelsio_generic_dev +ffffffff813812b0 t reset_ivb_igd +ffffffff81381390 t pci_quirk_enable_intel_pch_acs +ffffffff81381510 t piix4_mem_quirk.constprop.55 +ffffffff81381590 t quirk_piix4_acpi +ffffffff813816d0 t pci_quirk_intel_pch_acs +ffffffff81381750 t quirk_vt82c586_acpi +ffffffff81381780 T pci_fixup_device +ffffffff81381850 T pci_dev_specific_reset +ffffffff813818b0 T pci_dev_specific_acs_enabled +ffffffff81381920 T pci_dev_specific_enable_acs +ffffffff81381980 t pcie_get_aspm_reg +ffffffff81381a70 t pcie_set_clkpm_nocheck +ffffffff81381ae0 t pci_clear_and_set_dword +ffffffff81381b30 t pcie_config_aspm_link +ffffffff81381e40 t pcie_config_aspm_path +ffffffff81381e90 t __pci_disable_link_state +ffffffff81381fb0 t pcie_aspm_get_policy +ffffffff81382030 t pcie_aspm_check_latency.isra.0.part.1 +ffffffff813820f0 t pcie_update_aspm_capable +ffffffff813821d0 t calc_l1ss_pwron +ffffffff81382210 t pcie_aspm_set_policy +ffffffff81382390 T pcie_aspm_init_link_state +ffffffff81382d40 T pcie_aspm_exit_link_state +ffffffff81382e40 T pcie_aspm_pm_state_change +ffffffff81382ea0 T pcie_aspm_powersave_config_link +ffffffff81382f50 T pci_disable_link_state_locked +ffffffff81382f60 T pci_disable_link_state +ffffffff81382f70 T pcie_no_aspm +ffffffff81382f90 T pcie_aspm_support_enabled +ffffffff81382fa0 t pcie_port_shutdown_service +ffffffff81382fb0 t pcie_port_remove_service +ffffffff81382ff0 t release_pcie_device +ffffffff81383000 t remove_iter +ffffffff81383020 t pcie_port_probe_service +ffffffff81383070 t suspend_iter +ffffffff813830b0 t resume_iter +ffffffff813830f0 T pcie_port_device_register +ffffffff81383620 T pcie_port_device_suspend +ffffffff81383630 T pcie_port_device_resume +ffffffff81383640 T pcie_port_device_remove +ffffffff81383670 T pcie_port_service_register +ffffffff813836b0 T pcie_port_service_unregister +ffffffff813836c0 t pcie_port_runtime_suspend +ffffffff813836d0 t pcie_port_runtime_resume +ffffffff813836e0 t pcie_port_runtime_idle +ffffffff813836f0 t pcie_portdrv_error_detected +ffffffff81383700 t pcie_portdrv_mmio_enabled +ffffffff81383710 t pcie_port_resume_noirq +ffffffff81383740 t pcie_portdrv_err_resume +ffffffff81383760 t pcie_portdrv_remove +ffffffff813837a0 t resume_iter +ffffffff813837e0 t pcie_portdrv_slot_reset +ffffffff81383830 t pcie_portdrv_probe +ffffffff813838e0 T pcie_clear_root_pme_status +ffffffff81383900 t pcie_port_bus_match +ffffffff81383950 T pcie_port_bus_register +ffffffff81383960 T pcie_port_bus_unregister +ffffffff81383970 T pcie_port_acpi_setup +ffffffff81383a00 T aer_print_error +ffffffff81383c50 T aer_print_port_info +ffffffff81383c90 t get_device_error_info +ffffffff81383dd0 t report_mmio_enabled +ffffffff81383e60 t report_slot_reset +ffffffff81383ef0 t report_resume +ffffffff81383f80 t report_error_detected +ffffffff813840b0 t find_device_iter +ffffffff813841c0 t find_source_device +ffffffff81384220 t find_aer_service_iter +ffffffff81384250 T pci_enable_pcie_error_reporting +ffffffff81384280 T pci_disable_pcie_error_reporting +ffffffff813842b0 T pci_cleanup_aer_uncorrect_error_status +ffffffff81384300 t broadcast_error_message +ffffffff813843e0 t handle_error_source.isra.3 +ffffffff81384650 T pci_cleanup_aer_error_status_regs +ffffffff81384700 T pci_aer_init +ffffffff81384720 T aer_isr +ffffffff81384a50 T aer_irq +ffffffff81384b70 t aer_root_reset +ffffffff81384c20 t aer_error_resume +ffffffff81384cb0 t set_device_error_reporting +ffffffff81384ce0 t set_downstream_devices_error_reporting +ffffffff81384d20 t aer_remove +ffffffff81384df0 t aer_probe +ffffffff81385000 T pci_no_aer +ffffffff81385010 T pci_aer_available +ffffffff81385030 t pcie_pme_check_wakeup +ffffffff81385080 t pcie_pme_suspend +ffffffff81385130 t pcie_pme_remove +ffffffff81385150 t pcie_pme_irq +ffffffff813851f0 t pcie_pme_walk_bus +ffffffff81385290 t pcie_pme_can_wakeup +ffffffff813852b0 t pcie_pme_from_pci_bridge.part.0 +ffffffff81385320 t pcie_pme_interrupt_enable.part.1 +ffffffff81385340 t pcie_pme_resume +ffffffff813853a0 t pcie_pme_probe +ffffffff813854b0 t pcie_pme_work_fn +ffffffff81385740 T pcie_pme_interrupt_enable +ffffffff81385760 t pci_ptm_info +ffffffff81385800 T pci_ptm_init +ffffffff813858e0 T pci_enable_ptm +ffffffff813859c0 T pci_msi_domain_check_cap +ffffffff81385a00 t pci_msi_domain_handle_error +ffffffff81385a20 t get_msi_id_cb +ffffffff81385a50 t msi_verify_entries +ffffffff81385aa0 t msi_mode_show +ffffffff81385b20 t populate_msi_sysfs +ffffffff81385cf0 t pci_msi_supported +ffffffff81385d50 W arch_setup_msi_irq +ffffffff81385e50 t pci_msi_setup_msi_irqs +ffffffff81385e80 T default_teardown_msi_irqs +ffffffff81385ef0 t free_msi_irqs +ffffffff81386080 T __pci_msi_desc_mask_irq +ffffffff813860c0 t msi_set_mask_bit.isra.8 +ffffffff81386130 T pci_msi_mask_irq +ffffffff81386140 T pci_msi_unmask_irq +ffffffff81386150 T __pci_msix_desc_mask_irq +ffffffff81386190 T __pci_read_msi_msg +ffffffff81386250 T __pci_write_msi_msg +ffffffff81386350 t default_restore_msi_irq +ffffffff813863c0 T default_restore_msi_irqs +ffffffff81386440 T pci_msi_domain_write_msg +ffffffff81386460 T pci_write_msi_msg +ffffffff81386490 T pci_restore_msi_state +ffffffff813866a0 T pci_msi_vec_count +ffffffff813866e0 t __pci_enable_msi_range +ffffffff81386a90 T pci_disable_msi +ffffffff81386b80 T pci_msix_vec_count +ffffffff81386bc0 t __pci_enable_msix +ffffffff81387020 T pci_disable_msix +ffffffff81387110 T pci_no_msi +ffffffff81387120 T pci_msi_enabled +ffffffff81387130 T pci_enable_msi +ffffffff81387150 T pci_enable_msix_range +ffffffff813871a0 T pci_alloc_irq_vectors_affinity +ffffffff813872b0 T pci_free_irq_vectors +ffffffff813872d0 T pci_irq_vector +ffffffff81387340 T pci_irq_get_affinity +ffffffff813873b0 T pci_irq_get_node +ffffffff813873d0 T msi_desc_to_pci_dev +ffffffff813873e0 T msi_desc_to_pci_sysdata +ffffffff81387400 T pci_msi_domain_calc_hwirq +ffffffff81387430 T pci_msi_create_irq_domain +ffffffff813874f0 T pci_msi_domain_get_msi_rid +ffffffff81387530 T pci_msi_get_device_domain +ffffffff81387570 T pci_ats_init +ffffffff81387590 T pci_enable_ats +ffffffff81387610 T pci_disable_ats +ffffffff81387690 T pci_restore_ats_state +ffffffff813876d0 T pci_ats_queue_depth +ffffffff81387720 T pci_enable_pasid +ffffffff813877b0 T pci_disable_pasid +ffffffff813877f0 T pci_restore_pasid_state +ffffffff81387830 T pci_pasid_features +ffffffff81387870 T pci_max_pasids +ffffffff813878b0 t pci_acpi_bus_match +ffffffff813878c0 t acpi_pci_power_manageable +ffffffff813878f0 t pci_acpi_wake_bus +ffffffff81387900 t pci_acpi_wake_dev +ffffffff81387980 t acpi_pci_need_resume +ffffffff813879f0 t acpi_pci_choose_state +ffffffff81387a30 t acpi_pci_get_power_state +ffffffff81387a90 t acpi_pci_set_power_state +ffffffff81387b20 t pci_acpi_cleanup +ffffffff81387b60 t acpi_pci_find_companion +ffffffff81387bc0 t acpi_pci_wakeup +ffffffff81387c50 t pci_acpi_setup +ffffffff81387d70 T acpi_pci_root_get_mcfg_addr +ffffffff81387db0 T pci_get_hp_params +ffffffff81388270 T pciehp_is_native +ffffffff813882d0 T pci_acpi_add_bus_pm_notifier +ffffffff813882e0 T pci_acpi_add_pm_notifier +ffffffff81388300 T acpi_pci_add_bus +ffffffff813883c0 T acpi_pci_remove_bus +ffffffff813883d0 T pci_msi_register_fwnode_provider +ffffffff813883e0 T pci_host_bridge_acpi_msi_domain +ffffffff81388430 t device_has_dsm.isra.0 +ffffffff81388470 t acpi_index_string_exist +ffffffff81388490 t dsm_get_label.isra.2 +ffffffff81388590 t acpiindex_show +ffffffff813885b0 t acpilabel_show +ffffffff813885d0 t find_smbios_instance_string.isra.3 +ffffffff81388690 t smbiosinstance_show +ffffffff813886b0 t smbioslabel_show +ffffffff813886d0 t smbios_instance_string_exist +ffffffff813886f0 T pci_create_firmware_label_files +ffffffff81388730 T pci_remove_firmware_label_files +ffffffff81388770 t hdmi_infoframe_log_header.isra.1 +ffffffff813887b0 T hdmi_avi_infoframe_init +ffffffff813887f0 T hdmi_avi_infoframe_pack +ffffffff81388980 T hdmi_spd_infoframe_init +ffffffff813889e0 T hdmi_spd_infoframe_pack +ffffffff81388a80 T hdmi_audio_infoframe_init +ffffffff81388ab0 T hdmi_audio_infoframe_pack +ffffffff81388b90 T hdmi_vendor_infoframe_init +ffffffff81388bd0 T hdmi_vendor_infoframe_pack +ffffffff81388cf0 T hdmi_infoframe_pack +ffffffff81388d40 T hdmi_infoframe_log +ffffffff81389310 T hdmi_infoframe_unpack +ffffffff813896d0 t dummycon_startup +ffffffff813896e0 t dummycon_dummy +ffffffff813896f0 t dummycon_init +ffffffff81389720 t devm_backlight_device_match +ffffffff81389730 t fb_notifier_callback +ffffffff81389830 t backlight_resume +ffffffff813898b0 t backlight_suspend +ffffffff81389930 t backlight_generate_event +ffffffff813899a0 t bl_device_release +ffffffff813899b0 t type_show +ffffffff813899d0 t max_brightness_show +ffffffff813899f0 t actual_brightness_show +ffffffff81389a70 t brightness_show +ffffffff81389a90 t bl_power_show +ffffffff81389ab0 t bl_power_store +ffffffff81389b90 t backlight_device_unregister.part.0 +ffffffff81389c30 t devm_backlight_device_release +ffffffff81389c40 T backlight_device_set_brightness +ffffffff81389ce0 t brightness_store +ffffffff81389d30 T backlight_force_update +ffffffff81389d80 T backlight_device_register +ffffffff81389f30 T backlight_device_get_by_type +ffffffff81389fa0 T backlight_device_unregister +ffffffff81389fb0 T backlight_register_notifier +ffffffff81389fc0 T backlight_unregister_notifier +ffffffff81389fd0 T devm_backlight_device_register +ffffffff8138a080 T devm_backlight_device_unregister +ffffffff8138a0a0 T fb_get_options +ffffffff8138a1e0 T fb_register_client +ffffffff8138a1f0 T fb_unregister_client +ffffffff8138a200 T fb_notifier_call_chain +ffffffff8138a220 t fb_seq_next +ffffffff8138a240 t fb_seq_start +ffffffff8138a270 t fb_seq_stop +ffffffff8138a280 t fb_mmap +ffffffff8138a3b0 t fb_write +ffffffff8138a610 t fb_read +ffffffff8138a820 t proc_fb_open +ffffffff8138a830 t fb_seq_show +ffffffff8138a860 t put_fb_info +ffffffff8138a880 t fb_release +ffffffff8138a8d0 t get_fb_info.part.3 +ffffffff8138a900 t fb_open +ffffffff8138aa10 T lock_fb_info +ffffffff8138aa40 T fb_get_color_depth +ffffffff8138aa80 T fb_pad_aligned_buffer +ffffffff8138aac0 T fb_pad_unaligned_buffer +ffffffff8138aba0 T fb_get_buffer_offset +ffffffff8138ac30 T fb_prepare_logo +ffffffff8138ac40 T fb_show_logo +ffffffff8138ac50 T fb_pan_display +ffffffff8138ad90 T fb_set_var +ffffffff8138b160 T fb_blank +ffffffff8138b200 t do_fb_ioctl +ffffffff8138b7d0 t fb_ioctl +ffffffff8138b810 T unlink_framebuffer +ffffffff8138b870 t do_unregister_framebuffer +ffffffff8138b9a0 t do_remove_conflicting_framebuffers +ffffffff8138bb10 T remove_conflicting_framebuffers +ffffffff8138bb50 T register_framebuffer +ffffffff8138be70 T unregister_framebuffer +ffffffff8138bea0 T fb_set_suspend +ffffffff8138bef0 T fb_new_modelist +ffffffff8138c000 T fb_parse_edid +ffffffff8138c010 T fb_edid_to_monspecs +ffffffff8138c020 T fb_edid_add_monspecs +ffffffff8138c030 T fb_destroy_modedb +ffffffff8138c040 T fb_get_mode +ffffffff8138c050 T fb_validate_mode +ffffffff8138c170 T fb_firmware_edid +ffffffff8138c180 T fb_dealloc_cmap +ffffffff8138c1e0 T fb_copy_cmap +ffffffff8138c2c0 T fb_alloc_cmap_gfp +ffffffff8138c3e0 T fb_alloc_cmap +ffffffff8138c3f0 T fb_cmap_to_user +ffffffff8138c4e0 T fb_set_cmap +ffffffff8138c620 T fb_set_user_cmap +ffffffff8138c760 T fb_default_cmap +ffffffff8138c790 T fb_invert_cmaps +ffffffff8138c850 t show_blank +ffffffff8138c860 t store_console +ffffffff8138c870 t store_fbstate +ffffffff8138c8f0 t show_fbstate +ffffffff8138c920 t show_rotate +ffffffff8138c950 t show_stride +ffffffff8138c980 t show_name +ffffffff8138c9b0 t show_virtual +ffffffff8138c9e0 t show_pan +ffffffff8138ca10 t mode_string +ffffffff8138ca90 t show_mode +ffffffff8138cac0 t show_modes +ffffffff8138cb10 t show_bpp +ffffffff8138cb40 t activate +ffffffff8138cb80 t store_rotate +ffffffff8138cbe0 t store_virtual +ffffffff8138cc80 t store_bpp +ffffffff8138cce0 t store_pan +ffffffff8138cd90 t store_modes +ffffffff8138cec0 t store_mode +ffffffff8138cfa0 t store_blank +ffffffff8138d010 t store_cursor +ffffffff8138d020 t show_console +ffffffff8138d030 t show_cursor +ffffffff8138d040 T framebuffer_alloc +ffffffff8138d0b0 T framebuffer_release +ffffffff8138d0d0 T fb_init_device +ffffffff8138d170 T fb_cleanup_device +ffffffff8138d1c0 t fb_try_mode +ffffffff8138d250 T fb_find_mode +ffffffff8138d970 T fb_var_to_videomode +ffffffff8138da30 T fb_videomode_to_var +ffffffff8138da90 T fb_mode_is_equal +ffffffff8138dae0 T fb_find_best_mode +ffffffff8138db50 T fb_find_nearest_mode +ffffffff8138dbf0 T fb_match_mode +ffffffff8138dc70 T fb_add_videomode +ffffffff8138dd40 T fb_delete_videomode +ffffffff8138ddf0 T fb_destroy_modelist +ffffffff8138de50 T fb_videomode_to_modelist +ffffffff8138dea0 T fb_find_best_display +ffffffff8138dfa0 T fb_find_mode_cvt +ffffffff8138e690 T fb_deferred_io_mmap +ffffffff8138e6d0 t fb_deferred_io_mkwrite +ffffffff8138e7e0 t fb_deferred_io_work +ffffffff8138e8c0 t fb_deferred_io_set_page_dirty +ffffffff8138e8f0 t fb_deferred_io_page.isra.1 +ffffffff8138e930 t fb_deferred_io_fault +ffffffff8138e9e0 T fb_deferred_io_fsync +ffffffff8138ea50 T fb_deferred_io_init +ffffffff8138eb00 T fb_deferred_io_open +ffffffff8138eb10 T fb_deferred_io_cleanup +ffffffff8138eb80 t fbcon_clear_margins +ffffffff8138ec10 t fbcon_clear +ffffffff8138edf0 t fbcon_bmove_rec +ffffffff8138efc0 t fbcon_debug_leave +ffffffff8138f010 t set_vc_hi_font +ffffffff8138f180 t fbcon_getxy +ffffffff8138f270 t fbcon_invert_region +ffffffff8138f310 t fbcon_add_cursor_timer +ffffffff8138f3c0 t cursor_timer_handler +ffffffff8138f400 t get_color +ffffffff8138f520 t fb_flashcursor +ffffffff8138f630 t fbcon_putcs +ffffffff8138f760 t fbcon_putc +ffffffff8138f790 t var_to_display +ffffffff8138f830 t fbcon_set_palette +ffffffff8138f980 t fbcon_debug_enter +ffffffff8138f9f0 t display_to_var +ffffffff8138fa80 t fbcon_set_disp +ffffffff8138fce0 t fbcon_get_font +ffffffff8138feb0 t con2fb_acquire_newinfo +ffffffff8138ff80 t fbcon_startup +ffffffff81390260 t fbcon_deinit +ffffffff81390590 t fbcon_prepare_logo +ffffffff81390960 t fbcon_init +ffffffff81391000 t do_fbcon_takeover +ffffffff813910b0 t fbcon_new_modelist +ffffffff81391190 t updatescrollmode.isra.5 +ffffffff81391360 t fbcon_modechanged +ffffffff81391570 t fbcon_resize +ffffffff81391740 t fbcon_screen_pos +ffffffff813917b0 t fbcon_scrolldelta +ffffffff81391da0 t fbcon_set_origin +ffffffff81391dc0 t fbcon_cursor +ffffffff81391f60 t fbcon_blank +ffffffff81392230 t fbcon_do_set_font +ffffffff813924a0 t fbcon_copy_font +ffffffff813924e0 t fbcon_set_def_font +ffffffff81392560 t fbcon_set_font +ffffffff81392790 t fbcon_switch +ffffffff81392de0 t con2fb_release_oldinfo.isra.13 +ffffffff81392f20 t fbcon_redraw_blit.isra.14 +ffffffff813930c0 t fbcon_redraw_move.isra.15 +ffffffff813931e0 t fbcon_redraw.isra.16 +ffffffff813933a0 t set_con2fb_map +ffffffff813936f0 t fbcon_event_notify +ffffffff81393f80 t store_cursor_blink +ffffffff81394040 t store_rotate.part.21 +ffffffff81394040 t store_rotate_all.part.20 +ffffffff81394090 t store_rotate_all +ffffffff813940b0 t store_rotate +ffffffff813940d0 t show_cursor_blink +ffffffff81394150 t show_rotate +ffffffff813941c0 t fbcon_bmove.constprop.24 +ffffffff81394280 t fbcon_scroll +ffffffff81394f80 t bit_bmove +ffffffff81394fe0 t bit_clear +ffffffff813950c0 t bit_clear_margins +ffffffff81395180 t bit_update_start +ffffffff813951b0 t update_attr.isra.0 +ffffffff81395230 t bit_cursor +ffffffff81395810 t bit_putcs +ffffffff81395cb0 T fbcon_set_bitops +ffffffff81395cf0 T soft_cursor +ffffffff81395f10 t bitfill_aligned +ffffffff81396030 t bitfill_unaligned +ffffffff813961c0 t bitfill_aligned_rev +ffffffff81396300 t bitfill_unaligned_rev +ffffffff81396490 T cfb_fillrect +ffffffff813967a0 T cfb_copyarea +ffffffff813970d0 T cfb_imageblit +ffffffff813975c0 t bitfill_aligned +ffffffff813976d0 t bitfill_unaligned +ffffffff81397860 t bitfill_aligned_rev +ffffffff81397950 t bitfill_unaligned_rev +ffffffff81397ab0 T sys_fillrect +ffffffff81397dc0 T sys_copyarea +ffffffff81398670 T sys_imageblit +ffffffff81398b40 T fb_sys_read +ffffffff81398c00 T fb_sys_write +ffffffff81398ce0 t intel_idle_cpu_online +ffffffff81398da0 t intel_idle_s2idle +ffffffff81398e2e t irtl_2_usec.part.0 +ffffffff81398e60 T acpi_table_print_madt_entry +ffffffff81398fe0 T acpi_os_physical_table_override +ffffffff81398ff0 T acpi_os_table_override +ffffffff81399010 t acpi_osi_handler +ffffffff81399100 T acpi_osi_is_win8 +ffffffff81399110 t acpi_os_execute_deferred +ffffffff81399130 t acpi_irq +ffffffff81399160 t acpi_os_map_cleanup.part.3 +ffffffff813991a0 t acpi_os_unmap_generic_address.part.7 +ffffffff81399260 t acpi_os_remove_interrupt_handler.part.8 +ffffffff813992a0 t acpi_os_map_generic_address.part.6 +ffffffff813992e0 T acpi_os_vprintf +ffffffff81399350 T acpi_os_printf +ffffffff813993a0 T acpi_os_get_iomem +ffffffff81399410 T acpi_os_map_generic_address +ffffffff81399420 T acpi_os_unmap_generic_address +ffffffff81399430 T acpi_os_predefined_override +ffffffff81399490 T acpi_os_install_interrupt_handler +ffffffff81399570 T acpi_os_remove_interrupt_handler +ffffffff81399590 T acpi_os_sleep +ffffffff813995a0 T acpi_os_stall +ffffffff813995d0 T acpi_os_get_timer +ffffffff813995f0 T acpi_os_read_port +ffffffff81399640 T acpi_os_write_port +ffffffff81399670 T acpi_os_read_iomem +ffffffff813996b0 T acpi_os_read_memory +ffffffff813997c0 T acpi_os_write_memory +ffffffff813998a0 T acpi_os_read_pci_configuration +ffffffff81399920 T acpi_os_write_pci_configuration +ffffffff81399980 T acpi_os_execute +ffffffff81399a60 T acpi_os_wait_events_complete +ffffffff81399a90 t acpi_hotplug_work_fn +ffffffff81399ab0 T acpi_hotplug_schedule +ffffffff81399b40 T acpi_queue_hotplug_work +ffffffff81399b60 T acpi_os_create_semaphore +ffffffff81399bc0 T acpi_os_delete_semaphore +ffffffff81399bf0 T acpi_os_wait_semaphore +ffffffff81399c50 T acpi_os_signal_semaphore +ffffffff81399c80 T acpi_os_get_line +ffffffff81399c90 T acpi_os_wait_command_ready +ffffffff81399ca0 T acpi_os_notify_command_complete +ffffffff81399cb0 T acpi_os_signal +ffffffff81399cd0 T acpi_check_resource_conflict +ffffffff81399d50 T acpi_check_region +ffffffff81399db0 T acpi_resources_are_enforced +ffffffff81399dc0 T acpi_os_delete_lock +ffffffff81399dd0 T acpi_os_acquire_lock +ffffffff81399de0 T acpi_os_release_lock +ffffffff81399df0 T acpi_os_create_cache +ffffffff81399e20 T acpi_os_purge_cache +ffffffff81399e30 T acpi_os_delete_cache +ffffffff81399e40 T acpi_os_release_object +ffffffff81399e50 T acpi_os_terminate +ffffffff81399f10 T acpi_os_prepare_sleep +ffffffff81399f40 T acpi_os_set_prepare_sleep +ffffffff81399f50 T acpi_os_prepare_extended_sleep +ffffffff81399f60 T acpi_os_set_prepare_extended_sleep +ffffffff81399f70 T acpi_os_enter_sleep +ffffffff81399fb0 T acpi_extract_package +ffffffff8139a330 T acpi_evaluate_integer +ffffffff8139a390 t acpi_dev_match_cb +ffffffff8139a440 T acpi_evaluate_reference +ffffffff8139a500 T acpi_get_physical_device_location +ffffffff8139a590 T acpi_evaluate_ost +ffffffff8139a620 T acpi_handle_printk +ffffffff8139a6e0 T acpi_has_method +ffffffff8139a700 T acpi_execute_simple_method +ffffffff8139a750 T acpi_evaluate_ej0 +ffffffff8139a7c0 T acpi_evaluate_lck +ffffffff8139a840 T acpi_evaluate_dsm +ffffffff8139a940 T acpi_check_dsm +ffffffff8139a9e0 T acpi_dev_found +ffffffff8139aa40 T acpi_dev_present +ffffffff8139aaa0 T acpi_dev_get_first_match_name +ffffffff8139ab10 T acpi_match_platform_list +ffffffff8139abe0 T acpi_reboot +ffffffff8139ac90 T acpi_nvs_register +ffffffff8139add0 T acpi_nvs_for_each_region +ffffffff8139ae30 T suspend_nvs_free +ffffffff8139aea0 T suspend_nvs_alloc +ffffffff8139aef0 T suspend_nvs_save +ffffffff8139af90 T suspend_nvs_restore +ffffffff8139afe0 T acpi_enable_wakeup_devices +ffffffff8139b090 T acpi_disable_wakeup_devices +ffffffff8139b140 t acpi_suspend_state_valid +ffffffff8139b170 t acpi_sleep_tts_switch +ffffffff8139b1a0 t tts_notify_reboot +ffffffff8139b1b0 t acpi_power_off +ffffffff8139b1d0 t acpi_save_bm_rld +ffffffff8139b1f0 t acpi_restore_bm_rld +ffffffff8139b230 t acpi_s2idle_end +ffffffff8139b240 t acpi_s2idle_sync +ffffffff8139b260 t acpi_s2idle_wake +ffffffff8139b290 t acpi_s2idle_begin +ffffffff8139b2a0 t acpi_pm_end +ffffffff8139b2c0 t find_powerf_dev +ffffffff8139b2f0 t acpi_suspend_enter +ffffffff8139b430 t acpi_pm_pre_suspend +ffffffff8139b450 t acpi_suspend_begin +ffffffff8139b4d0 t acpi_sleep_prepare +ffffffff8139b520 t acpi_pm_prepare +ffffffff8139b540 t acpi_sleep_run_lps0_dsm.part.1 +ffffffff8139b570 t acpi_s2idle_restore +ffffffff8139b5c0 t acpi_s2idle_prepare +ffffffff8139b620 t lps0_device_attach +ffffffff8139b880 t acpi_pm_finish +ffffffff8139b920 t acpi_suspend_begin_old +ffffffff8139b950 t acpi_power_off_prepare +ffffffff8139b990 T acpi_target_system_state +ffffffff8139b9a0 T acpi_s2idle_wakeup +ffffffff8139b9b0 T acpi_sleep_no_ec_events +ffffffff8139b9cb t acpi_sleep_state_supported +ffffffff8139ba20 t acpi_data_node_attr_show +ffffffff8139ba40 t real_power_state_show +ffffffff8139ba80 t acpi_object_path +ffffffff8139bae0 t data_node_show_path +ffffffff8139baf0 t acpi_device_path_show +ffffffff8139bb00 t power_state_show +ffffffff8139bb30 t acpi_device_uid_show +ffffffff8139bb50 t acpi_device_adr_show +ffffffff8139bb70 t acpi_eject_store +ffffffff8139bc40 t status_show +ffffffff8139bc90 t acpi_device_hrv_show +ffffffff8139bce0 t acpi_device_sun_show +ffffffff8139bd30 t description_show +ffffffff8139bd70 t acpi_device_hid_show +ffffffff8139bda0 t acpi_data_node_release +ffffffff8139bdb0 t acpi_expose_nondev_subnodes +ffffffff8139be70 t acpi_hide_nondev_subnodes +ffffffff8139beb0 t create_pnp_modalias.part.0 +ffffffff8139bfe0 t create_of_modalias.isra.1 +ffffffff8139c110 t __acpi_device_modalias.part.2 +ffffffff8139c1b0 t acpi_device_modalias_show +ffffffff8139c1f0 T __acpi_device_uevent_modalias +ffffffff8139c2f0 T acpi_device_uevent_modalias +ffffffff8139c310 T acpi_device_modalias +ffffffff8139c350 T acpi_device_setup_files +ffffffff8139c5c0 T acpi_device_remove_files +ffffffff8139c760 t acpi_dev_pm_get_state +ffffffff8139c900 t acpi_dev_needs_resume +ffffffff8139c9a0 T acpi_subsys_prepare +ffffffff8139ca10 t acpi_device_wakeup_disable +ffffffff8139ca60 t __acpi_device_wakeup_enable +ffffffff8139caf0 t __acpi_pm_set_device_wakeup +ffffffff8139cb60 t acpi_pm_notify_work_func +ffffffff8139cb90 T acpi_subsys_suspend +ffffffff8139cbe0 T acpi_subsys_freeze +ffffffff8139cc00 T acpi_subsys_freeze_late +ffffffff8139cc20 T acpi_subsys_freeze_noirq +ffffffff8139cc40 T acpi_subsys_thaw_noirq +ffffffff8139cc60 t acpi_dev_pm_explicit_set.part.0 +ffffffff8139ccb0 t acpi_pm_notify_handler +ffffffff8139cd30 T acpi_subsys_complete +ffffffff8139cd70 T acpi_subsys_suspend_noirq +ffffffff8139cdd0 T acpi_subsys_resume_noirq +ffffffff8139ce10 t acpi_add_pm_notifier.part.8 +ffffffff8139cec0 T acpi_power_state_string +ffffffff8139cee0 T acpi_device_get_power +ffffffff8139d010 T acpi_device_set_power +ffffffff8139d2a0 t acpi_dev_pm_low_power.part.5 +ffffffff8139d2d0 T acpi_bus_set_power +ffffffff8139d300 T acpi_bus_init_power +ffffffff8139d3b0 T acpi_device_fix_up_power +ffffffff8139d3e0 T acpi_device_update_power +ffffffff8139d490 T acpi_bus_update_power +ffffffff8139d4c0 T acpi_bus_power_manageable +ffffffff8139d4f0 T acpi_pm_wakeup_event +ffffffff8139d510 T acpi_add_pm_notifier +ffffffff8139d530 T acpi_remove_pm_notifier +ffffffff8139d5c0 t acpi_dev_pm_detach +ffffffff8139d650 T acpi_bus_can_wakeup +ffffffff8139d680 T acpi_pm_device_can_wakeup +ffffffff8139d6b0 T acpi_pm_device_sleep_state +ffffffff8139d7b0 T acpi_pm_set_device_wakeup +ffffffff8139d7c0 T acpi_pm_set_bridge_wakeup +ffffffff8139d7d0 T acpi_dev_suspend +ffffffff8139d8b0 T acpi_subsys_runtime_suspend +ffffffff8139d8d0 T acpi_subsys_suspend_late +ffffffff8139d920 T acpi_dev_resume +ffffffff8139d970 T acpi_subsys_runtime_resume +ffffffff8139d990 T acpi_subsys_resume_early +ffffffff8139d9b0 T acpi_dev_pm_attach +ffffffff8139da70 t acpi_system_wakeup_device_open_fs +ffffffff8139da90 t acpi_system_wakeup_device_seq_show +ffffffff8139dcb0 t acpi_system_write_wakeup_device +ffffffff8139de10 t set_gbl_term_list +ffffffff8139de20 T acpi_bus_private_data_handler +ffffffff8139de30 t acpi_device_notify +ffffffff8139de50 t acpi_device_notify_fixed +ffffffff8139de70 t acpi_device_fixed_event +ffffffff8139de90 t acpi_device_probe +ffffffff8139dfa0 t acpi_device_uevent +ffffffff8139dfb0 t set_copy_dsdt +ffffffff8139dfd0 t acpi_bus_notify +ffffffff8139e0e0 t acpi_bus_table_handler +ffffffff8139e110 t sb_notify_work +ffffffff8139e160 t acpi_device_remove +ffffffff8139e200 t acpi_sb_notify +ffffffff8139e240 t acpi_of_match_device.constprop.8 +ffffffff8139e300 t __acpi_match_device.part.3.constprop.7 +ffffffff8139e440 T acpi_bus_get_status_handle +ffffffff8139e470 T acpi_bus_get_status +ffffffff8139e4f0 T acpi_bus_attach_private_data +ffffffff8139e510 T acpi_bus_get_private_data +ffffffff8139e540 T acpi_bus_detach_private_data +ffffffff8139e550 T acpi_run_osc +ffffffff8139e790 T acpi_get_first_physical_node +ffffffff8139e7e0 T acpi_device_is_first_physical_node +ffffffff8139e810 T acpi_companion_match +ffffffff8139e870 T acpi_set_modalias +ffffffff8139e8d0 T acpi_match_device +ffffffff8139e920 T acpi_device_get_match_data +ffffffff8139e940 T acpi_match_device_ids +ffffffff8139e970 t acpi_bus_match +ffffffff8139e9a0 T acpi_driver_match_device +ffffffff8139ea10 T acpi_bus_register_driver +ffffffff8139ea50 T acpi_bus_unregister_driver +ffffffff8139ea60 t find_child_checks +ffffffff8139eaf0 t acpi_get_bus_type +ffffffff8139eb50 t acpi_physnode_link_name +ffffffff8139eb90 T register_acpi_bus_type +ffffffff8139ec00 T unregister_acpi_bus_type +ffffffff8139ec70 T acpi_find_child_device +ffffffff8139ed40 T acpi_bind_one +ffffffff8139efe0 t acpi_platform_notify +ffffffff8139f080 T acpi_unbind_one +ffffffff8139f190 t acpi_platform_notify_remove +ffffffff8139f1f0 t acpi_check_serial_bus_slave +ffffffff8139f210 t acpi_scan_drop_device +ffffffff8139f280 t acpi_device_del +ffffffff8139f3d0 t acpi_device_del_work_fn +ffffffff8139f480 t get_acpi_device +ffffffff8139f4a0 t acpi_add_id +ffffffff8139f510 t acpi_get_resource_memory +ffffffff8139f530 t acpi_scan_match_handler +ffffffff8139f5c0 t acpi_backlight_cap_match +ffffffff8139f600 t acpi_default_enumeration +ffffffff8139f630 t acpi_generic_device_attach +ffffffff8139f650 t acpi_device_dep_initialize.isra.4 +ffffffff8139f780 t acpi_get_device_data.constprop.7 +ffffffff8139f7c0 t acpi_bus_online +ffffffff8139f850 t acpi_bus_offline +ffffffff8139f970 T acpi_scan_lock_acquire +ffffffff8139f980 T acpi_scan_lock_release +ffffffff8139f990 T acpi_lock_hp_context +ffffffff8139f9a0 T acpi_unlock_hp_context +ffffffff8139f9b0 T acpi_initialize_hp_context +ffffffff8139fa00 T acpi_scan_add_handler +ffffffff8139fa30 T acpi_scan_add_handler_with_hotplug +ffffffff8139fa70 T acpi_scan_is_offline +ffffffff8139fb10 T acpi_bus_get_device +ffffffff8139fb20 T acpi_bus_get_acpi_device +ffffffff8139fb50 T acpi_bus_put_acpi_device +ffffffff8139fb60 T acpi_device_add +ffffffff8139feb0 T acpi_bus_get_ejd +ffffffff8139ff40 t acpi_bus_attach +ffffffff813a00e0 T acpi_ata_match +ffffffff813a0140 T acpi_bay_match +ffffffff813a01a0 T acpi_device_is_battery +ffffffff813a01e0 T acpi_dock_match +ffffffff813a01f0 T acpi_is_video_device +ffffffff813a02d0 T acpi_device_hid +ffffffff813a0300 T acpi_free_pnp_ids +ffffffff813a0350 t acpi_device_release +ffffffff813a03d0 T acpi_dma_supported +ffffffff813a03e0 T acpi_get_dma_attr +ffffffff813a0400 T acpi_dma_get_range +ffffffff813a0580 T acpi_dma_configure +ffffffff813a0590 T acpi_dma_deconfigure +ffffffff813a05a0 T acpi_init_device_object +ffffffff813a0c80 t acpi_add_single_object +ffffffff813a1220 t acpi_bus_check_add +ffffffff813a1440 T acpi_device_add_finalize +ffffffff813a1460 T acpi_device_is_present +ffffffff813a1470 T acpi_scan_hotplug_enabled +ffffffff813a14b0 T acpi_walk_dep_device_list +ffffffff813a1570 T acpi_bus_scan +ffffffff813a15d0 t acpi_table_events_fn +ffffffff813a1610 T acpi_bus_trim +ffffffff813a16a0 t acpi_scan_device_not_present +ffffffff813a16e0 t acpi_scan_bus_check +ffffffff813a1780 T acpi_device_hotplug +ffffffff813a1b90 T acpi_bus_register_early_device +ffffffff813a1bd0 T acpi_scan_table_handler +ffffffff813a1c40 T acpi_reconfig_notifier_register +ffffffff813a1c50 T acpi_reconfig_notifier_unregister +ffffffff813a1c60 t acpi_dev_ioresource_flags +ffffffff813a1cc0 t acpi_decode_space +ffffffff813a1db0 t acpi_dev_new_resource_entry +ffffffff813a1e40 t acpi_dev_get_irqresource.part.1 +ffffffff813a1f80 t __acpi_dev_get_resources +ffffffff813a2040 t acpi_res_consumer_cb +ffffffff813a2130 T acpi_dev_resource_memory +ffffffff813a2210 T acpi_dev_resource_io +ffffffff813a2290 T acpi_dev_resource_address_space +ffffffff813a22d0 t is_memory +ffffffff813a2340 T acpi_dev_resource_ext_address_space +ffffffff813a2370 T acpi_dev_irq_flags +ffffffff813a23a0 T acpi_dev_get_irq_type +ffffffff813a23e0 T acpi_dev_resource_interrupt +ffffffff813a24a0 t acpi_dev_process_resource +ffffffff813a25a0 T acpi_dev_free_resource_list +ffffffff813a25b0 T acpi_dev_get_resources +ffffffff813a25c0 T acpi_dev_get_dma_resources +ffffffff813a25e0 T acpi_dev_filter_resource_type +ffffffff813a2670 T acpi_resource_consumer +ffffffff813a26a0 t acpi_processor_container_attach +ffffffff813a26e0 t acpi_processor_add +ffffffff813a2c90 t acpi_processor_remove +ffffffff813a2d40 T acpi_duplicate_processor_id +ffffffff813a2d80 t map_madt_entry +ffffffff813a2e40 t get_madt_table +ffffffff813a2e90 T acpi_get_phys_id +ffffffff813a2fa0 T acpi_map_cpuid +ffffffff813a3000 T acpi_get_cpuid +ffffffff813a3010 T acpi_get_ioapic_id +ffffffff813a30f0 T acpi_processor_set_pdc +ffffffff813a3260 t ec_transaction_completed +ffffffff813a32a0 t ec_correct_ecdt +ffffffff813a32b0 t ec_honor_ecdt_gpe +ffffffff813a32c0 t ec_guard +ffffffff813a3440 t acpi_ec_enter_noirq +ffffffff813a3490 t acpi_ec_leave_noirq +ffffffff813a34e0 t acpi_ec_put_query_handler +ffffffff813a3500 t acpi_ec_remove_query_handlers +ffffffff813a35d0 t acpi_ec_delete_query +ffffffff813a3600 t acpi_ec_free +ffffffff813a3630 t ec_parse_device +ffffffff813a3710 t acpi_ec_alloc +ffffffff813a37d0 t acpi_ec_event_processor +ffffffff813a3810 t acpi_ec_resume_noirq +ffffffff813a3860 t acpi_ec_suspend_noirq +ffffffff813a38b0 t acpi_ec_mask_gpe +ffffffff813a38e0 t acpi_ec_unmask_gpe +ffffffff813a3940 t acpi_ec_complete_query +ffffffff813a3950 t advance_transaction +ffffffff813a3c50 t acpi_ec_submit_request +ffffffff813a3cb0 t acpi_ec_start +ffffffff813a3d20 t acpi_ec_enable_event +ffffffff813a3d80 t acpi_ec_resume +ffffffff813a3d90 t acpi_ec_gpe_handler +ffffffff813a3dd0 t ec_parse_io_ports +ffffffff813a3e00 t acpi_ec_complete_request +ffffffff813a3e50 t acpi_ec_transaction +ffffffff813a40f0 t acpi_ec_space_handler +ffffffff813a4310 t param_get_event_clearing +ffffffff813a4380 t acpi_ec_setup.part.9 +ffffffff813a43d0 t param_set_event_clearing +ffffffff813a4490 t acpi_ec_event_handler +ffffffff813a46a0 t __acpi_ec_flush_event +ffffffff813a4740 t acpi_ec_suspend +ffffffff813a47b0 t acpi_ec_stop +ffffffff813a4900 t ec_remove_handlers +ffffffff813a49a0 t acpi_ec_remove +ffffffff813a4a10 t ec_install_handlers +ffffffff813a4b50 t acpi_config_boot_ec +ffffffff813a4c30 t acpi_ec_add +ffffffff813a4ec0 T acpi_ec_flush_work +ffffffff813a4ee0 T ec_read +ffffffff813a4f50 T ec_write +ffffffff813a4fb0 T ec_transaction +ffffffff813a5000 T ec_get_handle +ffffffff813a5020 T acpi_ec_block_transactions +ffffffff813a5060 T acpi_ec_unblock_transactions +ffffffff813a5080 T acpi_ec_add_query_handler +ffffffff813a5110 t acpi_ec_register_query_methods +ffffffff813a5190 T acpi_ec_remove_query_handler +ffffffff813a51a0 t acpi_dev_filter_resource_type_cb +ffffffff813a51b0 t acpi_pci_root_scan_dependent +ffffffff813a51c0 t acpi_pci_root_validate_resources +ffffffff813a53e0 t acpi_pci_run_osc +ffffffff813a5460 t __acpi_pci_root_release_info +ffffffff813a5510 t acpi_pci_root_release_info +ffffffff813a5580 t acpi_pci_root_remove +ffffffff813a55f0 t get_root_bridge_busnr_callback +ffffffff813a5640 t decode_osc_bits.isra.1.constprop.2 +ffffffff813a56f0 T acpi_is_root_bridge +ffffffff813a5720 T acpi_pci_find_root +ffffffff813a5760 T acpi_get_pci_dev +ffffffff813a58a0 T acpi_pci_osc_control_set +ffffffff813a5a50 t acpi_pci_root_add +ffffffff813a5f40 T acpi_pci_probe_root_resources +ffffffff813a6040 T acpi_pci_root_create +ffffffff813a6220 t acpi_irq_get_penalty +ffffffff813a62c0 t acpi_pci_link_check_possible +ffffffff813a6410 t acpi_pci_link_remove +ffffffff813a6460 t acpi_pci_link_check_current +ffffffff813a64d0 t acpi_pci_link_get_current.isra.1 +ffffffff813a65b0 t acpi_pci_link_set +ffffffff813a67b0 t irqrouter_resume +ffffffff813a67f0 t acpi_pci_link_add +ffffffff813a6a10 T acpi_pci_link_allocate_irq +ffffffff813a6cb0 T acpi_pci_link_free_irq +ffffffff813a6d60 T acpi_penalize_isa_irq +ffffffff813a6d80 T acpi_isa_irq_available +ffffffff813a6da0 T acpi_penalize_sci_irq +ffffffff813a6dd0 t acpi_pci_irq_find_prt_entry +ffffffff813a7090 t acpi_pci_irq_lookup +ffffffff813a7220 T acpi_pci_irq_enable +ffffffff813a73b0 T acpi_pci_irq_disable +ffffffff813a7430 t acpi_apd_create_device +ffffffff813a7500 T acpi_create_platform_device +ffffffff813a7730 t acpi_pnp_attach +ffffffff813a7740 t acpi_pnp_match +ffffffff813a77f0 T acpi_is_pnp_device +ffffffff813a7820 t acpi_power_hide_list +ffffffff813a7890 t acpi_power_expose_list +ffffffff813a7930 t acpi_power_get_state +ffffffff813a79b0 t acpi_power_sysfs_remove +ffffffff813a79d0 t acpi_power_in_use_show +ffffffff813a7a00 t acpi_release_power_resource +ffffffff813a7a70 t acpi_power_on_unlocked.part.1 +ffffffff813a7aa0 t acpi_power_on +ffffffff813a7af0 t acpi_power_off_unlocked.part.3 +ffffffff813a7b20 t acpi_power_off +ffffffff813a7b80 t acpi_power_on_list +ffffffff813a7be0 T acpi_power_resources_list_free +ffffffff813a7c40 T acpi_power_add_remove_device +ffffffff813a7cd0 T acpi_power_wakeup_list_init +ffffffff813a7d90 T acpi_device_sleep_wake +ffffffff813a7e60 T acpi_enable_wakeup_device_power +ffffffff813a7fa0 T acpi_disable_wakeup_device_power +ffffffff813a80d0 T acpi_power_get_inferred_state +ffffffff813a81b0 T acpi_power_on_resources +ffffffff813a81e0 T acpi_power_transition +ffffffff813a82d0 T acpi_add_power_resource +ffffffff813a85a0 T acpi_extract_power_resources +ffffffff813a86f0 T acpi_resume_power_resources +ffffffff813a87b0 T acpi_turn_off_unused_power_resources +ffffffff813a8880 T acpi_notifier_call_chain +ffffffff813a8910 T register_acpi_notifier +ffffffff813a8920 T unregister_acpi_notifier +ffffffff813a8930 T acpi_bus_generate_netlink_event +ffffffff813a8a90 t acpi_global_event_handler +ffffffff813a8af0 t param_get_acpica_version +ffffffff813a8b10 t hotplug_enabled_show +ffffffff813a8b30 t acpi_show_profile +ffffffff813a8b50 t force_remove_show +ffffffff813a8b70 t delete_gpe_attr_array +ffffffff813a8be0 t acpi_table_attr_init +ffffffff813a8cf0 t acpi_bert_data_init +ffffffff813a8d30 t acpi_table_show +ffffffff813a8da0 t hotplug_enabled_store +ffffffff813a8df0 t force_remove_store +ffffffff813a8e40 t acpi_data_show +ffffffff813a8eb0 t get_status +ffffffff813a8f40 t counter_set +ffffffff813a91f0 t counter_show +ffffffff813a9400 T acpi_sysfs_table_handler +ffffffff813a9490 T acpi_irq_stats_init +ffffffff813a9780 T acpi_sysfs_add_hotplug_profile +ffffffff813a97d0 t acpi_data_get_property +ffffffff813a98a0 t acpi_destroy_nondev_subnodes +ffffffff813a9940 t acpi_graph_get_child_prop_value +ffffffff813a99b0 t acpi_fwnode_graph_parse_endpoint +ffffffff813a9a00 t acpi_device_data_of_node +ffffffff813a9a40 t acpi_fwnode_property_present +ffffffff813a9a60 T acpi_get_next_subnode +ffffffff813a9be0 T acpi_node_get_parent +ffffffff813a9c50 t acpi_fwnode_get_parent +ffffffff813a9c60 t acpi_fwnode_device_get_match_data +ffffffff813a9c70 t acpi_fwnode_device_is_available +ffffffff813a9ca0 t acpi_extract_properties.isra.1 +ffffffff813a9e10 t acpi_data_prop_read_single +ffffffff813a9ec0 t acpi_data_prop_read +ffffffff813aa140 t acpi_fwnode_property_read_string_array +ffffffff813aa160 t acpi_fwnode_property_read_int_array +ffffffff813aa1d0 t acpi_enumerate_nondev_subnodes.isra.6 +ffffffff813aa320 t acpi_nondev_subnode_extract.isra.4 +ffffffff813aa440 t acpi_nondev_subnode_data_ok +ffffffff813aa4d0 T acpi_init_properties +ffffffff813aa750 T acpi_free_properties +ffffffff813aa790 T acpi_dev_get_property +ffffffff813aa7b0 T acpi_node_prop_get +ffffffff813aa7d0 T __acpi_node_get_property_reference +ffffffff813aa9a0 t acpi_fwnode_get_reference_args +ffffffff813aaa00 T acpi_dev_prop_read_single +ffffffff813aaa30 T acpi_dev_prop_read +ffffffff813aaa50 T acpi_node_prop_read +ffffffff813aaa70 T acpi_graph_get_next_endpoint +ffffffff813aab50 t acpi_fwnode_graph_get_next_endpoint +ffffffff813aab70 T acpi_graph_get_remote_endpoint +ffffffff813aac40 t acpi_fwnode_graph_get_remote_endpoint +ffffffff813aac70 T is_acpi_device_node +ffffffff813aac90 T is_acpi_data_node +ffffffff813aacb0 t acpi_fwnode_get_named_child_node +ffffffff813aad10 t acpi_remove_cmos_rtc_space_handler +ffffffff813aad40 t acpi_install_cmos_rtc_space_handler +ffffffff813aad80 t acpi_cmos_rtc_space_handler +ffffffff813aae20 T acpi_extract_apple_properties +ffffffff813ab160 T acpi_device_always_present +ffffffff813ab230 T acpi_lpat_raw_to_temp +ffffffff813ab2b0 T acpi_lpat_temp_to_raw +ffffffff813ab340 T acpi_lpat_get_conversion_table +ffffffff813ab460 T acpi_lpat_free_conversion_table +ffffffff813ab480 t lpit_update_residency +ffffffff813ab530 t lpit_read_residency_counter_us +ffffffff813ab610 t low_power_idle_cpu_residency_us_show +ffffffff813ab650 t low_power_idle_system_residency_us_show +ffffffff813ab690 T lpit_read_residency_count_address +ffffffff813ab6b0 T acpi_init_lpit +ffffffff813ab757 t acpi_ds_execute_arguments +ffffffff813ab893 T acpi_ds_get_buffer_field_arguments +ffffffff813ab8ba T acpi_ds_get_bank_field_arguments +ffffffff813ab900 T acpi_ds_get_buffer_arguments +ffffffff813ab945 T acpi_ds_get_package_arguments +ffffffff813ab98a T acpi_ds_get_region_arguments +ffffffff813ab9da T acpi_ds_exec_begin_control_op +ffffffff813aba97 T acpi_ds_exec_end_control_op +ffffffff813abcab T acpi_ds_dump_method_stack +ffffffff813abcac t acpi_ds_get_field_names +ffffffff813abeda T acpi_ds_create_buffer_field +ffffffff813ac034 T acpi_ds_create_field +ffffffff813ac0e4 T acpi_ds_init_field_objects +ffffffff813ac22a T acpi_ds_create_bank_field +ffffffff813ac323 T acpi_ds_create_index_field +ffffffff813ac3fd t acpi_ds_init_one_object +ffffffff813ac4c2 T acpi_ds_initialize_objects +ffffffff813ac548 t acpi_ds_detect_named_opcodes +ffffffff813ac573 T acpi_ds_auto_serialize_method +ffffffff813ac63a T acpi_ds_method_error +ffffffff813ac6bd T acpi_ds_begin_method_execution +ffffffff813ac89c T acpi_ds_restart_control_method +ffffffff813ac90c T acpi_ds_terminate_control_method +ffffffff813aca2f T acpi_ds_call_control_method +ffffffff813acba0 T acpi_ds_method_data_init +ffffffff813acc01 T acpi_ds_method_data_delete_all +ffffffff813acc58 T acpi_ds_method_data_get_node +ffffffff813accf1 T acpi_ds_method_data_init_args +ffffffff813acd58 T acpi_ds_method_data_get_value +ffffffff813ace46 T acpi_ds_store_object_to_local +ffffffff813acfa2 T acpi_ds_build_internal_buffer_obj +ffffffff813ad0bd T acpi_ds_init_object_from_op +ffffffff813ad327 T acpi_ds_build_internal_object +ffffffff813ad44e T acpi_ds_create_node +ffffffff813ad4bb t acpi_ds_init_buffer_field +ffffffff813ad720 T acpi_ds_initialize_region +ffffffff813ad72d T acpi_ds_eval_buffer_field_operands +ffffffff813ad802 T acpi_ds_eval_region_operands +ffffffff813ad8ab T acpi_ds_eval_table_region_operands +ffffffff813ad9d6 T acpi_ds_eval_data_object_operands +ffffffff813adaec T acpi_ds_eval_bank_field_operands +ffffffff813adb81 T acpi_ds_init_package_element +ffffffff813add1d T acpi_ds_build_internal_package_obj +ffffffff813adf59 T acpi_ds_clear_implicit_return +ffffffff813adf85 T acpi_ds_do_implicit_return +ffffffff813adfd7 T acpi_ds_is_result_used +ffffffff813ae0d7 T acpi_ds_delete_result_if_not_used +ffffffff813ae12b T acpi_ds_resolve_operands +ffffffff813ae161 T acpi_ds_clear_operands +ffffffff813ae197 T acpi_ds_create_operand +ffffffff813ae3b6 T acpi_ds_create_operands +ffffffff813ae462 T acpi_ds_evaluate_name_path +ffffffff813ae547 T acpi_ds_get_predicate_value +ffffffff813ae6b9 T acpi_ds_exec_begin_op +ffffffff813ae7cc T acpi_ds_exec_end_op +ffffffff813aeb97 T acpi_ds_load1_begin_op +ffffffff813aee1d T acpi_ds_load1_end_op +ffffffff813aef94 T acpi_ds_init_callbacks +ffffffff813af025 T acpi_ds_load2_begin_op +ffffffff813af348 T acpi_ds_load2_end_op +ffffffff813af64b T acpi_ds_scope_stack_clear +ffffffff813af66e T acpi_ds_scope_stack_push +ffffffff813af6f7 T acpi_ds_scope_stack_pop +ffffffff813af722 T acpi_ds_result_pop +ffffffff813af80a T acpi_ds_result_push +ffffffff813af91d T acpi_ds_obj_stack_push +ffffffff813af96a T acpi_ds_obj_stack_pop +ffffffff813af9b8 T acpi_ds_obj_stack_pop_and_delete +ffffffff813afa09 T acpi_ds_get_current_walk_state +ffffffff813afa15 T acpi_ds_push_walk_state +ffffffff813afa21 T acpi_ds_pop_walk_state +ffffffff813afa32 T acpi_ds_create_walk_state +ffffffff813afabf T acpi_ds_init_aml_walk +ffffffff813afbbf T acpi_ds_delete_walk_state +ffffffff813afc79 T acpi_ev_initialize_events +ffffffff813afd12 T acpi_ev_install_xrupt_handlers +ffffffff813afd72 T acpi_ev_fixed_event_detect +ffffffff813afe6f T acpi_ev_update_gpe_enable_mask +ffffffff813afea9 T acpi_ev_enable_gpe +ffffffff813afec3 T acpi_ev_mask_gpe +ffffffff813aff4d T acpi_ev_add_gpe_reference +ffffffff813aff89 T acpi_ev_remove_gpe_reference +ffffffff813affc9 T acpi_ev_low_get_gpe_info +ffffffff813affee T acpi_ev_get_gpe_event_info +ffffffff813b002e T acpi_ev_finish_gpe +ffffffff813b0058 t acpi_ev_asynch_enable_gpe +ffffffff813b0085 t acpi_ev_asynch_execute_gpe_method +ffffffff813b0175 T acpi_ev_gpe_dispatch +ffffffff813b029b T acpi_ev_gpe_detect +ffffffff813b043c T acpi_ev_delete_gpe_block +ffffffff813b04ef T acpi_ev_create_gpe_block +ffffffff813b0800 T acpi_ev_initialize_gpe_block +ffffffff813b092c T acpi_ev_match_gpe_method +ffffffff813b0a0f T acpi_ev_gpe_initialize +ffffffff813b0b37 T acpi_ev_update_gpes +ffffffff813b0bf9 T acpi_ev_walk_gpe_list +ffffffff813b0c76 T acpi_ev_get_gpe_device +ffffffff813b0ca0 T acpi_ev_get_gpe_xrupt_block +ffffffff813b0d9e T acpi_ev_delete_gpe_xrupt +ffffffff813b0e1f T acpi_ev_delete_gpe_handlers +ffffffff813b0ea2 t acpi_ev_global_lock_handler +ffffffff813b0f05 T acpi_ev_init_global_lock_handler +ffffffff813b0f9e T acpi_ev_remove_global_lock_handler +ffffffff813b0fcd T acpi_ev_acquire_global_lock +ffffffff813b109f T acpi_ev_release_global_lock +ffffffff813b111a T acpi_ev_has_default_handler +ffffffff813b114e T acpi_ev_find_region_handler +ffffffff813b1163 t acpi_ev_install_handler +ffffffff813b11ea T acpi_ev_install_space_handler +ffffffff813b1406 T acpi_ev_install_region_handlers +ffffffff813b146c t acpi_ev_notify_dispatch +ffffffff813b14c1 T acpi_ev_is_notify_object +ffffffff813b14dc T acpi_ev_queue_notify_request +ffffffff813b15a1 T acpi_ev_terminate +ffffffff813b1673 T acpi_ev_address_space_dispatch +ffffffff813b18bd T acpi_ev_attach_region +ffffffff813b18e1 T acpi_ev_execute_reg_method +ffffffff813b1a50 T acpi_ev_detach_region +ffffffff813b1bc2 t acpi_ev_reg_run +ffffffff813b1c0d T acpi_ev_execute_reg_methods +ffffffff813b1d01 T acpi_ev_initialize_op_regions +ffffffff813b1d5c T acpi_ev_system_memory_region_setup +ffffffff813b1de3 T acpi_ev_io_space_region_setup +ffffffff813b1df2 T acpi_ev_pci_config_region_setup +ffffffff813b2037 T acpi_ev_pci_bar_region_setup +ffffffff813b203a T acpi_ev_cmos_region_setup +ffffffff813b203d T acpi_ev_default_region_setup +ffffffff813b204c T acpi_ev_initialize_region +ffffffff813b210d T acpi_ev_sci_dispatch +ffffffff813b2162 t acpi_ev_sci_xrupt_handler +ffffffff813b218a T acpi_ev_gpe_xrupt_handler +ffffffff813b218f T acpi_ev_install_sci_handler +ffffffff813b21a9 T acpi_ev_remove_all_sci_handlers +ffffffff813b220a t acpi_ev_install_gpe_handler.part.0 +ffffffff813b2375 T acpi_install_notify_handler +ffffffff813b2573 T acpi_remove_notify_handler +ffffffff813b26f8 T acpi_install_sci_handler +ffffffff813b27c2 T acpi_remove_sci_handler +ffffffff813b285e T acpi_install_global_event_handler +ffffffff813b28b2 T acpi_install_fixed_event_handler +ffffffff813b297b T acpi_remove_fixed_event_handler +ffffffff813b29f8 T acpi_install_gpe_handler +ffffffff813b2a5a T acpi_install_gpe_raw_handler +ffffffff813b2abf T acpi_remove_gpe_handler +ffffffff813b2bbf T acpi_acquire_global_lock +ffffffff813b2c0e T acpi_release_global_lock +ffffffff813b2c2f T acpi_enable +ffffffff813b2ce7 T acpi_disable +ffffffff813b2d32 T acpi_enable_event +ffffffff813b2db6 T acpi_disable_event +ffffffff813b2e37 T acpi_clear_event +ffffffff813b2e65 T acpi_get_event_status +ffffffff813b2ef2 T acpi_update_all_gpes +ffffffff813b2f35 T acpi_enable_gpe +ffffffff813b2f8e T acpi_disable_gpe +ffffffff813b2fdc T acpi_set_gpe +ffffffff813b3061 T acpi_mask_gpe +ffffffff813b30b8 T acpi_mark_gpe_for_wake +ffffffff813b3102 T acpi_setup_gpe_for_wake +ffffffff813b3226 T acpi_set_gpe_wake_mask +ffffffff813b32d3 T acpi_clear_gpe +ffffffff813b3321 T acpi_get_gpe_status +ffffffff813b3379 T acpi_finish_gpe +ffffffff813b33c7 T acpi_disable_all_gpes +ffffffff813b33ed T acpi_enable_all_runtime_gpes +ffffffff813b3413 T acpi_enable_all_wakeup_gpes +ffffffff813b3439 T acpi_install_gpe_block +ffffffff813b355d T acpi_remove_gpe_block +ffffffff813b35db T acpi_get_gpe_device +ffffffff813b363b T acpi_install_address_space_handler +ffffffff813b36c5 T acpi_remove_address_space_handler +ffffffff813b3796 t acpi_ex_convert_to_object_type_string.isra.0 +ffffffff813b380a T acpi_ex_do_concatenate +ffffffff813b39ff T acpi_ex_concat_template +ffffffff813b3aad t acpi_ex_add_table +ffffffff813b3aef t acpi_ex_region_read +ffffffff813b3b3e T acpi_ex_unload_table +ffffffff813b3b9c T acpi_ex_load_table_op +ffffffff813b3d22 T acpi_ex_load_op +ffffffff813b3f13 t acpi_ex_convert_to_ascii +ffffffff813b400b T acpi_ex_convert_to_integer +ffffffff813b40ab T acpi_ex_convert_to_buffer +ffffffff813b4131 T acpi_ex_convert_to_string +ffffffff813b42a6 T acpi_ex_convert_to_target_type +ffffffff813b437b T acpi_ex_create_alias +ffffffff813b43b3 T acpi_ex_create_event +ffffffff813b441b T acpi_ex_create_mutex +ffffffff813b449a T acpi_ex_create_region +ffffffff813b45a5 T acpi_ex_create_processor +ffffffff813b4626 T acpi_ex_create_power_resource +ffffffff813b4698 T acpi_ex_create_method +ffffffff813b473d T acpi_ex_do_debug_object +ffffffff813b4aa8 t acpi_ex_get_serial_access_length +ffffffff813b4ad5 T acpi_ex_read_data_from_field +ffffffff813b4c4b T acpi_ex_write_data_to_field +ffffffff813b4e42 t acpi_ex_register_overflow.isra.0 +ffffffff813b4e7c T acpi_ex_access_region +ffffffff813b50cb T acpi_ex_insert_into_field +ffffffff813b52b6 t acpi_ex_field_datum_io +ffffffff813b5420 T acpi_ex_write_with_update_rule +ffffffff813b54dc T acpi_ex_extract_from_field +ffffffff813b56ef T acpi_ex_get_object_reference +ffffffff813b57a8 T acpi_ex_do_math_op +ffffffff813b5829 T acpi_ex_do_logical_numeric_op +ffffffff813b587b T acpi_ex_do_logical_op +ffffffff813b5a1d T acpi_ex_unlink_mutex +ffffffff813b5a58 T acpi_ex_acquire_mutex_object +ffffffff813b5ab3 T acpi_ex_acquire_mutex +ffffffff813b5ba5 T acpi_ex_release_mutex_object +ffffffff813b5c03 T acpi_ex_release_mutex +ffffffff813b5d4c T acpi_ex_release_all_mutexes +ffffffff813b5db0 t acpi_ex_allocate_name_string +ffffffff813b5e5d t acpi_ex_name_segment +ffffffff813b5f16 T acpi_ex_get_name_string +ffffffff813b60f3 T acpi_ex_opcode_0A_0T_1R +ffffffff813b616e T acpi_ex_opcode_1A_0T_0R +ffffffff813b61ff T acpi_ex_opcode_1A_1T_0R +ffffffff813b623e T acpi_ex_opcode_1A_1T_1R +ffffffff813b673d T acpi_ex_opcode_1A_0T_1R +ffffffff813b6c07 T acpi_ex_opcode_2A_0T_0R +ffffffff813b6c89 T acpi_ex_opcode_2A_2T_1R +ffffffff813b6d9d T acpi_ex_opcode_2A_1T_1R +ffffffff813b710a T acpi_ex_opcode_2A_0T_1R +ffffffff813b7238 T acpi_ex_opcode_3A_0T_0R +ffffffff813b7306 T acpi_ex_opcode_3A_1T_1R +ffffffff813b7493 t acpi_ex_do_match +ffffffff813b7518 T acpi_ex_opcode_6A_0T_1R +ffffffff813b76c0 T acpi_ex_prep_common_field_object +ffffffff813b775e T acpi_ex_prep_field_value +ffffffff813b79be T acpi_ex_system_memory_space_handler +ffffffff813b7b5d T acpi_ex_system_io_space_handler +ffffffff813b7b95 T acpi_ex_pci_config_space_handler +ffffffff813b7bcc T acpi_ex_cmos_space_handler +ffffffff813b7bcf T acpi_ex_pci_bar_space_handler +ffffffff813b7bd2 T acpi_ex_data_table_space_handler +ffffffff813b7bfd T acpi_ex_resolve_node_to_value +ffffffff813b7e03 T acpi_ex_resolve_to_value +ffffffff813b7fff T acpi_ex_resolve_multiple +ffffffff813b8253 t acpi_ex_check_object_type +ffffffff813b82bf T acpi_ex_resolve_operands +ffffffff813b878b t acpi_ex_store_direct_to_node +ffffffff813b87ca T acpi_ex_store_object_to_node +ffffffff813b891c T acpi_ex_store +ffffffff813b8b48 T acpi_ex_resolve_object +ffffffff813b8c27 T acpi_ex_store_object_to_object +ffffffff813b8d36 T acpi_ex_store_buffer_to_buffer +ffffffff813b8dc6 T acpi_ex_store_string_to_string +ffffffff813b8e6d T acpi_ex_system_wait_semaphore +ffffffff813b8eb0 T acpi_ex_system_wait_mutex +ffffffff813b8ef3 T acpi_ex_system_do_stall +ffffffff813b8f23 T acpi_ex_system_do_sleep +ffffffff813b8f4a T acpi_ex_system_signal_event +ffffffff813b8f60 T acpi_ex_system_wait_event +ffffffff813b8f78 T acpi_ex_system_reset_event +ffffffff813b8fa8 T acpi_ex_trace_point +ffffffff813b8fa9 T acpi_ex_start_trace_method +ffffffff813b9078 T acpi_ex_stop_trace_method +ffffffff813b90dd T acpi_ex_start_trace_opcode +ffffffff813b90de T acpi_ex_stop_trace_opcode +ffffffff813b90df T acpi_ex_enter_interpreter +ffffffff813b9129 T acpi_ex_exit_interpreter +ffffffff813b9173 T acpi_ex_truncate_for32bit_table +ffffffff813b91a3 T acpi_ex_acquire_global_lock +ffffffff813b91e2 T acpi_ex_release_global_lock +ffffffff813b9213 T acpi_ex_eisa_id_to_string +ffffffff813b92be T acpi_ex_integer_to_string +ffffffff813b9336 T acpi_ex_pci_cls_to_string +ffffffff813b93a0 T acpi_is_valid_space_id +ffffffff813b93ab T acpi_hw_set_mode +ffffffff813b9464 T acpi_hw_get_mode +ffffffff813b94a7 T acpi_hw_execute_sleep_method +ffffffff813b950d T acpi_hw_extended_sleep +ffffffff813b95b4 T acpi_hw_extended_wake_prep +ffffffff813b95ed T acpi_hw_extended_wake +ffffffff813b9644 T acpi_hw_enable_runtime_gpe_block +ffffffff813b9689 T acpi_hw_clear_gpe_block +ffffffff813b96b6 T acpi_hw_disable_gpe_block +ffffffff813b96e8 t acpi_hw_enable_wakeup_gpe_block +ffffffff813b971c T acpi_hw_get_gpe_register_bit +ffffffff813b972f T acpi_hw_low_set_gpe +ffffffff813b97d3 T acpi_hw_clear_gpe +ffffffff813b97ee T acpi_hw_get_gpe_status +ffffffff813b9886 T acpi_hw_disable_all_gpes +ffffffff813b98a2 T acpi_hw_enable_all_runtime_gpes +ffffffff813b98b0 T acpi_hw_enable_all_wakeup_gpes +ffffffff813b98be t acpi_hw_delete_pci_list +ffffffff813b98d8 T acpi_hw_derive_pci_id +ffffffff813b9a87 t acpi_hw_get_access_bit_width +ffffffff813b9b34 T acpi_hw_validate_register +ffffffff813b9be4 T acpi_hw_read +ffffffff813b9d12 t acpi_hw_read_multiple +ffffffff813b9d61 T acpi_hw_write +ffffffff813b9e53 t acpi_hw_write_multiple +ffffffff813b9e7d T acpi_hw_get_bit_register_info +ffffffff813b9eaa T acpi_hw_write_pm1_control +ffffffff813b9eda T acpi_hw_register_read +ffffffff813b9fbc T acpi_hw_register_write +ffffffff813ba0c7 T acpi_hw_clear_acpi_status +ffffffff813ba115 T acpi_hw_legacy_sleep +ffffffff813ba26c T acpi_hw_legacy_wake_prep +ffffffff813ba301 T acpi_hw_legacy_wake +ffffffff813ba391 t acpi_hw_validate_io_request +ffffffff813ba44e T acpi_hw_read_port +ffffffff813ba4e5 T acpi_hw_write_port +ffffffff813ba572 T acpi_reset +ffffffff813ba5b7 T acpi_read +ffffffff813ba5bc T acpi_write +ffffffff813ba5c1 T acpi_read_bit_register +ffffffff813ba5ff T acpi_write_bit_register +ffffffff813ba6ac T acpi_get_sleep_type_data +ffffffff813ba82e t acpi_hw_sleep_dispatch +ffffffff813ba85c T acpi_set_firmware_waking_vector +ffffffff813ba888 T acpi_enter_sleep_state_s4bios +ffffffff813ba8fd T acpi_enter_sleep_state_prep +ffffffff813ba98d T acpi_enter_sleep_state +ffffffff813ba9d0 T acpi_leave_sleep_state_prep +ffffffff813ba9de T acpi_leave_sleep_state +ffffffff813ba9ec T acpi_ns_lookup +ffffffff813bad7e T acpi_ns_root_initialize +ffffffff813bb000 T acpi_ns_create_node +ffffffff813bb03c T acpi_ns_delete_node +ffffffff813bb09d T acpi_ns_remove_node +ffffffff813bb0cf T acpi_ns_install_node +ffffffff813bb129 T acpi_ns_delete_children +ffffffff813bb189 T acpi_ns_delete_namespace_subtree +ffffffff813bb202 T acpi_ns_delete_namespace_by_owner +ffffffff813bb2c8 T acpi_ns_check_argument_types +ffffffff813bb38a T acpi_ns_check_acpi_compliance +ffffffff813bb46e T acpi_ns_check_argument_count +ffffffff813bb547 T acpi_ns_convert_to_integer +ffffffff813bb5cb T acpi_ns_convert_to_string +ffffffff813bb663 T acpi_ns_convert_to_buffer +ffffffff813bb72f T acpi_ns_convert_to_unicode +ffffffff813bb7a0 T acpi_ns_convert_to_resource +ffffffff813bb807 T acpi_ns_convert_to_reference +ffffffff813bb902 T acpi_ns_evaluate +ffffffff813bbb37 T acpi_ns_exec_module_code_list +ffffffff813bbc9b t acpi_ns_init_one_object +ffffffff813bbdc9 t acpi_ns_init_one_device +ffffffff813bbe9f t acpi_ns_find_ini_methods +ffffffff813bbeea T acpi_ns_initialize_objects +ffffffff813bbf3d T acpi_ns_initialize_devices +ffffffff813bc0e0 T acpi_ns_load_table +ffffffff813bc175 T acpi_ns_handle_to_name +ffffffff813bc1c0 T acpi_ns_build_normalized_path +ffffffff813bc2a3 T acpi_ns_get_pathname_length +ffffffff813bc2da T acpi_ns_handle_to_pathname +ffffffff813bc340 T acpi_ns_get_normalized_pathname +ffffffff813bc3c7 T acpi_ns_get_external_pathname +ffffffff813bc3ce T acpi_ns_build_prefixed_pathname +ffffffff813bc596 T acpi_ns_detach_object +ffffffff813bc60a T acpi_ns_attach_object +ffffffff813bc6fb T acpi_ns_get_attached_object +ffffffff813bc736 T acpi_ns_get_secondary_object +ffffffff813bc755 T acpi_ns_attach_data +ffffffff813bc7d1 T acpi_ns_detach_data +ffffffff813bc810 T acpi_ns_get_attached_data +ffffffff813bc839 T acpi_ns_execute_table +ffffffff813bc973 T acpi_ns_one_complete_parse +ffffffff813bcab0 T acpi_ns_parse_table +ffffffff813bcaec T acpi_ns_check_object_type +ffffffff813bcc6b T acpi_ns_check_return_value +ffffffff813bcd21 t acpi_ns_check_package_elements +ffffffff813bcdb2 t acpi_ns_check_package_list +ffffffff813bcfc7 T acpi_ns_check_package +ffffffff813bd331 T acpi_ns_repair_null_element +ffffffff813bd399 T acpi_ns_remove_null_elements +ffffffff813bd3eb T acpi_ns_wrap_with_package +ffffffff813bd425 T acpi_ns_simple_repair +ffffffff813bd631 t acpi_ns_repair_PRT +ffffffff813bd6b1 t acpi_ns_repair_FDE +ffffffff813bd756 t acpi_ns_check_sorted_list.part.0 +ffffffff813bd889 t acpi_ns_repair_HID +ffffffff813bd936 t acpi_ns_repair_CID +ffffffff813bd9aa t acpi_ns_repair_TSS +ffffffff813bd9f9 t acpi_ns_repair_ALR +ffffffff813bda1d t acpi_ns_repair_PSS +ffffffff813bdac2 t acpi_ns_repair_CST +ffffffff813bdc17 T acpi_ns_complex_repairs +ffffffff813bdc40 T acpi_ns_search_one_scope +ffffffff813bdc79 T acpi_ns_search_and_enter +ffffffff813bde15 t acpi_ns_get_node_unlocked.part.1 +ffffffff813bde2a T acpi_ns_print_node_pathname +ffffffff813bde93 T acpi_ns_get_type +ffffffff813bdeb8 T acpi_ns_local +ffffffff813bdef2 T acpi_ns_get_internal_name_length +ffffffff813bdf5b T acpi_ns_build_internal_name +ffffffff813be037 T acpi_ns_internalize_name +ffffffff813be0d2 T acpi_ns_externalize_name +ffffffff813be273 T acpi_ns_validate_handle +ffffffff813be291 T acpi_ns_terminate +ffffffff813be2e7 T acpi_ns_opens_scope +ffffffff813be315 T acpi_ns_get_node_unlocked +ffffffff813be3b6 T acpi_ns_get_node +ffffffff813be406 T acpi_ns_get_next_node +ffffffff813be415 T acpi_ns_get_next_node_typed +ffffffff813be43b T acpi_ns_walk_namespace +ffffffff813be5e0 t acpi_ns_get_device_callback +ffffffff813be73d T acpi_evaluate_object +ffffffff813be98e T acpi_evaluate_object_typed +ffffffff813beab5 T acpi_walk_namespace +ffffffff813beb7b T acpi_get_devices +ffffffff813bebea T acpi_attach_data +ffffffff813bec5a T acpi_detach_data +ffffffff813becb5 T acpi_get_data_full +ffffffff813bed40 T acpi_get_data +ffffffff813bed47 T acpi_get_handle +ffffffff813bedd0 T acpi_get_name +ffffffff813bee45 T acpi_get_object_info +ffffffff813bf1ba T acpi_install_method +ffffffff813bf395 T acpi_get_type +ffffffff813bf3f8 T acpi_get_parent +ffffffff813bf45f T acpi_get_next_object +ffffffff813bf4ef t acpi_ps_get_next_package_length.isra.0 +ffffffff813bf535 T acpi_ps_get_next_package_end +ffffffff813bf548 T acpi_ps_get_next_namestring +ffffffff813bf596 T acpi_ps_get_next_namepath +ffffffff813bf75e T acpi_ps_get_next_simple_arg +ffffffff813bf832 T acpi_ps_get_next_arg +ffffffff813bfc28 T acpi_ps_parse_loop +ffffffff813c017f T acpi_ps_build_named_op +ffffffff813c02ba T acpi_ps_create_op +ffffffff813c04d2 T acpi_ps_complete_op +ffffffff813c06fa T acpi_ps_complete_final_op +ffffffff813c0815 T acpi_ps_get_opcode_info +ffffffff813c0854 T acpi_ps_get_opcode_name +ffffffff813c085c T acpi_ps_get_argument_count +ffffffff813c086c T acpi_ps_get_opcode_size +ffffffff813c0878 T acpi_ps_peek_opcode +ffffffff813c088d T acpi_ps_complete_this_op +ffffffff813c0a33 T acpi_ps_next_parse_state +ffffffff813c0b25 T acpi_ps_parse_aml +ffffffff813c0db7 T acpi_ps_get_parent_scope +ffffffff813c0dc0 T acpi_ps_has_completed_scope +ffffffff813c0ddd T acpi_ps_init_scope +ffffffff813c0e23 T acpi_ps_push_scope +ffffffff813c0e8f T acpi_ps_pop_scope +ffffffff813c0ef3 T acpi_ps_cleanup_scope +ffffffff813c0f1e T acpi_ps_get_arg +ffffffff813c0f57 T acpi_ps_append_arg +ffffffff813c0fce T acpi_ps_get_depth_next +ffffffff813c103f T acpi_ps_init_op +ffffffff813c1048 T acpi_ps_alloc_op +ffffffff813c10f9 T acpi_ps_create_scope_op +ffffffff813c1113 T acpi_ps_free_op +ffffffff813c112f T acpi_ps_is_leading_char +ffffffff813c1141 T acpi_ps_get_name +ffffffff813c114d T acpi_ps_set_name +ffffffff813c1157 T acpi_ps_delete_parse_tree +ffffffff813c11ab t acpi_ps_update_parameter_list +ffffffff813c11e1 T acpi_debug_trace +ffffffff813c1234 T acpi_ps_execute_method +ffffffff813c13ae T acpi_ps_execute_table +ffffffff813c1492 T acpi_rs_get_address_common +ffffffff813c14fd T acpi_rs_set_address_common +ffffffff813c1546 T acpi_rs_get_aml_length +ffffffff813c16b0 T acpi_rs_get_list_length +ffffffff813c1930 T acpi_rs_get_pci_routing_table_length +ffffffff813c1a0d T acpi_buffer_to_resource +ffffffff813c1ab9 T acpi_rs_create_resource_list +ffffffff813c1b1f T acpi_rs_create_pci_routing_table +ffffffff813c1d7a T acpi_rs_create_aml_resources +ffffffff813c1dc3 T acpi_rs_convert_aml_to_resources +ffffffff813c1e92 T acpi_rs_convert_resources_to_aml +ffffffff813c1fae T acpi_rs_convert_aml_to_resource +ffffffff813c2322 T acpi_rs_convert_resource_to_aml +ffffffff813c2594 T acpi_rs_decode_bitmask +ffffffff813c25b3 T acpi_rs_encode_bitmask +ffffffff813c25d8 T acpi_rs_move_data +ffffffff813c262a T acpi_rs_set_resource_length +ffffffff813c2656 T acpi_rs_set_resource_header +ffffffff813c2662 T acpi_rs_get_resource_source +ffffffff813c26e5 T acpi_rs_set_resource_source +ffffffff813c2718 T acpi_rs_get_prt_method_data +ffffffff813c275f T acpi_rs_get_crs_method_data +ffffffff813c27a6 T acpi_rs_get_prs_method_data +ffffffff813c27ed T acpi_rs_get_aei_method_data +ffffffff813c2834 T acpi_rs_get_method_data +ffffffff813c2874 T acpi_rs_set_srs_method_data +ffffffff813c2972 t acpi_rs_validate_parameters +ffffffff813c29b8 t acpi_rs_match_vendor_resource +ffffffff813c2a33 T acpi_get_irq_routing_table +ffffffff813c2a53 T acpi_get_current_resources +ffffffff813c2a73 T acpi_get_possible_resources +ffffffff813c2a93 T acpi_set_current_resources +ffffffff813c2acb T acpi_get_event_resources +ffffffff813c2aeb T acpi_resource_to_address64 +ffffffff813c2bdf T acpi_walk_resource_buffer +ffffffff813c2c5b T acpi_walk_resources +ffffffff813c2d08 T acpi_get_vendor_resource +ffffffff813c2d4b T acpi_tb_init_table_descriptor +ffffffff813c2d78 T acpi_tb_acquire_table +ffffffff813c2dd7 T acpi_tb_release_table +ffffffff813c2de6 T acpi_tb_acquire_temp_table +ffffffff813c2e5d T acpi_tb_validate_table +ffffffff813c2e8b T acpi_tb_invalidate_table +ffffffff813c2eae T acpi_tb_release_temp_table +ffffffff813c2eb0 T acpi_tb_validate_temp_table +ffffffff813c2ec9 T acpi_tb_verify_temp_table +ffffffff813c30b2 T acpi_tb_resize_root_table_list +ffffffff813c31c3 T acpi_tb_get_next_table_descriptor +ffffffff813c3215 T acpi_tb_terminate +ffffffff813c327c T acpi_tb_delete_namespace_by_owner +ffffffff813c32ee T acpi_tb_allocate_owner_id +ffffffff813c3330 T acpi_tb_release_owner_id +ffffffff813c3372 T acpi_tb_get_owner_id +ffffffff813c33b7 T acpi_tb_is_table_loaded +ffffffff813c33f1 T acpi_tb_set_table_loaded_flag +ffffffff813c3434 T acpi_tb_notify_table +ffffffff813c344d T acpi_tb_load_table +ffffffff813c34c4 T acpi_tb_install_and_load_table +ffffffff813c34fd T acpi_tb_unload_table +ffffffff813c354f T acpi_tb_create_local_fadt +ffffffff813c394d T acpi_tb_parse_fadt +ffffffff813c3a07 T acpi_tb_find_table +ffffffff813c3bb0 T acpi_tb_uninstall_table +ffffffff813c3bdb T acpi_tb_override_table +ffffffff813c3cd5 T acpi_tb_install_table_with_override +ffffffff813c3d4d T acpi_tb_install_standard_table +ffffffff813c3e79 t acpi_tb_fix_string +ffffffff813c3e98 T acpi_tb_print_table_header +ffffffff813c3fba T acpi_tb_checksum +ffffffff813c3fcf T acpi_tb_verify_checksum +ffffffff813c4015 T acpi_tb_initialize_facs +ffffffff813c4076 T acpi_tb_check_dsdt_header +ffffffff813c40f9 T acpi_tb_copy_dsdt +ffffffff813c4198 T acpi_tb_get_table +ffffffff813c41f1 T acpi_tb_put_table +ffffffff813c422e T acpi_allocate_root_table +ffffffff813c4240 T acpi_get_table_header +ffffffff813c42f1 T acpi_get_table +ffffffff813c436e T acpi_put_table +ffffffff813c43b6 T acpi_get_table_by_index +ffffffff813c4415 T acpi_install_table_handler +ffffffff813c4469 T acpi_remove_table_handler +ffffffff813c44ad T acpi_tb_load_namespace +ffffffff813c468e T acpi_load_table +ffffffff813c46be T acpi_unload_parent_table +ffffffff813c474a T acpi_tb_get_rsdp_length +ffffffff813c4777 T acpi_tb_validate_rsdp +ffffffff813c47ca T acpi_tb_scan_memory_for_rsdp +ffffffff813c47f3 T acpi_ut_add_address_range +ffffffff813c4873 T acpi_ut_remove_address_range +ffffffff813c48b6 T acpi_ut_check_address_range +ffffffff813c49c9 T acpi_ut_delete_address_lists +ffffffff813c4a14 T acpi_ut_create_caches +ffffffff813c4aba T acpi_ut_delete_caches +ffffffff813c4b30 T acpi_ut_validate_buffer +ffffffff813c4b56 T acpi_ut_initialize_buffer +ffffffff813c4bd4 T acpi_ut_valid_name_char +ffffffff813c4bfe T acpi_ut_valid_nameseg +ffffffff813c4c21 T acpi_ut_check_and_repair_ascii +ffffffff813c4c4f T acpi_ut_dump_buffer +ffffffff813c4e0d T acpi_ut_debug_dump_buffer +ffffffff813c4e26 t acpi_ut_copy_simple_object +ffffffff813c4f6e t acpi_ut_copy_ielement_to_ielement +ffffffff813c501d t acpi_ut_copy_isimple_to_esimple.part.0 +ffffffff813c514a t acpi_ut_copy_ielement_to_eelement +ffffffff813c51c6 T acpi_ut_copy_iobject_to_eobject +ffffffff813c5248 T acpi_ut_copy_eobject_to_iobject +ffffffff813c5416 T acpi_ut_copy_iobject_to_iobject +ffffffff813c551d T acpi_ut_validate_exception +ffffffff813c55b8 T acpi_format_exception +ffffffff813c55e8 T acpi_ut_get_region_name +ffffffff813c5628 T acpi_ut_get_event_name +ffffffff813c563f T acpi_ut_get_type_name +ffffffff813c5656 T acpi_ut_get_object_type_name +ffffffff813c568d T acpi_ut_get_node_name +ffffffff813c56ce T acpi_ut_get_descriptor_name +ffffffff813c56f3 T acpi_ut_get_reference_name +ffffffff813c5732 T acpi_ut_get_mutex_name +ffffffff813c5749 T acpi_ut_valid_object_type +ffffffff813c5750 T acpi_ut_remove_reference +ffffffff813c5779 T acpi_ut_delete_internal_object_list +ffffffff813c579e t acpi_ut_update_ref_count.part.1 +ffffffff813c5a81 T acpi_ut_update_object_reference +ffffffff813c5c0e T acpi_ut_add_reference +ffffffff813c5c28 T acpi_ut_predefined_warning +ffffffff813c5ca6 T acpi_ut_predefined_info +ffffffff813c5d24 T acpi_ut_predefined_bios_error +ffffffff813c5da2 T acpi_ut_prefixed_namespace_error +ffffffff813c5e5c T acpi_ut_method_error +ffffffff813c5eff T acpi_ut_evaluate_object +ffffffff813c607a T acpi_ut_evaluate_numeric_object +ffffffff813c60bd T acpi_ut_execute_STA +ffffffff813c610c T acpi_ut_execute_power_methods +ffffffff813c6179 T acpi_ut_hex_to_ascii_char +ffffffff813c6191 T acpi_ut_ascii_char_to_hex +ffffffff813c61a6 T acpi_ut_ascii_to_hex_byte +ffffffff813c61e3 T acpi_ut_execute_HID +ffffffff813c6292 T acpi_ut_execute_UID +ffffffff813c6341 T acpi_ut_execute_CID +ffffffff813c6499 T acpi_ut_execute_CLS +ffffffff813c6590 T acpi_ut_init_globals +ffffffff813c67bf T acpi_ut_subsystem_shutdown +ffffffff813c6860 T acpi_ut_create_rw_lock +ffffffff813c6897 T acpi_ut_delete_rw_lock +ffffffff813c68c4 T acpi_ut_acquire_read_lock +ffffffff813c6915 T acpi_ut_release_read_lock +ffffffff813c6958 T acpi_ut_acquire_write_lock +ffffffff813c696a T acpi_ut_release_write_lock +ffffffff813c6977 T acpi_ut_short_multiply +ffffffff813c6988 T acpi_ut_short_shift_left +ffffffff813c6999 T acpi_ut_short_shift_right +ffffffff813c69aa T acpi_ut_short_divide +ffffffff813c69f8 T acpi_ut_divide +ffffffff813c6a43 T acpi_ut_is_pci_root_bridge +ffffffff813c6a71 T acpi_ut_dword_byte_swap +ffffffff813c6a94 T acpi_ut_set_integer_width +ffffffff813c6ac6 T acpi_ut_create_update_state_and_push +ffffffff813c6af6 T acpi_ut_walk_package_tree +ffffffff813c6beb T acpi_ut_mutex_initialize +ffffffff813c6d13 T acpi_ut_mutex_terminate +ffffffff813c6d82 T acpi_ut_acquire_mutex +ffffffff813c6e06 T acpi_ut_release_mutex +ffffffff813c6e75 T acpi_ut_strlwr +ffffffff813c6e96 T acpi_ut_strupr +ffffffff813c6eb7 T acpi_ut_stricmp +ffffffff813c6ef7 t acpi_ut_get_simple_object_size +ffffffff813c701b t acpi_ut_get_element_length +ffffffff813c705a T acpi_ut_valid_internal_object +ffffffff813c7069 T acpi_ut_allocate_object_desc_dbg +ffffffff813c70c4 T acpi_ut_delete_object_desc +ffffffff813c7101 T acpi_ut_create_internal_object_dbg +ffffffff813c717a T acpi_ut_create_package_object +ffffffff813c71ed T acpi_ut_create_integer_object +ffffffff813c7217 T acpi_ut_create_buffer_object +ffffffff813c72a9 T acpi_ut_create_string_object +ffffffff813c7331 T acpi_ut_get_object_size +ffffffff813c738b T acpi_ut_initialize_interfaces +ffffffff813c73e8 T acpi_ut_interface_terminate +ffffffff813c7462 T acpi_ut_install_interface +ffffffff813c7511 T acpi_ut_remove_interface +ffffffff813c758d T acpi_ut_update_interfaces +ffffffff813c75d5 T acpi_ut_get_interface +ffffffff813c7601 T acpi_ut_osi_implementation +ffffffff813c76f5 T acpi_ut_allocate_owner_id +ffffffff813c77d6 T acpi_ut_release_owner_id +ffffffff813c7860 T acpi_ut_get_next_predefined_method +ffffffff813c7874 T acpi_ut_match_predefined_method +ffffffff813c789d T acpi_ut_get_expected_return_types +ffffffff813c78f4 T acpi_ut_get_resource_type +ffffffff813c78fe T acpi_ut_get_resource_length +ffffffff813c790e T acpi_ut_validate_resource +ffffffff813c7a0f T acpi_ut_get_resource_header_length +ffffffff813c7a1a T acpi_ut_get_descriptor_length +ffffffff813c7a2f T acpi_ut_walk_aml_resources +ffffffff813c7b42 T acpi_ut_get_resource_end_tag +ffffffff813c7b5f T acpi_ut_push_generic_state +ffffffff813c7b69 T acpi_ut_pop_generic_state +ffffffff813c7b78 T acpi_ut_create_generic_state +ffffffff813c7bad T acpi_ut_create_thread_state +ffffffff813c7bf8 T acpi_ut_create_update_state +ffffffff813c7c18 T acpi_ut_create_pkg_state +ffffffff813c7c49 T acpi_ut_create_control_state +ffffffff813c7c5e T acpi_ut_delete_generic_state +ffffffff813c7c73 T acpi_ut_print_string +ffffffff813c7d8e T acpi_ut_repair_name +ffffffff813c7e03 t acpi_ut_insert_digit +ffffffff813c7e99 T acpi_ut_convert_octal_string +ffffffff813c7edf T acpi_ut_convert_decimal_string +ffffffff813c7f2a T acpi_ut_convert_hex_string +ffffffff813c7f7b T acpi_ut_remove_leading_zeros +ffffffff813c7f8d T acpi_ut_remove_whitespace +ffffffff813c7fa8 T acpi_ut_detect_hex_prefix +ffffffff813c7fd6 T acpi_ut_detect_octal_prefix +ffffffff813c7fe9 T acpi_ut_strtoul64 +ffffffff813c8085 T acpi_ut_implicit_strtoul64 +ffffffff813c80d2 T acpi_ut_explicit_strtoul64 +ffffffff813c8137 T acpi_purge_cached_objects +ffffffff813c816a T acpi_install_interface +ffffffff813c81de T acpi_remove_interface +ffffffff813c822e T acpi_install_interface_handler +ffffffff813c8282 T acpi_update_interfaces +ffffffff813c82c3 T acpi_check_address_range +ffffffff813c8317 T acpi_decode_pld_buffer +ffffffff813c8484 T acpi_error +ffffffff813c8503 T acpi_exception +ffffffff813c8599 T acpi_warning +ffffffff813c8618 T acpi_info +ffffffff813c8686 T acpi_bios_error +ffffffff813c8705 T acpi_bios_warning +ffffffff813c8784 t acpi_ut_get_mutex_object.part.0 +ffffffff813c87d5 T acpi_acquire_mutex +ffffffff813c880d T acpi_release_mutex +ffffffff813c8850 t acpi_button_suspend +ffffffff813c8860 t acpi_lid_notify_state +ffffffff813c8a00 t acpi_lid_update_state +ffffffff813c8a50 t acpi_lid_initialize_state +ffffffff813c8a70 t acpi_button_resume +ffffffff813c8aa0 t acpi_lid_input_open +ffffffff813c8b00 t acpi_button_notify +ffffffff813c8c20 t acpi_button_state_open_fs +ffffffff813c8c40 t acpi_button_state_seq_show +ffffffff813c8ca0 t param_get_lid_init_state +ffffffff813c8d10 t param_set_lid_init_state +ffffffff813c8dc0 t acpi_button_remove_fs.part.3 +ffffffff813c8e30 t acpi_button_remove +ffffffff813c8e60 t acpi_button_add +ffffffff813c92d0 T acpi_lid_notifier_register +ffffffff813c92e0 T acpi_lid_notifier_unregister +ffffffff813c92f0 T acpi_lid_open +ffffffff813c9340 t video_get_max_state +ffffffff813c9370 t video_set_bqc_offset +ffffffff813c9380 t video_disable_backlight_sysfs_if +ffffffff813c93a0 t video_set_device_id_scheme +ffffffff813c93b0 t video_enable_only_lcd +ffffffff813c93c0 t video_set_report_key_events +ffffffff813c93e0 t acpi_video_cmp_level +ffffffff813c93f0 t acpi_video_device_lcd_query_levels +ffffffff813c9460 t acpi_video_device_EDID +ffffffff813c9550 t acpi_video_bus_put_devices +ffffffff813c95e0 t acpi_video_device_enumerate +ffffffff813c9740 t acpi_video_bus_notify +ffffffff813c98c0 t acpi_video_bus_match +ffffffff813c9920 t acpi_video_device_lcd_get_level_current +ffffffff813c9a60 t video_get_cur_state +ffffffff813c9af0 t acpi_video_get_brightness +ffffffff813c9b70 t brightness_switch_event.part.6 +ffffffff813c9b90 t acpi_video_device_notify +ffffffff813c9d10 t acpi_video_device_lcd_set_level +ffffffff813c9dd0 t video_set_cur_state +ffffffff813c9e10 t acpi_video_switch_brightness +ffffffff813c9f80 t acpi_video_set_brightness +ffffffff813c9fc0 t acpi_video_bus_unregister_backlight.part.10 +ffffffff813ca0d0 t acpi_video_resume +ffffffff813ca160 t acpi_video_bus_DOS.constprop.13 +ffffffff813ca1a0 t acpi_video_bus_stop_devices +ffffffff813ca1c0 t acpi_video_bus_remove +ffffffff813ca2e0 T acpi_video_get_levels +ffffffff813ca5f0 t acpi_video_bus_add +ffffffff813cb340 T acpi_video_get_edid +ffffffff813cb4a0 T acpi_video_register +ffffffff813cb510 T acpi_video_unregister +ffffffff813cb550 T acpi_video_unregister_backlight +ffffffff813cb5e0 T acpi_video_handles_brightness_key_presses +ffffffff813cb620 t video_detect_force_vendor +ffffffff813cb630 t video_detect_force_video +ffffffff813cb640 t video_detect_force_native +ffffffff813cb650 t video_detect_force_none +ffffffff813cb660 t acpi_video_backlight_notify +ffffffff813cb690 t find_video +ffffffff813cb6f0 T acpi_video_get_backlight_type +ffffffff813cb890 t acpi_video_backlight_notify_work +ffffffff813cb8b0 T acpi_video_set_dmi_backlight_type +ffffffff813cb8d0 t acpi_soft_cpu_dead +ffffffff813cb920 t acpi_processor_notify +ffffffff813cba10 t __acpi_processor_start +ffffffff813cbbf0 t acpi_processor_start +ffffffff813cbc30 t acpi_soft_cpu_online +ffffffff813cbcb0 t acpi_processor_stop +ffffffff813cbd50 t acpi_idle_play_dead +ffffffff813cbda0 t flatten_lpi_states +ffffffff813cbfe0 t __lapic_timer_propagate_broadcast +ffffffff813cc000 t acpi_processor_evaluate_lpi.isra.6 +ffffffff813cc270 t acpi_processor_get_lpi_info +ffffffff813cc3e0 t set_max_cstate +ffffffff813cc420 t acpi_processor_get_power_info +ffffffff813cca60 t acpi_processor_setup_cpuidle_states.part.9 +ffffffff813ccca0 t acpi_idle_enter_bm +ffffffff813ccdb0 t acpi_idle_enter_s2idle +ffffffff813cce00 t acpi_idle_enter +ffffffff813cd060 W acpi_processor_ffh_lpi_probe +ffffffff813cd070 t acpi_processor_setup_cpuidle_dev +ffffffff813cd120 W acpi_processor_ffh_lpi_enter +ffffffff813cd130 t acpi_idle_lpi_enter +ffffffff813cd160 T acpi_processor_hotplug +ffffffff813cd1f0 T acpi_processor_power_state_has_changed +ffffffff813cd370 T acpi_processor_power_init +ffffffff813cd570 T acpi_processor_power_exit +ffffffff813cd5d0 t __acpi_processor_get_throttling +ffffffff813cd5e0 t acpi_processor_set_throttling_fadt +ffffffff813cd680 t acpi_processor_throttling_fn +ffffffff813cd6a0 t acpi_processor_get_platform_limit +ffffffff813cd730 t call_on_cpu +ffffffff813cd770 t acpi_processor_get_throttling +ffffffff813cd7b0 t acpi_processor_set_throttling_ptc +ffffffff813cd8e0 t acpi_processor_get_throttling_fadt +ffffffff813cd970 t __acpi_processor_set_throttling +ffffffff813cdbc0 t acpi_processor_get_throttling_ptc +ffffffff813cdd30 T acpi_processor_throttling_init +ffffffff813cdf40 T acpi_processor_tstate_has_changed +ffffffff813cdfa0 T acpi_processor_reevaluate_tstate +ffffffff813cdff0 T acpi_processor_set_throttling +ffffffff813ce000 T acpi_processor_get_throttling_info +ffffffff813ce6a0 t phys_package_first_cpu +ffffffff813ce710 t acpi_thermal_cpufreq_notifier +ffffffff813ce790 t cpu_has_cpufreq.part.1 +ffffffff813ce7c0 t processor_get_cur_state +ffffffff813ce850 t cpufreq_set_cur_state +ffffffff813ce900 t acpi_processor_max_state +ffffffff813ce940 t processor_get_max_state +ffffffff813ce970 t processor_set_cur_state +ffffffff813cea30 T acpi_thermal_cpufreq_init +ffffffff813cea60 T acpi_thermal_cpufreq_exit +ffffffff813cea90 t acpi_processor_get_platform_limit +ffffffff813ceb00 t acpi_processor_ppc_ost +ffffffff813ceb30 t acpi_processor_ppc_notifier +ffffffff813cebe0 T acpi_processor_ppc_has_changed +ffffffff813cec50 T acpi_processor_get_bios_limit +ffffffff813ceca0 T acpi_processor_ppc_init +ffffffff813cecd0 T acpi_processor_ppc_exit +ffffffff813ced00 T acpi_processor_get_performance_info +ffffffff813cf260 T acpi_processor_pstate_control +ffffffff813cf2c0 T acpi_processor_notify_smm +ffffffff813cf310 T acpi_processor_preregister_performance +ffffffff813cf7b0 T acpi_processor_register_performance +ffffffff813cf870 T acpi_processor_unregister_performance +ffffffff813cf8d0 t container_device_online +ffffffff813cf8f0 t container_device_detach +ffffffff813cf920 t acpi_container_release +ffffffff813cf930 t acpi_container_offline +ffffffff813cf990 t container_device_attach +ffffffff813cfa60 t thermal_get_mode +ffffffff813cfa90 t thermal_get_trip_type +ffffffff813cfb20 t thermal_get_trip_temp +ffffffff813cfbd0 t thermal_get_crit_temp +ffffffff813cfc00 t thermal_get_trend +ffffffff813cfcb0 t acpi_thermal_resume +ffffffff813cfdd0 t acpi_thermal_suspend +ffffffff813cfde0 t thermal_notify +ffffffff813cfe80 t acpi_thermal_get_temperature +ffffffff813cfed0 t thermal_get_temp +ffffffff813cff10 t thermal_nocrt +ffffffff813cff30 t acpi_thermal_trips_update +ffffffff813d0830 t acpi_thermal_remove +ffffffff813d08c0 t acpi_thermal_cooling_device_cb +ffffffff813d0b40 t acpi_thermal_unbind_cooling_device +ffffffff813d0b50 t acpi_thermal_bind_cooling_device +ffffffff813d0b60 t thermal_tzp +ffffffff813d0b90 t thermal_psv +ffffffff813d0bc0 t thermal_act +ffffffff813d0bf0 t acpi_thermal_check.part.3 +ffffffff813d0c00 t acpi_thermal_notify +ffffffff813d0ce0 t thermal_set_mode +ffffffff813d0d40 t acpi_thermal_check_fn +ffffffff813d0d60 t acpi_thermal_add +ffffffff813d11c0 t setup_res +ffffffff813d12a0 t handle_ioapic_add +ffffffff813d1740 T acpi_ioapic_add +ffffffff813d1790 T pci_ioapic_remove +ffffffff813d1820 T acpi_ioapic_remove +ffffffff813d1900 t cppc_chan_tx_done +ffffffff813d1910 t check_pcc_chan +ffffffff813d19a0 t send_pcc_cmd +ffffffff813d1bf0 T acpi_get_psd_map +ffffffff813d1e40 T pcc_data_alloc +ffffffff813d1e90 T acpi_cppc_processor_probe +ffffffff813d2390 T acpi_cppc_processor_exit +ffffffff813d2460 t cpc_read +ffffffff813d2530 T cppc_get_perf_caps +ffffffff813d2700 t show_nominal_perf +ffffffff813d2750 t show_lowest_nonlinear_perf +ffffffff813d27a0 t show_lowest_perf +ffffffff813d27f0 t show_highest_perf +ffffffff813d2840 T cppc_get_perf_ctrs +ffffffff813d2ac0 t show_wraparound_time +ffffffff813d2b20 t show_reference_perf +ffffffff813d2b80 t show_feedback_ctrs +ffffffff813d2bf0 T cppc_set_perf +ffffffff813d2ea0 T cppc_get_transition_latency +ffffffff813d2f20 t power_saving_thread +ffffffff813d3270 t acpi_pad_idle_cpus +ffffffff813d3350 t acpi_pad_notify +ffffffff813d3470 t acpi_pad_remove_sysfs +ffffffff813d34b0 t acpi_pad_remove +ffffffff813d3500 t acpi_pad_rrtime_store +ffffffff813d3560 t acpi_pad_idlepct_store +ffffffff813d35c0 t acpi_pad_idlecpus_store +ffffffff813d3610 t acpi_pad_rrtime_show +ffffffff813d3630 t acpi_pad_idlepct_show +ffffffff813d3650 t acpi_pad_idlecpus_show +ffffffff813d3670 t acpi_pad_add +ffffffff813d3780 t int340x_thermal_handler_attach +ffffffff813d3790 t pnp_delist_device +ffffffff813d3810 T pnp_alloc +ffffffff813d3840 T pnp_register_protocol +ffffffff813d3960 T pnp_unregister_protocol +ffffffff813d39b0 T pnp_free_resource +ffffffff813d39e0 T pnp_free_resources +ffffffff813d3a50 t pnp_release_device +ffffffff813d3a90 T pnp_alloc_dev +ffffffff813d3b80 T __pnp_add_device +ffffffff813d3c50 T pnp_add_device +ffffffff813d3d20 T __pnp_remove_device +ffffffff813d3d40 t card_remove +ffffffff813d3d50 t card_suspend +ffffffff813d3d70 t card_resume +ffffffff813d3da0 t pnp_release_card +ffffffff813d3dd0 t card_remove_first +ffffffff813d3e30 t pnp_show_card_ids +ffffffff813d3e90 t pnp_show_card_name +ffffffff813d3eb0 t card_probe.part.3 +ffffffff813d4010 T pnp_alloc_card +ffffffff813d4170 T pnp_add_card +ffffffff813d42f0 T pnp_add_card_device +ffffffff813d4380 T pnp_remove_card_device +ffffffff813d43f0 T pnp_remove_card +ffffffff813d4490 T pnp_request_card_device +ffffffff813d4570 T pnp_release_card_device +ffffffff813d45a0 T pnp_register_card_driver +ffffffff813d4680 T pnp_unregister_card_driver +ffffffff813d46d0 t pnp_device_shutdown +ffffffff813d46f0 t __pnp_bus_suspend +ffffffff813d47e0 t pnp_bus_poweroff +ffffffff813d47f0 t pnp_bus_freeze +ffffffff813d4800 t pnp_bus_suspend +ffffffff813d4810 t pnp_bus_resume +ffffffff813d48a0 T compare_pnp_id +ffffffff813d4960 t match_device.isra.1 +ffffffff813d49a0 t pnp_bus_match +ffffffff813d49c0 T pnp_device_attach +ffffffff813d4a10 T pnp_device_detach +ffffffff813d4a40 t pnp_device_remove +ffffffff813d4ab0 t pnp_device_probe +ffffffff813d4b60 T pnp_register_driver +ffffffff813d4b80 T pnp_unregister_driver +ffffffff813d4b90 T pnp_add_id +ffffffff813d4c70 t pnp_test_handler +ffffffff813d4c80 t pnp_build_option +ffffffff813d4cd0 t pnp_new_resource +ffffffff813d4d10 T pnp_register_irq_resource +ffffffff813d4db0 T pnp_register_dma_resource +ffffffff813d4df0 T pnp_register_port_resource +ffffffff813d4e60 T pnp_register_mem_resource +ffffffff813d4ed0 T pnp_free_options +ffffffff813d4f40 T pnp_check_port +ffffffff813d5130 T pnp_check_mem +ffffffff813d5320 T pnp_check_irq +ffffffff813d5550 T pnp_resource_type +ffffffff813d5560 T pnp_get_resource +ffffffff813d55b0 T pnp_add_resource +ffffffff813d5640 T pnp_add_irq_resource +ffffffff813d56b0 T pnp_add_dma_resource +ffffffff813d5720 T pnp_add_io_resource +ffffffff813d57a0 T pnp_add_mem_resource +ffffffff813d5820 T pnp_add_bus_resource +ffffffff813d5890 T pnp_possible_config +ffffffff813d5930 T pnp_range_reserved +ffffffff813d5990 t pnp_clean_resource_table +ffffffff813d59e0 t pnp_assign_resources +ffffffff813d5e80 T pnp_init_resources +ffffffff813d5e90 T pnp_auto_config_dev +ffffffff813d5f20 T pnp_start_dev +ffffffff813d5f90 T pnp_stop_dev +ffffffff813d6000 T pnp_activate_dev +ffffffff813d6040 T pnp_disable_dev +ffffffff813d60a0 T pnp_is_active +ffffffff813d6190 T pnp_eisa_id_to_string +ffffffff813d6200 T pnp_resource_type_name +ffffffff813d6270 T dbg_pnp_show_resources +ffffffff813d62a0 T pnp_option_priority_name +ffffffff813d62c0 T dbg_pnp_show_option +ffffffff813d65d0 t id_show +ffffffff813d6630 t pnp_printf +ffffffff813d66d0 t options_show +ffffffff813d6c50 t resources_show +ffffffff813d6dc0 t pnp_get_resource_value.isra.0 +ffffffff813d6e90 t resources_store +ffffffff813d71e0 t quirk_ad1815_mpu_resources +ffffffff813d7240 t quirk_sb16audio_resources +ffffffff813d72d0 t quirk_cmi8330_resources +ffffffff813d73a0 t quirk_intel_mch +ffffffff813d74f0 t quirk_system_pci_resources +ffffffff813d7640 t quirk_awe32_add_ports +ffffffff813d7700 t quirk_awe32_resources +ffffffff813d7770 t quirk_add_irq_optional_dependent_sets +ffffffff813d7960 T pnp_fixup_device +ffffffff813d79b0 t reserve_range +ffffffff813d7ab0 t system_pnp_probe +ffffffff813d7b30 t pnpacpi_resume +ffffffff813d7ba0 t pnpacpi_suspend +ffffffff813d7c30 t pnpacpi_can_wakeup +ffffffff813d7c60 t pnpacpi_disable_resources +ffffffff813d7cc0 t pnpacpi_set_resources +ffffffff813d7dc0 t pnpacpi_get_resources +ffffffff813d7dd0 t pnpacpi_count_resources +ffffffff813d7df0 t pnpacpi_type_resources +ffffffff813d7e30 t dma_flags +ffffffff813d7ec0 t decode_irq_flags +ffffffff813d7f70 t pnpacpi_allocated_resource +ffffffff813d81c0 T pnpacpi_parse_allocated_resource +ffffffff813d8230 T pnpacpi_build_resource_template +ffffffff813d8330 T pnpacpi_encode_resources +ffffffff813d8780 t devm_clk_match +ffffffff813d87a0 t devm_clk_release +ffffffff813d87b0 t devm_clk_bulk_release +ffffffff813d87c0 T devm_clk_get +ffffffff813d8840 T devm_clk_bulk_get +ffffffff813d88c0 T devm_clk_put +ffffffff813d88e0 T devm_get_clk_from_child +ffffffff813d8920 T clk_bulk_put +ffffffff813d8960 T clk_bulk_get +ffffffff813d8a40 T clk_bulk_unprepare +ffffffff813d8a80 T clk_bulk_prepare +ffffffff813d8b10 T clk_bulk_disable +ffffffff813d8b50 T clk_bulk_enable +ffffffff813d8be0 t __clkdev_add +ffffffff813d8c20 T clk_get_sys +ffffffff813d8d60 T clk_get +ffffffff813d8d90 T clk_put +ffffffff813d8da0 T clkdev_add +ffffffff813d8dd0 T clkdev_add_table +ffffffff813d8e40 T clkdev_hw_alloc +ffffffff813d8e80 T clkdev_create +ffffffff813d8ef0 t __clk_register_clkdev +ffffffff813d8ef0 T clkdev_hw_create +ffffffff813d8f50 T clk_add_alias +ffffffff813d8fc0 T clkdev_drop +ffffffff813d9010 T clk_register_clkdev +ffffffff813d9070 T clk_hw_register_clkdev +ffffffff813d90b0 t clk_enable_lock +ffffffff813d9120 t clk_core_get_boundaries +ffffffff813d91d0 t clk_core_rate_protect +ffffffff813d9210 t __clk_recalc_accuracies +ffffffff813d9290 t clk_core_update_orphan_status +ffffffff813d92e0 t clk_reparent +ffffffff813d93c0 t clk_nodrv_prepare_enable +ffffffff813d93d0 t clk_nodrv_disable_unprepare +ffffffff813d93e0 t clk_nodrv_set_rate +ffffffff813d93f0 t clk_nodrv_set_parent +ffffffff813d9400 t clk_core_is_enabled +ffffffff813d9480 t clk_core_unprepare +ffffffff813d9500 t clk_core_prepare +ffffffff813d95a0 t clk_core_disable +ffffffff813d9600 t devm_clk_match +ffffffff813d9620 t devm_clk_hw_match +ffffffff813d9640 t __clk_notify +ffffffff813d96c0 t clk_propagate_rate_change +ffffffff813d9770 t __clk_release +ffffffff813d9800 t clk_core_is_prepared +ffffffff813d9870 t clk_core_determine_round_nolock.part.4 +ffffffff813d98c0 t clk_core_round_rate_nolock +ffffffff813d9950 t clk_recalc +ffffffff813d99b0 t __clk_recalc_rates +ffffffff813d9a40 t clk_calc_subtree +ffffffff813d9ab0 t __clk_speculate_rates +ffffffff813d9b30 t __clk_lookup_subtree +ffffffff813d9ba0 t clk_core_lookup +ffffffff813d9c40 t clk_core_get_parent_by_index +ffffffff813d9c90 t __clk_init_parent +ffffffff813d9cc0 t clk_calc_new_rates +ffffffff813d9e90 t clk_enable_unlock.part.10 +ffffffff813d9eb0 t clk_core_disable_lock +ffffffff813d9ee0 t clk_core_enable.part.11 +ffffffff813d9f50 t clk_core_enable_lock +ffffffff813d9fa0 t clk_prepare_lock +ffffffff813da000 t clk_prepare_unlock.part.13 +ffffffff813da020 t clk_core_unprepare_lock +ffffffff813da040 t clk_core_prepare_lock +ffffffff813da080 t __clk_set_parent_after +ffffffff813da0e0 t clk_core_prepare_enable +ffffffff813da120 t clk_disable_unused_subtree +ffffffff813da210 t __clk_set_parent_before +ffffffff813da280 t clk_change_rate +ffffffff813da510 t clk_unprepare_unused_subtree +ffffffff813da5b0 t clk_disable_unused +ffffffff813da720 t clk_core_set_rate_nolock +ffffffff813da8f0 t __clk_create_clk.part.22 +ffffffff813da9a0 t clk_mux_determine_rate_flags.isra.21 +ffffffff813dabc0 t clk_core_set_parent_nolock +ffffffff813dad80 t clk_unregister.part.23 +ffffffff813daef0 t devm_clk_release +ffffffff813daf10 t devm_clk_hw_release +ffffffff813daf30 T __clk_get_name +ffffffff813daf40 T clk_hw_get_name +ffffffff813daf50 T __clk_get_hw +ffffffff813daf60 T clk_hw_get_num_parents +ffffffff813daf70 T clk_hw_get_parent +ffffffff813daf90 T clk_hw_get_parent_by_index +ffffffff813dafb0 T __clk_get_enable_count +ffffffff813dafc0 T clk_hw_get_rate +ffffffff813daff0 T __clk_get_flags +ffffffff813db000 T clk_hw_get_flags +ffffffff813db010 T clk_hw_is_prepared +ffffffff813db020 T clk_hw_rate_is_protected +ffffffff813db030 T clk_hw_is_enabled +ffffffff813db040 T __clk_is_enabled +ffffffff813db050 T __clk_lookup +ffffffff813db070 T clk_hw_set_rate_range +ffffffff813db090 T __clk_mux_determine_rate +ffffffff813db0a0 T __clk_mux_determine_rate_closest +ffffffff813db0b0 T clk_rate_exclusive_put +ffffffff813db130 T clk_rate_exclusive_get +ffffffff813db190 T clk_unprepare +ffffffff813db1b0 T clk_prepare +ffffffff813db1c0 T clk_disable +ffffffff813db1e0 T clk_enable +ffffffff813db1f0 T __clk_determine_rate +ffffffff813db210 T clk_hw_round_rate +ffffffff813db250 T clk_round_rate +ffffffff813db330 T clk_get_accuracy +ffffffff813db380 T clk_get_rate +ffffffff813db3e0 T clk_set_rate +ffffffff813db4b0 T clk_set_rate_exclusive +ffffffff813db540 T clk_set_rate_range +ffffffff813db6d0 T clk_set_min_rate +ffffffff813db6f0 T clk_set_max_rate +ffffffff813db710 T clk_get_parent +ffffffff813db760 T clk_hw_reparent +ffffffff813db7a0 T clk_has_parent +ffffffff813db810 T clk_set_parent +ffffffff813db8e0 T clk_set_phase +ffffffff813dba30 T clk_get_phase +ffffffff813dba70 T clk_is_match +ffffffff813dbab0 T __clk_create_clk +ffffffff813dbad0 T __clk_free_clk +ffffffff813dbb30 T clk_register +ffffffff813dc1c0 T clk_hw_register +ffffffff813dc1e0 T clk_unregister +ffffffff813dc200 T clk_hw_unregister +ffffffff813dc220 T devm_clk_register +ffffffff813dc2a0 T devm_clk_hw_register +ffffffff813dc320 T devm_clk_unregister +ffffffff813dc340 T devm_clk_hw_unregister +ffffffff813dc360 T __clk_get +ffffffff813dc380 T __clk_put +ffffffff813dc480 T clk_notifier_register +ffffffff813dc5a0 T clk_notifier_unregister +ffffffff813dc6c0 t _next_div +ffffffff813dc730 t _register_divider +ffffffff813dc870 t _get_maxdiv +ffffffff813dc8c0 t _get_div +ffffffff813dc920 t clk_divider_recalc_rate +ffffffff813dc970 T divider_recalc_rate +ffffffff813dc9a0 T divider_round_rate_parent +ffffffff813dce10 t clk_divider_round_rate +ffffffff813dceb0 T divider_get_val +ffffffff813dcfc0 t clk_divider_set_rate +ffffffff813dd070 T clk_register_divider +ffffffff813dd0a0 T clk_hw_register_divider +ffffffff813dd0c0 T clk_register_divider_table +ffffffff813dd0f0 T clk_hw_register_divider_table +ffffffff813dd110 T clk_unregister_divider +ffffffff813dd140 T clk_hw_unregister_divider +ffffffff813dd160 t clk_factor_recalc_rate +ffffffff813dd170 t clk_factor_set_rate +ffffffff813dd180 t clk_factor_round_rate +ffffffff813dd1e0 T clk_hw_register_fixed_factor +ffffffff813dd290 T clk_register_fixed_factor +ffffffff813dd2b0 T clk_unregister_fixed_factor +ffffffff813dd2e0 T clk_hw_unregister_fixed_factor +ffffffff813dd300 t clk_fixed_rate_recalc_rate +ffffffff813dd310 t clk_fixed_rate_recalc_accuracy +ffffffff813dd320 T clk_hw_register_fixed_rate_with_accuracy +ffffffff813dd3e0 T clk_register_fixed_rate_with_accuracy +ffffffff813dd400 T clk_hw_register_fixed_rate +ffffffff813dd410 T clk_register_fixed_rate +ffffffff813dd430 T clk_unregister_fixed_rate +ffffffff813dd460 T clk_hw_unregister_fixed_rate +ffffffff813dd480 t clk_gate_endisable +ffffffff813dd520 t clk_gate_enable +ffffffff813dd530 t clk_gate_disable +ffffffff813dd540 T clk_gate_is_enabled +ffffffff813dd570 T clk_hw_register_gate +ffffffff813dd670 T clk_register_gate +ffffffff813dd6a0 T clk_unregister_gate +ffffffff813dd6d0 T clk_hw_unregister_gate +ffffffff813dd6f0 t clk_multiplier_recalc_rate +ffffffff813dd730 t clk_multiplier_set_rate +ffffffff813dd7d0 t clk_multiplier_round_rate +ffffffff813dd980 t clk_mux_set_parent +ffffffff813dda20 t clk_mux_get_parent +ffffffff813ddab0 T clk_hw_register_mux_table +ffffffff813ddc00 T clk_register_mux_table +ffffffff813ddc40 T clk_register_mux +ffffffff813ddc90 T clk_hw_register_mux +ffffffff813ddcd0 T clk_unregister_mux +ffffffff813ddd00 T clk_hw_unregister_mux +ffffffff813ddd20 t clk_composite_get_parent +ffffffff813ddd50 t clk_composite_set_parent +ffffffff813ddd80 t clk_composite_recalc_rate +ffffffff813dddb0 t clk_composite_round_rate +ffffffff813ddde0 t clk_composite_set_rate +ffffffff813dde10 t clk_composite_set_rate_and_parent +ffffffff813ddee0 t clk_composite_is_enabled +ffffffff813ddf10 t clk_composite_enable +ffffffff813ddf40 t clk_composite_disable +ffffffff813ddf70 t clk_composite_determine_rate +ffffffff813de170 T clk_hw_register_composite +ffffffff813de3e0 T clk_register_composite +ffffffff813de410 T clk_unregister_composite +ffffffff813de440 t clk_fd_recalc_rate +ffffffff813de4c0 t clk_fd_set_rate +ffffffff813de560 t clk_fd_round_rate +ffffffff813de610 T clk_hw_register_fractional_divider +ffffffff813de760 T clk_register_fractional_divider +ffffffff813de7a0 T clk_hw_unregister_fractional_divider +ffffffff813de7c0 t clk_gpio_gate_enable +ffffffff813de7d0 t clk_gpio_gate_disable +ffffffff813de7e0 t clk_gpio_mux_get_parent +ffffffff813de7f0 t clk_gpio_mux_set_parent +ffffffff813de800 t clk_register_gpio +ffffffff813de940 t gpio_clk_driver_probe +ffffffff813de970 t clk_gpio_gate_is_enabled +ffffffff813de980 T clk_hw_register_gpio_gate +ffffffff813de9c0 T clk_register_gpio_gate +ffffffff813dea10 T clk_hw_register_gpio_mux +ffffffff813dea40 T clk_register_gpio_mux +ffffffff813dea60 t plt_clk_reg_update +ffffffff813deaa0 t plt_clk_set_parent +ffffffff813deac0 t plt_clk_get_parent +ffffffff813dead0 t plt_clk_enable +ffffffff813deaf0 t plt_clk_disable +ffffffff813deb00 t plt_clk_is_enabled +ffffffff813deb20 t plt_clk_free_parent_names_loop +ffffffff813deb60 t plt_clk_unregister_fixed_rate_loop.isra.1 +ffffffff813deba0 t plt_clk_remove +ffffffff813debf0 t plt_clk_probe +ffffffff813df030 t hung_up_tty_read +ffffffff813df040 t hung_up_tty_write +ffffffff813df050 t hung_up_tty_poll +ffffffff813df060 t hung_up_tty_ioctl +ffffffff813df080 t hung_up_tty_fasync +ffffffff813df090 t tty_show_fdinfo +ffffffff813df0d0 t dev_match_devt +ffffffff813df0e0 t tty_devnode +ffffffff813df100 t check_tty_count +ffffffff813df1e0 t tty_lookup_driver +ffffffff813df2a0 t tty_driver_lookup_tty +ffffffff813df2f0 t this_tty +ffffffff813df320 t tty_device_create_release +ffffffff813df330 t tty_write_lock +ffffffff813df370 t tty_write_unlock +ffffffff813df3a0 t free_tty_struct +ffffffff813df3d0 t tty_flush_works +ffffffff813df420 t tty_line_name +ffffffff813df460 t show_cons_active +ffffffff813df5c0 t tty_paranoia_check.isra.2 +ffffffff813df620 t __tty_fasync +ffffffff813df6f0 t tty_fasync +ffffffff813df750 t tty_poll +ffffffff813df7e0 t tty_read +ffffffff813df8b0 t tty_write +ffffffff813dfbc0 T redirected_tty_write +ffffffff813dfc50 t tty_reopen +ffffffff813dfcd0 t send_break +ffffffff813dfd80 t tty_cdev_add.isra.7 +ffffffff813dfe20 t __do_SAK.part.15 +ffffffff813e0010 t do_SAK_work +ffffffff813e0020 t hung_up_tty_compat_ioctl +ffffffff813e0040 T tty_alloc_file +ffffffff813e0070 T tty_add_file +ffffffff813e00d0 T tty_free_file +ffffffff813e00f0 T tty_name +ffffffff813e0110 T tty_driver_name +ffffffff813e0130 T tty_dev_name_to_number +ffffffff813e0260 T tty_wakeup +ffffffff813e02c0 t __start_tty.part.10 +ffffffff813e02f0 T tty_hangup +ffffffff813e0310 T tty_hung_up_p +ffffffff813e0330 T __stop_tty +ffffffff813e0360 T stop_tty +ffffffff813e03c0 T __start_tty +ffffffff813e03e0 T start_tty +ffffffff813e0430 T tty_write_message +ffffffff813e04a0 T tty_send_xchar +ffffffff813e0590 T tty_init_termios +ffffffff813e0670 T tty_standard_install +ffffffff813e06b0 T tty_kref_put +ffffffff813e0710 t __tty_hangup.part.13 +ffffffff813e0990 T tty_vhangup +ffffffff813e09a0 T tty_vhangup_session +ffffffff813e09c0 t do_tty_hangup +ffffffff813e09e0 T tty_vhangup_self +ffffffff813e0a10 t release_tty.isra.14 +ffffffff813e0b60 T tty_kclose +ffffffff813e0bb0 T tty_release_struct +ffffffff813e0bf0 T tty_release +ffffffff813e10c0 T tty_do_resize +ffffffff813e1130 T tty_ioctl +ffffffff813e1990 T __do_SAK +ffffffff813e19a0 T do_SAK +ffffffff813e19c0 T alloc_tty_struct +ffffffff813e1bd0 T tty_init_dev +ffffffff813e1d60 T tty_put_char +ffffffff813e1da0 T tty_register_device_attr +ffffffff813e1f60 T tty_register_device +ffffffff813e1f70 T tty_unregister_device +ffffffff813e1fb0 T __tty_alloc_driver +ffffffff813e2100 T tty_driver_kref_put +ffffffff813e21c0 t release_one_tty +ffffffff813e2250 t tty_open +ffffffff813e2600 T tty_kopen +ffffffff813e26d0 T tty_set_operations +ffffffff813e26e0 T put_tty_driver +ffffffff813e26f0 T tty_register_driver +ffffffff813e28b0 T tty_unregister_driver +ffffffff813e2920 T tty_devnum +ffffffff813e2940 T tty_default_fops +ffffffff813e29a0 T console_sysfs_notify +ffffffff813e29c0 t echo_char +ffffffff813e2a50 t n_tty_write_wakeup +ffffffff813e2a70 t __isig +ffffffff813e2aa0 t reset_buffer_flags +ffffffff813e2b30 t do_output_char +ffffffff813e2cf0 t __process_echoes +ffffffff813e2f40 t n_tty_poll +ffffffff813e3110 t n_tty_ioctl +ffffffff813e31f0 t copy_from_read_buf +ffffffff813e32d0 t n_tty_packet_mode_flush.part.3 +ffffffff813e3320 t isig +ffffffff813e33f0 t n_tty_receive_char_flagged +ffffffff813e35e0 t n_tty_close +ffffffff813e3620 t commit_echoes.part.6 +ffffffff813e3620 t process_echoes.part.5 +ffffffff813e3640 t process_echoes +ffffffff813e36a0 t n_tty_set_termios +ffffffff813e3980 t n_tty_open +ffffffff813e3a40 t n_tty_write +ffffffff813e3e90 t commit_echoes +ffffffff813e3f10 t n_tty_receive_char_lnext +ffffffff813e4080 t n_tty_receive_signal_char +ffffffff813e40d0 t n_tty_receive_char_special +ffffffff813e4aa0 t n_tty_receive_buf_common +ffffffff813e55f0 t n_tty_receive_buf2 +ffffffff813e5600 t n_tty_receive_buf +ffffffff813e5610 t n_tty_kick_worker +ffffffff813e5680 t n_tty_read +ffffffff813e5e60 t n_tty_flush_buffer +ffffffff813e5ec0 T n_tty_inherit_ops +ffffffff813e5ef0 t tty_change_softcar +ffffffff813e5fc0 t copy_termios +ffffffff813e6030 t get_termio +ffffffff813e60d0 T tty_chars_in_buffer +ffffffff813e60f0 T tty_write_room +ffffffff813e6110 T tty_driver_flush_buffer +ffffffff813e6130 T tty_throttle +ffffffff813e6180 T tty_unthrottle +ffffffff813e61d0 t __tty_perform_flush +ffffffff813e6250 T tty_throttle_safe +ffffffff813e62c0 T tty_unthrottle_safe +ffffffff813e6340 T tty_wait_until_sent +ffffffff813e6480 t set_termiox +ffffffff813e6560 T tty_termios_copy_hw +ffffffff813e6590 T tty_termios_hw_change +ffffffff813e65c0 T tty_set_termios +ffffffff813e67c0 t set_termios +ffffffff813e69a0 T tty_mode_ioctl +ffffffff813e6e30 T tty_perform_flush +ffffffff813e6e90 T n_tty_ioctl_helper +ffffffff813e6fb0 t get_ldops +ffffffff813e7000 t tty_ldiscs_seq_start +ffffffff813e7020 t tty_ldiscs_seq_next +ffffffff813e7040 t tty_ldiscs_seq_stop +ffffffff813e7050 t proc_tty_ldiscs_open +ffffffff813e7060 t put_ldops.isra.0 +ffffffff813e7090 t tty_ldiscs_seq_show +ffffffff813e70f0 t tty_ldisc_put +ffffffff813e7120 t tty_ldisc_kill +ffffffff813e7170 t tty_ldisc_get.part.1 +ffffffff813e71e0 t tty_ldisc_open.isra.3 +ffffffff813e7220 t tty_ldisc_failto +ffffffff813e72b0 T tty_register_ldisc +ffffffff813e7300 T tty_unregister_ldisc +ffffffff813e7360 T tty_ldisc_ref_wait +ffffffff813e73b0 T tty_ldisc_ref +ffffffff813e73f0 T tty_ldisc_deref +ffffffff813e7400 T tty_ldisc_lock +ffffffff813e7430 T tty_ldisc_unlock +ffffffff813e7450 T tty_ldisc_flush +ffffffff813e7480 T tty_set_ldisc +ffffffff813e76d0 T tty_ldisc_reinit +ffffffff813e77c0 T tty_ldisc_hangup +ffffffff813e7990 T tty_ldisc_setup +ffffffff813e7a00 T tty_ldisc_release +ffffffff813e7b30 T tty_ldisc_init +ffffffff813e7b60 T tty_ldisc_deinit +ffffffff813e7b80 t tty_buffer_free +ffffffff813e7bb0 t flush_to_ldisc +ffffffff813e7c50 t __tty_buffer_request_room +ffffffff813e7d50 T tty_buffer_lock_exclusive +ffffffff813e7d60 T tty_buffer_unlock_exclusive +ffffffff813e7db0 T tty_buffer_space_avail +ffffffff813e7dd0 T tty_buffer_free_all +ffffffff813e7e50 T tty_buffer_flush +ffffffff813e7ed0 T tty_buffer_request_room +ffffffff813e7ee0 T tty_insert_flip_string_fixed_flag +ffffffff813e7fb0 T tty_insert_flip_string_flags +ffffffff813e8080 T __tty_insert_flip_char +ffffffff813e80f0 T tty_prepare_flip_string +ffffffff813e8150 T tty_ldisc_receive_buf +ffffffff813e8190 T tty_flip_buffer_push +ffffffff813e81c0 T tty_schedule_flip +ffffffff813e81d0 T tty_buffer_init +ffffffff813e8260 T tty_buffer_set_limit +ffffffff813e8280 T tty_buffer_set_lock_subclass +ffffffff813e8290 T tty_buffer_restart_work +ffffffff813e82b0 T tty_buffer_cancel_work +ffffffff813e82c0 T tty_buffer_flush_work +ffffffff813e82d0 t tty_port_default_receive_buf +ffffffff813e8330 t tty_port_shutdown +ffffffff813e83c0 t tty_port_close_start.part.1 +ffffffff813e8570 T tty_port_init +ffffffff813e8650 T tty_port_link_device +ffffffff813e8670 T tty_port_register_device +ffffffff813e86a0 T tty_port_register_device_attr +ffffffff813e86d0 T tty_port_register_device_attr_serdev +ffffffff813e86e0 T tty_port_register_device_serdev +ffffffff813e86f0 T tty_port_unregister_device +ffffffff813e8700 T tty_port_alloc_xmit_buf +ffffffff813e8750 T tty_port_free_xmit_buf +ffffffff813e8790 T tty_port_destroy +ffffffff813e87b0 T tty_port_put +ffffffff813e8820 T tty_port_tty_get +ffffffff813e8860 t tty_port_default_wakeup +ffffffff813e8890 T tty_port_tty_set +ffffffff813e88f0 T tty_port_hangup +ffffffff813e8990 T tty_port_tty_hangup +ffffffff813e89d0 T tty_port_tty_wakeup +ffffffff813e89e0 T tty_port_carrier_raised +ffffffff813e8a00 T tty_port_raise_dtr_rts +ffffffff813e8a20 T tty_port_lower_dtr_rts +ffffffff813e8a40 T tty_port_block_til_ready +ffffffff813e8ca0 T tty_port_close_start +ffffffff813e8cd0 T tty_port_close_end +ffffffff813e8d70 T tty_port_close +ffffffff813e8dc0 T tty_port_install +ffffffff813e8de0 T tty_port_open +ffffffff813e8ea0 T tty_lock +ffffffff813e8ed0 T tty_lock_interruptible +ffffffff813e8f20 T tty_unlock +ffffffff813e8f50 T tty_lock_slave +ffffffff813e8f70 T tty_unlock_slave +ffffffff813e8f90 T tty_set_lock_subclass +ffffffff813e8fa0 t __ldsem_wake +ffffffff813e90a0 t ldsem_wake +ffffffff813e90d0 T __init_ldsem +ffffffff813e9100 T ldsem_down_read_trylock +ffffffff813e9140 T ldsem_down_write_trylock +ffffffff813e9170 T ldsem_up_read +ffffffff813e9190 T ldsem_up_write +ffffffff813e91b0 T tty_termios_baud_rate +ffffffff813e91f0 T tty_termios_input_baud_rate +ffffffff813e9260 T tty_termios_encode_baud_rate +ffffffff813e93b0 T tty_encode_baud_rate +ffffffff813e93c0 t __proc_set_tty +ffffffff813e94d0 t __tty_check_change.part.0 +ffffffff813e95e0 T __tty_check_change +ffffffff813e9610 T tty_check_change +ffffffff813e9640 T proc_clear_tty +ffffffff813e96a0 T tty_open_proc_set_tty +ffffffff813e9740 T get_current_tty +ffffffff813e97a0 T session_clear_tty +ffffffff813e97f0 T tty_signal_session_leader +ffffffff813e9990 T tty_get_pgrp +ffffffff813e99d0 t disassociate_ctty.part.3 +ffffffff813e9c00 T disassociate_ctty +ffffffff813e9c30 T no_tty +ffffffff813e9c60 T tty_jobctrl_ioctl +ffffffff813ea050 t n_null_open +ffffffff813ea060 t n_null_close +ffffffff813ea070 t n_null_read +ffffffff813ea080 t n_null_receivebuf +ffffffff813ea090 t n_null_write +ffffffff813ea0a0 t pty_chars_in_buffer +ffffffff813ea0b0 t pty_open +ffffffff813ea120 t ptm_unix98_lookup +ffffffff813ea130 t pty_unix98_remove +ffffffff813ea170 t pty_flush_buffer +ffffffff813ea1e0 t pty_set_termios +ffffffff813ea360 t pty_unthrottle +ffffffff813ea380 t pty_write +ffffffff813ea3e0 t pty_cleanup +ffffffff813ea3f0 t pts_unix98_lookup +ffffffff813ea430 t pty_show_fdinfo +ffffffff813ea450 t pty_resize +ffffffff813ea510 t ptmx_open +ffffffff813ea680 t pty_start +ffffffff813ea6f0 t pty_stop +ffffffff813ea760 t pty_write_room +ffffffff813ea780 t pty_close +ffffffff813ea8d0 t pty_unix98_ioctl +ffffffff813eaa90 t pty_unix98_compat_ioctl +ffffffff813eaaa0 t pty_unix98_install +ffffffff813eacc0 T ptm_open_peer +ffffffff813ead90 t __vt_event_queue +ffffffff813eade0 t __vt_event_dequeue +ffffffff813eae30 t vt_disallocate_all +ffffffff813eaef0 t __vt_event_wait.isra.0.part.1 +ffffffff813eaf50 t vt_event_wait_ioctl +ffffffff813eb000 T vt_event_post +ffffffff813eb0b0 T vt_waitactive +ffffffff813eb170 T reset_vc +ffffffff813eb1d0 t complete_change_console +ffffffff813eb2a0 T vt_ioctl +ffffffff813ec3a0 T vc_SAK +ffffffff813ec3e0 T change_console +ffffffff813ec460 T vt_move_to_console +ffffffff813ec4e0 T pm_set_vt_switch +ffffffff813ec500 t vcs_release +ffffffff813ec530 t vcs_open +ffffffff813ec560 t vcs_size +ffffffff813ec5c0 t vcs_write +ffffffff813ecb70 t vcs_read +ffffffff813ed020 t vcs_lseek +ffffffff813ed070 t vcs_notifier +ffffffff813ed0d0 t vcs_poll_data_get.part.1 +ffffffff813ed1a0 t vcs_fasync +ffffffff813ed200 t vcs_poll +ffffffff813ed270 T vcs_make_sysfs +ffffffff813ed2d0 T vcs_remove_sysfs +ffffffff813ed310 T clear_selection +ffffffff813ed360 T sel_loadlut +ffffffff813ed3b0 T set_selection +ffffffff813ed9a0 T paste_selection +ffffffff813edaf0 t fn_compose +ffffffff813edb00 t k_ignore +ffffffff813edb10 t kd_nosound +ffffffff813edb30 t kbd_bh +ffffffff813edbc0 t kbd_update_leds_helper +ffffffff813edc30 t kbd_start +ffffffff813edc70 t kbd_rate_helper +ffffffff813edce0 t kbd_disconnect +ffffffff813edd00 t kbd_connect +ffffffff813edd90 t put_queue +ffffffff813eddf0 t puts_queue +ffffffff813ede70 t fn_send_intr +ffffffff813eded0 t k_lowercase +ffffffff813edee0 t k_cons +ffffffff813edef0 t fn_lastcons +ffffffff813edf00 t fn_spawn_con +ffffffff813edf60 t fn_inc_console +ffffffff813edfa0 t fn_dec_console +ffffffff813edff0 t fn_SAK +ffffffff813ee020 t fn_boot_it +ffffffff813ee030 t fn_scroll_back +ffffffff813ee040 t fn_scroll_forw +ffffffff813ee050 t fn_hold +ffffffff813ee080 t fn_show_state +ffffffff813ee090 t fn_show_mem +ffffffff813ee0a0 t fn_show_ptregs +ffffffff813ee0c0 t do_compute_shiftstate +ffffffff813ee170 t fn_null +ffffffff813ee180 t getkeycode_helper +ffffffff813ee1a0 t setkeycode_helper +ffffffff813ee1c0 t fn_caps_toggle +ffffffff813ee1e0 t fn_caps_on +ffffffff813ee200 t k_spec +ffffffff813ee250 t k_ascii +ffffffff813ee2a0 t k_lock +ffffffff813ee2d0 t kd_sound_helper +ffffffff813ee350 t kbd_match +ffffffff813ee3b0 t k_meta +ffffffff813ee3f0 t to_utf8 +ffffffff813ee490 t handle_diacr +ffffffff813ee540 t k_shift +ffffffff813ee620 t k_slock +ffffffff813ee680 t fn_enter +ffffffff813ee6f0 t kbd_event +ffffffff813eed70 t k_deadunicode.part.11 +ffffffff813eed90 t k_dead2 +ffffffff813eeda0 t k_dead +ffffffff813eedc0 t k_unicode.part.12 +ffffffff813eee20 t k_self +ffffffff813eee30 t k_cur.part.14 +ffffffff813eee70 t k_cur +ffffffff813eee80 t fn_num +ffffffff813eeec0 t k_fn.part.16 +ffffffff813eeee0 t k_fn +ffffffff813eeef0 t k_pad +ffffffff813ef010 t k_brlcommit.constprop.19 +ffffffff813ef070 t k_brl +ffffffff813ef190 t fn_bare_num +ffffffff813ef1b0 T register_keyboard_notifier +ffffffff813ef1c0 T unregister_keyboard_notifier +ffffffff813ef1d0 T kd_mksound +ffffffff813ef230 T kbd_rate +ffffffff813ef270 T compute_shiftstate +ffffffff813ef2a0 T setledstate +ffffffff813ef310 T vt_get_leds +ffffffff813ef350 T vt_set_led_state +ffffffff813ef360 T vt_kbd_con_start +ffffffff813ef3c0 T vt_kbd_con_stop +ffffffff813ef420 T vt_do_diacrit +ffffffff813ef780 T vt_do_kdskbmode +ffffffff813ef870 T vt_do_kdskbmeta +ffffffff813ef8d0 T vt_do_kbkeycode_ioctl +ffffffff813efa20 T vt_do_kdsk_ioctl +ffffffff813efd80 T vt_do_kdgkb_ioctl +ffffffff813f01f0 T vt_do_kdskled +ffffffff813f0360 T vt_do_kdgkbmode +ffffffff813f0390 T vt_do_kdgkbmeta +ffffffff813f03b0 T vt_reset_unicode +ffffffff813f0400 T vt_get_shift_state +ffffffff813f0410 T vt_reset_keyboard +ffffffff813f0490 T vt_get_kbd_mode_bit +ffffffff813f04b0 T vt_set_kbd_mode_bit +ffffffff813f0500 T vt_clr_kbd_mode_bit +ffffffff813f0550 t do_update_region +ffffffff813f06c0 t add_softcursor +ffffffff813f0770 t visual_init +ffffffff813f0860 t gotoxy +ffffffff813f0910 t rgb_foreground +ffffffff813f09b0 t rgb_background +ffffffff813f09f0 t ucs_cmp +ffffffff813f0a10 t vt_console_device +ffffffff813f0a30 t con_write_room +ffffffff813f0a40 t con_chars_in_buffer +ffffffff813f0a50 t con_throttle +ffffffff813f0a60 t con_open +ffffffff813f0a70 t con_close +ffffffff813f0a80 t hide_cursor +ffffffff813f0b20 t blank_screen_t +ffffffff813f0b50 t set_origin +ffffffff813f0be0 t show_tty_active +ffffffff813f0c00 t respond_string +ffffffff813f0c80 t con_scroll +ffffffff813f0d70 t lf +ffffffff813f0df0 t insert_char +ffffffff813f0e80 t con_start +ffffffff813f0eb0 t con_stop +ffffffff813f0ee0 t con_unthrottle +ffffffff813f0f00 t con_driver_unregister_callback +ffffffff813f0f90 t show_name +ffffffff813f0fd0 t show_bind +ffffffff813f1020 t build_attr +ffffffff813f1110 t update_attr +ffffffff813f11b0 t set_cursor +ffffffff813f1230 t vt_console_print +ffffffff813f1620 t set_palette.part.5 +ffffffff813f1650 t con_shutdown +ffffffff813f1680 t con_flush_chars +ffffffff813f16b0 T register_vt_notifier +ffffffff813f16c0 T unregister_vt_notifier +ffffffff813f16d0 T schedule_console_callback +ffffffff813f16f0 T update_region +ffffffff813f1740 T invert_screen +ffffffff813f18f0 T complement_pos +ffffffff813f1a80 T clear_buffer_attributes +ffffffff813f1ad0 T redraw_screen +ffffffff813f1cf0 t csi_J +ffffffff813f1e00 t reset_terminal +ffffffff813f2010 t vc_init +ffffffff813f20f0 t vc_do_resize +ffffffff813f2550 t vt_resize +ffffffff813f2590 t do_bind_con_driver +ffffffff813f28f0 T vc_cons_allocated +ffffffff813f2910 T vc_allocate +ffffffff813f2a70 t con_install +ffffffff813f2b40 T vc_resize +ffffffff813f2b60 T vc_deallocate +ffffffff813f2bf0 T scrollback +ffffffff813f2c20 T scrollfront +ffffffff813f2c50 T mouse_report +ffffffff813f2c90 T mouse_reporting +ffffffff813f2cb0 T set_console +ffffffff813f2d20 T vt_kmsg_redirect +ffffffff813f2d40 T do_unbind_con_driver +ffffffff813f2ee0 t store_bind +ffffffff813f3080 T con_is_bound +ffffffff813f30b0 T con_debug_enter +ffffffff813f3120 T con_debug_leave +ffffffff813f3190 T do_unregister_con_driver +ffffffff813f3220 T do_take_over_console +ffffffff813f3340 T give_up_console +ffffffff813f3360 T do_blank_screen +ffffffff813f3550 T do_unblank_screen +ffffffff813f36c0 T unblank_screen +ffffffff813f36d0 T tioclinux +ffffffff813f3920 T poke_blanked_console +ffffffff813f39b0 t console_callback +ffffffff813f3af0 T con_set_cmap +ffffffff813f3c20 T con_get_cmap +ffffffff813f3ca0 T reset_palette +ffffffff813f3d00 t do_con_trol +ffffffff813f5300 t do_con_write.part.13 +ffffffff813f5bc0 t con_put_char +ffffffff813f5c00 t con_write +ffffffff813f5c60 T con_font_op +ffffffff813f60d0 T screen_glyph +ffffffff813f6110 T screen_pos +ffffffff813f6150 T getconsxy +ffffffff813f6170 T putconsxy +ffffffff813f61a0 T vcs_scr_readw +ffffffff813f61c0 T vcs_scr_writew +ffffffff813f61e0 T vcs_scr_updated +ffffffff813f6210 T vc_scrolldelta_helper +ffffffff813f62d2 t vc_t416_color +ffffffff813f641c t cursor_report.isra.7 +ffffffff813f646b t set_mode +ffffffff813f6690 t read_null +ffffffff813f66a0 t write_null +ffffffff813f66b0 t read_iter_null +ffffffff813f66c0 t pipe_to_null +ffffffff813f66d0 t write_full +ffffffff813f66e0 t null_lseek +ffffffff813f66f0 t memory_open +ffffffff813f6740 t mem_devnode +ffffffff813f6770 t read_iter_zero +ffffffff813f67f0 t mmap_zero +ffffffff813f6810 t write_iter_null +ffffffff813f6830 t splice_write_null +ffffffff813f6840 t get_unmapped_area_zero +ffffffff813f6880 t _mix_pool_bytes +ffffffff813f6970 t random_poll +ffffffff813f69e0 t mix_pool_bytes +ffffffff813f6a30 t crng_fast_load +ffffffff813f6b30 t extract_buf +ffffffff813f6c50 t init_std_data +ffffffff813f6d40 t random_fasync +ffffffff813f6d50 t proc_do_entropy +ffffffff813f6d90 t proc_do_uuid +ffffffff813f6e40 t _warn_unseeded_randomness +ffffffff813f6e80 t wait_for_random_bytes.part.4 +ffffffff813f6ee0 t write_pool.constprop.5 +ffffffff813f6f60 t random_write +ffffffff813f6f80 t _extract_entropy.constprop.12 +ffffffff813f7090 t rand_initialize +ffffffff813f7150 t account.part.1.constprop.14 +ffffffff813f7230 t extract_entropy.constprop.11 +ffffffff813f7280 t crng_reseed.constprop.8 +ffffffff813f7410 t credit_entropy_bits +ffffffff813f7600 t add_timer_randomness +ffffffff813f76e0 t random_ioctl +ffffffff813f7870 t _extract_crng.constprop.10 +ffffffff813f7910 t _crng_backtrack_protect.constprop.9 +ffffffff813f7970 t urandom_read +ffffffff813f7af0 t _get_random_bytes +ffffffff813f7c00 t _xfer_secondary_pool +ffffffff813f7c70 t push_to_pool +ffffffff813f7ca0 t xfer_secondary_pool +ffffffff813f7cd0 t _random_read.part.3 +ffffffff813f7ef0 t random_read +ffffffff813f7f10 T add_device_randomness +ffffffff813f7fa0 T add_input_randomness +ffffffff813f7fd0 T add_interrupt_randomness +ffffffff813f81b0 T add_disk_randomness +ffffffff813f81e0 T get_random_bytes +ffffffff813f8210 T wait_for_random_bytes +ffffffff813f8230 T add_random_ready_callback +ffffffff813f82a0 T del_random_ready_callback +ffffffff813f82e0 T get_random_bytes_arch +ffffffff813f8400 T rand_initialize_disk +ffffffff813f8430 T SyS_getrandom +ffffffff813f8430 T sys_getrandom +ffffffff813f84e0 T get_random_u64 +ffffffff813f85d0 T get_random_u32 +ffffffff813f86c0 T randomize_page +ffffffff813f8720 T add_hwgenerator_randomness +ffffffff813f87fa t invalidate_batched_entropy +ffffffff813f8870 t misc_seq_stop +ffffffff813f8880 t misc_devnode +ffffffff813f88b0 t misc_open +ffffffff813f89b0 t misc_seq_open +ffffffff813f89c0 t misc_seq_show +ffffffff813f89f0 t misc_seq_next +ffffffff813f8a00 t misc_seq_start +ffffffff813f8a20 T misc_register +ffffffff813f8b90 T misc_deregister +ffffffff813f8c20 t hpet_poll +ffffffff813f8c80 t hpet_mmap +ffffffff813f8c90 t hpet_fasync +ffffffff813f8cb0 t hpet_release +ffffffff813f8d50 t hpet_interrupt +ffffffff813f8e50 t hpet_ioctl +ffffffff813f9290 t hpet_read +ffffffff813f93e0 t hpet_resources.part.1 +ffffffff813f94b0 t hpet_resources +ffffffff813f9540 t hpet_open +ffffffff813f9750 T hpet_alloc +ffffffff813f9b30 t hpet_acpi_add +ffffffff813f9b9f t hpet_acpi_add.part.3 +ffffffff813f9bc0 t rng_dev_open +ffffffff813f9be0 t hwrng_attr_selected_show +ffffffff813f9c00 t hwrng_attr_available_show +ffffffff813f9ca0 t drop_current_rng +ffffffff813f9d00 t devm_hwrng_match +ffffffff813f9d20 t put_rng +ffffffff813f9d70 t add_early_randomness +ffffffff813f9e20 t get_current_rng +ffffffff813f9e60 t hwrng_attr_current_show +ffffffff813f9ec0 t hwrng_fillfn +ffffffff813f9fd0 t rng_dev_read +ffffffff813fa210 t set_current_rng +ffffffff813fa390 t enable_best_rng +ffffffff813fa3f0 t hwrng_attr_current_store +ffffffff813fa4b0 T hwrng_register +ffffffff813fa620 T hwrng_unregister +ffffffff813fa6b0 t devm_hwrng_release +ffffffff813fa6c0 T devm_hwrng_register +ffffffff813fa730 T devm_hwrng_unregister +ffffffff813fa750 t intel_rng_data_read +ffffffff813fa770 t intel_rng_data_present +ffffffff813fa7c0 t intel_rng_cleanup +ffffffff813fa7e0 t intel_rng_init +ffffffff813fa810 t iommu_group_attr_show +ffffffff813fa830 t iommu_group_attr_store +ffffffff813fa850 t add_iommu_group +ffffffff813fa870 t remove_iommu_group +ffffffff813fa890 t iommu_group_release +ffffffff813fa8f0 t iommu_group_show_name +ffffffff813fa910 t iommu_insert_resv_region +ffffffff813faa70 t get_pci_alias_or_group +ffffffff813faaa0 t __iommu_attach_device +ffffffff813faaf0 t iommu_pgsize.isra.1 +ffffffff813fab30 t __iommu_unmap +ffffffff813fac60 t __iommu_detach_group +ffffffff813fad40 t get_pci_function_alias_group +ffffffff813fadf0 t get_pci_alias_group +ffffffff813faeb0 t iommu_bus_notifier +ffffffff813fafb0 t __iommu_attach_group +ffffffff813fb020 T iommu_device_register +ffffffff813fb060 T iommu_device_unregister +ffffffff813fb0b0 T iommu_get_group_resv_regions +ffffffff813fb1f0 t iommu_group_show_resv_regions +ffffffff813fb2a0 T iommu_group_alloc +ffffffff813fb3f0 T iommu_group_get_by_id +ffffffff813fb470 T iommu_group_get_iommudata +ffffffff813fb480 T iommu_group_set_iommudata +ffffffff813fb490 T iommu_group_set_name +ffffffff813fb530 T iommu_group_remove_device +ffffffff813fb640 T iommu_group_for_each_dev +ffffffff813fb6b0 T iommu_group_get +ffffffff813fb6d0 T iommu_group_ref_get +ffffffff813fb6f0 T iommu_group_put +ffffffff813fb700 T iommu_group_register_notifier +ffffffff813fb710 T iommu_group_unregister_notifier +ffffffff813fb720 T iommu_group_id +ffffffff813fb730 T generic_device_group +ffffffff813fb740 T pci_device_group +ffffffff813fb840 T iommu_group_default_domain +ffffffff813fb850 T bus_set_iommu +ffffffff813fb910 T iommu_present +ffffffff813fb920 T iommu_capable +ffffffff813fb940 T iommu_set_fault_handler +ffffffff813fb950 T iommu_domain_alloc +ffffffff813fb9a0 T iommu_domain_free +ffffffff813fb9b0 T iommu_attach_device +ffffffff813fba40 T iommu_detach_device +ffffffff813fbab0 T iommu_get_domain_for_dev +ffffffff813fbae0 T iommu_attach_group +ffffffff813fbb20 T iommu_detach_group +ffffffff813fbb50 T iommu_iova_to_phys +ffffffff813fbb70 T iommu_map +ffffffff813fbcb0 T iommu_group_add_device +ffffffff813fc090 T iommu_group_get_for_dev +ffffffff813fc220 T iommu_unmap +ffffffff813fc230 T iommu_unmap_fast +ffffffff813fc240 T default_iommu_map_sg +ffffffff813fc330 T iommu_domain_window_enable +ffffffff813fc350 T iommu_domain_window_disable +ffffffff813fc370 T report_iommu_fault +ffffffff813fc390 T iommu_domain_get_attr +ffffffff813fc400 T iommu_domain_set_attr +ffffffff813fc440 T iommu_get_resv_regions +ffffffff813fc470 T iommu_put_resv_regions +ffffffff813fc4a0 T iommu_alloc_resv_region +ffffffff813fc4f0 T iommu_request_dm_for_dev +ffffffff813fc640 T iommu_ops_from_fwnode +ffffffff813fc6a0 T iommu_fwspec_init +ffffffff813fc700 T iommu_fwspec_free +ffffffff813fc730 T iommu_fwspec_add_ids +ffffffff813fc7c0 t iommu_release_device +ffffffff813fc7d0 T iommu_device_sysfs_add +ffffffff813fc8c0 T iommu_device_sysfs_remove +ffffffff813fc8f0 T iommu_device_link +ffffffff813fc9b0 T iommu_device_unlink +ffffffff813fca00 t iova_domain_flush +ffffffff813fca30 t iova_insert_rbtree +ffffffff813fcaa0 t iova_magazine_alloc +ffffffff813fcac0 t __cached_rbnode_delete_update +ffffffff813fcb20 t private_find_iova +ffffffff813fcb60 t free_iova_mem.part.3 +ffffffff813fcb70 t private_free_iova +ffffffff813fcbb0 t iova_magazine_free_pfns +ffffffff813fcc20 T init_iova_domain +ffffffff813fcd70 T init_iova_flush_queue +ffffffff813fce40 T alloc_iova_mem +ffffffff813fce60 T free_iova_mem +ffffffff813fce70 T iova_cache_get +ffffffff813fcef0 T iova_cache_put +ffffffff813fcf40 T alloc_iova +ffffffff813fd080 T find_iova +ffffffff813fd0b0 T __free_iova +ffffffff813fd0e0 T free_iova +ffffffff813fd100 T free_iova_fast +ffffffff813fd310 t fq_ring_free +ffffffff813fd3d0 t fq_flush_timeout +ffffffff813fd460 T queue_iova +ffffffff813fd580 T put_iova_domain +ffffffff813fd780 T reserve_iova +ffffffff813fd870 T copy_reserved_iova +ffffffff813fd8f0 T split_and_remove_iova +ffffffff813fdb00 T free_cpu_cached_iovas +ffffffff813fdb80 T alloc_iova_fast +ffffffff813fdde0 t dmar_res_noop +ffffffff813fddf0 t dmar_walk_remapping_entries +ffffffff813fdf60 t dmar_alloc_pci_notify_info +ffffffff813fe0e0 t __dmar_enable_qi +ffffffff813fe1d0 t dmar_get_dsm_handle +ffffffff813fe210 t dmar_hp_remove_drhd +ffffffff813fe2b0 t dmar_hp_add_drhd +ffffffff813fe310 t dmar_free_seq_id.isra.0 +ffffffff813fe330 t dmar_walk_dsm_resource +ffffffff813fe3f0 t dmar_device_hotplug +ffffffff813fe630 t dmar_remove_dev_scope.part.5 +ffffffff813fe690 t dmar_set_interrupt.part.6 +ffffffff813fe700 T dmar_fault +ffffffff813fe930 T dmar_alloc_dev_scope +ffffffff813fe9d0 T dmar_free_dev_scope +ffffffff813fea30 t dmar_parse_one_drhd +ffffffff813fef50 t dmar_free_drhd +ffffffff813ff080 t dmar_hp_release_drhd +ffffffff813ff0f0 T dmar_insert_dev_scope +ffffffff813ff320 t dmar_pci_bus_add_dev +ffffffff813ff3a0 t dmar_pci_bus_notifier +ffffffff813ff470 T dmar_remove_dev_scope +ffffffff813ff490 T dmar_find_matched_drhd_unit +ffffffff813ff560 T dmar_register_bus_notifier +ffffffff813ff580 T qi_submit_sync +ffffffff813ff8e0 T qi_global_iec +ffffffff813ff910 T qi_flush_context +ffffffff813ff960 T qi_flush_iotlb +ffffffff813ff9c0 T qi_flush_dev_iotlb +ffffffff813ffa50 T dmar_disable_qi +ffffffff813ffb60 T dmar_enable_qi +ffffffff813ffc60 T dmar_msi_unmask +ffffffff813ffcc0 T dmar_msi_mask +ffffffff813ffd20 T dmar_msi_write +ffffffff813ffdc0 T dmar_msi_read +ffffffff813ffe60 T dmar_set_interrupt +ffffffff813ffe70 T dmar_reenable_qi +ffffffff813ffea0 T dmar_device_add +ffffffff813ffeb0 T dmar_device_remove +ffffffff813ffec0 t device_context_mapped +ffffffff813fff90 t dma_pte_list_pagetables +ffffffff81400010 t domain_context_mapped_cb +ffffffff81400030 t get_last_alias +ffffffff81400040 t intel_mapping_error +ffffffff81400050 t intel_iommu_put_resv_regions +ffffffff81400090 t intel_iommu_get_resv_regions +ffffffff81400140 t domain_update_iommu_snooping +ffffffff814001a0 t device_has_rmrr +ffffffff81400220 t device_to_iommu +ffffffff814003f0 t intel_iommu_remove_device +ffffffff81400430 t intel_iommu_add_device +ffffffff81400490 t dma_free_pagelist +ffffffff814004d0 t iova_entry_free +ffffffff814004e0 t domain_context_clear_one_cb +ffffffff81400650 t pfn_to_dma_pte +ffffffff81400830 t intel_iommu_iova_to_phys +ffffffff81400870 t dma_pte_clear_level +ffffffff81400a10 t domain_unmap +ffffffff81400b00 t dma_pte_free_level +ffffffff81400c80 t iommu_alloc_root_entry +ffffffff81400d20 t quirk_iommu_g4x_gfx +ffffffff81400d40 t quirk_iommu_rwbf +ffffffff81400d60 t set_iommu_domain +ffffffff81400dd0 t iommu_init_domains +ffffffff81400ec0 t iommu_disable_translation +ffffffff81400f40 t iommu_suspend +ffffffff814010e0 t __iommu_flush_iotlb +ffffffff81401270 t __iommu_flush_context +ffffffff81401380 t iommu_set_root_entry +ffffffff81401470 t iommu_enable_translation +ffffffff814014f0 t iommu_disable_protect_mem_regions +ffffffff81401570 t alloc_domain +ffffffff814015c0 t intel_alloc_iova +ffffffff814016a0 t quirk_ioat_snb_local_iommu +ffffffff81401720 t dmar_find_atsr +ffffffff81401780 t free_dmar_iommu +ffffffff81401930 t intel_iommu_show_ndoms +ffffffff81401970 t intel_iommu_show_ecap +ffffffff814019a0 t intel_iommu_show_cap +ffffffff814019d0 t intel_iommu_show_address +ffffffff81401a00 t intel_iommu_show_version +ffffffff81401a30 t intel_iommu_show_ndoms_used +ffffffff81401a80 t intel_iommu_cpu_dead +ffffffff81401b10 t quirk_calpella_no_shadow_gtt +ffffffff81401b70 t domain_get_iommu +ffffffff81401bd0 t __iommu_calculate_agaw.isra.11 +ffffffff81401c10 t iommu_flush_dev_iotlb.part.12 +ffffffff81401c90 t iommu_flush_iotlb_psi +ffffffff81401d80 t intel_iommu_unmap +ffffffff81401eb0 t iommu_flush_iova +ffffffff81401f80 t domain_update_iotlb +ffffffff81401fe0 t iommu_enable_dev_iotlb +ffffffff81402070 t intel_iommu_capable +ffffffff814020a0 t domain_update_iommu_superpage.part.16 +ffffffff81402100 t domain_update_iommu_cap +ffffffff814021d0 t __dmar_remove_one_dev_info +ffffffff814023d0 t dmar_remove_one_dev_info.isra.17 +ffffffff81402400 t intel_iommu_detach_device +ffffffff81402410 t device_is_rmrr_locked +ffffffff81402460 t iommu_should_identity_map +ffffffff81402530 t domain_exit.part.19 +ffffffff814025e0 t intel_iommu_domain_free +ffffffff814025f0 t device_notifier +ffffffff81402660 t iommu_flush_write_buffer.part.20 +ffffffff814026e0 t domain_context_mapping_one +ffffffff81402bb0 t domain_context_mapping_cb +ffffffff81402bd0 t intel_iommu_init_qi +ffffffff81402c50 t disable_dmar_iommu.part.24 +ffffffff81402d20 t iommu_resume +ffffffff81402ee0 t md_domain_init.constprop.31 +ffffffff81402fe0 t intel_iommu_domain_alloc +ffffffff81403070 t find_or_alloc_domain.constprop.33 +ffffffff81403380 t dma_pte_clear_range +ffffffff81403530 t dma_pte_free_pagetable +ffffffff81403600 t __domain_mapping +ffffffff81403990 t intel_iommu_map +ffffffff81403a30 t iommu_domain_identity_map +ffffffff81403aa0 t domain_prepare_identity_map +ffffffff81403b50 T iommu_calculate_max_sagaw +ffffffff81403b60 T iommu_calculate_agaw +ffffffff81403b70 T dmar_parse_one_atsr +ffffffff81403c50 T dmar_release_one_atsr +ffffffff81403ca0 T dmar_check_one_atsr +ffffffff81403d00 T dmar_iommu_hotplug +ffffffff81403fd0 T dmar_find_matched_atsr_unit +ffffffff814040c0 t dmar_insert_one_dev_info +ffffffff81404550 t domain_add_dev_info +ffffffff814045b0 t intel_iommu_attach_device +ffffffff814047c0 t iommu_no_mapping +ffffffff81404870 t intel_unmap +ffffffff81404960 t intel_unmap_sg +ffffffff814049e0 t intel_unmap_page +ffffffff814049f0 t intel_free_coherent +ffffffff81404a60 t set_domain_for_dev +ffffffff81404b20 t get_valid_domain_for_dev +ffffffff81404c50 t intel_map_sg +ffffffff81404e70 t __intel_map_single +ffffffff81405000 t intel_map_page +ffffffff81405030 t intel_alloc_coherent +ffffffff81405150 T dmar_iommu_notify_scope_dev +ffffffff81405270 T intel_iommu_enable_pasid +ffffffff81405550 T intel_svm_device_to_iommu +ffffffff814055c2 t iommu_prepare_identity_map +ffffffff81405660 t prq_event_thread +ffffffff81405a60 t intel_flush_svm_range_dev.isra.1 +ffffffff81405bf0 t intel_mm_release +ffffffff81405cb0 t intel_flush_svm_range.constprop.4 +ffffffff81405d60 t intel_change_pte +ffffffff81405d80 t intel_invalidate_range +ffffffff81405da0 T intel_svm_alloc_pasid_tables +ffffffff81405ee0 T intel_svm_free_pasid_tables +ffffffff81405f50 T intel_svm_enable_prq +ffffffff814060b0 T intel_svm_finish_prq +ffffffff81406110 T intel_svm_bind_mm +ffffffff814065a0 T intel_svm_unbind_mm +ffffffff81406740 T intel_svm_is_pasid_valid +ffffffff814067b0 t set_msi_sid_cb +ffffffff814067c0 t intel_ir_compose_msi_msg +ffffffff814067e0 t intel_get_irq_domain +ffffffff81406820 t intel_get_ir_irq_domain +ffffffff814068c0 t iommu_enable_irq_remapping +ffffffff81406950 t iommu_set_irq_remapping +ffffffff81406a40 t ir_parse_ioapic_hpet_scope +ffffffff81406cd0 t modify_irte +ffffffff81406de0 t intel_irq_remapping_deactivate +ffffffff81406e10 t intel_ir_set_vcpu_affinity +ffffffff81406eb0 t intel_ir_reconfigure_irte +ffffffff81406f00 t intel_irq_remapping_activate +ffffffff81406f10 t intel_free_irq_resources +ffffffff81407060 t intel_irq_remapping_free +ffffffff81407090 t intel_ir_set_affinity +ffffffff81407100 t iommu_disable_irq_remapping.part.4 +ffffffff814071a0 t reenable_irq_remapping +ffffffff814072a0 t disable_irq_remapping +ffffffff814072e0 t intel_teardown_irq_remapping.part.7 +ffffffff81407360 t intel_setup_irq_remapping.part.8 +ffffffff81407580 t intel_irq_remapping_alloc +ffffffff81407cd0 T dmar_ir_hotplug +ffffffff81407ea0 t irq_remapping_disable_io_apic +ffffffff81407ed0 T set_irq_remapping_broken +ffffffff81407ee0 T irq_remapping_cap +ffffffff81407f10 T irq_remapping_disable +ffffffff81407f40 T irq_remapping_reenable +ffffffff81407f70 T panic_if_irq_remap +ffffffff81407f90 T ir_ack_apic_edge +ffffffff81407fb0 T irq_remapping_get_ir_irq_domain +ffffffff81407fd0 T irq_remapping_get_irq_domain +ffffffff81407ff0 t drm_helper_choose_encoder_dpms +ffffffff81408050 t drm_helper_choose_crtc_dpms +ffffffff814080c0 t drm_encoder_disable +ffffffff81408110 t drm_helper_encoder_dpms +ffffffff81408190 T drm_helper_encoder_in_use +ffffffff81408200 T drm_helper_crtc_in_use +ffffffff81408270 t __drm_helper_disable_unused_functions +ffffffff81408350 T drm_helper_disable_unused_functions +ffffffff81408390 T drm_crtc_helper_set_mode +ffffffff81408970 T drm_crtc_helper_set_config +ffffffff81409300 T drm_helper_connector_dpms +ffffffff814093f0 T drm_helper_resume_force_mode +ffffffff81409530 T drm_helper_crtc_mode_set_base +ffffffff81409630 T drm_helper_crtc_mode_set +ffffffff81409770 t drm_dp_i2c_functionality +ffffffff81409780 t lock_bus +ffffffff81409790 t drm_dp_dpcd_access +ffffffff81409880 t unlock_bus +ffffffff81409890 t trylock_bus +ffffffff814098a0 t drm_dp_i2c_do_msg +ffffffff81409b70 t drm_dp_i2c_xfer +ffffffff81409db0 T drm_dp_channel_eq_ok +ffffffff81409e00 T drm_dp_clock_recovery_ok +ffffffff81409e40 T drm_dp_get_adjust_request_voltage +ffffffff81409e70 T drm_dp_get_adjust_request_pre_emphasis +ffffffff81409ea0 T drm_dp_link_train_clock_recovery_delay +ffffffff81409ee0 T drm_dp_link_train_channel_eq_delay +ffffffff81409f20 T drm_dp_link_rate_to_bw_code +ffffffff81409f50 T drm_dp_bw_code_to_link_rate +ffffffff81409f70 T drm_dp_dpcd_read +ffffffff81409fd0 t drm_dp_aux_get_crc +ffffffff8140a060 t drm_dp_aux_crc_work +ffffffff8140a110 T drm_dp_dpcd_write +ffffffff8140a130 T drm_dp_dpcd_read_link_status +ffffffff8140a150 T drm_dp_link_probe +ffffffff8140a1e0 T drm_dp_link_power_up +ffffffff8140a260 T drm_dp_link_power_down +ffffffff8140a2d0 T drm_dp_link_configure +ffffffff8140a340 T drm_dp_downstream_max_clock +ffffffff8140a380 T drm_dp_downstream_max_bpc +ffffffff8140a3d0 T drm_dp_downstream_id +ffffffff8140a3f0 T drm_dp_downstream_debug +ffffffff8140a670 T drm_dp_aux_init +ffffffff8140a6e0 T drm_dp_aux_register +ffffffff8140a7b0 T drm_dp_aux_unregister +ffffffff8140a7c0 T drm_dp_psr_setup_time +ffffffff8140a7e0 T drm_dp_start_crc +ffffffff8140a870 T drm_dp_stop_crc +ffffffff8140a8f0 T drm_dp_read_desc +ffffffff8140a9f0 t drm_helper_probe_detect_ctx +ffffffff8140aaa0 t drm_kms_helper_poll_enable.part.1 +ffffffff8140ab20 T drm_crtc_mode_valid +ffffffff8140ab40 T drm_encoder_mode_valid +ffffffff8140ab60 T drm_connector_mode_valid +ffffffff8140ab80 T drm_kms_helper_poll_enable +ffffffff8140aba0 T drm_helper_probe_detect +ffffffff8140ac20 T drm_helper_probe_single_connector_modes +ffffffff8140b2a0 T drm_kms_helper_hotplug_event +ffffffff8140b2d0 t output_poll_execute +ffffffff8140b460 T drm_kms_helper_is_poll_worker +ffffffff8140b480 T drm_kms_helper_poll_disable +ffffffff8140b4a0 T drm_kms_helper_poll_init +ffffffff8140b510 T drm_kms_helper_poll_fini +ffffffff8140b530 T drm_helper_hpd_irq_event +ffffffff8140b630 T drm_primary_helper_disable +ffffffff8140b640 t get_connectors_for_crtc +ffffffff8140b6c0 T drm_primary_helper_destroy +ffffffff8140b6e0 T drm_plane_helper_check_update +ffffffff8140b850 T drm_primary_helper_update +ffffffff8140ba00 T drm_plane_helper_commit +ffffffff8140bc70 T drm_plane_helper_update +ffffffff8140bda0 T drm_plane_helper_disable +ffffffff8140be20 t drm_dp_msg_header_crc4 +ffffffff8140bea0 t drm_dp_mst_get_validated_mstb_ref_locked +ffffffff8140bf00 t drm_dp_mst_get_port_ref_locked +ffffffff8140bf70 t drm_dp_get_port +ffffffff8140bfb0 t drm_dp_mst_i2c_functionality +ffffffff8140bfc0 t drm_dp_free_mst_port +ffffffff8140bff0 t drm_dp_free_mst_branch_device +ffffffff8140c030 t drm_dp_mst_destroy_state +ffffffff8140c040 t drm_dp_get_validated_port_ref +ffffffff8140c090 t drm_dp_get_validated_mstb_ref +ffffffff8140c0e0 t drm_dp_encode_sideband_req +ffffffff8140c510 t build_power_updown_phy +ffffffff8140c550 t build_link_address +ffffffff8140c570 t build_enum_path_resources +ffffffff8140c5a0 t drm_dp_add_mst_branch_device +ffffffff8140c660 t drm_dp_get_mst_branch_device +ffffffff8140c740 t build_allocate_payload +ffffffff8140c810 t process_single_tx_qlock +ffffffff8140cdc0 t drm_dp_mst_wait_tx_reply +ffffffff8140cf70 t drm_dp_sideband_msg_build +ffffffff8140d300 t drm_dp_get_one_sb_msg +ffffffff8140d4a0 t get_mst_branch_device_by_guid_helper +ffffffff8140d500 t drm_dp_get_mst_branch_device_by_guid +ffffffff8140d550 t drm_dp_mst_dump_mstb +ffffffff8140d630 t drm_dp_mst_duplicate_state +ffffffff8140d660 t drm_dp_mst_put_payload_id.part.7 +ffffffff8140d6f0 t process_single_down_tx_qlock.part.8 +ffffffff8140d7c0 t drm_dp_queue_down_tx +ffffffff8140d860 t drm_dp_tx_work +ffffffff8140d8c0 t drm_dp_send_enum_path_resources.isra.9 +ffffffff8140d9c0 t drm_dp_port_teardown_pdt +ffffffff8140d9f0 t drm_dp_put_port +ffffffff8140dac0 t drm_dp_put_mst_branch_device +ffffffff8140dc20 t drm_dp_mst_i2c_xfer +ffffffff8140de40 t drm_dp_payload_send_msg +ffffffff8140dfe0 t drm_dp_dpcd_write_payload.isra.11 +ffffffff8140e120 t drm_dp_port_setup_pdt +ffffffff8140e2c0 t drm_dp_send_up_ack_reply.constprop.19 +ffffffff8140e380 t drm_dp_mst_handle_up_req +ffffffff8140e8c0 t build_dpcd_write.constprop.22 +ffffffff8140e8f0 t drm_dp_check_mstb_guid +ffffffff8140e9f0 t drm_dp_send_link_address +ffffffff8140ebe0 t drm_dp_add_port +ffffffff8140ef70 t drm_dp_check_and_send_link_address +ffffffff8140f030 t drm_dp_mst_link_probe_work +ffffffff8140f090 T drm_dp_send_power_updown_phy +ffffffff8140f150 T drm_dp_update_payload_part1 +ffffffff8140f4c0 T drm_dp_update_payload_part2 +ffffffff8140f5d0 T drm_dp_mst_topology_mgr_set_mst +ffffffff8140f810 T drm_dp_mst_topology_mgr_suspend +ffffffff8140f870 T drm_dp_mst_topology_mgr_resume +ffffffff8140f960 T drm_dp_mst_hpd_irq +ffffffff81410210 T drm_dp_mst_detect_port +ffffffff814102a0 T drm_dp_mst_port_has_audio +ffffffff814102c0 T drm_dp_mst_get_edid +ffffffff81410330 T drm_dp_find_vcpi_slots +ffffffff81410350 T drm_dp_atomic_find_vcpi_slots +ffffffff81410420 T drm_dp_atomic_release_vcpi_slots +ffffffff81410470 T drm_dp_mst_allocate_vcpi +ffffffff81410670 T drm_dp_mst_get_vcpi_slots +ffffffff81410690 T drm_dp_mst_reset_vcpi_slots +ffffffff814106b0 t drm_dp_destroy_connector_work +ffffffff81410830 T drm_dp_mst_deallocate_vcpi +ffffffff81410890 T drm_dp_check_act_status +ffffffff81410940 T drm_dp_calc_pbn_mode +ffffffff81410a00 T drm_dp_mst_dump_topology +ffffffff81410d00 T drm_atomic_get_mst_topology_state +ffffffff81410d10 T drm_dp_mst_topology_mgr_init +ffffffff81411010 T drm_dp_mst_topology_mgr_destroy +ffffffff814110a0 t release_crtc_commit +ffffffff814110c0 t init_commit +ffffffff81411140 t handle_conflicting_encoders +ffffffff814113b0 t crtc_or_fake_commit.isra.0.part.1 +ffffffff814113f0 t set_best_encoder.isra.3 +ffffffff81411470 t page_flip_common +ffffffff81411530 t drm_atomic_helper_wait_for_vblanks.part.8 +ffffffff81411720 T drm_atomic_helper_check_modeset +ffffffff814121b0 T drm_atomic_helper_check_plane_state +ffffffff81412410 T drm_atomic_helper_check_planes +ffffffff814125a0 T drm_atomic_helper_update_legacy_modeset_state +ffffffff81412730 T drm_atomic_helper_commit_modeset_disables +ffffffff81412ae0 T drm_atomic_helper_commit_modeset_enables +ffffffff81412c60 T drm_atomic_helper_wait_for_fences +ffffffff81412d10 T drm_atomic_helper_wait_for_vblanks +ffffffff81412d20 T drm_atomic_helper_wait_for_flip_done +ffffffff81412dc0 T drm_atomic_helper_async_check +ffffffff81412eb0 T drm_atomic_helper_check +ffffffff81412f10 T drm_atomic_helper_async_commit +ffffffff81412f60 T drm_atomic_helper_setup_commit +ffffffff81413380 T drm_atomic_helper_wait_for_dependencies +ffffffff814135b0 T drm_atomic_helper_commit_hw_done +ffffffff81413670 T drm_atomic_helper_commit_cleanup_done +ffffffff81413750 T drm_atomic_helper_prepare_planes +ffffffff81413820 T drm_atomic_helper_commit_planes +ffffffff81413a10 T drm_atomic_helper_commit_planes_on_crtc +ffffffff81413b80 T drm_atomic_helper_disable_planes_on_crtc +ffffffff81413c90 T drm_atomic_helper_cleanup_planes +ffffffff81413d00 T drm_atomic_helper_commit_tail +ffffffff81413d60 t commit_tail +ffffffff81413dc0 t commit_work +ffffffff81413dd0 T drm_atomic_helper_commit_tail_rpm +ffffffff81413e30 T drm_atomic_helper_swap_state +ffffffff81414110 T drm_atomic_helper_commit +ffffffff81414210 T drm_atomic_helper_update_plane +ffffffff81414310 T __drm_atomic_helper_disable_plane +ffffffff81414360 T drm_atomic_helper_disable_plane +ffffffff81414400 T __drm_atomic_helper_set_config +ffffffff81414690 T drm_atomic_helper_set_config +ffffffff81414720 T drm_atomic_helper_disable_all +ffffffff814148d0 T drm_atomic_helper_shutdown +ffffffff81414950 T drm_atomic_helper_commit_duplicated_state +ffffffff81414a50 T drm_atomic_helper_resume +ffffffff81414ae0 T drm_atomic_helper_page_flip +ffffffff81414b70 T drm_atomic_helper_page_flip_target +ffffffff81414c30 T drm_atomic_helper_best_encoder +ffffffff81414c60 T __drm_atomic_helper_crtc_duplicate_state +ffffffff81414d10 T drm_atomic_helper_crtc_duplicate_state +ffffffff81414d60 T __drm_atomic_helper_crtc_destroy_state +ffffffff81414e10 T drm_atomic_helper_crtc_reset +ffffffff81414e60 T drm_atomic_helper_crtc_destroy_state +ffffffff81414e80 T __drm_atomic_helper_plane_duplicate_state +ffffffff81414f30 T drm_atomic_helper_plane_duplicate_state +ffffffff81414f80 T __drm_atomic_helper_plane_destroy_state +ffffffff81414fe0 T drm_atomic_helper_plane_reset +ffffffff81415030 T drm_atomic_helper_plane_destroy_state +ffffffff81415050 T __drm_atomic_helper_connector_reset +ffffffff81415060 T __drm_atomic_helper_connector_duplicate_state +ffffffff814150f0 T drm_atomic_helper_connector_duplicate_state +ffffffff81415140 T drm_atomic_helper_duplicate_state +ffffffff81415270 T drm_atomic_helper_suspend +ffffffff81415310 T __drm_atomic_helper_connector_destroy_state +ffffffff81415350 T drm_atomic_helper_connector_reset +ffffffff814153a0 T drm_atomic_helper_connector_destroy_state +ffffffff814153c0 T drm_atomic_helper_legacy_gamma_set +ffffffff81415510 T __drm_atomic_helper_private_obj_duplicate_state +ffffffff81415520 T drm_dp_dual_mode_read +ffffffff814155b0 T drm_dp_dual_mode_write +ffffffff81415660 T drm_dp_dual_mode_detect +ffffffff814157c0 T drm_dp_dual_mode_max_tmds_clock +ffffffff81415830 T drm_dp_dual_mode_get_tmds_output +ffffffff814158a0 T drm_dp_dual_mode_set_tmds_output +ffffffff81415920 T drm_dp_get_dual_mode_type_name +ffffffff81415940 T drm_lspcon_get_mode +ffffffff81415a20 T drm_lspcon_set_mode +ffffffff81415b30 t drm_simple_kms_crtc_enable +ffffffff81415b60 t drm_simple_kms_crtc_disable +ffffffff81415b80 t drm_simple_kms_plane_atomic_update +ffffffff81415bb0 t drm_simple_kms_plane_prepare_fb +ffffffff81415be0 t drm_simple_kms_plane_cleanup_fb +ffffffff81415c10 t drm_simple_kms_crtc_check +ffffffff81415c50 t drm_simple_kms_plane_atomic_check +ffffffff81415d20 T drm_simple_display_pipe_attach_bridge +ffffffff81415d30 T drm_simple_display_pipe_init +ffffffff81415e10 T drm_helper_move_panel_connectors_to_head +ffffffff81415ee0 T drm_helper_mode_fill_fb_struct +ffffffff81415f40 T drm_crtc_init +ffffffff81415fe0 T drm_mode_config_helper_suspend +ffffffff81416050 T drm_mode_config_helper_resume +ffffffff814160c0 T drm_scdc_read +ffffffff81416150 T drm_scdc_write +ffffffff81416200 T drm_scdc_get_scrambling_status +ffffffff81416250 T drm_scdc_set_scrambling +ffffffff81416300 T drm_scdc_set_high_tmds_clock_ratio +ffffffff814163c0 T drm_gem_fb_destroy +ffffffff81416400 T drm_gem_fb_create_handle +ffffffff81416420 t drm_gem_fb_alloc +ffffffff814164f0 T drm_gem_fb_get_obj +ffffffff81416510 T drm_gem_fb_create_with_funcs +ffffffff81416690 T drm_gem_fb_create +ffffffff814166a0 T drm_gem_fb_prepare_fb +ffffffff81416780 T drm_gem_fbdev_fb_create +ffffffff81416840 t panel_bridge_connector_get_modes +ffffffff81416870 t panel_bridge_pre_enable +ffffffff814168a0 t panel_bridge_enable +ffffffff814168d0 t panel_bridge_disable +ffffffff81416900 t panel_bridge_post_disable +ffffffff81416930 t panel_bridge_detach +ffffffff81416940 t panel_bridge_attach +ffffffff814169e0 t drm_panel_bridge_add.part.1 +ffffffff81416a40 t devm_drm_panel_bridge_release +ffffffff81416a80 T drm_panel_bridge_add +ffffffff81416aa0 T drm_panel_bridge_remove +ffffffff81416ad0 T devm_drm_panel_bridge_add +ffffffff81416b60 t drm_fb_helper_dirty_work +ffffffff81416bf0 t drm_setup_crtcs_fb +ffffffff81416ce0 t restore_fbdev_mode_atomic +ffffffff81416ed0 t drm_fb_helper_resume_worker +ffffffff81416ef0 t drm_pick_crtcs +ffffffff814171d0 t drm_fb_helper_dirty.isra.0 +ffffffff81417290 T drm_fb_helper_deferred_io +ffffffff81417310 t __drm_fb_helper_add_one_connector +ffffffff814173a0 t restore_fbdev_mode +ffffffff814174c0 t drm_fb_helper_is_bound.isra.12 +ffffffff81417560 t drm_fb_helper_dpms.isra.13 +ffffffff81417670 t drm_fb_helper_modeset_release.isra.14 +ffffffff814176e0 t drm_fb_helper_crtc_free +ffffffff81417770 t drm_fb_helper_single_add_all_connectors.part.17 +ffffffff81417830 t drm_fb_helper_init.part.18 +ffffffff81417a00 t drm_fb_helper_fini.part.19 +ffffffff81417ac0 T drm_fb_helper_add_one_connector +ffffffff81417b10 T drm_fb_helper_single_add_all_connectors +ffffffff81417b30 T drm_fb_helper_remove_one_connector +ffffffff81417c00 T drm_fb_helper_debug_enter +ffffffff81417ca0 T drm_fb_helper_debug_leave +ffffffff81417db0 T drm_fb_helper_blank +ffffffff81417e20 T drm_fb_helper_prepare +ffffffff81417ee0 T drm_fb_helper_init +ffffffff81417f10 T drm_fb_helper_alloc_fbi +ffffffff81417fb0 T drm_fb_helper_unregister_fbi +ffffffff81417fd0 T drm_fb_helper_fini +ffffffff81418000 T drm_fb_helper_unlink_fbi +ffffffff81418020 T drm_fb_helper_defio_init +ffffffff814180c0 T drm_fb_helper_sys_read +ffffffff814180d0 T drm_fb_helper_sys_write +ffffffff81418110 T drm_fb_helper_sys_fillrect +ffffffff81418140 T drm_fb_helper_sys_copyarea +ffffffff81418170 T drm_fb_helper_sys_imageblit +ffffffff814181a0 T drm_fb_helper_cfb_fillrect +ffffffff814181d0 T drm_fb_helper_cfb_copyarea +ffffffff81418200 T drm_fb_helper_cfb_imageblit +ffffffff81418230 T drm_fb_helper_set_suspend +ffffffff81418250 T drm_fb_helper_set_suspend_unlocked +ffffffff814182e0 T drm_fb_helper_setcmap +ffffffff81418920 T drm_fb_helper_ioctl +ffffffff814189b0 T drm_fb_helper_check_var +ffffffff81418b60 T drm_fb_helper_pan_display +ffffffff81418d00 T drm_fb_helper_fill_fix +ffffffff81418d60 T drm_fb_helper_fill_var +ffffffff81418ee0 T drm_has_preferred_mode +ffffffff81418f20 T drm_pick_cmdline_mode +ffffffff81419000 t drm_setup_crtcs +ffffffff81419af0 t __drm_fb_helper_initial_config_and_unlock +ffffffff81419ed0 t drm_fb_helper_hotplug_event.part.22 +ffffffff81419f80 T drm_fb_helper_restore_fbdev_mode_unlocked +ffffffff8141a010 T drm_fb_helper_set_par +ffffffff8141a060 T drm_fb_helper_initial_config +ffffffff8141a090 T drm_fb_helper_hotplug_event +ffffffff8141a0b0 T drm_fb_helper_fbdev_setup +ffffffff8141a2c0 T drm_fb_helper_fbdev_teardown +ffffffff8141a360 T drm_fb_helper_lastclose +ffffffff8141a370 T drm_fb_helper_output_poll_changed +ffffffff8141a390 T drm_getmagic +ffffffff8141a420 T drm_authmagic +ffffffff8141a4b0 T drm_master_create +ffffffff8141a5a0 T drm_is_current_master +ffffffff8141a5d0 T drm_master_get +ffffffff8141a5e0 T drm_master_put +ffffffff8141a690 t drm_set_master +ffffffff8141a6f0 t drm_new_set_master +ffffffff8141a7a0 T drm_setmaster_ioctl +ffffffff8141a840 T drm_master_open +ffffffff8141a8a0 t drm_drop_master +ffffffff8141a8d0 T drm_dropmaster_ioctl +ffffffff8141a960 T drm_master_release +ffffffff8141aa80 t drm_find_matching_map +ffffffff8141aaf0 t copy_one_buf +ffffffff8141ab40 t map_one_buf +ffffffff8141abf0 t drm_cleanup_buf_error +ffffffff8141ac80 t drm_addmap_core +ffffffff8141b1f0 T drm_legacy_addmap +ffffffff8141b220 T drm_legacy_addmap_ioctl +ffffffff8141b2a0 T drm_legacy_getmap_ioctl +ffffffff8141b390 T drm_legacy_rmmap_locked +ffffffff8141b4f0 T drm_legacy_rmmap +ffffffff8141b530 T drm_legacy_master_rmmaps +ffffffff8141b5b0 T drm_legacy_rmmap_ioctl +ffffffff8141b670 T drm_legacy_addbufs_pci +ffffffff8141bd40 T drm_legacy_addbufs +ffffffff8141c2b0 T __drm_legacy_infobufs +ffffffff8141c400 T drm_legacy_infobufs +ffffffff8141c410 T drm_legacy_markbufs +ffffffff8141c4c0 T drm_legacy_freebufs +ffffffff8141c610 T __drm_legacy_mapbufs +ffffffff8141c7d0 T drm_legacy_mapbufs +ffffffff8141c7f0 T drm_legacy_dma_ioctl +ffffffff8141c820 T drm_legacy_getsarea +ffffffff8141c870 t drm_clflush_page +ffffffff8141c8f0 T drm_clflush_pages +ffffffff8141c940 T drm_clflush_sg +ffffffff8141c9c0 T drm_clflush_virt_range +ffffffff8141ca10 t drm_legacy_ctxbitmap_next +ffffffff8141ca50 T drm_legacy_ctxbitmap_free +ffffffff8141caa0 T drm_legacy_ctxbitmap_init +ffffffff8141cae0 T drm_legacy_ctxbitmap_cleanup +ffffffff8141cb20 T drm_legacy_ctxbitmap_flush +ffffffff8141cc00 T drm_legacy_getsareactx +ffffffff8141ccb0 T drm_legacy_setsareactx +ffffffff8141cd50 T drm_legacy_resctx +ffffffff8141cdb0 T drm_legacy_addctx +ffffffff8141ced0 T drm_legacy_getctx +ffffffff8141cef0 T drm_legacy_switchctx +ffffffff8141cf90 T drm_legacy_newctx +ffffffff8141d010 T drm_legacy_rmctx +ffffffff8141d130 T drm_legacy_dma_setup +ffffffff8141d1d0 T drm_legacy_dma_takedown +ffffffff8141d310 T drm_legacy_free_buffer +ffffffff8141d340 T drm_legacy_reclaim_buffers +ffffffff8141d3c0 T drm_open +ffffffff8141d800 T drm_lastclose +ffffffff8141d8e0 T drm_release +ffffffff8141dc40 T drm_read +ffffffff8141deb0 T drm_poll +ffffffff8141df00 T drm_event_reserve_init_locked +ffffffff8141df50 T drm_event_reserve_init +ffffffff8141dfd0 T drm_event_cancel_free +ffffffff8141e060 T drm_send_event_locked +ffffffff8141e140 T drm_send_event +ffffffff8141e180 T drm_gem_init +ffffffff8141e210 T drm_gem_destroy +ffffffff8141e240 T drm_gem_private_object_init +ffffffff8141e2b0 T drm_gem_object_init +ffffffff8141e2e0 T drm_gem_free_mmap_offset +ffffffff8141e300 T drm_gem_create_mmap_offset_size +ffffffff8141e320 T drm_gem_create_mmap_offset +ffffffff8141e340 T drm_gem_get_pages +ffffffff8141e470 T drm_gem_put_pages +ffffffff8141e500 T drm_gem_object_lookup +ffffffff8141e550 T drm_gem_open +ffffffff8141e570 T drm_gem_release +ffffffff8141e590 T drm_gem_object_release +ffffffff8141e5c0 T drm_gem_object_free +ffffffff8141e5f0 T drm_gem_object_put_unlocked +ffffffff8141e650 t drm_gem_object_handle_put_unlocked +ffffffff8141e6f0 t drm_gem_object_release_handle +ffffffff8141e770 T drm_gem_handle_delete +ffffffff8141e800 T drm_gem_dumb_destroy +ffffffff8141e810 T drm_gem_close_ioctl +ffffffff8141e830 T drm_gem_handle_create_tail +ffffffff8141e970 T drm_gem_handle_create +ffffffff8141e9a0 T drm_gem_dumb_map_offset +ffffffff8141ea10 T drm_gem_flink_ioctl +ffffffff8141ead0 T drm_gem_open_ioctl +ffffffff8141eb80 T drm_gem_object_put +ffffffff8141eba0 T drm_gem_vm_open +ffffffff8141ebc0 T drm_gem_vm_close +ffffffff8141ebd0 T drm_gem_mmap_obj +ffffffff8141ec50 T drm_gem_mmap +ffffffff8141eda0 T drm_gem_print_info +ffffffff8141ee80 t drm_getcap +ffffffff8141efd0 T drm_invalid_op +ffffffff8141efe0 T drm_getunique +ffffffff8141f050 T drm_getclient +ffffffff8141f0b0 T drm_noop +ffffffff8141f0d0 t drm_copy_field +ffffffff8141f120 t drm_getstats +ffffffff8141f150 t drm_setclientcap +ffffffff8141f1f0 T drm_version +ffffffff8141f280 t drm_setversion +ffffffff8141f3f0 T drm_ioctl_permit +ffffffff8141f490 T drm_ioctl_kernel +ffffffff8141f540 T drm_ioctl +ffffffff8141f880 T drm_ioctl_flags +ffffffff8141f8b0 T drm_irq_install +ffffffff8141f9c0 T drm_irq_uninstall +ffffffff8141fae0 T drm_legacy_irq_control +ffffffff8141fb90 t drm_lock_take +ffffffff8141fc70 t drm_legacy_lock_free +ffffffff8141fd70 T drm_legacy_lock +ffffffff81420040 T drm_legacy_unlock +ffffffff814200a0 T drm_legacy_idlelock_take +ffffffff81420100 T drm_legacy_idlelock_release +ffffffff81420180 T drm_legacy_lock_release +ffffffff81420200 T drm_legacy_ioremap +ffffffff81420240 T drm_legacy_ioremap_wc +ffffffff81420280 T drm_legacy_ioremapfree +ffffffff814202c0 t drm_fs_mount +ffffffff814202f0 t drm_minor_alloc +ffffffff81420420 t drm_minor_free +ffffffff81420490 t drm_minor_register +ffffffff81420540 t drm_minor_unregister +ffffffff814205c0 t drm_core_exit +ffffffff81420600 t remove_compat_control_link.part.1 +ffffffff81420650 T drm_dev_fini +ffffffff814206e0 T drm_dev_get +ffffffff81420700 T drm_dev_put +ffffffff81420740 T drm_minor_acquire +ffffffff814207d0 T drm_minor_release +ffffffff814207e0 t drm_stub_open +ffffffff81420890 T drm_dev_unref +ffffffff814208a0 T drm_dev_register +ffffffff81420a60 T drm_dev_unregister +ffffffff81420b40 T drm_put_dev +ffffffff81420b90 T drm_dev_unplug +ffffffff81420bd0 T drm_dev_set_unique +ffffffff81420c00 T drm_dev_init +ffffffff81420f40 T drm_dev_alloc +ffffffff81420fb0 t drm_sg_cleanup +ffffffff81421000 T drm_legacy_sg_cleanup +ffffffff81421040 T drm_legacy_sg_alloc +ffffffff81421240 T drm_legacy_sg_free +ffffffff814212b0 T drm_pci_alloc +ffffffff81421410 T __drm_legacy_pci_free +ffffffff814214e0 T drm_pci_free +ffffffff81421500 T drm_pci_set_busid +ffffffff81421570 T drm_irq_by_busid +ffffffff81421630 T drm_pci_agp_destroy +ffffffff81421670 T drm_get_pci_dev +ffffffff814217f0 T drm_legacy_pci_init +ffffffff814218c0 T drm_pcie_get_speed_cap_mask +ffffffff81421980 T drm_pcie_get_max_link_width +ffffffff814219e0 T drm_legacy_pci_exit +ffffffff81421a80 t drm_devnode +ffffffff81421aa0 t edid_show +ffffffff81421b20 t modes_show +ffffffff81421bb0 t enabled_show +ffffffff81421bf0 t dpms_show +ffffffff81421c30 t status_store +ffffffff81421db0 t status_show +ffffffff81421df0 t drm_sysfs_release +ffffffff81421e00 T drm_sysfs_init +ffffffff81421e80 T drm_sysfs_destroy +ffffffff81421ec0 T drm_sysfs_connector_remove +ffffffff81421f00 T drm_sysfs_hotplug_event +ffffffff81421f50 T drm_sysfs_connector_add +ffffffff81422000 T drm_sysfs_minor_alloc +ffffffff814220e0 T drm_class_device_register +ffffffff81422110 T drm_class_device_unregister +ffffffff81422120 T drm_ht_create +ffffffff81422190 T drm_ht_verbose_list +ffffffff81422210 T drm_ht_insert_item +ffffffff814222b0 T drm_ht_just_insert_please +ffffffff81422340 T drm_ht_find_item +ffffffff814223a0 T drm_ht_remove_key +ffffffff81422410 T drm_ht_remove_item +ffffffff81422440 T drm_ht_remove +ffffffff81422460 t drm_mm_interval_tree_augment_rotate +ffffffff814224b0 t drm_mm_interval_tree_add_node +ffffffff81422590 t rm_hole +ffffffff814225f0 t add_hole +ffffffff814226e0 T __drm_mm_interval_first +ffffffff81422750 T drm_mm_reserve_node +ffffffff814228d0 T drm_mm_insert_node_in_range +ffffffff81422d70 T drm_mm_remove_node +ffffffff814230b0 T drm_mm_replace_node +ffffffff81423160 T drm_mm_scan_init_with_range +ffffffff814231c0 T drm_mm_scan_add_block +ffffffff814232d0 T drm_mm_scan_remove_block +ffffffff81423320 T drm_mm_scan_color_evict +ffffffff814233d0 T drm_mm_init +ffffffff81423450 T drm_mm_takedown +ffffffff81423460 T drm_mm_print +ffffffff81423540 t drm_crtc_fence_enable_signaling +ffffffff81423550 t __drm_mode_set_config_internal +ffffffff81423660 t drm_crtc_fence_get_timeline_name +ffffffff81423680 t drm_crtc_fence_get_driver_name +ffffffff814236b0 T drm_crtc_from_index +ffffffff814236f0 T drm_crtc_force_disable +ffffffff81423720 T drm_crtc_force_disable_all +ffffffff814237b0 T drm_crtc_register_all +ffffffff81423800 T drm_crtc_unregister_all +ffffffff81423850 T drm_crtc_create_fence +ffffffff814238b0 T drm_crtc_init_with_planes +ffffffff81423b10 T drm_crtc_cleanup +ffffffff81423bd0 T drm_mode_getcrtc +ffffffff81423d30 T drm_mode_set_config_internal +ffffffff81423d40 T drm_crtc_check_viewport +ffffffff81423dc0 T drm_mode_setcrtc +ffffffff81424350 T drm_mode_crtc_set_obj_prop +ffffffff8142439f t fence_to_crtc.isra.2.part.3 +ffffffff814243b0 T drm_mode_legacy_fb_format +ffffffff81424420 T drm_get_format_name +ffffffff814244d0 T __drm_format_info +ffffffff81424510 T drm_format_info +ffffffff81424550 T drm_get_format_info +ffffffff814245b0 T drm_format_num_planes +ffffffff814245f0 T drm_format_plane_cpp +ffffffff81424640 T drm_format_horz_chroma_subsampling +ffffffff81424680 T drm_format_vert_chroma_subsampling +ffffffff814246c0 T drm_format_plane_width +ffffffff81424710 T drm_format_plane_height +ffffffff81424760 t drm_mode_compare +ffffffff814247a0 t drm_mode_set_crtcinfo.part.2 +ffffffff81424960 T drm_mode_debug_printmodeline +ffffffff814249c0 T drm_mode_create +ffffffff81424a10 T drm_mode_destroy +ffffffff81424a30 T drm_mode_probed_add +ffffffff81424a60 T drm_mode_set_name +ffffffff81424aa0 T drm_cvt_mode +ffffffff81424ec0 T drm_gtf_mode_complex +ffffffff81425100 T drm_gtf_mode +ffffffff81425120 T drm_mode_hsync +ffffffff81425150 T drm_mode_vrefresh +ffffffff814251c0 T drm_mode_get_hv_timing +ffffffff81425240 T drm_mode_set_crtcinfo +ffffffff81425260 T drm_mode_copy +ffffffff81425290 T drm_mode_duplicate +ffffffff814252d0 T drm_mode_equal_no_clocks_no_stereo +ffffffff81425330 T drm_mode_equal_no_clocks +ffffffff81425350 T drm_mode_equal +ffffffff814253d0 T drm_mode_validate_basic +ffffffff81425430 T drm_mode_validate_size +ffffffff81425460 T drm_mode_validate_ycbcr420 +ffffffff81425490 T drm_mode_prune_invalid +ffffffff81425580 T drm_mode_sort +ffffffff814255a0 T drm_mode_connector_list_update +ffffffff814256f0 T drm_mode_parse_command_line_for_connector +ffffffff81425ae0 T drm_mode_create_from_cmdline_mode +ffffffff81425ba0 T drm_mode_convert_to_umode +ffffffff81425c20 T drm_mode_convert_umode +ffffffff81425d10 T drm_mode_is_420_only +ffffffff81425d30 T drm_mode_is_420_also +ffffffff81425d50 T drm_mode_is_420 +ffffffff81425d80 t find_gtf2 +ffffffff81425da0 t hdmi_mode_alternate_clock +ffffffff81425e50 t monitor_name +ffffffff81425e60 t drm_do_probe_ddc_edid +ffffffff81425f70 t valid_inferred_mode +ffffffff81426020 t drm_display_mode_from_vic_index +ffffffff81426090 t drm_for_each_detailed_block.part.0 +ffffffff814261b0 t drm_gtf2_hbreak +ffffffff814261f0 t get_monitor_name +ffffffff81426260 t is_rb +ffffffff81426280 t drm_monitor_supports_rb.part.2 +ffffffff814262b0 t cea_db_is_hdmi_vsdb.part.8 +ffffffff814262d0 t drm_match_hdmi_mode.part.11 +ffffffff81426370 t cea_mode_alternate_timings +ffffffff814263c0 t do_cvt_mode +ffffffff81426550 t mode_in_range +ffffffff814266d0 t drm_mode_fixup_1366x768.part.23 +ffffffff814266f0 t do_inferred_modes +ffffffff814269d0 t drm_match_cea_mode.part.25 +ffffffff81426b30 t drm_match_cea_mode_clock_tolerance.constprop.28 +ffffffff81426ca0 t do_detailed_mode +ffffffff81427240 t validate_displayid.constprop.31 +ffffffff814272c0 T drm_edid_header_is_valid +ffffffff814272f0 T drm_edid_block_valid +ffffffff814274f0 t connector_bad_edid +ffffffff81427600 t drm_edid_is_valid.part.20 +ffffffff81427650 T drm_edid_is_valid +ffffffff81427660 T drm_do_get_edid +ffffffff81427970 T drm_probe_ddc +ffffffff81427990 T drm_get_edid +ffffffff81427d30 T drm_get_edid_switcheroo +ffffffff81427d40 T drm_edid_duplicate +ffffffff81427d60 T drm_mode_find_dmt +ffffffff81427e30 t drm_mode_std +ffffffff814282b0 t do_standard_modes +ffffffff81428310 t do_established_modes +ffffffff814283d0 T drm_mode_fixup_1366x768 +ffffffff814283f0 T drm_match_cea_mode +ffffffff81428400 T drm_get_cea_aspect_ratio +ffffffff81428420 T drm_edid_get_monitor_name +ffffffff81428470 T drm_edid_to_sad +ffffffff81428640 T drm_edid_to_speaker_allocation +ffffffff814287b0 T drm_av_sync_delay +ffffffff81428830 T drm_detect_hdmi_monitor +ffffffff81428910 T drm_detect_monitor_audio +ffffffff81428a60 T drm_rgb_quant_range_selectable +ffffffff81428b60 T drm_default_rgb_quant_range +ffffffff81428b80 T drm_reset_display_info +ffffffff81428bd0 T drm_add_display_info +ffffffff81429380 T drm_add_edid_modes +ffffffff8142ac40 T drm_add_modes_noedid +ffffffff8142acf0 T drm_set_preferred_mode +ffffffff8142ad30 T drm_hdmi_avi_infoframe_from_display_mode +ffffffff8142ae10 T drm_hdmi_avi_infoframe_quant_range +ffffffff8142ae90 T drm_hdmi_vendor_infoframe_from_display_mode +ffffffff8142af90 t drm_gem_one_name_info +ffffffff8142afc0 T drm_name_info +ffffffff8142b080 T drm_clients_info +ffffffff8142b1f0 T drm_gem_name_info +ffffffff8142b250 T drm_i2c_encoder_init +ffffffff8142b2f0 T drm_i2c_encoder_destroy +ffffffff8142b310 T drm_i2c_encoder_dpms +ffffffff8142b320 T drm_i2c_encoder_mode_fixup +ffffffff8142b340 T drm_i2c_encoder_prepare +ffffffff8142b360 T drm_i2c_encoder_commit +ffffffff8142b370 T drm_i2c_encoder_mode_set +ffffffff8142b380 T drm_i2c_encoder_detect +ffffffff8142b390 T drm_i2c_encoder_save +ffffffff8142b3a0 T drm_i2c_encoder_restore +ffffffff8142b3b0 T drm_global_init +ffffffff8142b440 T drm_global_release +ffffffff8142b470 T drm_global_item_ref +ffffffff8142b540 T drm_global_item_unref +ffffffff8142b5a0 t drm_gem_unmap_dma_buf +ffffffff8142b5b0 t drm_gem_dmabuf_vmap +ffffffff8142b5d0 t drm_gem_dmabuf_vunmap +ffffffff8142b5f0 t drm_gem_dmabuf_kmap_atomic +ffffffff8142b600 t drm_gem_dmabuf_kunmap_atomic +ffffffff8142b610 t drm_gem_dmabuf_mmap +ffffffff8142b640 T drm_gem_dmabuf_release +ffffffff8142b660 t drm_gem_map_dma_buf +ffffffff8142b760 t drm_gem_map_detach +ffffffff8142b810 t drm_gem_map_attach +ffffffff8142b870 t drm_prime_add_buf_handle +ffffffff8142b950 t drm_gem_dmabuf_kunmap +ffffffff8142b960 t drm_gem_dmabuf_kmap +ffffffff8142b970 T drm_prime_remove_buf_handle_locked +ffffffff8142b9f0 T drm_gem_dmabuf_export +ffffffff8142ba30 T drm_gem_prime_export +ffffffff8142bab0 T drm_gem_prime_handle_to_fd +ffffffff8142bc50 T drm_gem_prime_import_dev +ffffffff8142bd30 T drm_gem_prime_import +ffffffff8142bd40 T drm_gem_prime_fd_to_handle +ffffffff8142beb0 T drm_prime_handle_to_fd_ioctl +ffffffff8142bf00 T drm_prime_fd_to_handle_ioctl +ffffffff8142bf40 T drm_prime_pages_to_sg +ffffffff8142bfb0 T drm_prime_sg_to_page_addr_arrays +ffffffff8142c0a0 T drm_prime_gem_destroy +ffffffff8142c0d0 T drm_prime_init_file_private +ffffffff8142c100 T drm_prime_destroy_file_private +ffffffff8142c110 T drm_rect_intersect +ffffffff8142c160 T drm_rect_clip_scaled +ffffffff8142c2b0 T drm_rect_calc_hscale +ffffffff8142c300 T drm_rect_calc_vscale +ffffffff8142c350 T drm_rect_calc_hscale_relaxed +ffffffff8142c410 T drm_rect_calc_vscale_relaxed +ffffffff8142c4d0 T drm_rect_debug_print +ffffffff8142c580 T drm_rect_rotate +ffffffff8142c640 T drm_rect_rotate_inv +ffffffff8142c720 T drm_vma_offset_manager_init +ffffffff8142c730 T drm_vma_offset_manager_destroy +ffffffff8142c750 T drm_vma_offset_lookup_locked +ffffffff8142c7b0 T drm_vma_offset_add +ffffffff8142c810 T drm_vma_offset_remove +ffffffff8142c870 T drm_vma_node_allow +ffffffff8142c930 T drm_vma_node_revoke +ffffffff8142c9a0 T drm_vma_node_is_allowed +ffffffff8142c9f0 t flip_worker +ffffffff8142cac0 T drm_flip_work_allocate_task +ffffffff8142cb00 T drm_flip_work_queue_task +ffffffff8142cb40 T drm_flip_work_queue +ffffffff8142cbc0 T drm_flip_work_commit +ffffffff8142cc30 T drm_flip_work_init +ffffffff8142cc80 T drm_flip_work_cleanup +ffffffff8142cca0 T drm_warn_on_modeset_not_all_locked +ffffffff8142ccf0 T drm_modeset_acquire_init +ffffffff8142cd60 T drm_modeset_acquire_fini +ffffffff8142cd70 T drm_modeset_drop_locks +ffffffff8142cdb0 T drm_modeset_unlock_all +ffffffff8142cdf0 T drm_modeset_backoff +ffffffff8142ce80 T drm_modeset_lock_init +ffffffff8142ceb0 T drm_modeset_lock +ffffffff8142cf30 T drm_modeset_lock_single_interruptible +ffffffff8142cf40 T drm_modeset_unlock +ffffffff8142cf60 T drm_modeset_lock_all_ctx +ffffffff8142d010 T drm_modeset_lock_all +ffffffff8142d0c0 t drm_atomic_replace_property_blob_from_id +ffffffff8142d130 t drm_atomic_crtc_print_state +ffffffff8142d2d0 t drm_atomic_connector_print_state +ffffffff8142d340 t drm_atomic_plane_print_state +ffffffff8142d4d0 T __drm_crtc_commit_free +ffffffff8142d4e0 T drm_atomic_state_default_release +ffffffff8142d510 T drm_atomic_state_init +ffffffff8142d5d0 T drm_atomic_state_alloc +ffffffff8142d630 T drm_atomic_state_default_clear +ffffffff8142d810 T drm_atomic_state_clear +ffffffff8142d830 T __drm_atomic_state_free +ffffffff8142d890 T drm_atomic_get_crtc_state +ffffffff8142d980 T drm_atomic_set_mode_for_crtc +ffffffff8142dab0 T drm_atomic_set_mode_prop_for_crtc +ffffffff8142dbb0 T drm_atomic_crtc_set_property +ffffffff8142dd20 T drm_atomic_get_plane_state +ffffffff8142de20 T drm_atomic_private_obj_init +ffffffff8142de30 T drm_atomic_private_obj_fini +ffffffff8142de40 T drm_atomic_get_private_obj_state +ffffffff8142df70 T drm_atomic_get_connector_state +ffffffff8142e0e0 T drm_atomic_get_property +ffffffff8142e4e0 T drm_atomic_set_crtc_for_plane +ffffffff8142e5a0 T drm_atomic_set_fb_for_plane +ffffffff8142e610 T drm_atomic_set_fence_for_plane +ffffffff8142e640 T drm_atomic_set_crtc_for_connector +ffffffff8142e720 T drm_atomic_add_affected_connectors +ffffffff8142e820 T drm_atomic_add_affected_planes +ffffffff8142e8a0 T drm_atomic_check_only +ffffffff8142edc0 T drm_atomic_commit +ffffffff8142ee10 T drm_atomic_nonblocking_commit +ffffffff8142ee60 T drm_state_dump +ffffffff8142ef30 T drm_atomic_connector_commit_dpms +ffffffff8142f020 T drm_atomic_set_property +ffffffff8142f490 T drm_atomic_clean_old_fb +ffffffff8142f540 T drm_mode_atomic_ioctl +ffffffff8142fe90 T drm_bridge_add +ffffffff8142fed0 T drm_bridge_remove +ffffffff8142ff10 T drm_bridge_attach +ffffffff8142ffb0 T drm_bridge_detach +ffffffff8142ffe0 T drm_bridge_mode_fixup +ffffffff81430030 T drm_bridge_mode_valid +ffffffff81430070 T drm_bridge_disable +ffffffff814300a0 T drm_bridge_post_disable +ffffffff814300d0 T drm_bridge_mode_set +ffffffff81430110 T drm_bridge_pre_enable +ffffffff81430140 T drm_bridge_enable +ffffffff81430170 T drm_framebuffer_free +ffffffff814301a0 T drm_framebuffer_check_src_coords +ffffffff81430250 T drm_internal_framebuffer_create +ffffffff81430730 T drm_mode_addfb2 +ffffffff814307d0 T drm_mode_addfb +ffffffff81430870 T drm_mode_rmfb +ffffffff81430a00 T drm_mode_getfb +ffffffff81430b10 T drm_mode_dirtyfb_ioctl +ffffffff81430cb0 T drm_fb_release +ffffffff81430db0 T drm_framebuffer_init +ffffffff81430e90 T drm_framebuffer_lookup +ffffffff81430eb0 T drm_framebuffer_unregister_private +ffffffff81430ed0 T drm_framebuffer_cleanup +ffffffff81430f30 T drm_framebuffer_remove +ffffffff814312c0 t drm_mode_rmfb_work_fn +ffffffff81431310 T drm_framebuffer_plane_width +ffffffff81431340 T drm_framebuffer_plane_height +ffffffff81431370 T drm_framebuffer_print_info +ffffffff81431570 t drm_connector_free +ffffffff814315a0 t __drm_connector_put_safe +ffffffff814315f0 t drm_connector_register.part.4 +ffffffff81431680 T drm_connector_ida_init +ffffffff814316b0 T drm_connector_ida_destroy +ffffffff814316e0 T drm_connector_free_work_fn +ffffffff81431760 T drm_connector_init +ffffffff81431ab0 T drm_mode_connector_attach_encoder +ffffffff81431b10 T drm_connector_register +ffffffff81431b30 T drm_connector_unregister +ffffffff81431b80 T drm_get_connector_status_name +ffffffff81431bb0 T drm_get_connector_force_name +ffffffff81431bd0 T drm_connector_list_iter_begin +ffffffff81431be0 T drm_connector_list_iter_next +ffffffff81431cb0 T drm_connector_list_iter_end +ffffffff81431d00 T drm_connector_unregister_all +ffffffff81431d40 T drm_connector_register_all +ffffffff81431db0 T drm_get_subpixel_order_name +ffffffff81431dc0 T drm_get_dpms_name +ffffffff81431e00 T drm_display_info_set_bus_formats +ffffffff81431e70 T drm_get_dvi_i_select_name +ffffffff81431ea0 T drm_get_dvi_i_subconnector_name +ffffffff81431ed0 T drm_get_tv_select_name +ffffffff81431f20 T drm_get_tv_subconnector_name +ffffffff81431f70 T drm_connector_create_standard_properties +ffffffff81432060 T drm_mode_create_dvi_i_properties +ffffffff814320c0 T drm_mode_create_tv_properties +ffffffff81432330 T drm_mode_create_scaling_mode_property +ffffffff81432370 T drm_connector_attach_scaling_mode_property +ffffffff81432450 T drm_mode_create_aspect_ratio_property +ffffffff814324a0 T drm_mode_create_suggested_offset_properties +ffffffff81432520 T drm_mode_connector_set_path_property +ffffffff81432560 T drm_mode_connector_set_tile_property +ffffffff81432680 T drm_mode_connector_update_edid_property +ffffffff81432710 T drm_mode_connector_set_link_status_property +ffffffff81432750 T drm_connector_init_panel_orientation_property +ffffffff814327e0 T drm_mode_connector_set_obj_prop +ffffffff81432850 T drm_mode_connector_property_set_ioctl +ffffffff81432880 T drm_mode_getconnector +ffffffff81432b70 T drm_mode_put_tile_group +ffffffff81432bc0 T drm_connector_cleanup +ffffffff81432dc0 T drm_mode_get_tile_group +ffffffff81432e80 T drm_mode_create_tile_group +ffffffff81432f20 t drm_atomic_state_zpos_cmp +ffffffff81432f40 T drm_plane_create_rotation_property +ffffffff81432fb0 T drm_rotation_simplify +ffffffff81432ff0 T drm_plane_create_zpos_property +ffffffff81433060 T drm_plane_create_zpos_immutable_property +ffffffff814330d0 T drm_atomic_normalize_zpos +ffffffff81433390 T drm_encoder_register_all +ffffffff814333e0 T drm_encoder_unregister_all +ffffffff81433420 T drm_encoder_init +ffffffff81433550 T drm_encoder_cleanup +ffffffff814335f0 T drm_mode_getencoder +ffffffff81433750 t __drm_object_property_get_value +ffffffff814337c0 t drm_mode_object_put.part.0 +ffffffff81433800 T __drm_mode_object_add +ffffffff81433890 T drm_mode_object_add +ffffffff814338a0 T drm_mode_object_register +ffffffff814338e0 T drm_mode_object_unregister +ffffffff81433930 T drm_mode_object_lease_required +ffffffff81433960 T __drm_mode_object_find +ffffffff81433a50 T drm_mode_object_find +ffffffff81433a60 T drm_mode_object_put +ffffffff81433a70 T drm_mode_object_get +ffffffff81433ab0 T drm_object_attach_property +ffffffff81433ae0 T drm_object_property_set_value +ffffffff81433b30 T drm_object_property_get_value +ffffffff81433b40 T drm_mode_object_get_properties +ffffffff81433c10 T drm_mode_obj_get_properties_ioctl +ffffffff81433cc0 T drm_mode_obj_find_prop_id +ffffffff81433d00 T drm_mode_obj_set_property_ioctl +ffffffff81433f60 t drm_property_free_blob +ffffffff81433fd0 t drm_property_create_blob.part.1 +ffffffff814340a0 T drm_property_create +ffffffff814341b0 T drm_property_create_range +ffffffff814341e0 T drm_property_create_signed_range +ffffffff81434210 T drm_property_create_object +ffffffff81434240 T drm_property_create_bool +ffffffff81434270 T drm_property_add_enum +ffffffff81434370 T drm_property_destroy +ffffffff81434430 T drm_property_create_enum +ffffffff814344a0 T drm_property_create_bitmask +ffffffff81434550 T drm_mode_getproperty_ioctl +ffffffff81434700 T drm_property_create_blob +ffffffff81434720 T drm_property_blob_put +ffffffff81434730 T drm_property_destroy_user_blobs +ffffffff81434790 T drm_property_blob_get +ffffffff814347a0 T drm_property_lookup_blob +ffffffff814347b0 T drm_property_replace_global_blob +ffffffff81434870 T drm_property_replace_blob +ffffffff814348b0 T drm_mode_getblob_ioctl +ffffffff81434930 T drm_mode_createblob_ioctl +ffffffff81434a10 T drm_mode_destroyblob_ioctl +ffffffff81434ae0 T drm_property_change_valid_get +ffffffff81434c40 T drm_property_change_valid_put +ffffffff81434c70 t __setplane_internal +ffffffff81434ec0 t drm_mode_cursor_universal +ffffffff81435070 t drm_mode_cursor_common +ffffffff81435240 T drm_universal_plane_init +ffffffff814357f0 T drm_plane_register_all +ffffffff81435840 T drm_plane_unregister_all +ffffffff81435890 T drm_plane_init +ffffffff814358b0 T drm_plane_cleanup +ffffffff81435990 T drm_plane_from_index +ffffffff814359d0 T drm_plane_force_disable +ffffffff81435a60 T drm_mode_plane_set_obj_prop +ffffffff81435ab0 T drm_mode_getplane_res +ffffffff81435b90 T drm_mode_getplane +ffffffff81435d00 T drm_plane_check_pixel_format +ffffffff81435d40 T drm_mode_setplane +ffffffff81435f50 T drm_mode_cursor_ioctl +ffffffff81435f90 T drm_mode_cursor2_ioctl +ffffffff81435fa0 T drm_mode_page_flip_ioctl +ffffffff81436490 T drm_color_lut_extract +ffffffff814364c0 T drm_crtc_enable_color_mgmt +ffffffff81436560 T drm_mode_crtc_set_gamma_size +ffffffff81436600 T drm_mode_gamma_set_ioctl +ffffffff81436790 T drm_mode_gamma_get_ioctl +ffffffff81436870 T __drm_printfn_seq_file +ffffffff81436890 T __drm_printfn_info +ffffffff814368b0 T __drm_printfn_debug +ffffffff814368d0 T drm_printf +ffffffff81436930 T drm_dev_printk +ffffffff814369b0 T drm_printk +ffffffff81436a40 T drm_mode_create_dumb_ioctl +ffffffff81436ad0 T drm_mode_mmap_dumb_ioctl +ffffffff81436b10 T drm_mode_destroy_dumb_ioctl +ffffffff81436b50 T drm_modeset_register_all +ffffffff81436bd0 T drm_modeset_unregister_all +ffffffff81436c00 T drm_mode_getresources +ffffffff81436e80 T drm_mode_config_reset +ffffffff81436f80 T drm_mode_config_init +ffffffff814374f0 T drm_mode_config_cleanup +ffffffff81437780 t drm_get_last_vbltimestamp +ffffffff814377e0 t drm_wait_vblank_reply +ffffffff81437860 t send_vblank_event +ffffffff814378e0 t __get_vblank_counter +ffffffff81437940 t store_vblank +ffffffff814379a0 t drm_update_vblank_count +ffffffff81437bd0 t drm_vblank_enable +ffffffff81437cd0 t drm_vblank_get +ffffffff81437d70 t drm_reset_vblank_timestamp +ffffffff81437e10 T drm_crtc_accurate_vblank_count +ffffffff81437e80 T drm_vblank_disable_and_save +ffffffff81437f50 t vblank_disable_fn +ffffffff81437fd0 t drm_vblank_put +ffffffff81438040 T drm_vblank_cleanup +ffffffff814380a0 T drm_vblank_init +ffffffff814381e0 T drm_crtc_vblank_waitqueue +ffffffff81438210 T drm_calc_timestamping_constants +ffffffff81438360 T drm_calc_vbltimestamp_from_scanoutpos +ffffffff81438640 T drm_crtc_vblank_count +ffffffff81438670 T drm_crtc_vblank_count_and_time +ffffffff814386c0 T drm_crtc_arm_vblank_event +ffffffff81438710 T drm_crtc_send_vblank_event +ffffffff81438790 T drm_crtc_vblank_get +ffffffff814387a0 T drm_crtc_vblank_put +ffffffff814387b0 T drm_wait_one_vblank +ffffffff814388a0 T drm_crtc_wait_one_vblank +ffffffff814388b0 T drm_crtc_vblank_off +ffffffff81438ac0 T drm_crtc_vblank_reset +ffffffff81438b20 T drm_crtc_vblank_on +ffffffff81438bf0 T drm_legacy_modeset_ctl_ioctl +ffffffff81438cf0 T drm_wait_vblank_ioctl +ffffffff81439320 T drm_handle_vblank +ffffffff81439590 T drm_crtc_handle_vblank +ffffffff814395a0 T drm_crtc_get_sequence_ioctl +ffffffff81439750 T drm_crtc_queue_sequence_ioctl +ffffffff81439a40 t drm_syncobj_null_fence_get_name +ffffffff81439a50 t drm_syncobj_null_fence_enable_signaling +ffffffff81439aa0 t syncobj_wait_fence_func +ffffffff81439ab0 t syncobj_wait_syncobj_func +ffffffff81439ad0 T drm_syncobj_find +ffffffff81439b20 T drm_syncobj_add_callback +ffffffff81439b70 T drm_syncobj_remove_callback +ffffffff81439ba0 T drm_syncobj_replace_fence +ffffffff81439c60 t drm_syncobj_assign_null_handle +ffffffff81439cf0 T drm_syncobj_find_fence +ffffffff81439e00 T drm_syncobj_free +ffffffff81439e20 t drm_syncobj_file_release +ffffffff81439e40 t drm_syncobj_release_handle +ffffffff81439e60 t drm_syncobj_array_free +ffffffff81439eb0 t drm_syncobj_array_find +ffffffff81439fe0 T drm_syncobj_create +ffffffff8143a090 T drm_syncobj_get_handle +ffffffff8143a130 T drm_syncobj_get_fd +ffffffff8143a1b0 T drm_syncobj_open +ffffffff8143a1d0 T drm_syncobj_release +ffffffff8143a1f0 T drm_syncobj_create_ioctl +ffffffff8143a280 T drm_syncobj_destroy_ioctl +ffffffff8143a310 T drm_syncobj_handle_to_fd_ioctl +ffffffff8143a450 T drm_syncobj_fd_to_handle_ioctl +ffffffff8143a600 T drm_syncobj_wait_ioctl +ffffffff8143acc0 T drm_syncobj_reset_ioctl +ffffffff8143ad40 T drm_syncobj_signal_ioctl +ffffffff8143add0 t _drm_lease_revoke +ffffffff8143aed0 T drm_lease_owner +ffffffff8143aef0 T _drm_lease_held +ffffffff8143af30 T drm_lease_held +ffffffff8143afa0 T drm_lease_filter_crtcs +ffffffff8143b090 T drm_lease_destroy +ffffffff8143b1a0 T drm_lease_revoke +ffffffff8143b1d0 T drm_mode_create_lease_ioctl +ffffffff8143bad0 T drm_mode_list_lessees_ioctl +ffffffff8143bc50 T drm_mode_get_lease_ioctl +ffffffff8143bdb0 T drm_mode_revoke_lease_ioctl +ffffffff8143be60 t drm_vm_fault +ffffffff8143be70 t drm_vm_sg_fault +ffffffff8143bef0 t drm_vm_dma_fault +ffffffff8143bfa0 t drm_vm_close +ffffffff8143c060 t drm_vm_shm_fault +ffffffff8143c0e0 t drm_vm_shm_close +ffffffff8143c290 t drm_vm_open_locked +ffffffff8143c310 t drm_vm_open +ffffffff8143c350 T drm_legacy_mmap +ffffffff8143c700 T drm_legacy_vma_flush +ffffffff8143c770 T drm_ati_pcigart_cleanup +ffffffff8143c880 T drm_ati_pcigart_init +ffffffff8143cc40 T drm_panel_init +ffffffff8143cc50 T drm_panel_add +ffffffff8143cca0 T drm_panel_remove +ffffffff8143cce0 T drm_panel_attach +ffffffff8143cd00 T drm_panel_detach +ffffffff8143cd20 T drm_get_panel_orientation_quirk +ffffffff8143cdf0 t ttm_mem_global_free_zone +ffffffff8143ce50 t ttm_mem_global_kobj_release +ffffffff8143ce60 t ttm_mem_zone_kobj_release +ffffffff8143ce90 t ttm_shrink +ffffffff8143cf70 t ttm_shrink_work +ffffffff8143cfb0 t ttm_mem_zone_show +ffffffff8143d060 t ttm_check_swapping +ffffffff8143d0d0 t ttm_mem_zone_store +ffffffff8143d190 t ttm_mem_global_alloc_zone +ffffffff8143d2c0 T ttm_mem_global_release +ffffffff8143d340 T ttm_mem_global_init +ffffffff8143d600 T ttm_mem_global_free +ffffffff8143d610 T ttm_mem_global_alloc +ffffffff8143d620 T ttm_mem_global_alloc_page +ffffffff8143d650 T ttm_mem_global_free_page +ffffffff8143d680 T ttm_round_pot +ffffffff8143d6c0 T ttm_get_kernel_zone_memory_size +ffffffff8143d6d0 t ttm_tt_unpopulate.part.2 +ffffffff8143d720 T ttm_tt_set_placement_caching +ffffffff8143d8e0 T ttm_tt_fini +ffffffff8143d900 T ttm_dma_tt_fini +ffffffff8143d920 T ttm_tt_unbind +ffffffff8143d950 t ttm_tt_destroy.part.3 +ffffffff8143d9a0 T ttm_tt_destroy +ffffffff8143d9b0 T ttm_tt_init +ffffffff8143da30 T ttm_dma_tt_init +ffffffff8143dad0 T ttm_tt_bind +ffffffff8143db30 T ttm_tt_swapin +ffffffff8143dca0 T ttm_tt_swapout +ffffffff8143dee0 T ttm_tt_unpopulate +ffffffff8143def0 t ttm_bo_places_compat +ffffffff8143df60 t ttm_bo_cleanup_memtype_use +ffffffff8143dfd0 t ttm_bo_release_list +ffffffff8143e140 t ttm_bo_add_ttm +ffffffff8143e200 t ttm_bo_global_show +ffffffff8143e220 t ttm_bo_global_kobj_release +ffffffff8143e240 t ttm_bo_select_caching.isra.2 +ffffffff8143e290 t ttm_bo_add_move_fence.isra.5 +ffffffff8143e330 T ttm_bo_add_to_lru +ffffffff8143e410 T ttm_bo_del_from_lru +ffffffff8143e4a0 t ttm_bo_cleanup_refs +ffffffff8143e680 t ttm_bo_delayed_delete +ffffffff8143e840 t ttm_bo_delayed_workqueue +ffffffff8143e880 T ttm_bo_del_sub_from_lru +ffffffff8143e8b0 T ttm_bo_move_to_lru_tail +ffffffff8143e8c0 T ttm_bo_unref +ffffffff8143eb40 T ttm_bo_lock_delayed_workqueue +ffffffff8143eb50 T ttm_bo_unlock_delayed_workqueue +ffffffff8143eb80 T ttm_bo_eviction_valuable +ffffffff8143ebb0 T ttm_bo_mem_put +ffffffff8143ebe0 T ttm_bo_mem_compat +ffffffff8143ec30 T ttm_bo_acc_size +ffffffff8143ec70 T ttm_bo_dma_acc_size +ffffffff8143ecb0 T ttm_bo_init_mm +ffffffff8143ee10 T ttm_bo_global_release +ffffffff8143ee30 T ttm_bo_global_init +ffffffff8143ef40 T ttm_bo_device_init +ffffffff8143f070 T ttm_mem_reg_is_pci +ffffffff8143f0b0 T ttm_bo_unmap_virtual_locked +ffffffff8143f100 t ttm_bo_handle_move_mem +ffffffff8143f6b0 t ttm_bo_evict +ffffffff8143f990 t ttm_mem_evict_first +ffffffff8143fbc0 T ttm_bo_mem_space +ffffffff81440030 t ttm_bo_force_list_clean +ffffffff81440170 T ttm_bo_clean_mm +ffffffff81440250 T ttm_bo_device_release +ffffffff81440370 T ttm_bo_evict_mm +ffffffff814403b0 T ttm_bo_validate +ffffffff814404c0 T ttm_bo_init_reserved +ffffffff814408f0 T ttm_bo_init +ffffffff814409a0 T ttm_bo_create +ffffffff81440a40 T ttm_bo_unmap_virtual +ffffffff81440a80 T ttm_bo_wait +ffffffff81440ae0 T ttm_bo_synccpu_write_grab +ffffffff81440b90 T ttm_bo_synccpu_write_release +ffffffff81440ba0 T ttm_bo_swapout +ffffffff81440e20 T ttm_bo_swapout_all +ffffffff81440e60 T ttm_bo_wait_unreserved +ffffffff81440ec9 t ttm_bo_ref_bug.constprop.11 +ffffffff81440ed0 t ttm_transfered_destroy +ffffffff81440ee0 t ttm_buffer_object_transfer +ffffffff81441070 t ttm_mem_io_lock.part.3 +ffffffff81441090 T ttm_bo_free_old_node +ffffffff814410a0 T ttm_bo_move_ttm +ffffffff814411c0 T ttm_mem_io_lock +ffffffff814411e0 T ttm_mem_io_unlock +ffffffff81441200 T ttm_mem_io_reserve +ffffffff814412c0 T ttm_mem_io_free +ffffffff81441300 t ttm_mem_reg_ioremap +ffffffff81441410 t ttm_mem_reg_iounmap +ffffffff814414a0 T ttm_mem_io_reserve_vm +ffffffff81441520 T ttm_mem_io_free_vm +ffffffff81441570 T ttm_io_prot +ffffffff814415b0 T ttm_bo_move_memcpy +ffffffff81441b90 T ttm_bo_kmap +ffffffff81441dc0 T ttm_bo_kunmap +ffffffff81441e70 T ttm_bo_move_accel_cleanup +ffffffff81442070 T ttm_bo_pipeline_move +ffffffff81442370 t ttm_bo_vm_open +ffffffff81442390 t ttm_bo_vm_close +ffffffff814423c0 t ttm_bo_vm_access +ffffffff814426a0 t ttm_bo_vm_fault +ffffffff81442c20 T ttm_bo_mmap +ffffffff81442d80 T ttm_fbdev_mmap +ffffffff81442dc0 t ttm_drm_class_device_release +ffffffff81442de0 T ttm_get_kobj +ffffffff81442df0 t ttm_prime_refcount_release +ffffffff81442e30 T ttm_base_object_unref +ffffffff81442ec0 t ttm_ref_object_release +ffffffff81442f70 t ttm_prime_dmabuf_release +ffffffff81442ff0 T ttm_base_object_lookup +ffffffff814430a0 T ttm_base_object_lookup_for_ref +ffffffff81443150 T ttm_ref_object_exists +ffffffff814431b0 T ttm_ref_object_add +ffffffff814433e0 T ttm_base_object_init +ffffffff814434a0 T ttm_ref_object_base_unref +ffffffff81443520 T ttm_object_file_release +ffffffff814435a0 T ttm_object_file_init +ffffffff81443650 T ttm_object_device_init +ffffffff81443760 T ttm_object_device_release +ffffffff81443780 T ttm_prime_fd_to_handle +ffffffff814437f0 T ttm_prime_handle_to_fd +ffffffff814439e0 T ttm_prime_object_init +ffffffff81443a80 t __ttm_vt_lock +ffffffff81443ad0 t __ttm_suspend_lock +ffffffff81443b20 t __ttm_vt_unlock +ffffffff81443b70 t __ttm_read_lock +ffffffff81443be0 t __ttm_read_trylock +ffffffff81443c60 t __ttm_write_lock +ffffffff81443cd0 t ttm_vt_lock_remove +ffffffff81443cf0 T ttm_lock_init +ffffffff81443d30 T ttm_read_unlock +ffffffff81443d70 T ttm_read_lock +ffffffff81443e40 T ttm_read_trylock +ffffffff81443f40 T ttm_write_unlock +ffffffff81443f80 T ttm_write_lock +ffffffff81444090 T ttm_vt_lock +ffffffff814441e0 T ttm_vt_unlock +ffffffff81444200 T ttm_suspend_unlock +ffffffff81444240 T ttm_suspend_lock +ffffffff814442a0 T ttm_eu_backoff_reservation +ffffffff81444300 T ttm_eu_reserve_buffers +ffffffff814445f0 T ttm_eu_fence_buffer_objects +ffffffff81444680 t ttm_pool_shrink_count +ffffffff814446b0 t ttm_pool_show +ffffffff81444710 t ttm_pool_kobj_release +ffffffff81444720 t ttm_pages_put +ffffffff814447c0 t ttm_page_pool_free +ffffffff81444930 t ttm_pool_shrink_scan +ffffffff81444a30 t ttm_put_pages +ffffffff81444df0 t ttm_pool_store +ffffffff81444ec0 t ttm_handle_caching_state_failure.isra.2 +ffffffff81444f20 t ttm_set_pages_caching +ffffffff81444f70 t ttm_alloc_new_pages.isra.4 +ffffffff81445110 t ttm_page_pool_get_pages +ffffffff81445460 T ttm_page_alloc_init +ffffffff81445720 T ttm_page_alloc_fini +ffffffff81445790 T ttm_pool_unpopulate +ffffffff814457f0 T ttm_pool_populate +ffffffff81445c20 T ttm_populate_and_map_pages +ffffffff81445e90 T ttm_unmap_and_unpopulate_pages +ffffffff81445f60 T ttm_page_alloc_debugfs +ffffffff81446010 t ttm_bo_man_debug +ffffffff81446050 t ttm_bo_man_put_node +ffffffff814460a0 t ttm_bo_man_get_node +ffffffff81446170 t ttm_bo_man_takedown +ffffffff814461d0 t ttm_bo_man_init +ffffffff81446220 t ttm_dma_pool_match +ffffffff81446230 t ttm_pool_show +ffffffff81446280 t ttm_pool_kobj_release +ffffffff81446290 t ttm_dma_pool_init +ffffffff81446500 t __ttm_dma_free_page.isra.1 +ffffffff81446560 t ttm_dma_page_put +ffffffff81446610 t ttm_dma_handle_caching_state_failure +ffffffff814466e0 t ttm_dma_pages_put +ffffffff814467d0 t ttm_dma_page_pool_free +ffffffff81446990 t ttm_dma_pool_shrink_scan +ffffffff81446a60 t ttm_dma_free_pool.part.4 +ffffffff81446b60 t ttm_dma_pool_release +ffffffff81446b80 t ttm_set_pages_caching +ffffffff81446c00 t ttm_dma_pool_get_pages +ffffffff81447080 t ttm_pool_store +ffffffff81447150 t ttm_dma_pool_shrink_count +ffffffff814471a0 T ttm_dma_unpopulate +ffffffff81447510 T ttm_dma_populate +ffffffff81447860 T ttm_dma_page_alloc_init +ffffffff81447960 T ttm_dma_page_alloc_fini +ffffffff81447a00 T ttm_dma_page_alloc_debugfs +ffffffff81447ab0 T nvif_object_ioctl +ffffffff81447b00 T nvif_object_sclass_put +ffffffff81447b20 T nvif_object_sclass_get +ffffffff81447c40 T nvif_object_rd +ffffffff81447cc0 T nvif_object_wr +ffffffff81447d30 T nvif_object_mthd +ffffffff81447e20 T nvif_object_unmap_handle +ffffffff81447e60 T nvif_object_map_handle +ffffffff81447f00 T nvif_object_unmap +ffffffff81447f80 T nvif_object_map +ffffffff81448020 T nvif_object_fini +ffffffff81448080 T nvif_object_init +ffffffff81448190 T nvif_client_ioctl +ffffffff814481c0 T nvif_client_suspend +ffffffff814481e0 T nvif_client_resume +ffffffff81448200 T nvif_client_fini +ffffffff81448230 T nvif_client_init +ffffffff81448310 T nvif_device_time +ffffffff81448350 T nvif_device_fini +ffffffff81448360 T nvif_device_init +ffffffff81448390 T nvif_driver_init +ffffffff81448460 T nvif_mem_fini +ffffffff81448470 T nvif_mem_init_type +ffffffff814485a0 T nvif_mem_init +ffffffff81448640 T nvif_mmu_fini +ffffffff81448670 T nvif_mmu_init +ffffffff81448960 t nvif_notify_work +ffffffff814489e0 T nvif_notify_put +ffffffff81448a80 T nvif_notify_get +ffffffff81448b00 T nvif_notify +ffffffff81448c10 T nvif_notify_fini +ffffffff81448c90 T nvif_notify_init +ffffffff81448db0 T nvif_vmm_unmap +ffffffff81448de0 T nvif_vmm_map +ffffffff81448e80 T nvif_vmm_put +ffffffff81448ed0 T nvif_vmm_get +ffffffff81448f50 T nvif_vmm_fini +ffffffff81448f70 T nvif_vmm_init +ffffffff81449160 t nvkm_client_notify +ffffffff81449190 t nvkm_client_child_new +ffffffff814491a0 t nvkm_client_child_get +ffffffff814491f0 t nvkm_client_fini +ffffffff81449270 t nvkm_client_mthd +ffffffff81449330 T nvkm_client_notify_put +ffffffff81449360 T nvkm_client_notify_get +ffffffff81449390 T nvkm_client_notify_del +ffffffff814493e0 t nvkm_client_dtor +ffffffff81449400 T nvkm_client_notify_new +ffffffff814495a0 T nvkm_client_search +ffffffff814495b0 T nvkm_client_new +ffffffff814496b0 t nvkm_uclient_new +ffffffff81449760 t nvkm_engine_intr +ffffffff81449780 t nvkm_engine_fini +ffffffff814497a0 t nvkm_engine_preinit +ffffffff814497c0 t nvkm_engine_dtor +ffffffff814497e0 t nvkm_engine_init +ffffffff814498c0 T nvkm_engine_chsw_load +ffffffff814498e0 T nvkm_engine_unref +ffffffff81449930 T nvkm_engine_ref +ffffffff81449990 T nvkm_engine_tile +ffffffff814499c0 T nvkm_engine_ctor +ffffffff81449a20 T nvkm_engine_new_ +ffffffff81449a80 T nvkm_enum_find +ffffffff81449ab0 T nvkm_snprintbf +ffffffff81449b40 T nvkm_event_put +ffffffff81449bb0 T nvkm_event_get +ffffffff81449c30 T nvkm_event_send +ffffffff81449d00 T nvkm_event_fini +ffffffff81449d30 T nvkm_event_init +ffffffff81449da0 T nvkm_firmware_get +ffffffff81449e70 T nvkm_firmware_put +ffffffff81449e80 t nvkm_gpuobj_heap_map +ffffffff81449e90 t nvkm_gpuobj_heap_rd32 +ffffffff81449eb0 t nvkm_gpuobj_heap_wr32 +ffffffff81449ed0 t nvkm_gpuobj_heap_release +ffffffff81449ef0 t nvkm_gpuobj_map +ffffffff81449f10 t nvkm_gpuobj_rd32 +ffffffff81449f30 t nvkm_gpuobj_wr32 +ffffffff81449f50 t nvkm_gpuobj_release +ffffffff81449f70 t nvkm_gpuobj_heap_acquire +ffffffff81449fb0 t nvkm_gpuobj_acquire +ffffffff81449ff0 t nvkm_gpuobj_wr32_fast +ffffffff8144a000 t nvkm_gpuobj_rd32_fast +ffffffff8144a010 T nvkm_gpuobj_del +ffffffff8144a060 T nvkm_gpuobj_new +ffffffff8144a220 T nvkm_gpuobj_wrap +ffffffff8144a280 T nvkm_gpuobj_memcpy_to +ffffffff8144a2d0 T nvkm_gpuobj_memcpy_from +ffffffff8144a320 t nvkm_ioctl_sclass +ffffffff8144a460 t nvkm_ioctl_nop +ffffffff8144a4f0 t nvkm_ioctl_ntfy_put +ffffffff8144a5a0 t nvkm_ioctl_ntfy_get +ffffffff8144a650 t nvkm_ioctl_ntfy_del +ffffffff8144a700 t nvkm_ioctl_ntfy_new +ffffffff8144a7e0 t nvkm_ioctl_unmap +ffffffff8144a850 t nvkm_ioctl_map +ffffffff8144a900 t nvkm_ioctl_wr +ffffffff8144aa00 t nvkm_ioctl_rd +ffffffff8144ab30 t nvkm_ioctl_mthd +ffffffff8144abe0 t nvkm_ioctl_del +ffffffff8144ac70 t nvkm_ioctl_new +ffffffff8144aed0 T nvkm_ioctl +ffffffff8144b110 T nvkm_memory_tags_put +ffffffff8144b180 T nvkm_memory_tags_get +ffffffff8144b2a0 T nvkm_memory_ctor +ffffffff8144b2b0 T nvkm_memory_unref +ffffffff8144b300 T nvkm_memory_ref +ffffffff8144b320 T nvkm_memory_new +ffffffff8144b370 t region_head.isra.0.part.1 +ffffffff8144b3f0 t region_tail.isra.2.part.3 +ffffffff8144b470 T nvkm_mm_dump +ffffffff8144b510 T nvkm_mm_free +ffffffff8144b690 T nvkm_mm_head +ffffffff8144b810 T nvkm_mm_tail +ffffffff8144b990 T nvkm_mm_init +ffffffff8144bac0 T nvkm_mm_fini +ffffffff8144bb70 t nvkm_notify_work +ffffffff8144bbe0 T nvkm_notify_put +ffffffff8144bc60 T nvkm_notify_get +ffffffff8144bcc0 T nvkm_notify_send +ffffffff8144bdf0 T nvkm_notify_fini +ffffffff8144be60 T nvkm_notify_init +ffffffff8144bf80 T nvkm_object_search +ffffffff8144bfe0 T nvkm_object_remove +ffffffff8144c000 T nvkm_object_insert +ffffffff8144c070 T nvkm_object_mthd +ffffffff8144c090 T nvkm_object_ntfy +ffffffff8144c0b0 T nvkm_object_map +ffffffff8144c0d0 T nvkm_object_unmap +ffffffff8144c0f0 T nvkm_object_rd08 +ffffffff8144c110 T nvkm_object_rd16 +ffffffff8144c130 T nvkm_object_rd32 +ffffffff8144c150 T nvkm_object_wr08 +ffffffff8144c170 T nvkm_object_wr16 +ffffffff8144c190 T nvkm_object_wr32 +ffffffff8144c1b0 T nvkm_object_bind +ffffffff8144c1d0 T nvkm_object_init +ffffffff8144c350 T nvkm_object_fini +ffffffff8144c550 T nvkm_object_del +ffffffff8144c5d0 T nvkm_object_dtor +ffffffff8144c700 T nvkm_object_ctor +ffffffff8144c770 T nvkm_object_new_ +ffffffff8144c7c0 T nvkm_object_new +ffffffff8144c7f0 t nvkm_oproxy_sclass +ffffffff8144c820 t nvkm_oproxy_fini +ffffffff8144c8a0 t nvkm_oproxy_init +ffffffff8144c900 t nvkm_oproxy_bind +ffffffff8144c910 t nvkm_oproxy_wr32 +ffffffff8144c920 t nvkm_oproxy_wr16 +ffffffff8144c930 t nvkm_oproxy_wr08 +ffffffff8144c940 t nvkm_oproxy_rd32 +ffffffff8144c950 t nvkm_oproxy_rd16 +ffffffff8144c960 t nvkm_oproxy_rd08 +ffffffff8144c970 t nvkm_oproxy_unmap +ffffffff8144c980 t nvkm_oproxy_map +ffffffff8144c990 t nvkm_oproxy_ntfy +ffffffff8144c9a0 t nvkm_oproxy_mthd +ffffffff8144c9b0 t nvkm_oproxy_dtor +ffffffff8144ca00 T nvkm_oproxy_ctor +ffffffff8144ca20 T nvkm_oproxy_new_ +ffffffff8144ca80 T nvkm_stropt +ffffffff8144cb40 T nvkm_boolopt +ffffffff8144cc90 T nvkm_longopt +ffffffff8144ccf0 T nvkm_dbgopt +ffffffff8144cef0 t nvkm_ramht_update +ffffffff8144d030 T nvkm_ramht_search +ffffffff8144d0b0 T nvkm_ramht_remove +ffffffff8144d0d0 T nvkm_ramht_insert +ffffffff8144d190 T nvkm_ramht_del +ffffffff8144d1c0 T nvkm_ramht_new +ffffffff8144d290 T nvkm_subdev_intr +ffffffff8144d2b0 T nvkm_subdev_fini +ffffffff8144d360 T nvkm_subdev_preinit +ffffffff8144d3d0 T nvkm_subdev_init +ffffffff8144d4b0 T nvkm_subdev_del +ffffffff8144d500 T nvkm_subdev_ctor +ffffffff8144d550 T nvkm_falcon_load_imem +ffffffff8144d5b0 T nvkm_falcon_load_dmem +ffffffff8144d610 T nvkm_falcon_read_dmem +ffffffff8144d670 T nvkm_falcon_bind_context +ffffffff8144d6b0 T nvkm_falcon_set_start_addr +ffffffff8144d6c0 T nvkm_falcon_start +ffffffff8144d6d0 T nvkm_falcon_enable +ffffffff8144d730 T nvkm_falcon_disable +ffffffff8144d780 T nvkm_falcon_reset +ffffffff8144d7a0 T nvkm_falcon_wait_for_halt +ffffffff8144d7b0 T nvkm_falcon_clear_interrupt +ffffffff8144d7c0 T nvkm_falcon_put +ffffffff8144d810 T nvkm_falcon_get +ffffffff8144d890 T nvkm_falcon_ctor +ffffffff8144d9d0 T nvkm_falcon_del +ffffffff8144d9f0 t nvkm_falcon_v1_load_imem +ffffffff8144dba0 t nvkm_falcon_v1_load_dmem +ffffffff8144dd40 t nvkm_falcon_v1_set_start_addr +ffffffff8144dd60 t nvkm_falcon_v1_read_dmem +ffffffff8144df10 t nvkm_falcon_v1_clear_interrupt +ffffffff8144dfc0 t nvkm_falcon_v1_wait_for_halt +ffffffff8144e050 t nvkm_falcon_v1_bind_context +ffffffff8144e270 t nvkm_falcon_v1_start +ffffffff8144e2d0 t falcon_v1_wait_idle.isra.1 +ffffffff8144e350 t nvkm_falcon_v1_disable +ffffffff8144e380 t nvkm_falcon_v1_enable +ffffffff8144e490 T nvkm_falcon_v1_new +ffffffff8144e4f0 t msgqueue_seq_release +ffffffff8144e520 t msg_queue_pop.isra.5 +ffffffff8144e620 T nvkm_msgqueue_post +ffffffff8144ea00 T nvkm_msgqueue_process_msgs +ffffffff8144ee20 T nvkm_msgqueue_write_cmdline +ffffffff8144ee40 T nvkm_msgqueue_acr_boot_falcons +ffffffff8144eed0 T nvkm_msgqueue_new +ffffffff8144ef70 T nvkm_msgqueue_del +ffffffff8144efa0 T nvkm_msgqueue_recv +ffffffff8144eff0 T nvkm_msgqueue_reinit +ffffffff8144f010 T nvkm_msgqueue_ctor +ffffffff8144f070 t init_gen_cmdline +ffffffff8144f080 t msgqueue_0137c63d_process_msgs +ffffffff8144f090 t msgqueue_0137c63d_cmd_queue +ffffffff8144f0f0 t acr_boot_falcon_callback +ffffffff8144f160 t msgqueue_0137c63d_dtor +ffffffff8144f170 t acr_boot_falcon +ffffffff8144f1f0 t acr_boot_multiple_falcons +ffffffff8144f290 t acr_init_wpr_callback +ffffffff8144f2d0 t acr_boot_multiple_falcons_callback +ffffffff8144f3a0 t init_callback +ffffffff8144f570 T msgqueue_0137c63d_new +ffffffff8144f5b0 T msgqueue_0137bca5_new +ffffffff8144f5f0 t msgqueue_0148cdec_cmd_queue +ffffffff8144f600 t init_gen_cmdline +ffffffff8144f610 t acr_boot_falcon +ffffffff8144f690 t acr_boot_falcon_callback +ffffffff8144f760 t msgqueue_0148cdec_process_msgs +ffffffff8144f770 t msgqueue_0148cdec_dtor +ffffffff8144f780 t init_callback +ffffffff8144f920 T msgqueue_0148cdec_new +ffffffff8144f960 t nvkm_bar_fini +ffffffff8144f980 t nvkm_bar_init +ffffffff8144f9d0 t nvkm_bar_oneinit +ffffffff8144f9f0 t nvkm_bar_dtor +ffffffff8144fa40 T nvkm_bar_flush +ffffffff8144fa60 T nvkm_bar_bar1_vmm +ffffffff8144fa80 T nvkm_bar_bar2_vmm +ffffffff8144fab0 T nvkm_bar_bar2_fini +ffffffff8144fae0 T nvkm_bar_bar2_init +ffffffff8144fb30 T nvkm_bar_ctor +ffffffff8144fb60 T nv50_bar_bar1_vmm +ffffffff8144fb70 T nv50_bar_bar2_vmm +ffffffff8144fb80 T nv50_bar_bar1_wait +ffffffff8144fb90 T nv50_bar_bar1_fini +ffffffff8144fbb0 T nv50_bar_bar2_fini +ffffffff8144fbd0 T nv50_bar_bar1_init +ffffffff8144fc00 T nv50_bar_bar2_init +ffffffff8144fc70 T nv50_bar_init +ffffffff8144fca0 T nv50_bar_oneinit +ffffffff81450010 t nv50_bar_flush +ffffffff81450090 T nv50_bar_dtor +ffffffff81450110 T nv50_bar_new_ +ffffffff81450170 T nv50_bar_new +ffffffff81450190 T g84_bar_flush +ffffffff81450210 T g84_bar_new +ffffffff81450230 T gf100_bar_bar1_vmm +ffffffff81450240 T gf100_bar_bar2_vmm +ffffffff81450250 T gf100_bar_bar1_wait +ffffffff81450270 T gf100_bar_bar1_fini +ffffffff814502a0 T gf100_bar_bar2_fini +ffffffff814502d0 T gf100_bar_bar1_init +ffffffff81450310 T gf100_bar_bar2_init +ffffffff81450360 t gf100_bar_oneinit_bar +ffffffff81450430 T gf100_bar_dtor +ffffffff81450480 T gf100_bar_oneinit +ffffffff814504d0 T gf100_bar_new_ +ffffffff81450540 T gf100_bar_new +ffffffff81450560 T gk20a_bar_new +ffffffff81450590 T gm107_bar_bar1_wait +ffffffff814505e0 t gm107_bar_bar2_wait +ffffffff81450630 T gm107_bar_new +ffffffff81450650 T gm20b_bar_new +ffffffff81450680 t nvbios_addr +ffffffff814506f0 t nvkm_bios_dtor +ffffffff81450710 T nvbios_rd08 +ffffffff81450750 T nvbios_rd16 +ffffffff81450790 T nvbios_rd32 +ffffffff814507d0 T nvbios_checksum +ffffffff814507f0 T nvbios_findstr +ffffffff81450840 T nvbios_memcmp +ffffffff814508d0 T nvbios_extend +ffffffff81450930 T nvkm_bios_new +ffffffff81450de0 T bit_entry +ffffffff81450ea0 T nvbios_boostTe +ffffffff81450f90 T nvbios_boostEe +ffffffff81451020 T nvbios_boostEp +ffffffff81451090 T nvbios_boostEm +ffffffff81451100 T nvbios_boostSe +ffffffff81451130 T nvbios_boostSp +ffffffff814511e0 T nvbios_connTe +ffffffff81451270 T nvbios_connTp +ffffffff814512a0 T nvbios_connEe +ffffffff814512f0 T nvbios_connEp +ffffffff81451420 T nvbios_cstepTe +ffffffff81451510 T nvbios_cstepEe +ffffffff81451570 T nvbios_cstepEp +ffffffff814515c0 T nvbios_cstepEm +ffffffff81451610 T nvbios_cstepXe +ffffffff81451680 T nvbios_cstepXp +ffffffff814516f0 T dcb_table +ffffffff81451900 T dcb_outp +ffffffff81451950 T dcb_outp_parse +ffffffff81451b30 T dcb_outp_match +ffffffff81451bd0 T dcb_outp_foreach +ffffffff81451c80 t nvbios_ocfg_parse.part.0 +ffffffff81451cf0 T nvbios_disp_table +ffffffff81451dc0 T nvbios_disp_entry +ffffffff81451e20 T nvbios_disp_parse +ffffffff81451e70 T nvbios_outp_entry +ffffffff81451ec0 T nvbios_outp_parse +ffffffff81451f80 T nvbios_outp_match +ffffffff81452010 T nvbios_ocfg_entry +ffffffff81452030 T nvbios_ocfg_parse +ffffffff81452060 T nvbios_ocfg_match +ffffffff814520f0 T nvbios_oclk_match +ffffffff81452150 t nvbios_dp_table +ffffffff81452220 t nvbios_dpcfg_entry +ffffffff814522e0 T nvbios_dpout_parse +ffffffff814525e0 T nvbios_dpout_match +ffffffff81452670 T nvbios_dpcfg_parse +ffffffff81452790 T nvbios_dpcfg_match +ffffffff814528d0 t extdev_table +ffffffff814529b0 t extdev_parse_entry +ffffffff814529f0 T nvbios_extdev_parse +ffffffff81452a60 T nvbios_extdev_find +ffffffff81452af0 T nvbios_fan_parse +ffffffff81452c10 T dcb_gpio_table +ffffffff81452d30 T dcb_gpio_entry +ffffffff81452db0 T dcb_gpio_parse +ffffffff81452eb0 T dcb_gpio_match +ffffffff81452fc0 T dcb_i2c_table +ffffffff814530e0 T dcb_i2c_entry +ffffffff81453130 T dcb_i2c_parse +ffffffff81453440 T nvbios_iccsense_parse +ffffffff81453700 T nvbios_image +ffffffff81453800 t init_done +ffffffff81453810 t init_end_repeat +ffffffff81453830 t init_not +ffffffff81453840 t init_resume +ffffffff81453850 t init_tmds_reg +ffffffff814539b0 t init_reserved +ffffffff81453a40 t init_gpio +ffffffff81453a70 t init_gpio_ne +ffffffff81453c20 t init_aux +ffffffff81453c90 t init_wrauxr +ffffffff81453d20 t init_zm_auxch +ffffffff81453da0 t init_rdauxr +ffffffff81453e30 t init_auxch +ffffffff81453ee0 t init_rd32 +ffffffff814541b0 t init_strap_condition +ffffffff81454210 t init_ram_condition +ffffffff81454270 t init_wr32 +ffffffff81454530 t init_zm_mask_add +ffffffff814545b0 t init_zm_reg_group +ffffffff81454630 t init_copy_zm_reg +ffffffff81454690 t init_zm_reg +ffffffff814546f0 t init_zm_reg_sequence +ffffffff81454780 t init_zm_tmds_group +ffffffff81454840 t init_tmds +ffffffff81454910 t init_mask +ffffffff81454c00 t init_nv_reg +ffffffff81454c70 t init_copy_nv_reg +ffffffff81454d50 t init_idx_addr_latched +ffffffff81454e40 t init_or_reg +ffffffff81454e90 t init_andn_reg +ffffffff81454ee0 t init_zm_reg16 +ffffffff81454f30 t init_jump +ffffffff81454f70 t init_zm_reg_indirect +ffffffff81454fd0 t init_rdvgai +ffffffff81455010 t init_configure_mem_clk +ffffffff814550a0 t init_io_restrict_prog +ffffffff814551a0 t init_reset +ffffffff81455260 t init_time +ffffffff814552e0 t init_ltime +ffffffff81455340 t init_io +ffffffff81455510 t init_compute_mem +ffffffff81455550 t init_generic_condition +ffffffff814557c0 t init_i2c.isra.0 +ffffffff81455820 t init_i2c_long_if +ffffffff81455950 t init_rdi2cr +ffffffff81455a10 t init_i2c_if +ffffffff81455ac0 t init_zm_i2c +ffffffff81455c40 t init_wri2cr +ffffffff81455cf0 t init_zm_i2c_byte +ffffffff81455da0 t init_i2c_byte +ffffffff81455eb0 t init_table +ffffffff81455f40 t init_table_ +ffffffff814560d0 t init_xlat +ffffffff81456270 t init_condition_met +ffffffff81456300 t init_condition +ffffffff81456340 t init_condition_time +ffffffff814563f0 t init_macro +ffffffff81456470 t init_script +ffffffff81456540 t init_io_condition +ffffffff81456610 t init_io_flag_condition_met +ffffffff81456710 t init_io_flag_condition +ffffffff81456750 t init_ram_restrict_zm_reg_group +ffffffff81456860 t init_prog_pll +ffffffff814568f0 t init_pll +ffffffff81456940 t init_pll_indirect +ffffffff814569a0 t init_pll2 +ffffffff814569f0 t init_configure_clk +ffffffff81456aa0 t init_io_restrict_pll2 +ffffffff81456ba0 t init_io_restrict_pll +ffffffff81456cf0 t init_wrvgai +ffffffff81456da0 t init_index_io +ffffffff81456e40 t init_configure_mem +ffffffff81456fd0 t init_zm_index_io +ffffffff81457040 t init_zm_cr_group +ffffffff814570c0 t init_zm_cr +ffffffff81457110 t init_cr +ffffffff81457190 t init_cr_idx_adr_latch +ffffffff81457290 t init_io_or +ffffffff81457380 t init_io_mask_or +ffffffff81457470 t init_copy +ffffffff81457560 t init_configure_preinit +ffffffff814575c0 t init_sub.part.7 +ffffffff814575c0 t init_sub_direct.part.8 +ffffffff81457610 t init_ram_restrict_pll +ffffffff814576d0 T nvbios_exec +ffffffff81457790 t init_sub +ffffffff81457810 t init_sub_direct +ffffffff81457880 t init_repeat +ffffffff814578f0 T nvbios_post +ffffffff81457a20 T mxm_table +ffffffff81457aa0 T mxm_sor_map +ffffffff81457c20 T mxm_ddc_map +ffffffff81457cf0 T nvbios_npdeTe +ffffffff81457d40 T nvbios_npdeTp +ffffffff81457d90 T nvbios_pcirTe +ffffffff81457e20 T nvbios_pcirTp +ffffffff81457ee0 T nvbios_perf_table +ffffffff814580a0 T nvbios_perf_entry +ffffffff81458130 T nvbios_perfEp +ffffffff814583f0 T nvbios_perfSe +ffffffff81458420 T nvbios_perfSp +ffffffff81458490 T nvbios_perf_fan_parse +ffffffff81458510 t pll_limits_table +ffffffff81458670 t pll_map.isra.0 +ffffffff814586e0 T nvbios_pll_parse +ffffffff81459120 T nvbios_pmuTe +ffffffff814591c0 T nvbios_pmuEe +ffffffff81459210 T nvbios_pmuEp +ffffffff81459250 T nvbios_pmuRm +ffffffff814593a0 T nvbios_power_budget_header +ffffffff81459510 T nvbios_power_budget_entry +ffffffff814595b0 T nvbios_ramcfg_count +ffffffff81459620 T nvbios_ramcfg_index +ffffffff81459710 T nvbios_rammapTe +ffffffff81459800 T nvbios_rammapEe +ffffffff81459890 T nvbios_rammapEp_from_perf +ffffffff81459940 T nvbios_rammapEp +ffffffff81459ba0 T nvbios_rammapEm +ffffffff81459c10 T nvbios_rammapSe +ffffffff81459c40 T nvbios_rammapSp_from_perf +ffffffff81459e50 T nvbios_rammapSp +ffffffff8145a4f0 t shadow_fw_init +ffffffff8145a520 t shadow_fw_read +ffffffff8145a550 t shadow_fetch.isra.1 +ffffffff8145a5c0 t shadow_image +ffffffff8145a6e0 t shadow_method +ffffffff8145a770 T nvbios_shadow +ffffffff8145aa20 t acpi_read_fast +ffffffff8145aa70 t acpi_read_slow +ffffffff8145aae0 t acpi_init +ffffffff8145ab00 t pcirom_fini +ffffffff8145ab30 t pcirom_init +ffffffff8145abd0 t platform_init +ffffffff8145ac50 t pcirom_read +ffffffff8145ac80 t pramin_read +ffffffff8145acf0 t pramin_init +ffffffff8145ae30 t pramin_fini +ffffffff8145ae60 t prom_read +ffffffff8145aee0 t prom_fini +ffffffff8145af00 t prom_init +ffffffff8145af40 T nvbios_timingTe +ffffffff8145b0a0 T nvbios_timingEe +ffffffff8145b130 T nvbios_timingEp +ffffffff8145b500 t therm_table +ffffffff8145b600 T nvbios_therm_sensor_parse +ffffffff8145b7a0 T nvbios_therm_fan_parse +ffffffff8145b980 T nvbios_vmap_table +ffffffff8145ba30 T nvbios_vmap_parse +ffffffff8145bad0 T nvbios_vmap_entry +ffffffff8145bb20 T nvbios_vmap_entry_parse +ffffffff8145bc70 T nvbios_volt_table +ffffffff8145bda0 T nvbios_volt_parse +ffffffff8145bf70 T nvbios_volt_entry +ffffffff8145bfc0 T nvbios_volt_entry_parse +ffffffff8145c090 T nvbios_vpstate_parse +ffffffff8145c1c0 T nvbios_vpstate_entry +ffffffff8145c220 T dcb_xpio_table +ffffffff8145c340 T dcb_xpio_parse +ffffffff8145c3a0 T nvbios_M0203Te +ffffffff8145c450 T nvbios_M0203Tp +ffffffff8145c4b0 T nvbios_M0203Ee +ffffffff8145c500 T nvbios_M0203Ep +ffffffff8145c580 T nvbios_M0203Em +ffffffff8145c680 T nvbios_M0205Te +ffffffff8145c770 T nvbios_M0205Tp +ffffffff8145c7d0 T nvbios_M0205Ee +ffffffff8145c860 T nvbios_M0205Ep +ffffffff8145c8c0 T nvbios_M0205Se +ffffffff8145c910 T nvbios_M0205Sp +ffffffff8145c970 T nvbios_M0209Te +ffffffff8145ca50 T nvbios_M0209Ee +ffffffff8145cae0 T nvbios_M0209Ep +ffffffff8145cba0 T nvbios_M0209Se +ffffffff8145cbf0 T nvbios_M0209Sp +ffffffff8145cd00 T nvbios_P0260Te +ffffffff8145cdd0 T nvbios_P0260Ee +ffffffff8145ce30 T nvbios_P0260Ep +ffffffff8145ce90 T nvbios_P0260Xe +ffffffff8145cf00 T nvbios_P0260Xp +ffffffff8145cf60 t nvkm_bus_intr +ffffffff8145cf80 t nvkm_bus_init +ffffffff8145cfa0 t nvkm_bus_dtor +ffffffff8145cfb0 T nvkm_bus_new_ +ffffffff8145d010 T nvkm_hwsq_init +ffffffff8145d070 T nvkm_hwsq_fini +ffffffff8145d1c0 T nvkm_hwsq_wr32 +ffffffff8145d2b0 T nvkm_hwsq_setf +ffffffff8145d2e0 T nvkm_hwsq_wait +ffffffff8145d310 T nvkm_hwsq_wait_vblank +ffffffff8145d420 T nvkm_hwsq_nsec +ffffffff8145d460 t nv04_bus_init +ffffffff8145d490 t nv04_bus_intr +ffffffff8145d5b0 T nv04_bus_new +ffffffff8145d5d0 t nv31_bus_intr +ffffffff8145d780 t nv31_bus_init +ffffffff8145d7b0 T nv31_bus_new +ffffffff8145d7d0 T nv50_bus_init +ffffffff8145d800 T nv50_bus_intr +ffffffff8145d970 t nv50_bus_hwsq_exec +ffffffff8145da80 T nv50_bus_new +ffffffff8145daa0 t g94_bus_hwsq_exec +ffffffff8145dbc0 T g94_bus_new +ffffffff8145dbe0 t gf100_bus_intr +ffffffff8145dd70 t gf100_bus_init +ffffffff8145dda0 T gf100_bus_new +ffffffff8145ddc0 t nvkm_clk_fini +ffffffff8145de00 t nvkm_clk_adjust +ffffffff8145df00 t nvkm_clk_nstate +ffffffff8145e070 t nvkm_pstate_calc +ffffffff8145e100 t nvkm_clk_pwrsrc +ffffffff8145e120 t nvkm_pstate_info.isra.2 +ffffffff8145e290 t nvkm_clk_init +ffffffff8145e3d0 t nvkm_clk_dtor +ffffffff8145e4c0 t nvkm_pstate_work +ffffffff8145eb10 T nvkm_clk_ustate +ffffffff8145ebb0 T nvkm_clk_astate +ffffffff8145ebf0 T nvkm_clk_tstate +ffffffff8145ec10 T nvkm_clk_dstate +ffffffff8145ec50 T nvkm_clk_read +ffffffff8145ec60 T nvkm_clk_ctor +ffffffff8145f210 T nvkm_clk_new_ +ffffffff8145f270 T nv04_clk_pll_calc +ffffffff8145f2e0 T nv04_clk_pll_prog +ffffffff8145f330 T nv04_clk_new +ffffffff8145f370 t nv40_clk_tidy +ffffffff8145f380 t nv40_clk_prog +ffffffff8145f460 t nv40_clk_calc_pll +ffffffff8145f4e0 t nv40_clk_calc +ffffffff8145f610 t read_pll_2.isra.1 +ffffffff8145f6a0 t read_clk +ffffffff8145f700 t nv40_clk_read +ffffffff8145f790 T nv40_clk_new +ffffffff8145f800 t read_pll_ref +ffffffff8145fb00 t read_pll +ffffffff8145fbf0 t calc_pll +ffffffff8145fc80 T nv50_clk_calc +ffffffff81460b70 t read_div.isra.0 +ffffffff81460bb0 T nv50_clk_read +ffffffff81460fe0 T nv50_clk_prog +ffffffff81461010 T nv50_clk_tidy +ffffffff81461040 T nv50_clk_new_ +ffffffff814611f0 T nv50_clk_new +ffffffff81461210 T g84_clk_new +ffffffff81461240 t gt215_clk_tidy +ffffffff81461250 t prog_clk +ffffffff814612b0 t disable_clk_src.isra.4 +ffffffff81461300 t prog_pll +ffffffff81461590 t prog_core +ffffffff81461620 t read_clk.constprop.5 +ffffffff81461710 t read_pll +ffffffff814617b0 t read_vco +ffffffff81461820 t gt215_clk_info.isra.1 +ffffffff814618c0 t gt215_clk_read +ffffffff814619d0 T gt215_pll_info +ffffffff81461b00 t gt215_clk_calc +ffffffff81461c20 T gt215_clk_pre +ffffffff81461da0 T gt215_clk_post +ffffffff81461e10 t gt215_clk_prog +ffffffff81461f80 T gt215_clk_new +ffffffff81461fd0 t mcp77_clk_tidy +ffffffff81461fe0 t mcp77_clk_prog +ffffffff81462390 t read_pll +ffffffff81462460 t mcp77_clk_read +ffffffff814626c0 t calc_pll +ffffffff81462750 t mcp77_clk_calc +ffffffff81462b30 T mcp77_clk_new +ffffffff81462b80 t gf100_clk_prog +ffffffff81462c10 t gf100_clk_tidy +ffffffff81462c50 t gf100_clk_prog_4 +ffffffff81462ca0 t gf100_clk_prog_0 +ffffffff81462d20 t gf100_clk_prog_3 +ffffffff81462de0 t gf100_clk_prog_2 +ffffffff81462f30 t gf100_clk_prog_1 +ffffffff81462fb0 t read_vco +ffffffff81462ff0 t read_div +ffffffff814630e0 t read_pll +ffffffff814631f0 t read_clk +ffffffff81463290 t calc_clk +ffffffff81463620 t gf100_clk_read +ffffffff814637b0 t gf100_clk_calc +ffffffff81463880 T gf100_clk_new +ffffffff814638d0 t gk104_clk_prog +ffffffff814639d0 t gk104_clk_tidy +ffffffff81463a10 t gk104_clk_prog_4_1 +ffffffff81463a70 t gk104_clk_prog_3 +ffffffff81463ae0 t gk104_clk_prog_1_1 +ffffffff81463b10 t gk104_clk_prog_0 +ffffffff81463b80 t gk104_clk_prog_4_0 +ffffffff81463c40 t gk104_clk_prog_2 +ffffffff81463d80 t gk104_clk_prog_1_0 +ffffffff81463e00 t read_vco +ffffffff81463e40 t read_div +ffffffff81463f10 t read_pll +ffffffff81464050 t read_clk +ffffffff81464170 t gk104_clk_read +ffffffff814642a0 t calc_clk +ffffffff81464620 t gk104_clk_calc +ffffffff814646d0 T gk104_clk_new +ffffffff81464720 t pl_to_div +ffffffff81464740 t div_to_pl +ffffffff81464770 T gk20a_clk_tidy +ffffffff81464780 t gk20a_pllg_disable.isra.0 +ffffffff814647e0 T gk20a_pllg_read_mnp +ffffffff81464810 T gk20a_clk_read +ffffffff814648c0 T gk20a_pllg_write_mnp +ffffffff81464900 t gk20a_pllg_slide +ffffffff81464a40 T gk20a_clk_fini +ffffffff81464ae0 t gk20a_pllg_program_mnp +ffffffff81464cf0 T gk20a_clk_prog +ffffffff81464e00 T gk20a_pllg_calc_rate +ffffffff81464e30 T gk20a_pllg_calc_mnp +ffffffff814650f0 T gk20a_clk_calc +ffffffff81465110 T gk20a_clk_setup_slide +ffffffff81465210 t gk20a_clk_init +ffffffff81465300 T gk20a_clk_ctor +ffffffff814653a0 T gk20a_clk_new +ffffffff81465410 t pl_to_div +ffffffff81465420 t gm20b_dvfs_calc_ndiv +ffffffff81465590 t gm20b_dvfs_calc_det_coeff +ffffffff814656c0 t gm20b_clk_calc +ffffffff81465720 t gm20b_clk_new_speedo0 +ffffffff81465790 t gm20b_pllg_disable.isra.1 +ffffffff81465820 t gm20b_dvfs_program_ext_cal.isra.2 +ffffffff81465890 t gm20b_dvfs_program_dfs_detection +ffffffff81465940 t gm20b_dvfs_program_coeff.isra.3 +ffffffff814659d0 t gm20b_clk_init +ffffffff81465d80 t div_to_pl +ffffffff81465d90 t gm20b_pllg_slide +ffffffff81465f60 t gm20b_pllg_program_mnp_slide +ffffffff81466320 t gm20b_clk_prog +ffffffff814664c0 t gm20b_clk_fini +ffffffff81466560 T gm20b_clk_new +ffffffff814667d0 T nv04_pll_calc +ffffffff81466dd0 T gt215_pll_calc +ffffffff81466f80 t nvkm_devinit_fini +ffffffff81466f90 t nvkm_devinit_init +ffffffff81466fb0 t nvkm_devinit_preinit +ffffffff81466ff0 t nvkm_devinit_dtor +ffffffff81467030 T nvkm_devinit_mmio +ffffffff81467050 T nvkm_devinit_pll_set +ffffffff81467060 T nvkm_devinit_meminit +ffffffff81467080 T nvkm_devinit_disable +ffffffff814670a0 T nvkm_devinit_post +ffffffff81467100 T nvkm_devinit_ctor +ffffffff81467140 t powerctrl_1_shift +ffffffff814671b0 T nv04_devinit_post +ffffffff814671c0 T nv04_devinit_dtor +ffffffff814671e0 T nv04_devinit_preinit +ffffffff814672e0 t nv04_devinit_meminit +ffffffff81467940 T setPLL_single +ffffffff81467af0 T setPLL_double_highregs +ffffffff81467ee0 T setPLL_double_lowregs +ffffffff81468290 T nv04_devinit_pll_set +ffffffff814683c0 T nv04_devinit_new_ +ffffffff81468420 T nv04_devinit_new +ffffffff81468440 t nv05_devinit_meminit +ffffffff81468b80 T nv05_devinit_new +ffffffff81468ba0 t nv10_devinit_meminit +ffffffff81469090 T nv10_devinit_new +ffffffff814690b0 T nv1a_devinit_new +ffffffff814690d0 t nv20_devinit_meminit +ffffffff81469310 T nv20_devinit_new +ffffffff81469330 T nv50_devinit_pll_set +ffffffff81469530 t nv50_devinit_disable +ffffffff81469560 T nv50_devinit_preinit +ffffffff814695b0 T nv50_devinit_init +ffffffff814696e0 T nv50_devinit_new_ +ffffffff81469730 T nv50_devinit_new +ffffffff81469750 t g84_devinit_disable +ffffffff814697d0 T g84_devinit_new +ffffffff814697f0 t g98_devinit_disable +ffffffff81469870 T g98_devinit_new +ffffffff81469890 t gt215_devinit_disable +ffffffff81469910 T gt215_devinit_pll_set +ffffffff81469a30 t gt215_devinit_mmio +ffffffff81469ac0 T gt215_devinit_new +ffffffff81469ae0 t mcp89_devinit_disable +ffffffff81469b70 T mcp89_devinit_new +ffffffff81469b90 t gf100_devinit_disable +ffffffff81469c10 T gf100_devinit_preinit +ffffffff81469c40 T gf100_devinit_pll_set +ffffffff81469d60 T gf100_devinit_new +ffffffff81469d80 T gm107_devinit_disable +ffffffff81469de0 T gm107_devinit_new +ffffffff81469e00 t pmu_code +ffffffff81469ec0 t pmu_exec.isra.0 +ffffffff81469f00 t pmu_args.isra.1 +ffffffff81469f50 t pmu_data.isra.2 +ffffffff81469fc0 t pmu_load +ffffffff8146a0c0 t gm200_devinit_post +ffffffff8146a2b0 T gm200_devinit_new +ffffffff8146a2d0 t nvkm_fb_intr +ffffffff8146a2f0 t nvkm_fb_init +ffffffff8146a390 t nvkm_fb_oneinit +ffffffff8146a450 t nvkm_fb_dtor +ffffffff8146a4e0 T nvkm_fb_tile_fini +ffffffff8146a4f0 T nvkm_fb_tile_init +ffffffff8146a500 T nvkm_fb_tile_prog +ffffffff8146a550 T nvkm_fb_bios_memtype +ffffffff8146a630 T nvkm_fb_ctor +ffffffff8146a680 T nvkm_fb_new_ +ffffffff8146a6d0 t nv04_fb_init +ffffffff8146a6f0 T nv04_fb_new +ffffffff8146a710 T nv10_fb_tile_init +ffffffff8146a740 T nv10_fb_tile_fini +ffffffff8146a760 T nv10_fb_tile_prog +ffffffff8146a7d0 T nv10_fb_new +ffffffff8146a7f0 T nv1a_fb_new +ffffffff8146a810 T nv20_fb_tile_init +ffffffff8146a860 T nv20_fb_tile_fini +ffffffff8146a880 T nv20_fb_tile_prog +ffffffff8146a910 T nv20_fb_tags +ffffffff8146a940 t nv20_fb_tile_comp +ffffffff8146a9b0 T nv20_fb_new +ffffffff8146a9d0 t nv25_fb_tile_comp +ffffffff8146aa40 T nv25_fb_new +ffffffff8146aa60 T nv30_fb_tile_init +ffffffff8146aad0 t nv30_fb_tile_comp +ffffffff8146ab60 t calc_ref +ffffffff8146ac10 T nv30_fb_init +ffffffff8146ad50 T nv30_fb_new +ffffffff8146ad70 t nv35_fb_tile_comp +ffffffff8146ae00 T nv35_fb_new +ffffffff8146ae20 t nv36_fb_tile_comp +ffffffff8146aeb0 T nv36_fb_new +ffffffff8146aed0 T nv40_fb_tile_comp +ffffffff8146af50 t nv40_fb_init +ffffffff8146af80 T nv40_fb_new +ffffffff8146afa0 T nv41_fb_init +ffffffff8146afc0 T nv41_fb_tile_prog +ffffffff8146b050 T nv41_fb_new +ffffffff8146b070 t nv44_fb_tile_init +ffffffff8146b0a0 T nv44_fb_init +ffffffff8146b0d0 T nv44_fb_tile_prog +ffffffff8146b140 T nv44_fb_new +ffffffff8146b160 T nv46_fb_tile_init +ffffffff8146b1a0 T nv46_fb_new +ffffffff8146b1c0 T nv47_fb_new +ffffffff8146b1e0 T nv49_fb_new +ffffffff8146b200 T nv4e_fb_new +ffffffff8146b220 t nv50_fb_ram_new +ffffffff8146b230 t nv50_fb_tags +ffffffff8146b250 t nv50_fb_init +ffffffff8146b290 t nv50_fb_intr +ffffffff8146b540 t nv50_fb_oneinit +ffffffff8146b5f0 t nv50_fb_dtor +ffffffff8146b660 T nv50_fb_new_ +ffffffff8146b6d0 T nv50_fb_new +ffffffff8146b6f0 T g84_fb_new +ffffffff8146b710 T gt215_fb_new +ffffffff8146b730 T mcp77_fb_new +ffffffff8146b750 T mcp89_fb_new +ffffffff8146b770 T gf100_fb_intr +ffffffff8146b790 T gf100_fb_oneinit +ffffffff8146b8c0 T gf100_fb_init_page +ffffffff8146b930 T gf100_fb_init +ffffffff8146b980 T gf100_fb_dtor +ffffffff8146b9f0 T gf100_fb_new_ +ffffffff8146ba50 T gf100_fb_new +ffffffff8146ba70 T gf108_fb_new +ffffffff8146ba90 T gk104_fb_new +ffffffff8146bab0 T gk110_fb_new +ffffffff8146bad0 T gk20a_fb_new +ffffffff8146baf0 T gm107_fb_new +ffffffff8146bb10 T gm200_fb_init_page +ffffffff8146bbc0 T gm200_fb_init +ffffffff8146bcd0 T gm200_fb_new +ffffffff8146bcf0 T gm20b_fb_new +ffffffff8146bd10 T gp100_fb_init +ffffffff8146be00 t gp100_fb_init_unkn +ffffffff8146be80 T gp100_fb_new +ffffffff8146bea0 T gp102_fb_new +ffffffff8146bec0 T gp10b_fb_new +ffffffff8146bee0 t nvkm_vram_size +ffffffff8146bf00 t nvkm_vram_addr +ffffffff8146bf20 t nvkm_vram_page +ffffffff8146bf30 t nvkm_vram_target +ffffffff8146bf40 t nvkm_vram_map +ffffffff8146bf90 t nvkm_vram_dtor +ffffffff8146bff0 T nvkm_ram_get +ffffffff8146c1b0 T nvkm_ram_init +ffffffff8146c1d0 T nvkm_ram_del +ffffffff8146c220 T nvkm_ram_ctor +ffffffff8146c2c0 T nvkm_ram_new_ +ffffffff8146c320 T nv04_ram_new +ffffffff8146c3a0 T nv10_ram_new +ffffffff8146c400 T nv1a_ram_new +ffffffff8146c500 T nv20_ram_new +ffffffff8146c5c0 t nv40_ram_tidy +ffffffff8146c5d0 t nv40_ram_prog +ffffffff8146cb70 t nv40_ram_calc +ffffffff8146ccc0 T nv40_ram_new_ +ffffffff8146cd20 T nv40_ram_new +ffffffff8146cdd0 T nv41_ram_new +ffffffff8146ce70 T nv44_ram_new +ffffffff8146cee0 T nv49_ram_new +ffffffff8146cf70 T nv4e_ram_new +ffffffff8146cfb0 t nv50_ram_prog +ffffffff8146d000 t nv50_ram_calc +ffffffff8146f570 t nv50_ram_tidy +ffffffff8146f5a0 T nv50_ram_ctor +ffffffff8146f7d0 T nv50_ram_new +ffffffff8146fd20 t nv50_ram_gpio +ffffffff8146fee0 t ramfuc_reg +ffffffff8146ff10 t gt215_ram_prog +ffffffff81470050 t gt215_ram_init +ffffffff814702f0 t gt215_ram_dtor +ffffffff81470310 t gt215_ram_calc +ffffffff81474d60 t gt215_ram_tidy +ffffffff81474d90 T gt215_ram_new +ffffffff814756ab t gt215_ram_gpio +ffffffff81475869 t gt215_ram_lock_pll.isra.0 +ffffffff81475a10 t mcp77_ram_init +ffffffff81475af0 T mcp77_ram_new +ffffffff81475bd0 t ramfuc_reg +ffffffff81475c00 T gf100_ram_probe_fbp_amount +ffffffff81475c20 T gf100_ram_probe_fbpa_amount +ffffffff81475c40 T gf100_ram_probe_fbp +ffffffff81475c80 T gf100_ram_calc +ffffffff81478e40 T gf100_ram_prog +ffffffff81478e90 T gf100_ram_init +ffffffff81478fd0 T gf100_ram_tidy +ffffffff81479000 T gf100_ram_ctor +ffffffff814791b0 T gf100_ram_new_ +ffffffff81479c10 T gf100_ram_new +ffffffff81479c22 t gf100_ram_train +ffffffff81479d30 T gf108_ram_probe_fbp_amount +ffffffff81479dd0 T gf108_ram_new +ffffffff81479df0 t ramfuc_reg +ffffffff81479e20 t gk104_ram_calc_data +ffffffff81479eb0 t nvkm_sddr3_dll_reset +ffffffff8147a040 t r1373f4_init +ffffffff8147b3b0 t r1373f4_fini +ffffffff8147b910 t gk104_ram_train +ffffffff8147bb10 t gk104_ram_prog_0 +ffffffff8147be20 T gk104_ram_dtor +ffffffff8147be60 t gk104_ram_calc_sddr3.isra.0 +ffffffff8147fa50 t gk104_ram_nuts.isra.1 +ffffffff8147fb00 T gk104_ram_calc +ffffffff81485380 T gk104_ram_prog +ffffffff81485430 T gk104_ram_tidy +ffffffff81485470 T gk104_ram_init +ffffffff814859f0 T gk104_ram_new_ +ffffffff81486e80 T gk104_ram_new +ffffffff81486ea0 T gm107_ram_probe_fbp +ffffffff81486ee0 T gm107_ram_new +ffffffff81486f00 T gm200_ram_probe_fbp_amount +ffffffff81486ff0 T gm200_ram_new +ffffffff81487010 t gp100_ram_probe_fbpa +ffffffff81487030 t gp100_ram_init +ffffffff81487230 T gp100_ram_new +ffffffff81487270 T nvkm_sddr2_calc +ffffffff814873d0 T nvkm_sddr3_calc +ffffffff814875c0 T nvkm_gddr3_calc +ffffffff81487770 T nvkm_gddr5_calc +ffffffff814879a0 t nvkm_fuse_dtor +ffffffff814879b0 T nvkm_fuse_read +ffffffff814879c0 T nvkm_fuse_new_ +ffffffff81487a30 t nv50_fuse_read +ffffffff81487ac0 T nv50_fuse_new +ffffffff81487ae0 t gf100_fuse_read +ffffffff81487bb0 T gf100_fuse_new +ffffffff81487bd0 t gm107_fuse_read +ffffffff81487bf0 T gm107_fuse_new +ffffffff81487c10 t nvkm_gpio_intr_fini +ffffffff81487c30 t nvkm_gpio_intr_init +ffffffff81487c50 t nvkm_gpio_fini +ffffffff81487cb0 t nvkm_gpio_intr_ctor +ffffffff81487ce0 t nvkm_gpio_intr +ffffffff81487d90 t nvkm_gpio_init +ffffffff81487dd0 t nvkm_gpio_dtor +ffffffff81487df0 T nvkm_gpio_reset +ffffffff81487e10 T nvkm_gpio_find +ffffffff81487ea0 T nvkm_gpio_set +ffffffff81487ef0 T nvkm_gpio_get +ffffffff81487f40 T nvkm_gpio_new_ +ffffffff81487fc0 t nv10_gpio_sense +ffffffff81488050 t nv10_gpio_drive +ffffffff81488100 t nv10_gpio_intr_mask +ffffffff81488160 t nv10_gpio_intr_stat +ffffffff814881c0 T nv10_gpio_new +ffffffff814881e0 T nv50_gpio_sense +ffffffff81488250 T nv50_gpio_drive +ffffffff814882f0 t nv50_gpio_intr_mask +ffffffff81488350 t nv50_gpio_intr_stat +ffffffff814883b0 T nv50_gpio_reset +ffffffff814884c0 T nv50_gpio_new +ffffffff814884e0 T g94_gpio_intr_stat +ffffffff81488590 T g94_gpio_intr_mask +ffffffff814886a0 T g94_gpio_new +ffffffff814886c0 T gf119_gpio_sense +ffffffff814886e0 T gf119_gpio_drive +ffffffff81488760 T gf119_gpio_reset +ffffffff81488890 T gf119_gpio_new +ffffffff814888b0 t gk104_gpio_intr_mask +ffffffff814889c0 t gk104_gpio_intr_stat +ffffffff81488a70 T gk104_gpio_new +ffffffff81488a90 t nvkm_i2c_intr_fini +ffffffff81488ae0 t nvkm_i2c_intr_init +ffffffff81488b30 t nvkm_i2c_intr_ctor +ffffffff81488b60 t nvkm_i2c_intr +ffffffff81488c60 t nvkm_i2c_fini +ffffffff81488cf0 t nvkm_i2c_init +ffffffff81488d50 t nvkm_i2c_dtor +ffffffff81488e00 T nvkm_i2c_bus_find +ffffffff81488eb0 T nvkm_i2c_aux_find +ffffffff81488ee0 T nvkm_i2c_new_ +ffffffff81489480 T nv04_i2c_new +ffffffff814894a0 T nv4e_i2c_new +ffffffff814894c0 T nv50_i2c_new +ffffffff814894e0 T g94_aux_stat +ffffffff814895f0 T g94_aux_mask +ffffffff81489670 T g94_i2c_new +ffffffff81489690 T gf117_i2c_new +ffffffff814896b0 T gf119_i2c_new +ffffffff814896d0 T gk104_aux_stat +ffffffff814897e0 T gk104_aux_mask +ffffffff81489860 T gk104_i2c_new +ffffffff81489880 T gm200_i2c_new +ffffffff814898a0 T nvkm_i2c_pad_mode +ffffffff814898e0 T nvkm_i2c_pad_release +ffffffff81489910 T nvkm_i2c_pad_acquire +ffffffff81489970 T nvkm_i2c_pad_fini +ffffffff81489990 T nvkm_i2c_pad_init +ffffffff814899b0 T nvkm_i2c_pad_del +ffffffff814899f0 T nvkm_i2c_pad_ctor +ffffffff81489a40 T nvkm_i2c_pad_new_ +ffffffff81489ad0 T nv04_i2c_pad_new +ffffffff81489af0 T nv4e_i2c_pad_new +ffffffff81489b10 T nv50_i2c_pad_new +ffffffff81489b30 T g94_i2c_pad_mode +ffffffff81489c10 T g94_i2c_pad_s_new +ffffffff81489c30 T g94_i2c_pad_x_new +ffffffff81489c50 T gf119_i2c_pad_s_new +ffffffff81489c70 T gf119_i2c_pad_x_new +ffffffff81489c90 t gm200_i2c_pad_mode +ffffffff81489d70 T gm200_i2c_pad_s_new +ffffffff81489d90 T gm200_i2c_pad_x_new +ffffffff81489db0 t nvkm_i2c_bus_setscl +ffffffff81489dc0 t nvkm_i2c_bus_setsda +ffffffff81489dd0 t nvkm_i2c_bus_getscl +ffffffff81489de0 t nvkm_i2c_bus_getsda +ffffffff81489df0 t nvkm_i2c_bus_func +ffffffff81489e00 t nvkm_i2c_bus_post_xfer +ffffffff81489e20 T nvkm_i2c_bus_init +ffffffff81489e40 T nvkm_i2c_bus_release +ffffffff81489e60 T nvkm_i2c_bus_acquire +ffffffff81489ea0 t nvkm_i2c_bus_xfer +ffffffff81489f00 t nvkm_i2c_bus_pre_xfer +ffffffff81489f10 T nvkm_i2c_bus_probe +ffffffff8148a050 T nvkm_i2c_bus_del +ffffffff8148a0b0 T nvkm_i2c_bus_ctor +ffffffff8148a220 T nvkm_i2c_bus_new_ +ffffffff8148a270 t nv04_i2c_bus_sense_sda +ffffffff8148a2a0 t nv04_i2c_bus_sense_scl +ffffffff8148a2d0 t nv04_i2c_bus_drive_sda +ffffffff8148a320 t nv04_i2c_bus_drive_scl +ffffffff8148a370 T nv04_i2c_bus_new +ffffffff8148a3e0 t nv4e_i2c_bus_sense_sda +ffffffff8148a410 t nv4e_i2c_bus_sense_scl +ffffffff8148a440 t nv4e_i2c_bus_drive_sda +ffffffff8148a490 t nv4e_i2c_bus_drive_scl +ffffffff8148a4e0 T nv4e_i2c_bus_new +ffffffff8148a550 t nv50_i2c_bus_sense_sda +ffffffff8148a580 t nv50_i2c_bus_sense_scl +ffffffff8148a5a0 t nv50_i2c_bus_drive_sda +ffffffff8148a5e0 t nv50_i2c_bus_drive_scl +ffffffff8148a620 t nv50_i2c_bus_init +ffffffff8148a650 T nv50_i2c_bus_new +ffffffff8148a730 t gf119_i2c_bus_sense_sda +ffffffff8148a760 t gf119_i2c_bus_sense_scl +ffffffff8148a790 t gf119_i2c_bus_drive_sda +ffffffff8148a7e0 t gf119_i2c_bus_drive_scl +ffffffff8148a830 t gf119_i2c_bus_init +ffffffff8148a850 T gf119_i2c_bus_new +ffffffff8148a8c0 T nvkm_i2c_bit_xfer +ffffffff8148a8d0 t nvkm_i2c_aux_i2c_func +ffffffff8148a8e0 T nvkm_i2c_aux_monitor +ffffffff8148a900 T nvkm_i2c_aux_release +ffffffff8148a920 T nvkm_i2c_aux_acquire +ffffffff8148a960 t nvkm_i2c_aux_i2c_xfer +ffffffff8148aa90 T nvkm_i2c_aux_xfer +ffffffff8148aaf0 T nvkm_i2c_aux_lnk_ctl +ffffffff8148ab10 T nvkm_i2c_aux_del +ffffffff8148ab70 T nvkm_i2c_aux_ctor +ffffffff8148ac20 T nvkm_i2c_aux_new_ +ffffffff8148ac70 t g94_i2c_aux_fini.isra.0 +ffffffff8148acb0 T g94_i2c_aux_xfer +ffffffff8148b2f0 T g94_i2c_aux_new_ +ffffffff8148b360 T g94_i2c_aux_new +ffffffff8148b380 T gf119_i2c_aux_new +ffffffff8148b3a0 t gm200_i2c_aux_fini.isra.0 +ffffffff8148b3e0 t gm200_i2c_aux_xfer +ffffffff8148ba20 T gm200_i2c_aux_new +ffffffff8148ba90 t anx9805_aux_lnk_ctl +ffffffff8148bcb0 t anx9805_bus_xfer +ffffffff8148c100 t anx9805_aux_xfer +ffffffff8148c6d0 t anx9805_aux_new +ffffffff8148c760 t anx9805_bus_new +ffffffff8148c7f0 T anx9805_pad_new +ffffffff8148c860 t gf100_ibus_init +ffffffff8148c910 T gf100_ibus_intr +ffffffff8148cc10 T gf100_ibus_new +ffffffff8148cc60 t gf117_ibus_init +ffffffff8148ccf0 T gf117_ibus_new +ffffffff8148cd40 t gk104_ibus_init +ffffffff8148ce90 T gk104_ibus_intr +ffffffff8148d190 T gk104_ibus_new +ffffffff8148d1e0 t gk20a_ibus_init_ibus_ring.isra.0 +ffffffff8148d2e0 t gk20a_ibus_intr +ffffffff8148d370 t gk20a_ibus_init +ffffffff8148d380 T gk20a_ibus_new +ffffffff8148d3d0 T gm200_ibus_new +ffffffff8148d420 t gp10b_ibus_init +ffffffff8148d490 T gp10b_ibus_new +ffffffff8148d4e0 t nvkm_iccsense_validate_device +ffffffff8148d610 t nvkm_iccsense_oneinit +ffffffff8148d9c0 t nvkm_iccsense_dtor +ffffffff8148da80 t nvkm_iccsense_init +ffffffff8148db10 t nvkm_iccsense_poll_lane.constprop.1 +ffffffff8148dc30 t nvkm_iccsense_ina3221_read +ffffffff8148dc70 t nvkm_iccsense_ina219_read +ffffffff8148dca0 t nvkm_iccsense_ina209_read +ffffffff8148dcd0 T nvkm_iccsense_read_all +ffffffff8148dd40 T nvkm_iccsense_ctor +ffffffff8148dd60 T nvkm_iccsense_new_ +ffffffff8148ddd0 T gf100_iccsense_new +ffffffff8148dde0 t nvkm_instmem_oneinit +ffffffff8148de00 t nvkm_instmem_dtor +ffffffff8148de20 t nvkm_instobj_save +ffffffff8148ded0 t nvkm_instmem_fini +ffffffff8148df70 t nvkm_instobj_load +ffffffff8148e000 t nvkm_instmem_init +ffffffff8148e080 T nvkm_instobj_dtor +ffffffff8148e0d0 T nvkm_instobj_ctor +ffffffff8148e120 T nvkm_instobj_new +ffffffff8148e220 T nvkm_instmem_rd32 +ffffffff8148e230 T nvkm_instmem_wr32 +ffffffff8148e240 T nvkm_instmem_boot +ffffffff8148e2b0 T nvkm_instmem_ctor +ffffffff8148e2f0 t nv04_instobj_release +ffffffff8148e300 t nv04_instobj_acquire +ffffffff8148e320 t nv04_instobj_size +ffffffff8148e330 t nv04_instobj_addr +ffffffff8148e340 t nv04_instobj_target +ffffffff8148e350 t nv04_instobj_wr32 +ffffffff8148e380 t nv04_instmem_wr32 +ffffffff8148e3a0 t nv04_instobj_rd32 +ffffffff8148e3d0 t nv04_instmem_rd32 +ffffffff8148e3f0 t nv04_instobj_dtor +ffffffff8148e440 t nv04_instmem_oneinit +ffffffff8148e4f0 t nv04_instmem_dtor +ffffffff8148e540 t nv04_instobj_new +ffffffff8148e5f0 T nv04_instmem_new +ffffffff8148e650 t nv40_instobj_release +ffffffff8148e660 t nv40_instobj_acquire +ffffffff8148e680 t nv40_instobj_size +ffffffff8148e690 t nv40_instobj_addr +ffffffff8148e6a0 t nv40_instobj_target +ffffffff8148e6b0 t nv40_instobj_wr32 +ffffffff8148e6d0 t nv40_instmem_wr32 +ffffffff8148e6e0 t nv40_instobj_rd32 +ffffffff8148e700 t nv40_instmem_rd32 +ffffffff8148e720 t nv40_instobj_dtor +ffffffff8148e770 t nv40_instmem_oneinit +ffffffff8148e890 t nv40_instmem_dtor +ffffffff8148e8f0 t nv40_instobj_new +ffffffff8148e9a0 T nv40_instmem_new +ffffffff8148eaa0 t nv50_instobj_map +ffffffff8148eab0 t nv50_instobj_size +ffffffff8148eac0 t nv50_instobj_addr +ffffffff8148ead0 t nv50_instobj_target +ffffffff8148eae0 t nv50_instmem_fini +ffffffff8148eaf0 t nv50_instobj_wr32_slow +ffffffff8148ebc0 t nv50_instobj_wr32 +ffffffff8148ebd0 t nv50_instobj_rd32_slow +ffffffff8148ec90 t nv50_instobj_rd32 +ffffffff8148eca0 t nv50_instobj_kmap +ffffffff8148ee60 t nv50_instobj_acquire +ffffffff8148f050 t nv50_instobj_boot +ffffffff8148f0c0 t nv50_instobj_dtor +ffffffff8148f170 t nv50_instobj_new +ffffffff8148f230 t nv50_instobj_release +ffffffff8148f2c0 T nv50_instmem_new +ffffffff8148f330 t gk20a_instobj_target +ffffffff8148f340 t gk20a_instobj_page +ffffffff8148f350 t gk20a_instobj_addr +ffffffff8148f360 t gk20a_instobj_size +ffffffff8148f370 t gk20a_instobj_rd32 +ffffffff8148f380 t gk20a_instobj_wr32 +ffffffff8148f390 t gk20a_instobj_map +ffffffff8148f3e0 t gk20a_instobj_release_iommu +ffffffff8148f460 t gk20a_instobj_release_dma +ffffffff8148f480 t gk20a_instobj_acquire_dma +ffffffff8148f4a0 t gk20a_instobj_iommu_recycle_vaddr +ffffffff8148f500 t gk20a_instobj_acquire_iommu +ffffffff8148f660 t gk20a_instobj_dtor_iommu +ffffffff8148f7b0 t gk20a_instmem_dtor +ffffffff8148f830 t gk20a_instobj_new +ffffffff8148fef0 t gk20a_instobj_dtor_dma +ffffffff8148ff60 T gk20a_instmem_new +ffffffff814900c0 t nvkm_ltc_intr +ffffffff814900e0 t nvkm_ltc_oneinit +ffffffff81490100 t nvkm_ltc_init +ffffffff81490180 t nvkm_ltc_dtor +ffffffff814901a0 T nvkm_ltc_tags_clear +ffffffff81490200 T nvkm_ltc_zbc_color_get +ffffffff81490240 T nvkm_ltc_zbc_depth_get +ffffffff81490260 T nvkm_ltc_invalidate +ffffffff81490280 T nvkm_ltc_flush +ffffffff814902a0 T nvkm_ltc_new_ +ffffffff81490320 T gf100_ltc_cbc_clear +ffffffff81490370 T gf100_ltc_zbc_clear_color +ffffffff81490400 T gf100_ltc_zbc_clear_depth +ffffffff81490450 t gf100_ltc_init +ffffffff814904f0 T gf100_ltc_cbc_wait +ffffffff814905b0 T gf100_ltc_invalidate +ffffffff81490610 T gf100_ltc_flush +ffffffff81490670 t gf100_ltc_lts_intr +ffffffff81490740 T gf100_ltc_intr +ffffffff814907c0 T gf100_ltc_oneinit_tag_ram +ffffffff814908d0 T gf100_ltc_oneinit +ffffffff81490950 T gf100_ltc_new +ffffffff81490970 t gk104_ltc_init +ffffffff81490a00 T gk104_ltc_new +ffffffff81490a20 T gm107_ltc_cbc_clear +ffffffff81490a80 T gm107_ltc_zbc_clear_color +ffffffff81490b10 T gm107_ltc_zbc_clear_depth +ffffffff81490b60 t gm107_ltc_init +ffffffff81490be0 T gm107_ltc_cbc_wait +ffffffff81490ca0 t gm107_ltc_oneinit +ffffffff81490d20 T gm107_ltc_intr_lts +ffffffff81490dd0 T gm107_ltc_intr +ffffffff81490e50 T gm107_ltc_new +ffffffff81490e70 t gm200_ltc_init +ffffffff81490e90 t gm200_ltc_oneinit +ffffffff81490ed0 T gm200_ltc_new +ffffffff81490ef0 t gp100_ltc_init +ffffffff81490f00 t gp100_ltc_oneinit +ffffffff81490f40 t gp100_ltc_intr +ffffffff81490fc0 T gp100_ltc_new +ffffffff81490fe0 t nvkm_mc_dtor +ffffffff81490ff0 t nvkm_mc_fini +ffffffff81491010 t nvkm_mc_init +ffffffff81491050 t nvkm_mc_reset_mask +ffffffff814910a0 T nvkm_mc_unk260 +ffffffff814910c0 T nvkm_mc_intr_mask +ffffffff81491130 T nvkm_mc_intr_unarm +ffffffff81491150 T nvkm_mc_intr_rearm +ffffffff81491170 T nvkm_mc_intr +ffffffff814912d0 T nvkm_mc_reset +ffffffff81491350 T nvkm_mc_disable +ffffffff81491390 T nvkm_mc_enable +ffffffff814913e0 T nvkm_mc_enabled +ffffffff81491410 T nvkm_mc_ctor +ffffffff81491430 T nvkm_mc_new_ +ffffffff81491490 T nv04_mc_intr_rearm +ffffffff814914b0 T nv04_mc_init +ffffffff814914e0 T nv04_mc_intr_unarm +ffffffff81491510 T nv04_mc_intr_stat +ffffffff81491530 T nv04_mc_new +ffffffff81491550 T nv11_mc_new +ffffffff81491570 T nv17_mc_new +ffffffff81491590 T nv44_mc_init +ffffffff81491610 T nv44_mc_new +ffffffff81491630 T nv50_mc_init +ffffffff81491650 T nv50_mc_new +ffffffff81491670 T g84_mc_new +ffffffff81491690 T g98_mc_new +ffffffff814916b0 t gt215_mc_intr_mask +ffffffff814916f0 T gt215_mc_new +ffffffff81491710 T gf100_mc_intr_rearm +ffffffff81491740 T gf100_mc_unk260 +ffffffff81491760 T gf100_mc_intr_unarm +ffffffff814917a0 T gf100_mc_intr_stat +ffffffff814917d0 T gf100_mc_intr_mask +ffffffff81491840 T gf100_mc_new +ffffffff81491860 T gk104_mc_new +ffffffff81491880 T gk20a_mc_new +ffffffff814918a0 t gp100_mc_intr_update +ffffffff81491910 T gp100_mc_intr_unarm +ffffffff81491950 T gp100_mc_intr_rearm +ffffffff81491990 T gp100_mc_intr_mask +ffffffff814919e0 T gp100_mc_new_ +ffffffff81491a50 T gp100_mc_new +ffffffff81491a70 T gp10b_mc_init +ffffffff81491aa0 T gp10b_mc_new +ffffffff81491ac0 t nvkm_mmu_init +ffffffff81491ae0 t nvkm_mmu_dtor +ffffffff81491b60 t nvkm_mmu_type.part.0 +ffffffff81491ba0 t nvkm_mmu_host +ffffffff81491c80 t nvkm_mmu_oneinit +ffffffff81491f60 t nvkm_mmu_ptc_get.part.2 +ffffffff814921a0 T nvkm_mmu_ptp_get +ffffffff81492330 T nvkm_mmu_ptc_put +ffffffff81492490 T nvkm_mmu_ptc_get +ffffffff814924f0 T nvkm_mmu_ptc_dump +ffffffff814925a0 T nvkm_mmu_ctor +ffffffff81492660 T nvkm_mmu_new_ +ffffffff814926b0 T nv04_mmu_new +ffffffff814926d0 t nv41_mmu_init +ffffffff81492740 T nv41_mmu_new +ffffffff814927a0 t nv44_mmu_init +ffffffff814928d0 T nv44_mmu_new +ffffffff81492930 T nv50_mmu_kind +ffffffff81492940 T nv50_mmu_new +ffffffff81492960 T g84_mmu_new +ffffffff81492980 T mcp77_mmu_new +ffffffff814929a0 T gf100_mmu_kind +ffffffff814929b0 T gf100_mmu_new +ffffffff814929d0 T gk104_mmu_new +ffffffff814929f0 T gk20a_mmu_new +ffffffff81492a10 T gm200_mmu_kind +ffffffff81492a20 T gm200_mmu_new +ffffffff81492a50 T gm20b_mmu_new +ffffffff81492a80 T gp100_mmu_new +ffffffff81492ad0 T gp10b_mmu_new +ffffffff81492b20 t nvkm_mem_target +ffffffff81492b30 t nvkm_mem_page +ffffffff81492b40 t nvkm_mem_size +ffffffff81492b50 t nvkm_mem_map_sgl +ffffffff81492ba0 t nvkm_mem_map_dma +ffffffff81492bf0 t nvkm_mem_addr +ffffffff81492c10 t nvkm_mem_dtor +ffffffff81492cc0 T nvkm_mem_map_host +ffffffff81492d00 T nvkm_mem_new_type +ffffffff81493030 T nv04_mem_map +ffffffff814930b0 T nv04_mem_new +ffffffff81493100 T nv50_mem_map +ffffffff81493240 T nv50_mem_new +ffffffff814932a0 T gf100_mem_map +ffffffff814933f0 T gf100_mem_new +ffffffff81493460 t nvkm_vmm_ptes_unmap +ffffffff81493660 t nvkm_vmm_pt_new +ffffffff81493720 t nvkm_vmm_unref_pdes +ffffffff814938d0 t nvkm_vmm_ref_ptes +ffffffff81493ad0 t nvkm_vmm_ptes_map.isra.2 +ffffffff81493cc0 t nvkm_vmm_map_valid +ffffffff81493d90 t nvkm_vmm_free_insert +ffffffff81493e10 t nvkm_vmm_put_region +ffffffff81493f50 t nvkm_vmm_unref_ptes +ffffffff81494130 t nvkm_vmm_ptes_unmap_put +ffffffff814943a0 t nvkm_vmm_ptes_put +ffffffff81494590 t nvkm_vmm_ptes_sparse_put +ffffffff81494850 t nvkm_vmm_ref_swpt +ffffffff814948d0 t nvkm_vmm_sparse_ptes.isra.7 +ffffffff81494920 t nvkm_vmm_ref_hwpt +ffffffff81494c60 t nvkm_vmm_ptes_sparse_get +ffffffff81495050 t nvkm_vmm_ptes_sparse +ffffffff814951c0 t nvkm_vmm_ptes_get_map +ffffffff81495590 t nvkm_vmm_ptes_get +ffffffff814958e0 T nvkm_vma_tail +ffffffff814959f0 T nvkm_vmm_node_insert +ffffffff81495a50 T nvkm_vmm_node_search +ffffffff81495aa0 T nvkm_vmm_ctor +ffffffff81495ce0 T nvkm_vmm_new_ +ffffffff81495d70 T nvkm_vmm_unmap_region +ffffffff81495ee0 T nvkm_vmm_unmap_locked +ffffffff81495f50 T nvkm_vmm_unmap +ffffffff81495f90 T nvkm_vmm_map +ffffffff814962b0 T nvkm_vmm_put_locked +ffffffff81496490 T nvkm_vmm_put +ffffffff814964e0 T nvkm_vmm_get_locked +ffffffff81496a00 T nvkm_vmm_get +ffffffff81496a60 T nvkm_vmm_part +ffffffff81496ab0 T nvkm_vmm_join +ffffffff81496b00 T nvkm_vmm_boot +ffffffff81496ce0 T nvkm_vmm_unref +ffffffff81496e50 T nvkm_vmm_ref +ffffffff81496e70 T nvkm_vmm_new +ffffffff81496ed0 t nv04_vmm_pgt_dma +ffffffff81496f60 T nv04_vmm_valid +ffffffff81496f70 t nv04_vmm_pgt_sgl +ffffffff814970a0 t nv04_vmm_pgt_unmap +ffffffff81497130 T nv04_vmm_new_ +ffffffff81497160 T nv04_vmm_new +ffffffff81497220 t nv41_vmm_pgt_dma +ffffffff814972b0 t nv41_vmm_pgt_sgl +ffffffff814973e0 t nv41_vmm_pgt_unmap +ffffffff81497470 t nv41_vmm_flush +ffffffff81497500 T nv41_vmm_new +ffffffff81497530 t nv44_vmm_flush +ffffffff814975c0 t nv44_vmm_pgt_fill.isra.0 +ffffffff814977d0 t nv44_vmm_pgt_dma +ffffffff814979f0 t nv44_vmm_pgt_unmap +ffffffff81497b70 t nv44_vmm_pgt_sgl +ffffffff81497e90 T nv44_vmm_new +ffffffff81497fc0 t nv50_vmm_pgt_dma +ffffffff81498290 t nv50_vmm_pgt_mem +ffffffff814984c0 t nv50_vmm_pgt_sgl +ffffffff814986f0 t nv50_vmm_pgt_unmap +ffffffff81498790 T nv50_vmm_flush +ffffffff81498920 T nv50_vmm_valid +ffffffff81498b70 T nv50_vmm_part +ffffffff81498bd0 t nv50_vmm_pde.isra.0 +ffffffff81498cb0 t nv50_vmm_pgd_pde +ffffffff81498d70 T nv50_vmm_join +ffffffff81498ea0 T nv50_vmm_new +ffffffff81498ed0 T mcp77_vmm_new +ffffffff81498f00 T gf100_vmm_pgt_dma +ffffffff814991c0 T gf100_vmm_pgt_mem +ffffffff814993e0 T gf100_vmm_pgd_pde +ffffffff81499540 T gf100_vmm_aper +ffffffff81499560 T gf100_vmm_pgt_sgl +ffffffff81499780 T gf100_vmm_pgt_unmap +ffffffff81499820 T gf100_vmm_part +ffffffff814998c0 T gf100_vmm_valid +ffffffff81499b60 T gf100_vmm_flush_ +ffffffff81499c60 T gf100_vmm_flush +ffffffff81499c70 T gf100_vmm_join_ +ffffffff81499d60 T gf100_vmm_join +ffffffff81499d70 T gf100_vmm_new_ +ffffffff81499db0 T gf100_vmm_new +ffffffff81499de0 T gk104_vmm_lpt_invalid +ffffffff81499ea0 T gk104_vmm_new +ffffffff81499ed0 T gk20a_vmm_aper +ffffffff81499ef0 T gk20a_vmm_new +ffffffff81499f20 t gm200_vmm_pgd_sparse +ffffffff81499fe0 t gm200_vmm_pgt_sparse +ffffffff8149a0a0 T gm200_vmm_join +ffffffff8149a0c0 T gm200_vmm_join_ +ffffffff8149a0e0 T gm200_vmm_new_ +ffffffff8149a150 T gm200_vmm_new +ffffffff8149a180 T gm200_vmm_new_fixed +ffffffff8149a1b0 T gm20b_vmm_new +ffffffff8149a1e0 T gm20b_vmm_new_fixed +ffffffff8149a210 t gp100_vmm_pgt_dma +ffffffff8149a430 t gp100_vmm_pgt_mem +ffffffff8149a5b0 t gp100_vmm_pd0_mem +ffffffff8149a770 t gp100_vmm_pd0_pde +ffffffff8149a8f0 t gp100_vmm_pd0_sparse +ffffffff8149a9b0 t gp100_vmm_pd0_unmap +ffffffff8149aa70 t gp100_vmm_pd1_pde +ffffffff8149ab40 t gp100_vmm_pgt_sparse +ffffffff8149ac00 t gp100_vmm_lpt_invalid +ffffffff8149acc0 t gp100_vmm_pgt_sgl +ffffffff8149ae40 T gp100_vmm_valid +ffffffff8149b070 T gp100_vmm_flush +ffffffff8149b080 T gp100_vmm_join +ffffffff8149b090 T gp100_vmm_new +ffffffff8149b0c0 T gp10b_vmm_new +ffffffff8149b0f0 t nvkm_umem_map +ffffffff8149b1e0 t nvkm_umem_dtor +ffffffff8149b240 t nvkm_umem_unmap +ffffffff8149b2a0 T nvkm_umem_search +ffffffff8149b390 T nvkm_umem_new +ffffffff8149b590 t nvkm_ummu_sclass +ffffffff8149b620 t nvkm_ummu_mthd +ffffffff8149b7b0 T nvkm_ummu_new +ffffffff8149b880 t nvkm_uvmm_dtor +ffffffff8149b8a0 t nvkm_uvmm_mthd +ffffffff8149be00 T nvkm_uvmm_search +ffffffff8149be20 T nvkm_uvmm_new +ffffffff8149bfb0 t mxm_shadow_dsm +ffffffff8149c090 t mxm_shadow_rom +ffffffff8149c250 t wmi_wmmx_mxmi.constprop.0 +ffffffff8149c2d0 t mxm_shadow_wmi +ffffffff8149c3b0 T nvkm_mxm_new_ +ffffffff8149c550 T mxms_version +ffffffff8149c580 T mxms_headerlen +ffffffff8149c590 T mxms_structlen +ffffffff8149c5a0 T mxms_checksum +ffffffff8149c5e0 T mxms_valid +ffffffff8149c650 T mxms_foreach +ffffffff8149c8d0 T mxms_output_device +ffffffff8149c930 t mxm_show_unmatched +ffffffff8149c980 t mxm_dcb_sanitise_entry +ffffffff8149caf0 t mxm_match_dcb +ffffffff8149cbd0 t mxm_match_tmds_partner +ffffffff8149cc00 T nv50_mxm_new +ffffffff8149ccd0 t nvkm_pci_fini +ffffffff8149cce0 t nvkm_pci_preinit +ffffffff8149ccf0 t nvkm_pci_init +ffffffff8149cd60 t nvkm_pci_intr +ffffffff8149cdd0 t nvkm_pci_oneinit +ffffffff8149ce30 t nvkm_pci_dtor +ffffffff8149ce70 T nvkm_pci_rd32 +ffffffff8149ce80 T nvkm_pci_wr08 +ffffffff8149cea0 T nvkm_pci_wr32 +ffffffff8149ceb0 T nvkm_pci_mask +ffffffff8149cf00 T nvkm_pci_rom_shadow +ffffffff8149cf40 T nvkm_pci_new_ +ffffffff8149d050 T nvkm_pcie_oneinit +ffffffff8149d060 T nvkm_pcie_set_link +ffffffff8149d1c0 T nvkm_pcie_init +ffffffff8149d2a0 t nv04_pci_wr32 +ffffffff8149d2c0 t nv04_pci_wr08 +ffffffff8149d2e0 t nv04_pci_rd32 +ffffffff8149d300 T nv04_pci_new +ffffffff8149d320 T nv40_pci_rd32 +ffffffff8149d340 T nv40_pci_wr08 +ffffffff8149d360 T nv40_pci_wr32 +ffffffff8149d380 T nv40_pci_msi_rearm +ffffffff8149d390 T nv40_pci_new +ffffffff8149d3b0 T nv46_pci_msi_rearm +ffffffff8149d3e0 T nv46_pci_new +ffffffff8149d400 T nv4c_pci_new +ffffffff8149d420 t g84_pcie_version_supported +ffffffff8149d430 T g84_pcie_version +ffffffff8149d450 T g84_pcie_set_version +ffffffff8149d490 t g84_pcie_set_cap_speed +ffffffff8149d4d0 T g84_pcie_cur_speed +ffffffff8149d500 T g84_pcie_init +ffffffff8149d520 T g84_pcie_max_speed +ffffffff8149d540 T g84_pci_init +ffffffff8149d590 T g84_pcie_set_link_speed +ffffffff8149d5d0 T g84_pcie_set_link +ffffffff8149d600 T g84_pci_new +ffffffff8149d620 T g92_pcie_version_supported +ffffffff8149d640 T g92_pci_new +ffffffff8149d660 T g94_pci_new +ffffffff8149d680 T gf100_pcie_version +ffffffff8149d6a0 T gf100_pcie_set_version +ffffffff8149d6e0 t gf100_pci_msi_rearm +ffffffff8149d6f0 T gf100_pcie_set_cap_speed +ffffffff8149d730 T gf100_pcie_init +ffffffff8149d750 T gf100_pcie_set_link +ffffffff8149d780 T gf100_pcie_cap_speed +ffffffff8149d7a0 T gf100_pci_new +ffffffff8149d7c0 T gf106_pci_new +ffffffff8149d7e0 t gk104_pcie_version_supported +ffffffff8149d800 t gk104_pcie_max_speed +ffffffff8149d830 t gk104_pcie_cap_speed +ffffffff8149d8a0 t gk104_pcie_set_link +ffffffff8149d9b0 t gk104_pcie_init +ffffffff8149db80 T gk104_pci_new +ffffffff8149dba0 t gp100_pci_msi_rearm +ffffffff8149dbb0 T gp100_pci_new +ffffffff8149dbd0 t nvkm_pmu_recv +ffffffff8149dbf0 t nvkm_pmu_intr +ffffffff8149dc10 t nvkm_pmu_fini +ffffffff8149dc40 t nvkm_pmu_reset +ffffffff8149dd20 t nvkm_pmu_init +ffffffff8149dd50 t nvkm_pmu_preinit +ffffffff8149dd60 t nvkm_pmu_oneinit +ffffffff8149dd80 t nvkm_pmu_dtor +ffffffff8149ddb0 T nvkm_pmu_pgob +ffffffff8149ddd0 T nvkm_pmu_send +ffffffff8149ddf0 T nvkm_pmu_ctor +ffffffff8149de50 T nvkm_pmu_new_ +ffffffff8149dea0 t memx_out +ffffffff8149df10 t memx_cmd +ffffffff8149dfd0 T nvkm_memx_init +ffffffff8149e0a0 T nvkm_memx_fini +ffffffff8149e130 T nvkm_memx_wr32 +ffffffff8149e160 T nvkm_memx_wait +ffffffff8149e1a0 T nvkm_memx_nsec +ffffffff8149e1d0 T nvkm_memx_wait_vblank +ffffffff8149e2e0 T nvkm_memx_train +ffffffff8149e2f0 T nvkm_memx_train_result +ffffffff8149e390 T nvkm_memx_block +ffffffff8149e3a0 T nvkm_memx_unblock +ffffffff8149e3b0 t gt215_pmu_enabled +ffffffff8149e3d0 T gt215_pmu_fini +ffffffff8149e3f0 T gt215_pmu_init +ffffffff8149e620 t gt215_pmu_reset +ffffffff8149e680 T gt215_pmu_send +ffffffff8149e8c0 T gt215_pmu_recv +ffffffff8149ea90 T gt215_pmu_intr +ffffffff8149ec70 T gt215_pmu_new +ffffffff8149ec90 T gf100_pmu_reset +ffffffff8149ecb0 T gf100_pmu_enabled +ffffffff8149ecc0 T gf100_pmu_new +ffffffff8149ece0 T gf119_pmu_new +ffffffff8149ed00 t magic_.isra.0 +ffffffff8149edc0 t magic +ffffffff8149ee10 t gk104_pmu_pgob +ffffffff8149f0c0 T gk104_pmu_new +ffffffff8149f0e0 T gk110_pmu_pgob +ffffffff8149f330 T gk110_pmu_new +ffffffff8149f350 T gk208_pmu_new +ffffffff8149f370 t gk20a_pmu_fini +ffffffff8149f3a0 t gk20a_pmu_init +ffffffff8149f490 t gk20a_pmu_dvfs_work +ffffffff8149f620 T gk20a_pmu_new +ffffffff8149f6a0 T gm107_pmu_new +ffffffff8149f6c0 t gm20b_pmu_recv +ffffffff8149f700 T gm20b_pmu_new +ffffffff8149f720 T gp100_pmu_new +ffffffff8149f740 t gp102_pmu_enabled +ffffffff8149f760 t gp102_pmu_reset +ffffffff8149f7b0 T gp102_pmu_new +ffffffff8149f7d0 t nvkm_secboot_fini +ffffffff8149f7f0 t nvkm_secboot_dtor +ffffffff8149f810 t nvkm_secboot_oneinit +ffffffff8149f920 T nvkm_secboot_reset +ffffffff8149f980 T nvkm_secboot_is_managed +ffffffff8149f9a0 T nvkm_secboot_ctor +ffffffff8149fa10 T hs_ucode_load_blob +ffffffff8149fae0 t ls_ucode_img_load_gr.isra.1 +ffffffff8149fda0 T acr_ls_ucode_load_fecs +ffffffff8149fdb0 T acr_ls_ucode_load_gpccs +ffffffff8149fdc0 t acr_ls_msgqueue_post_run +ffffffff8149fe80 t acr_ls_ucode_load_msgqueue.isra.0 +ffffffff814a0010 T acr_ls_ucode_load_pmu +ffffffff814a0060 T acr_ls_pmu_post_run +ffffffff814a0090 T acr_ls_ucode_load_sec2 +ffffffff814a00e0 T acr_ls_sec2_post_run +ffffffff814a0220 T nvkm_acr_load_firmware +ffffffff814a02e0 t acr_r352_generate_flcn_bl_desc +ffffffff814a0350 T acr_r352_ls_fill_headers +ffffffff814a04d0 T acr_r352_fixup_hs_desc +ffffffff814a0550 t acr_r352_generate_hs_bl_desc +ffffffff814a05a0 t acr_r352_generate_pmu_bl_desc +ffffffff814a0650 t acr_r352_shutdown +ffffffff814a0720 t acr_r352_fini +ffffffff814a0730 T acr_r352_ls_ucode_img_load +ffffffff814a08b0 T acr_r352_ls_write_wpr +ffffffff814a09f0 t acr_r352_dtor +ffffffff814a0a40 t acr_r352_prepare_hs_blob +ffffffff814a0bb0 t acr_r352_load +ffffffff814a0d50 T acr_r352_load_blobs +ffffffff814a1240 t acr_r352_bootstrap +ffffffff814a1440 t acr_r352_reset +ffffffff814a15d0 T acr_r352_new_ +ffffffff814a1670 T acr_r352_new +ffffffff814a1690 t acr_r361_generate_flcn_bl_desc +ffffffff814a1700 T acr_r361_generate_hs_bl_desc +ffffffff814a1750 t acr_r361_generate_pmu_bl_desc +ffffffff814a17f0 t acr_r361_generate_sec2_bl_desc +ffffffff814a1870 T acr_r361_new +ffffffff814a1890 t acr_r364_fixup_hs_desc +ffffffff814a1950 T acr_r364_new +ffffffff814a1970 T acr_r367_ls_fill_headers +ffffffff814a1b00 T acr_r367_fixup_hs_desc +ffffffff814a1bc0 T acr_r367_ls_ucode_img_load +ffffffff814a1cf0 T acr_r367_ls_write_wpr +ffffffff814a1e30 T acr_r367_new +ffffffff814a1e50 t acr_r370_generate_flcn_bl_desc +ffffffff814a1ec0 t acr_r370_generate_sec2_bl_desc +ffffffff814a1f30 T acr_r370_generate_hs_bl_desc +ffffffff814a1f80 T acr_r370_new +ffffffff814a1fa0 t acr_r375_generate_pmu_bl_desc +ffffffff814a2030 T acr_r375_new +ffffffff814a2050 T gm200_secboot_fini +ffffffff814a2080 T gm200_secboot_run_blob +ffffffff814a2210 T gm200_secboot_dtor +ffffffff814a2250 T gm200_secboot_oneinit +ffffffff814a22f0 T gm200_secboot_new +ffffffff814a2360 t gm20b_secboot_oneinit +ffffffff814a2390 T gm20b_secboot_tegra_read_wpr +ffffffff814a23c0 T gm20b_secboot_new +ffffffff814a2430 t gp102_secboot_scrub_required +ffffffff814a2470 t gp102_secboot_run_blob +ffffffff814a26b0 T gp102_secboot_new +ffffffff814a2720 T gp108_secboot_new +ffffffff814a27a0 t gp10b_secboot_oneinit +ffffffff814a27c0 T gp10b_secboot_new +ffffffff814a2830 t nvkm_therm_compute_linear_duty +ffffffff814a28a0 T nvkm_therm_attr_get +ffffffff814a2920 t nvkm_therm_intr +ffffffff814a2940 t nvkm_therm_update +ffffffff814a2b70 t nvkm_therm_alarm +ffffffff814a2b80 t nvkm_therm_fini +ffffffff814a2bf0 t nvkm_therm_dtor +ffffffff814a2c10 T nvkm_therm_temp_get +ffffffff814a2c30 T nvkm_therm_cstate +ffffffff814a2c60 T nvkm_therm_fan_mode +ffffffff814a2cd0 T nvkm_therm_attr_set +ffffffff814a2de0 t nvkm_therm_init +ffffffff814a2e50 t nvkm_therm_oneinit +ffffffff814a2ed0 T nvkm_therm_clkgate_enable +ffffffff814a2f00 T nvkm_therm_clkgate_fini +ffffffff814a2f30 T nvkm_therm_clkgate_init +ffffffff814a2f60 T nvkm_therm_ctor +ffffffff814a3010 T nvkm_therm_new_ +ffffffff814a3060 t nvkm_fan_update +ffffffff814a31f0 t nvkm_fan_alarm +ffffffff814a3210 T nvkm_therm_fan_get +ffffffff814a3230 T nvkm_therm_fan_set +ffffffff814a3240 T nvkm_therm_fan_sense +ffffffff814a3370 T nvkm_therm_fan_user_get +ffffffff814a3380 T nvkm_therm_fan_user_set +ffffffff814a33b0 T nvkm_therm_fan_init +ffffffff814a33c0 T nvkm_therm_fan_fini +ffffffff814a33f0 T nvkm_therm_fan_ctor +ffffffff814a3630 t nvkm_fannil_get +ffffffff814a3640 t nvkm_fannil_set +ffffffff814a3650 T nvkm_fannil_create +ffffffff814a36a0 t nvkm_fanpwm_set +ffffffff814a3790 t nvkm_fanpwm_get +ffffffff814a3830 T nvkm_fanpwm_create +ffffffff814a3930 t nvkm_fantog_get +ffffffff814a3940 t nvkm_fantog_update +ffffffff814a3a30 t nvkm_fantog_alarm +ffffffff814a3a50 t nvkm_fantog_set +ffffffff814a3a90 T nvkm_fantog_create +ffffffff814a3b50 t probe_monitoring_device +ffffffff814a3bb0 T nvkm_therm_ic_ctor +ffffffff814a3d50 t nv_poweroff_work +ffffffff814a3d70 T nvkm_therm_sensor_set_threshold_state +ffffffff814a3d80 T nvkm_therm_sensor_get_threshold_state +ffffffff814a3d90 T nvkm_therm_sensor_event +ffffffff814a3f40 t nvkm_therm_threshold_hyst_polling +ffffffff814a3fb0 t alarm_timer_callback +ffffffff814a4070 T nvkm_therm_program_alarms_polling +ffffffff814a4080 T nvkm_therm_sensor_init +ffffffff814a4090 T nvkm_therm_sensor_fini +ffffffff814a40c0 T nvkm_therm_sensor_preinit +ffffffff814a40d0 T nvkm_therm_sensor_ctor +ffffffff814a41b0 t nv40_temp_get +ffffffff814a42b0 T nv40_therm_intr +ffffffff814a4320 t nv40_fan_pwm_set +ffffffff814a4400 t nv40_fan_pwm_get +ffffffff814a44f0 t nv40_fan_pwm_ctrl +ffffffff814a45a0 t nv40_therm_init +ffffffff814a4670 T nv40_therm_new +ffffffff814a4690 T nv50_fan_pwm_clock +ffffffff814a4730 t nv50_temp_get +ffffffff814a47c0 t pwm_info +ffffffff814a4860 T nv50_fan_pwm_ctrl +ffffffff814a48e0 T nv50_fan_pwm_get +ffffffff814a4990 T nv50_fan_pwm_set +ffffffff814a4a10 t nv50_therm_init +ffffffff814a4a60 T nv50_therm_new +ffffffff814a4a80 T g84_temp_get +ffffffff814a4ac0 T g84_therm_fini +ffffffff814a4b10 t g84_therm_program_alarms +ffffffff814a4bd0 t g84_therm_threshold_hyst_emulation.constprop.1 +ffffffff814a4cc0 t g84_therm_intr +ffffffff814a4e10 T g84_sensor_setup +ffffffff814a4ea0 T g84_therm_init +ffffffff814a4eb0 T g84_therm_new +ffffffff814a4f30 T gt215_therm_fan_sense +ffffffff814a4f70 T gt215_therm_init +ffffffff814a5050 T gt215_therm_new +ffffffff814a5070 T gf100_clkgate_init +ffffffff814a50e0 t pwm_info +ffffffff814a5190 T gf119_fan_pwm_ctrl +ffffffff814a51f0 T gf119_fan_pwm_get +ffffffff814a52c0 T gf119_fan_pwm_set +ffffffff814a5380 T gf119_fan_pwm_clock +ffffffff814a53c0 T gf119_therm_init +ffffffff814a54a0 T gf119_therm_new +ffffffff814a54c0 T gk104_clkgate_enable +ffffffff814a55d0 T gk104_clkgate_fini +ffffffff814a5650 T gk104_therm_new +ffffffff814a56c0 t gm107_fan_pwm_ctrl +ffffffff814a56d0 t gm107_fan_pwm_clock +ffffffff814a56e0 t gm107_fan_pwm_get +ffffffff814a5730 t gm107_fan_pwm_set +ffffffff814a5790 T gm107_therm_new +ffffffff814a57b0 T gm200_therm_new +ffffffff814a57d0 t gp100_temp_get +ffffffff814a5800 T gp100_therm_new +ffffffff814a5820 t nvkm_timer_intr +ffffffff814a5840 t nvkm_timer_fini +ffffffff814a5860 t nvkm_timer_dtor +ffffffff814a5870 T nvkm_timer_read +ffffffff814a5880 T nvkm_timer_alarm_trigger +ffffffff814a59f0 t nvkm_timer_init +ffffffff814a5a40 T nvkm_timer_alarm +ffffffff814a5b00 T nvkm_timer_new_ +ffffffff814a5b70 T nv04_timer_time +ffffffff814a5bb0 T nv04_timer_alarm_fini +ffffffff814a5bd0 T nv04_timer_alarm_init +ffffffff814a5c00 T nv04_timer_read +ffffffff814a5c50 T nv04_timer_intr +ffffffff814a5ce0 t nv04_timer_init +ffffffff814a5e50 T nv04_timer_new +ffffffff814a5e70 t nv40_timer_init +ffffffff814a5fe0 T nv40_timer_new +ffffffff814a6000 t nv41_timer_init +ffffffff814a60f0 T nv41_timer_new +ffffffff814a6110 T gk20a_timer_new +ffffffff814a6130 t nvkm_top_oneinit +ffffffff814a6150 t nvkm_top_dtor +ffffffff814a61d0 T nvkm_top_device_new +ffffffff814a6230 T nvkm_top_reset +ffffffff814a6280 T nvkm_top_intr_mask +ffffffff814a62d0 T nvkm_top_intr +ffffffff814a6350 T nvkm_top_fault_id +ffffffff814a6390 T nvkm_top_fault +ffffffff814a63d0 T nvkm_top_engine +ffffffff814a6430 T nvkm_top_new_ +ffffffff814a64a0 t gk104_top_oneinit +ffffffff814a6740 T gk104_top_new +ffffffff814a6760 t nvkm_volt_oneinit +ffffffff814a67b0 t nvkm_volt_dtor +ffffffff814a67c0 T nvkm_volt_get +ffffffff814a6830 t nvkm_volt_init +ffffffff814a6840 T nvkm_volt_map_min +ffffffff814a68c0 T nvkm_volt_map +ffffffff814a6ae0 T nvkm_volt_set_id +ffffffff814a6c10 T nvkm_volt_ctor +ffffffff814a6e40 T nvkm_volt_new_ +ffffffff814a6e90 T nvkm_voltgpio_get +ffffffff814a6f00 T nvkm_voltgpio_set +ffffffff814a6f70 T nvkm_voltgpio_init +ffffffff814a6ff0 T nv40_volt_new +ffffffff814a7030 t gf100_volt_speedo_read +ffffffff814a7050 T gf100_volt_oneinit +ffffffff814a7090 T gf100_volt_new +ffffffff814a70d0 t gk104_volt_set +ffffffff814a7130 t gk104_volt_speedo_read +ffffffff814a7190 t gk104_volt_get +ffffffff814a71e0 T gk104_volt_new +ffffffff814a7330 t gk20a_volt_vid_get +ffffffff814a7370 t gk20a_volt_vid_set +ffffffff814a7380 t gk20a_volt_set_id +ffffffff814a7390 T gk20a_volt_ctor +ffffffff814a7580 T gk20a_volt_new +ffffffff814a75d0 T gm20b_volt_new +ffffffff814a76b0 t nvkm_falcon_oclass_get +ffffffff814a7710 t nvkm_falcon_dtor +ffffffff814a7720 t nvkm_falcon_cclass_bind +ffffffff814a7740 t nvkm_falcon_oneinit +ffffffff814a77d0 t nvkm_falcon_intr +ffffffff814a7900 t nvkm_falcon_fini +ffffffff814a7980 t vmemdup +ffffffff814a79b0 t nvkm_falcon_init +ffffffff814a8130 T nvkm_falcon_new_ +ffffffff814a81d0 t nvkm_xtensa_oclass_get +ffffffff814a8230 t nvkm_xtensa_dtor +ffffffff814a8240 t nvkm_xtensa_cclass_bind +ffffffff814a8260 t nvkm_xtensa_intr +ffffffff814a8390 t nvkm_xtensa_fini +ffffffff814a83f0 t nvkm_xtensa_init +ffffffff814a86c0 T nvkm_xtensa_new_ +ffffffff814a8730 T g84_bsp_new +ffffffff814a8760 T gt215_ce_intr +ffffffff814a8870 T gt215_ce_new +ffffffff814a88a0 t gf100_ce_init +ffffffff814a88d0 T gf100_ce_new +ffffffff814a8930 T gk104_ce_intr +ffffffff814a8b10 T gk104_ce_new +ffffffff814a8b30 T gm107_ce_new +ffffffff814a8b50 T gm200_ce_new +ffffffff814a8b70 T gp100_ce_intr +ffffffff814a8d20 T gp100_ce_new +ffffffff814a8d40 T gp102_ce_new +ffffffff814a8d60 t g84_cipher_oclass_bind +ffffffff814a8e10 t g84_cipher_cclass_bind +ffffffff814a8e30 t g84_cipher_intr +ffffffff814a8f90 t g84_cipher_init +ffffffff814a8fe0 T g84_cipher_new +ffffffff814a9000 t nvkm_acpi_ntfy +ffffffff814a9030 T nvkm_acpi_fini +ffffffff814a9040 T nvkm_acpi_init +ffffffff814a9060 t nvkm_device_event_ctor +ffffffff814a9080 T nvkm_device_find +ffffffff814a90e0 T nvkm_device_list +ffffffff814a9150 T nvkm_device_engine +ffffffff814a92c0 T nvkm_device_subdev +ffffffff814a9500 T nvkm_device_fini +ffffffff814a96c0 T nvkm_device_init +ffffffff814a9920 T nvkm_device_del +ffffffff814a9a00 T nvkm_device_ctor +ffffffff814aca50 t nvkm_control_mthd +ffffffff814ace60 t nvkm_control_new +ffffffff814aceb0 t nvkm_device_pci +ffffffff814acec0 t nvkm_device_pci_resource_addr +ffffffff814acee0 t nvkm_device_pci_resource_size +ffffffff814acf10 t nvkm_device_pci_dtor +ffffffff814acf30 t nvkm_device_pci_fini +ffffffff814acf50 t nvkm_device_pci_preinit +ffffffff814acfa0 T nvkm_device_pci_new +ffffffff814ad3f0 T nvkm_device_tegra_new +ffffffff814ad400 t nvkm_udevice_map +ffffffff814ad450 t nvkm_udevice_child_new +ffffffff814ad480 t nvkm_udevice_child_get +ffffffff814ad580 t nvkm_udevice_mthd +ffffffff814ad970 t nvkm_udevice_fini +ffffffff814ad9d0 t nvkm_udevice_init +ffffffff814ada30 t nvkm_udevice_wr32 +ffffffff814ada50 t nvkm_udevice_wr16 +ffffffff814ada70 t nvkm_udevice_wr08 +ffffffff814ada90 t nvkm_udevice_rd32 +ffffffff814adab0 t nvkm_udevice_rd16 +ffffffff814adad0 t nvkm_udevice_rd08 +ffffffff814adaf0 t nvkm_udevice_new +ffffffff814adc10 t nvkm_disp_vblank_ctor +ffffffff814adc60 t nvkm_disp_hpd_ctor +ffffffff814adcf0 t nvkm_disp_class_get +ffffffff814add50 t nvkm_disp_intr +ffffffff814add70 t nvkm_disp_class_new +ffffffff814ade40 t nvkm_disp_class_del +ffffffff814ade80 t nvkm_disp_fini +ffffffff814adee0 t nvkm_disp_init +ffffffff814adf50 t nvkm_disp_oneinit +ffffffff814ae3d0 t nvkm_disp_vblank_fini +ffffffff814ae400 t nvkm_disp_vblank_init +ffffffff814ae430 t nvkm_disp_dtor +ffffffff814ae5a0 T nvkm_disp_vblank +ffffffff814ae5d0 T nvkm_disp_ntfy +ffffffff814ae600 T nvkm_disp_ctor +ffffffff814ae660 T nvkm_disp_new_ +ffffffff814ae700 t nv04_disp_root +ffffffff814ae710 t nv04_disp_intr +ffffffff814ae820 T nv04_disp_new +ffffffff814ae860 t nv50_disp_root_ +ffffffff814ae870 t nv50_disp_intr_ +ffffffff814ae890 t nv50_disp_dtor_ +ffffffff814ae8c0 t nv50_disp_super_ied_on +ffffffff814aea60 t nv50_disp_super_ied_off +ffffffff814aeb70 T nv50_disp_intr +ffffffff814aee20 T nv50_disp_new_ +ffffffff814af010 T nv50_disp_super_3_0 +ffffffff814af0a0 T nv50_disp_super_2_2 +ffffffff814af540 T nv50_disp_super_2_1 +ffffffff814af570 T nv50_disp_super_2_0 +ffffffff814af620 T nv50_disp_super_1_0 +ffffffff814af690 T nv50_disp_super_1 +ffffffff814af730 T nv50_disp_super +ffffffff814af910 T nv50_disp_new +ffffffff814af930 T g84_disp_new +ffffffff814af950 T g94_disp_new +ffffffff814af970 T gt200_disp_new +ffffffff814af990 T mcp77_disp_new +ffffffff814af9b0 T gt215_disp_new +ffffffff814af9d0 T mcp89_disp_new +ffffffff814af9f0 T gf119_disp_super +ffffffff814afc10 T gf119_disp_intr_error +ffffffff814afd20 T gf119_disp_intr +ffffffff814aff50 T gf119_disp_new_ +ffffffff814aff90 T gf119_disp_new +ffffffff814affb0 T gk104_disp_new +ffffffff814affd0 T gk110_disp_new +ffffffff814afff0 T gm107_disp_new +ffffffff814b0010 T gm200_disp_new +ffffffff814b0030 T gp100_disp_new +ffffffff814b0050 t gp102_disp_intr_error +ffffffff814b0160 T gp102_disp_new +ffffffff814b0180 T nvkm_rdport +ffffffff814b0220 T nvkm_wrport +ffffffff814b02c0 T nvkm_rdvgas +ffffffff814b02f0 T nvkm_wrvgas +ffffffff814b0320 T nvkm_rdvgag +ffffffff814b0350 T nvkm_wrvgag +ffffffff814b0380 T nvkm_rdvgac +ffffffff814b03b0 T nvkm_wrvgac +ffffffff814b03e0 T nvkm_rdvgai +ffffffff814b0410 T nvkm_wrvgai +ffffffff814b0460 T nvkm_lockvgac +ffffffff814b0500 T nvkm_rdvgaowner +ffffffff814b05d0 T nvkm_wrvgaowner +ffffffff814b0660 T nvkm_head_find +ffffffff814b0690 T nvkm_head_mthd_scanoutpos +ffffffff814b07c0 T nvkm_head_del +ffffffff814b0810 T nvkm_head_new_ +ffffffff814b0870 t nv04_head_vblank_put +ffffffff814b08a0 t nv04_head_vblank_get +ffffffff814b08d0 t nv04_head_rgpos +ffffffff814b0910 t nv04_head_state +ffffffff814b0990 T nv04_head_new +ffffffff814b09b0 T nv50_head_rgpos +ffffffff814b0a00 t nv50_head_state +ffffffff814b0ac0 t nv50_head_vblank_put +ffffffff814b0b00 t nv50_head_vblank_get +ffffffff814b0b50 t nv50_head_rgclk +ffffffff814b0b90 T nv50_head_new +ffffffff814b0bb0 t gf119_head_state +ffffffff814b0ca0 t gf119_head_vblank_put +ffffffff814b0ce0 t gf119_head_vblank_get +ffffffff814b0d20 t gf119_head_rgclk +ffffffff814b0d60 T gf119_head_new +ffffffff814b0da0 T nvkm_ior_find +ffffffff814b0de0 T nvkm_ior_del +ffffffff814b0e30 T nvkm_ior_new_ +ffffffff814b0ec0 T nv50_dac_sense +ffffffff814b0f80 t nv50_dac_clock +ffffffff814b0fc0 t nv50_dac_state +ffffffff814b1030 t nv50_dac_power_wait.isra.0 +ffffffff814b1080 T nv50_dac_power +ffffffff814b1180 T nv50_dac_new +ffffffff814b11d0 t gf119_dac_state +ffffffff814b1240 t gf119_dac_clock +ffffffff814b1280 T gf119_dac_new +ffffffff814b12d0 t nv50_pior_dp_links +ffffffff814b1300 t nv50_pior_clock +ffffffff814b1340 t nv50_pior_power_wait.isra.0 +ffffffff814b1390 t nv50_pior_power +ffffffff814b1440 t nv50_pior_depth.part.1 +ffffffff814b1490 t nv50_pior_state +ffffffff814b1530 T nv50_pior_depth +ffffffff814b1550 T nv50_pior_new +ffffffff814b15a0 T nv50_sor_state +ffffffff814b1660 T nv50_sor_clock +ffffffff814b16c0 t nv50_sor_power_wait.isra.0 +ffffffff814b1710 T nv50_sor_power +ffffffff814b1800 T nv50_sor_new_ +ffffffff814b1850 T nv50_sor_new +ffffffff814b1860 T g84_sor_new +ffffffff814b1880 t g94_sor_war_needed +ffffffff814b18d0 T g94_sor_dp_watermark +ffffffff814b1930 T g94_sor_dp_activesym +ffffffff814b19f0 T g94_sor_dp_audio_sym +ffffffff814b1a70 T g94_sor_dp_drive +ffffffff814b1ba0 T g94_sor_dp_pattern +ffffffff814b1c00 T g94_sor_dp_links +ffffffff814b1cd0 T g94_sor_dp_power +ffffffff814b1dc0 t g94_sor_war_2 +ffffffff814b1f60 t g94_sor_war_3 +ffffffff814b21f0 T g94_sor_state +ffffffff814b2300 T g94_sor_new +ffffffff814b2320 T mcp77_sor_new +ffffffff814b2340 T gt215_sor_dp_audio +ffffffff814b23d0 T gt215_sor_new +ffffffff814b23f0 T mcp89_sor_new +ffffffff814b2410 T gf119_sor_state +ffffffff814b2510 T gf119_sor_dp_watermark +ffffffff814b2560 T gf119_sor_dp_audio_sym +ffffffff814b25e0 T gf119_sor_dp_vcpi +ffffffff814b2680 T gf119_sor_dp_drive +ffffffff814b27e0 T gf119_sor_dp_pattern +ffffffff814b2830 T gf119_sor_dp_links +ffffffff814b2900 T gf119_sor_clock +ffffffff814b2990 T gf119_sor_dp_audio +ffffffff814b2a20 T gf119_sor_new_ +ffffffff814b2a70 T gf119_sor_new +ffffffff814b2a80 T gk104_sor_new +ffffffff814b2aa0 T gm107_sor_dp_pattern +ffffffff814b2b00 T gm107_sor_new +ffffffff814b2b20 t gm200_sor_dp_drive +ffffffff814b2c90 t gm200_sor_route_set +ffffffff814b2d60 t gm200_sor_route_get +ffffffff814b2e40 T gm200_sor_new +ffffffff814b2e60 t nvkm_outp_xlat.isra.0 +ffffffff814b2ee0 T nvkm_outp_route +ffffffff814b2f90 T nvkm_outp_release +ffffffff814b2fd0 T nvkm_outp_acquire +ffffffff814b3180 T nvkm_outp_fini +ffffffff814b31a0 T nvkm_outp_init +ffffffff814b3280 T nvkm_outp_del +ffffffff814b32c0 T nvkm_outp_ctor +ffffffff814b3350 T nvkm_outp_new +ffffffff814b33b0 t nvkm_dp_train_pattern +ffffffff814b3470 t nvkm_dp_enable +ffffffff814b3530 t nvkm_dp_hpd +ffffffff814b3600 t nvkm_dp_release +ffffffff814b3690 t nvkm_dp_train_init +ffffffff814b37e0 t nvkm_dp_train_drive +ffffffff814b3a40 t nvkm_dp_train_sense +ffffffff814b3b50 t nvkm_dp_acquire +ffffffff814b4520 t nvkm_dp_fini +ffffffff814b4540 t nvkm_dp_init +ffffffff814b4570 t nvkm_dp_dtor +ffffffff814b4590 T nvkm_dp_new +ffffffff814b47f0 T gt215_hda_eld +ffffffff814b48c0 T gt215_hda_hpd +ffffffff814b4920 T gf119_hda_eld +ffffffff814b49f0 T gf119_hda_hpd +ffffffff814b4a80 T pack_hdmi_infoframe +ffffffff814b4c10 T g84_hdmi_ctrl +ffffffff814b5000 T gt215_hdmi_ctrl +ffffffff814b53f0 T gf119_hdmi_ctrl +ffffffff814b56c0 T gk104_hdmi_ctrl +ffffffff814b59c0 t nvkm_conn_hpd +ffffffff814b5a30 T nvkm_conn_fini +ffffffff814b5a40 T nvkm_conn_init +ffffffff814b5a50 T nvkm_conn_del +ffffffff814b5a80 T nvkm_conn_new +ffffffff814b5c50 t nv04_disp_mthd +ffffffff814b5d40 t nv04_disp_root_new +ffffffff814b5d90 t nv50_disp_root_dmac_new_ +ffffffff814b5dd0 t nv50_disp_root_pioc_new_ +ffffffff814b5e10 t nv50_disp_root_fini_ +ffffffff814b5e30 t nv50_disp_root_mthd_ +ffffffff814b6650 t nv50_disp_root_dtor_ +ffffffff814b6680 T nv50_disp_root_fini +ffffffff814b66b0 T nv50_disp_root_init +ffffffff814b6990 t nv50_disp_root_child_get_ +ffffffff814b6a40 t nv50_disp_root_init_ +ffffffff814b6ac0 T nv50_disp_root_new_ +ffffffff814b6b90 t nv50_disp_root_new +ffffffff814b6bb0 t g84_disp_root_new +ffffffff814b6bd0 t g94_disp_root_new +ffffffff814b6bf0 t gt200_disp_root_new +ffffffff814b6c10 t gt215_disp_root_new +ffffffff814b6c30 T gf119_disp_root_fini +ffffffff814b6c50 T gf119_disp_root_init +ffffffff814b6ef0 t gf119_disp_root_new +ffffffff814b6f10 t gk104_disp_root_new +ffffffff814b6f30 t gk110_disp_root_new +ffffffff814b6f50 t gm107_disp_root_new +ffffffff814b6f70 t gm200_disp_root_new +ffffffff814b6f90 t gp100_disp_root_new +ffffffff814b6fb0 t gp102_disp_root_new +ffffffff814b6fd0 T nv50_disp_chan_uevent_ctor +ffffffff814b7000 t nv50_disp_chan_ntfy +ffffffff814b7020 t nv50_disp_chan_map +ffffffff814b7080 t nv50_disp_chan_child_new +ffffffff814b70b0 t nv50_disp_chan_child_get +ffffffff814b70e0 t nv50_disp_chan_fini +ffffffff814b7100 t nv50_disp_chan_init +ffffffff814b7120 t nv50_disp_chan_dtor +ffffffff814b7160 t nv50_disp_chan_rd32 +ffffffff814b71a0 t nv50_disp_chan_uevent_fini +ffffffff814b7200 t nv50_disp_chan_uevent_init +ffffffff814b7250 t nv50_disp_chan_wr32 +ffffffff814b7280 T nv50_disp_chan_mthd +ffffffff814b7570 T nv50_disp_chan_uevent_send +ffffffff814b75a0 T nv50_disp_chan_ctor +ffffffff814b7640 T nv50_disp_chan_new_ +ffffffff814b7700 t gf119_disp_chan_uevent_fini +ffffffff814b7760 t gf119_disp_chan_uevent_init +ffffffff814b77b0 t nv50_disp_dmac_fini_ +ffffffff814b77d0 t nv50_disp_dmac_init_ +ffffffff814b77f0 t nv50_disp_dmac_dtor_ +ffffffff814b7800 t nv50_disp_dmac_child_del_ +ffffffff814b7820 t nv50_disp_dmac_child_get_ +ffffffff814b7890 t nv50_disp_dmac_child_new_ +ffffffff814b7970 T nv50_disp_dmac_bind +ffffffff814b79a0 t nv50_disp_dmac_fini +ffffffff814b7ae0 t nv50_disp_dmac_init +ffffffff814b7c80 T nv50_disp_dmac_new_ +ffffffff814b7d90 T gf119_disp_dmac_bind +ffffffff814b7dc0 T gf119_disp_dmac_fini +ffffffff814b7f30 t gf119_disp_dmac_init +ffffffff814b80d0 t gp102_disp_dmac_init +ffffffff814b8270 T nv50_disp_base_new +ffffffff814b83a0 T nv50_disp_core_new +ffffffff814b84c0 t nv50_disp_core_fini +ffffffff814b85e0 t nv50_disp_core_init +ffffffff814b87e0 T gf119_disp_core_fini +ffffffff814b8920 t gf119_disp_core_init +ffffffff814b8a90 t gp102_disp_core_init +ffffffff814b8c00 T nv50_disp_ovly_new +ffffffff814b8d30 t nv50_disp_pioc_fini +ffffffff814b8e30 t nv50_disp_pioc_init +ffffffff814b8fc0 t gf119_disp_pioc_fini +ffffffff814b9100 t gf119_disp_pioc_init +ffffffff814b9220 T nv50_disp_curs_new +ffffffff814b9360 T nv50_disp_oimm_new +ffffffff814b94a0 t nvkm_dma_oclass_new +ffffffff814b94e0 t nvkm_dma_oclass_fifo_new +ffffffff814b9530 t nvkm_dma_dtor +ffffffff814b9540 t nvkm_dma_oclass_base_get +ffffffff814b95a0 t nvkm_dma_oclass_fifo_get +ffffffff814b95f0 T nvkm_dma_new_ +ffffffff814b9650 T nv04_dma_new +ffffffff814b9670 T nv50_dma_new +ffffffff814b9690 T gf100_dma_new +ffffffff814b96b0 T gf119_dma_new +ffffffff814b96d0 t nvkm_dmaobj_bind +ffffffff814b96f0 t nvkm_dmaobj_dtor +ffffffff814b9700 T nvkm_dmaobj_search +ffffffff814b9720 T nvkm_dmaobj_ctor +ffffffff814b99b0 t nv04_dmaobj_bind +ffffffff814b9b50 T nv04_dmaobj_new +ffffffff814b9ca0 t nv50_dmaobj_bind +ffffffff814b9da0 T nv50_dmaobj_new +ffffffff814ba000 t gf100_dmaobj_bind +ffffffff814ba100 T gf100_dmaobj_new +ffffffff814ba320 t gf119_dmaobj_bind +ffffffff814ba410 T gf119_dmaobj_new +ffffffff814ba5d0 t nvkm_fifo_kevent_ctor +ffffffff814ba600 t nvkm_fifo_cevent_ctor +ffffffff814ba620 t nvkm_fifo_uevent_fini +ffffffff814ba640 t nvkm_fifo_uevent_init +ffffffff814ba660 t nvkm_fifo_uevent_ctor +ffffffff814ba680 t nvkm_fifo_class_new +ffffffff814ba6a0 t nvkm_fifo_class_get +ffffffff814ba760 t nvkm_fifo_intr +ffffffff814ba780 t nvkm_fifo_fini +ffffffff814ba7a0 t nvkm_fifo_oneinit +ffffffff814ba7c0 t nvkm_fifo_init +ffffffff814ba7e0 t nvkm_fifo_preinit +ffffffff814ba7f0 t nvkm_fifo_dtor +ffffffff814ba840 T nvkm_fifo_recover_chan +ffffffff814ba890 T nvkm_fifo_pause +ffffffff814ba8a0 T nvkm_fifo_start +ffffffff814ba8b0 T nvkm_fifo_chan_put +ffffffff814ba8d0 T nvkm_fifo_chan_inst_locked +ffffffff814ba970 T nvkm_fifo_chan_inst +ffffffff814ba9d0 T nvkm_fifo_chan_chid +ffffffff814baab0 T nvkm_fifo_kevent +ffffffff814baad0 T nvkm_fifo_cevent +ffffffff814baaf0 T nvkm_fifo_uevent +ffffffff814bab20 T nvkm_fifo_ctor +ffffffff814bac30 T nv04_fifo_init +ffffffff814bad90 T nv04_fifo_start +ffffffff814badf0 T nv04_fifo_pause +ffffffff814baec0 T nv04_fifo_intr +ffffffff814bb6a0 T nv04_fifo_new_ +ffffffff814bb720 T nv04_fifo_new +ffffffff814bb740 T nv10_fifo_new +ffffffff814bb760 t nv17_fifo_init +ffffffff814bb8c0 T nv17_fifo_new +ffffffff814bb8e0 t nv40_fifo_init +ffffffff814bbad0 T nv40_fifo_new +ffffffff814bbaf0 t nv50_fifo_runlist_update_locked +ffffffff814bbc10 T nv50_fifo_init +ffffffff814bbd30 T nv50_fifo_oneinit +ffffffff814bbd80 T nv50_fifo_dtor +ffffffff814bbdb0 T nv50_fifo_runlist_update +ffffffff814bbde0 T nv50_fifo_new_ +ffffffff814bbe50 T nv50_fifo_new +ffffffff814bbe70 t g84_fifo_uevent_fini +ffffffff814bbea0 t g84_fifo_uevent_init +ffffffff814bbed0 T g84_fifo_new +ffffffff814bbef0 t gf100_fifo_uevent_fini +ffffffff814bbf20 t gf100_fifo_uevent_init +ffffffff814bbf50 t gf100_fifo_init +ffffffff814bc140 t gf100_fifo_recover +ffffffff814bc250 t gf100_fifo_intr_pbdma +ffffffff814bc420 t gf100_fifo_fini +ffffffff814bc430 t gf100_fifo_oneinit +ffffffff814bc560 t gf100_fifo_dtor +ffffffff814bc5b0 T gf100_fifo_runlist_commit +ffffffff814bc820 t gf100_fifo_recover_work +ffffffff814bc9e0 T gf100_fifo_runlist_remove +ffffffff814bca30 T gf100_fifo_runlist_insert +ffffffff814bca80 T gf100_fifo_intr_engine +ffffffff814bcbc0 t gf100_fifo_intr +ffffffff814bd490 T gf100_fifo_new +ffffffff814bd530 t gk104_fifo_class_get +ffffffff814bd560 t gk104_fifo_uevent_fini +ffffffff814bd590 t gk104_fifo_uevent_init +ffffffff814bd5c0 t gk104_fifo_init +ffffffff814bd710 t gk104_fifo_recover_runl +ffffffff814bd7c0 t gk104_fifo_engine_status +ffffffff814bd8a0 t gk104_fifo_recover_engn +ffffffff814bdaa0 t gk104_fifo_recover_chan +ffffffff814bdc70 t gk104_fifo_intr_pbdma_1 +ffffffff814bdda0 t gk104_fifo_intr_pbdma_0 +ffffffff814bdfb0 t gk104_fifo_intr +ffffffff814bea60 t gk104_fifo_fini +ffffffff814beaa0 t gk104_fifo_dtor +ffffffff814beb20 t gk104_fifo_oneinit +ffffffff814bee20 T gk104_fifo_runlist_commit +ffffffff814bf0d0 t gk104_fifo_recover_work +ffffffff814bf220 T gk104_fifo_runlist_remove +ffffffff814bf270 T gk104_fifo_runlist_insert +ffffffff814bf2e0 T gk104_fifo_new_ +ffffffff814bf380 T gk104_fifo_new +ffffffff814bf3a0 T gk110_fifo_new +ffffffff814bf3c0 T gk208_fifo_new +ffffffff814bf3e0 T gk20a_fifo_new +ffffffff814bf400 T gm107_fifo_new +ffffffff814bf420 T gm200_fifo_new +ffffffff814bf440 T gm20b_fifo_new +ffffffff814bf460 T gp100_fifo_new +ffffffff814bf480 T gp10b_fifo_new +ffffffff814bf4a0 t nvkm_fifo_chan_ntfy +ffffffff814bf4c0 t nvkm_fifo_chan_map +ffffffff814bf4e0 t nvkm_fifo_chan_fini +ffffffff814bf500 t nvkm_fifo_chan_init +ffffffff814bf520 t nvkm_fifo_chan_child_get +ffffffff814bf640 t nvkm_fifo_chan_child_fini +ffffffff814bf730 t nvkm_fifo_chan_child_init +ffffffff814bf800 t nvkm_fifo_chan_child_del +ffffffff814bf890 t nvkm_fifo_chan_child_new +ffffffff814bfae0 t nvkm_fifo_chan_wr32 +ffffffff814bfb60 t nvkm_fifo_chan_rd32 +ffffffff814bfbd0 t nvkm_fifo_chan_dtor +ffffffff814bfcb0 T nvkm_fifo_chan_ctor +ffffffff814bff00 t nv50_fifo_chan_engine_init +ffffffff814c0070 T nv50_fifo_chan_engine_dtor +ffffffff814c0080 T nv50_fifo_chan_object_dtor +ffffffff814c0090 T nv50_fifo_chan_fini +ffffffff814c00f0 t nv50_fifo_chan_init +ffffffff814c0130 T nv50_fifo_chan_dtor +ffffffff814c0180 t nv50_fifo_chan_object_ctor +ffffffff814c01d0 t nv50_fifo_chan_engine_fini +ffffffff814c0430 t nv50_fifo_chan_engine_ctor +ffffffff814c0460 T nv50_fifo_chan_ctor +ffffffff814c0570 t g84_fifo_chan_ntfy +ffffffff814c0590 t g84_fifo_chan_engine_init +ffffffff814c06a0 t g84_fifo_chan_object_ctor +ffffffff814c0710 t g84_fifo_chan_engine_fini +ffffffff814c0950 t g84_fifo_chan_engine_ctor +ffffffff814c0980 t g84_fifo_chan_init +ffffffff814c09c0 T g84_fifo_chan_ctor +ffffffff814c0b00 T nv04_fifo_dma_dtor +ffffffff814c0b80 T nv04_fifo_dma_object_dtor +ffffffff814c0bd0 T nv04_fifo_dma_fini +ffffffff814c0e90 T nv04_fifo_dma_init +ffffffff814c0f00 t nv04_fifo_dma_object_ctor +ffffffff814c0fe0 t nv04_fifo_dma_new +ffffffff814c1230 t nv10_fifo_dma_new +ffffffff814c1480 t nv17_fifo_dma_new +ffffffff814c16d0 t nv40_fifo_dma_object_ctor +ffffffff814c17a0 t nv40_fifo_dma_engine_fini +ffffffff814c1910 t nv40_fifo_dma_engine_init +ffffffff814c1a90 t nv40_fifo_dma_engine_dtor +ffffffff814c1aa0 t nv40_fifo_dma_engine_ctor +ffffffff814c1ae0 t nv40_fifo_dma_new +ffffffff814c1d60 t nv50_fifo_dma_new +ffffffff814c2040 t g84_fifo_dma_new +ffffffff814c2370 t nv50_fifo_gpfifo_new +ffffffff814c2630 t g84_fifo_gpfifo_new +ffffffff814c2940 T gf100_fifo_chan_ntfy +ffffffff814c2970 t gf100_fifo_gpfifo_engine_init +ffffffff814c2a00 t gf100_fifo_gpfifo_dtor +ffffffff814c2a10 t gf100_fifo_gpfifo_engine_fini +ffffffff814c2bb0 t gf100_fifo_gpfifo_engine_dtor +ffffffff814c2bf0 t gf100_fifo_gpfifo_engine_ctor +ffffffff814c2ca0 t gf100_fifo_gpfifo_fini +ffffffff814c2d40 t gf100_fifo_gpfifo_init +ffffffff814c2de0 t gf100_fifo_gpfifo_new +ffffffff814c3220 t gk104_fifo_gpfifo_engine_init +ffffffff814c3300 t gk104_fifo_gpfifo_dtor +ffffffff814c3310 t gk104_fifo_gpfifo_kick +ffffffff814c3420 t gk104_fifo_gpfifo_engine_fini +ffffffff814c34e0 t gk104_fifo_gpfifo_engine_dtor +ffffffff814c3520 t gk104_fifo_gpfifo_engine_ctor +ffffffff814c35d0 t gk104_fifo_gpfifo_fini +ffffffff814c3670 t gk104_fifo_gpfifo_init +ffffffff814c3770 T gk104_fifo_gpfifo_new +ffffffff814c3d10 t nvkm_gr_chsw_load +ffffffff814c3d30 t nvkm_gr_tile +ffffffff814c3d50 t nvkm_gr_oclass_get +ffffffff814c3dd0 t nvkm_gr_cclass_new +ffffffff814c3e00 t nvkm_gr_intr +ffffffff814c3e20 t nvkm_gr_oneinit +ffffffff814c3e40 t nvkm_gr_init +ffffffff814c3e60 t nvkm_gr_fini +ffffffff814c3e80 t nvkm_gr_dtor +ffffffff814c3ea0 T nvkm_gr_units +ffffffff814c3ec0 T nvkm_gr_tlb_flush +ffffffff814c3ee0 T nvkm_gr_ctor +ffffffff814c3f00 t nv03_gr_mthd_gdi +ffffffff814c3f70 t nv04_gr_mthd_gdi +ffffffff814c4000 t nv01_gr_mthd_blit +ffffffff814c40c0 t nv04_gr_mthd_blit +ffffffff814c4180 t nv04_gr_mthd_iifc +ffffffff814c4240 t nv01_gr_mthd_ifc +ffffffff814c42f0 t nv04_gr_mthd_ifc +ffffffff814c4300 t nv03_gr_mthd_sifc +ffffffff814c4390 t nv04_gr_mthd_sifc +ffffffff814c4440 t nv03_gr_mthd_sifm +ffffffff814c44b0 t nv04_gr_mthd_sifm +ffffffff814c4540 t nv04_gr_mthd_surf3d +ffffffff814c4570 t nv03_gr_mthd_ttri +ffffffff814c45c0 t nv01_gr_mthd_prim +ffffffff814c4650 t nv04_gr_mthd_prim +ffffffff814c4700 t nv04_gr_chan_dtor +ffffffff814c4740 t nv04_gr_object_bind +ffffffff814c47f0 t nv04_gr_channel +ffffffff814c4840 t nv04_gr_unload_context +ffffffff814c48d0 t nv04_gr_chan_fini +ffffffff814c4970 t nv04_gr_mthd_surf3d_clip_v +ffffffff814c49d0 t nv04_gr_mthd_surf3d_clip_h +ffffffff814c4a30 t nv04_gr_init +ffffffff814c4b60 t nv04_gr_chan_new +ffffffff814c4c30 t nv04_gr_set_ctx1.isra.1 +ffffffff814c4cc0 t nv04_gr_set_ctx_val +ffffffff814c4dc0 t nv04_gr_mthd_bind_surf2d_swzsurf +ffffffff814c4e40 t nv01_gr_mthd_bind_chroma +ffffffff814c4eb0 t nv01_gr_mthd_bind_clip +ffffffff814c4f20 t nv04_gr_mthd_set_operation +ffffffff814c4f90 t nv04_gr_mthd_bind_surf2d +ffffffff814c5000 t nv04_gr_mthd_bind_beta4 +ffffffff814c5050 t nv04_gr_mthd_bind_beta1 +ffffffff814c50a0 t nv04_gr_mthd_bind_rop +ffffffff814c50f0 t nv04_gr_mthd_bind_patt +ffffffff814c5140 t nv04_gr_mthd_bind_surf_color +ffffffff814c5190 t nv01_gr_mthd_bind_patt +ffffffff814c51e0 t nv04_gr_mthd_bind_surf_zeta +ffffffff814c5230 t nv04_gr_mthd_bind_surf_dst +ffffffff814c5280 t nv04_gr_mthd_bind_surf_src +ffffffff814c52d0 T nv04_gr_idle +ffffffff814c53a0 t nv04_gr_intr +ffffffff814c5800 T nv04_gr_new +ffffffff814c5860 t nv10_gr_chan_dtor +ffffffff814c58a0 t nv10_gr_channel +ffffffff814c58f0 t nv10_gr_unload_context +ffffffff814c5c20 t nv10_gr_chan_fini +ffffffff814c5cc0 T nv10_gr_init +ffffffff814c5eb0 t nv17_gr_mthd_lma_enable +ffffffff814c5f10 t nv17_gr_mthd_lma_window +ffffffff814c6410 T nv10_gr_tile +ffffffff814c64b0 T nv10_gr_intr +ffffffff814c6fc0 t nv17_gr_ctx_regs_find_offset +ffffffff814c7040 t nv10_gr_ctx_regs_find_offset +ffffffff814c70c0 T nv10_gr_chan_new +ffffffff814c7660 T nv10_gr_new_ +ffffffff814c76c0 T nv10_gr_new +ffffffff814c76e0 T nv15_gr_new +ffffffff814c7700 T nv17_gr_new +ffffffff814c7720 T nv20_gr_chan_init +ffffffff814c7790 T nv20_gr_chan_fini +ffffffff814c7950 T nv20_gr_init +ffffffff814c7eb0 T nv20_gr_chan_dtor +ffffffff814c7ed0 T nv20_gr_dtor +ffffffff814c7ef0 T nv20_gr_tile +ffffffff814c8050 T nv20_gr_intr +ffffffff814c8240 T nv20_gr_oneinit +ffffffff814c8270 t nv20_gr_chan_new +ffffffff814c87c0 T nv20_gr_new_ +ffffffff814c8820 T nv20_gr_new +ffffffff814c8840 t nv25_gr_chan_new +ffffffff814c8ea0 T nv25_gr_new +ffffffff814c8ec0 t nv2a_gr_chan_new +ffffffff814c9410 T nv2a_gr_new +ffffffff814c9430 T nv30_gr_init +ffffffff814c97c0 t nv30_gr_chan_new +ffffffff814c9df0 T nv30_gr_new +ffffffff814c9e10 t nv34_gr_chan_new +ffffffff814ca440 T nv34_gr_new +ffffffff814ca460 t nv35_gr_chan_new +ffffffff814caa90 T nv35_gr_new +ffffffff814caab0 t nv40_gr_chan_dtor +ffffffff814cab10 T nv40_gr_units +ffffffff814cab30 t nv40_gr_object_bind +ffffffff814cabf0 t nv40_gr_chan_bind +ffffffff814cac80 t nv40_gr_chan_fini +ffffffff814cae90 T nv40_gr_chan_new +ffffffff814caf30 T nv40_gr_intr +ffffffff814cb240 T nv40_gr_init +ffffffff814cb7f0 t nv40_gr_tile +ffffffff814cba10 T nv40_gr_new_ +ffffffff814cba70 T nv40_gr_new +ffffffff814cba90 t nv44_gr_tile +ffffffff814cbc20 T nv44_gr_new +ffffffff814cbc40 T nv50_gr_units +ffffffff814cbc60 t nv50_gr_object_bind +ffffffff814cbd10 t nv50_gr_chan_bind +ffffffff814cbd70 T nv50_gr_chan_new +ffffffff814cbdd0 t nv50_gr_mp_trap +ffffffff814cbff0 t nv50_gr_prop_trap +ffffffff814cc230 t nv50_gr_tp_trap +ffffffff814cc510 t nv50_gr_trap_handler +ffffffff814cd0b0 T nv50_gr_intr +ffffffff814cd350 T nv50_gr_init +ffffffff814cd6b0 T nv50_gr_new_ +ffffffff814cd710 T nv50_gr_new +ffffffff814cd730 t nvkm_gr_vstatus_print +ffffffff814cd7e0 T g84_gr_tlb_flush +ffffffff814cdad0 T g84_gr_new +ffffffff814cdaf0 T gt200_gr_new +ffffffff814cdb10 T mcp79_gr_new +ffffffff814cdb30 T gt215_gr_new +ffffffff814cdb50 T mcp89_gr_new +ffffffff814cdb70 t gf100_gr_object_get +ffffffff814cdbd0 T gf100_gr_units +ffffffff814cdc00 t gf100_gr_zbc_clear_color +ffffffff814cdcd0 t gf100_gr_zbc_color_get +ffffffff814cde00 t gf100_gr_zbc_clear_depth +ffffffff814cde80 t gf100_gr_zbc_depth_get +ffffffff814cdf40 T gf100_gr_rops +ffffffff814cdf60 T gf100_gr_init_gpc_mmu +ffffffff814ce050 t gf100_gr_ctxctl_debug_unit +ffffffff814ce1c0 T gf100_gr_dtor +ffffffff814ce290 t gf100_gr_object_new +ffffffff814ce2f0 t gf100_gr_chan_new +ffffffff814ce5c0 t gf100_gr_chan_bind +ffffffff814ce7a0 t gf100_gr_chan_dtor +ffffffff814ce800 t gf100_gr_trap_gpc_rop +ffffffff814ce920 t gf100_gr_trap_mp +ffffffff814cea30 t gf100_gr_trap_intr +ffffffff814cf660 t gf100_gr_fini_ +ffffffff814cf690 t gf100_gr_init_ +ffffffff814cf6f0 t gf100_gr_oneinit +ffffffff814cf8d0 t gf100_fermi_mthd +ffffffff814cf9e0 t gf100_gr_init_csdata.isra.4 +ffffffff814cfb80 t gf100_gr_init_fw.isra.5 +ffffffff814cfbc0 t gf100_gr_chsw_load +ffffffff814cfc00 T gf100_gr_zbc_init +ffffffff814cfd80 T gf100_gr_wait_idle +ffffffff814cfe70 T gf100_gr_mmio +ffffffff814cfee0 T gf100_gr_icmd +ffffffff814d0060 T gf100_gr_mthd +ffffffff814d0140 T gf100_gr_ctxctl_debug +ffffffff814d01a0 t gf100_gr_intr +ffffffff814d07d0 T gf100_gr_init_ctxctl +ffffffff814d0fb0 T gf100_gr_init +ffffffff814d1630 T gf100_gr_dtor_fw +ffffffff814d1650 T gf100_gr_ctor_fw_legacy +ffffffff814d1820 T gf100_gr_ctor_fw +ffffffff814d18a0 T gf100_gr_ctor +ffffffff814d1910 T gf100_gr_new_ +ffffffff814d19f0 T gf100_gr_new +ffffffff814d1a10 T gf104_gr_new +ffffffff814d1a30 T gf108_gr_new +ffffffff814d1a50 T gf110_gr_new +ffffffff814d1a70 T gf117_gr_new +ffffffff814d1a90 T gf119_gr_new +ffffffff814d1ab0 T gk104_gr_init_rop_active_fbps +ffffffff814d1b20 T gk104_gr_init_ppc_exceptions +ffffffff814d1bc0 T gk104_gr_init +ffffffff814d2260 T gk104_gr_new +ffffffff814d2280 T gk110_gr_new +ffffffff814d22a0 T gk110b_gr_new +ffffffff814d22c0 T gk208_gr_new +ffffffff814d22e0 t gk20a_gr_set_hww_esr_report_mask +ffffffff814d2310 T gk20a_gr_init +ffffffff814d2800 T gk20a_gr_av_to_init +ffffffff814d28b0 T gk20a_gr_aiv_to_init +ffffffff814d2970 T gk20a_gr_av_to_method +ffffffff814d2a70 T gk20a_gr_new +ffffffff814d2bd0 T gm107_gr_init_bios +ffffffff814d2c80 t gm107_gr_init +ffffffff814d3380 T gm107_gr_new +ffffffff814d33a0 T gm200_gr_rops +ffffffff814d33c0 T gm200_gr_init_gpc_mmu +ffffffff814d3470 t gm200_gr_init_rop_active_fbps +ffffffff814d34e0 T gm200_gr_init +ffffffff814d3ba0 T gm200_gr_new_ +ffffffff814d3d10 T gm200_gr_new +ffffffff814d3d30 t gm20b_gr_set_hww_esr_report_mask +ffffffff814d3d60 t gm20b_gr_init_gpc_mmu +ffffffff814d3e90 T gm20b_gr_new +ffffffff814d3eb0 T gp100_gr_init_rop_active_fbps +ffffffff814d3f20 T gp100_gr_init_num_active_ltcs +ffffffff814d3f70 T gp100_gr_init +ffffffff814d4650 T gp100_gr_new +ffffffff814d4670 T gp102_gr_init_swdx_pes_mask +ffffffff814d46f0 T gp102_gr_new +ffffffff814d4710 T gp107_gr_new +ffffffff814d4730 t gp10b_gr_init_num_active_ltcs +ffffffff814d4760 T gp10b_gr_new +ffffffff814d4780 t nv40_gr_construct_general +ffffffff814d5860 t nv40_gr_construct_state3d +ffffffff814d6990 t nv40_grctx_generate +ffffffff814d9060 T nv40_grctx_fill +ffffffff814d90b0 T nv40_grctx_init +ffffffff814d9170 t xf_emit +ffffffff814d91d0 t nv50_gr_construct_gene_m2mf +ffffffff814d92f0 t nv50_gr_construct_gene_ccache +ffffffff814d9390 t nv50_gr_construct_gene_unk10xx +ffffffff814d9540 t nv50_gr_construct_gene_unk34xx +ffffffff814d9600 t nv50_gr_construct_gene_unk14xx +ffffffff814d99e0 t nv50_gr_construct_gene_zcull +ffffffff814d9b20 t nv50_gr_construct_gene_clipid +ffffffff814d9b80 t nv50_gr_construct_gene_unk24xx +ffffffff814d9d60 t nv50_gr_construct_gene_vfetch +ffffffff814da2c0 t nv50_gr_construct_gene_eng2d +ffffffff814da4a0 t nv50_gr_construct_gene_csched +ffffffff814da630 t nv50_gr_construct_gene_unk1cxx +ffffffff814da9c0 t nv50_gr_construct_gene_strmout +ffffffff814daac0 t nv50_gr_construct_gene_ropm1 +ffffffff814dab50 t nv50_gr_construct_gene_ropm2 +ffffffff814dac00 t nv50_gr_construct_gene_ropc +ffffffff814db310 t nv50_gr_construct_xfer_unk84xx +ffffffff814db6b0 t nv50_gr_construct_xfer_tprop +ffffffff814dc2e0 t nv50_gr_construct_xfer_tex +ffffffff814dc430 t nv50_gr_construct_xfer_unk8cxx +ffffffff814dc590 t nv50_gr_construct_xfer_mpc +ffffffff814dcb70 t nv50_gr_construct_gene_dispatch.isra.0 +ffffffff814dcc50 t nv50_gr_construct_xfer_tp +ffffffff814dcca0 t dd_emit.constprop.2 +ffffffff814dccf0 t nv50_grctx_generate +ffffffff814e3300 T nv50_grctx_fill +ffffffff814e3350 T nv50_grctx_init +ffffffff814e3410 T gf100_grctx_generate_unkn +ffffffff814e3420 T gf100_grctx_mmio_data +ffffffff814e3480 T gf100_grctx_mmio_item +ffffffff814e34e0 T gf100_grctx_generate_bundle +ffffffff814e35c0 T gf100_grctx_generate_pagepool +ffffffff814e3690 T gf100_grctx_generate_attrib +ffffffff814e3840 T gf100_grctx_generate_tpcid +ffffffff814e3980 T gf100_grctx_generate_r406028 +ffffffff814e3a40 T gf100_grctx_generate_r4060a8 +ffffffff814e3b10 T gf100_grctx_generate_r418bb8 +ffffffff814e3e00 T gf100_grctx_generate_r406800 +ffffffff814e3fc0 T gf100_grctx_generate_main +ffffffff814e40e0 T gf100_grctx_generate +ffffffff814e4660 T gf108_grctx_generate_attrib +ffffffff814e4840 T gf108_grctx_generate_unkn +ffffffff814e4930 T gf117_grctx_generate_attrib +ffffffff814e4ba0 t gf117_grctx_generate_main +ffffffff814e4ce0 T gk104_grctx_generate_bundle +ffffffff814e4db0 T gk104_grctx_generate_pagepool +ffffffff814e4e50 T gk104_grctx_generate_unkn +ffffffff814e4f40 T gk104_grctx_generate_r418bb8 +ffffffff814e5230 T gk104_grctx_generate_main +ffffffff814e5400 t gk20a_grctx_generate_main +ffffffff814e5570 T gm107_grctx_generate_bundle +ffffffff814e5640 T gm107_grctx_generate_pagepool +ffffffff814e5700 T gm107_grctx_generate_attrib +ffffffff814e59a0 t gm107_grctx_generate_main +ffffffff814e5cc0 T gm200_grctx_generate_tpcid +ffffffff814e5d90 T gm200_grctx_generate_405b60 +ffffffff814e5f30 t gm200_grctx_generate_main +ffffffff814e6100 t gm20b_grctx_generate_main +ffffffff814e6330 T gp100_grctx_generate_pagepool +ffffffff814e63c0 t gp100_grctx_generate_attrib +ffffffff814e6700 t gp100_grctx_generate_405b60 +ffffffff814e68b0 T gp100_grctx_generate_main +ffffffff814e6a30 T gp102_grctx_generate_attrib +ffffffff814e6da0 t nv31_mpeg_chan_dtor +ffffffff814e6de0 t nv31_mpeg_dtor +ffffffff814e6df0 t nv31_mpeg_object_bind +ffffffff814e6ea0 T nv31_mpeg_chan_new +ffffffff814e6f40 T nv31_mpeg_tile +ffffffff814e6fa0 T nv31_mpeg_init +ffffffff814e7120 t nv31_mpeg_intr +ffffffff814e7310 t nv31_mpeg_mthd_dma +ffffffff814e7510 T nv31_mpeg_new_ +ffffffff814e7570 T nv31_mpeg_new +ffffffff814e7590 T nv40_mpeg_mthd_dma +ffffffff814e7790 T nv40_mpeg_new +ffffffff814e77b0 t nv44_mpeg_chan_dtor +ffffffff814e7810 t nv44_mpeg_chan_bind +ffffffff814e7890 t nv44_mpeg_chan_fini +ffffffff814e7940 t nv44_mpeg_intr +ffffffff814e7c00 t nv44_mpeg_chan_new +ffffffff814e7ca0 T nv44_mpeg_new +ffffffff814e7d00 t nv50_mpeg_cclass_bind +ffffffff814e7d80 T nv50_mpeg_intr +ffffffff814e7e90 T nv50_mpeg_init +ffffffff814e8030 T nv50_mpeg_new +ffffffff814e8050 T g84_mpeg_new +ffffffff814e8070 T nvkm_mspdec_new_ +ffffffff814e8090 T g98_mspdec_init +ffffffff814e80d0 T g98_mspdec_new +ffffffff814e80f0 T gt215_mspdec_new +ffffffff814e8110 T gf100_mspdec_init +ffffffff814e8150 T gf100_mspdec_new +ffffffff814e8170 T gk104_mspdec_new +ffffffff814e8190 T nvkm_msppp_new_ +ffffffff814e81b0 T g98_msppp_init +ffffffff814e81f0 T g98_msppp_new +ffffffff814e8210 T gt215_msppp_new +ffffffff814e8230 t gf100_msppp_init +ffffffff814e8270 T gf100_msppp_new +ffffffff814e8290 T nvkm_msvld_new_ +ffffffff814e82b0 T g98_msvld_init +ffffffff814e82f0 T g98_msvld_new +ffffffff814e8310 T gt215_msvld_new +ffffffff814e8330 T mcp89_msvld_new +ffffffff814e8350 T gf100_msvld_init +ffffffff814e8390 T gf100_msvld_new +ffffffff814e83b0 T gk104_msvld_new +ffffffff814e83d0 t nvkm_nvdec_oneinit +ffffffff814e83f0 t nvkm_nvdec_dtor +ffffffff814e8410 T nvkm_nvdec_new_ +ffffffff814e8460 T gp102_nvdec_new +ffffffff814e8470 t nvkm_perfmon_child_get +ffffffff814e84a0 t nvkm_pm_fini +ffffffff814e84c0 t nvkm_pm_dtor +ffffffff814e85b0 t nvkm_perfmon_dtor +ffffffff814e85f0 t nvkm_perfdom_new_ +ffffffff814e8a70 t nvkm_perfmon_child_new +ffffffff814e8a90 t nvkm_perfdom_dtor +ffffffff814e8cf0 t nvkm_perfmon_mthd +ffffffff814e9340 t nvkm_pm_oclass_get +ffffffff814e9380 t nvkm_pm_oclass_new +ffffffff814e9430 t nvkm_perfdom_mthd +ffffffff814e9900 T nvkm_perfdom_new +ffffffff814e9c90 T nvkm_pm_ctor +ffffffff814e9cc0 t nv40_perfctr_next +ffffffff814e9d00 t nv40_perfctr_init +ffffffff814e9db0 t nv40_perfctr_read +ffffffff814e9e30 T nv40_pm_new_ +ffffffff814e9eb0 T nv40_pm_new +ffffffff814e9ed0 T nv50_pm_new +ffffffff814e9ef0 T g84_pm_new +ffffffff814e9f10 T gt200_pm_new +ffffffff814e9f30 T gt215_pm_new +ffffffff814e9f50 t gf100_perfctr_next +ffffffff814e9fa0 t gf100_perfctr_init +ffffffff814ea060 t gf100_perfctr_read +ffffffff814ea0e0 t gf100_pm_fini +ffffffff814ea140 T gf100_pm_new_ +ffffffff814ea2c0 T gf100_pm_new +ffffffff814ea2e0 T gf108_pm_new +ffffffff814ea300 T gf117_pm_new +ffffffff814ea320 T gk104_pm_new +ffffffff814ea340 t g98_sec_intr +ffffffff814ea440 T g98_sec_new +ffffffff814ea460 t nvkm_sec2_intr +ffffffff814ea530 t nvkm_sec2_fini +ffffffff814ea540 t nvkm_sec2_oneinit +ffffffff814ea560 t nvkm_sec2_dtor +ffffffff814ea580 t nvkm_sec2_recv +ffffffff814ea5c0 T nvkm_sec2_new_ +ffffffff814ea630 T gp102_sec2_new +ffffffff814ea640 t nvkm_sw_oclass_new +ffffffff814ea670 t nvkm_sw_oclass_get +ffffffff814ea6d0 t nvkm_sw_cclass_get +ffffffff814ea6f0 t nvkm_sw_dtor +ffffffff814ea700 T nvkm_sw_mthd +ffffffff814ea810 T nvkm_sw_new_ +ffffffff814ea880 t nv04_nvsw_mthd +ffffffff814ea8c0 t nv04_sw_chan_mthd +ffffffff814ea8e0 t nv04_nvsw_new +ffffffff814ea900 t nv04_sw_chan_new +ffffffff814ea970 T nv04_sw_new +ffffffff814ea990 t nv10_sw_chan_new +ffffffff814ea9f0 T nv10_sw_new +ffffffff814eaa10 T nv50_sw_chan_dtor +ffffffff814eaa50 t nv50_sw_chan_vblsem_release +ffffffff814eab30 t nv50_sw_chan_mthd +ffffffff814eabc0 t nv50_sw_chan_new +ffffffff814eacc0 T nv50_sw_new +ffffffff814eace0 t gf100_sw_chan_vblsem_release +ffffffff814ead90 t gf100_sw_chan_mthd +ffffffff814eaea0 t gf100_sw_chan_new +ffffffff814eafa0 T gf100_sw_new +ffffffff814eafc0 t nvkm_sw_chan_event_ctor +ffffffff814eafe0 t nvkm_sw_chan_dtor +ffffffff814eb070 T nvkm_sw_chan_mthd +ffffffff814eb0c0 T nvkm_sw_chan_ctor +ffffffff814eb160 t nvkm_nvsw_mthd_ +ffffffff814eb180 t nvkm_nvsw_ntfy_ +ffffffff814eb1a0 T nvkm_nvsw_new_ +ffffffff814eb200 T nvkm_nvsw_new +ffffffff814eb220 T g84_vp_new +ffffffff814eb240 T nouveau_is_optimus +ffffffff814eb250 T nouveau_is_v1_dsm +ffffffff814eb260 T nouveau_register_dsm_handler +ffffffff814eb270 T nouveau_unregister_dsm_handler +ffffffff814eb280 T nouveau_switcheroo_optimus_dsm +ffffffff814eb290 T nouveau_acpi_rom_supported +ffffffff814eb2f0 T nouveau_acpi_get_bios_chunk +ffffffff814eb3b0 T nouveau_acpi_edid +ffffffff814eb440 t nouveau_cli_work_fence +ffffffff814eb460 t nouveau_do_suspend +ffffffff814eb700 T nouveau_pmops_suspend +ffffffff814eb770 t nouveau_pmops_freeze +ffffffff814eb780 t nouveau_do_resume +ffffffff814eb8b0 T nouveau_pmops_resume +ffffffff814eb940 t nouveau_pmops_thaw +ffffffff814eb950 T nouveau_drm_ioctl +ffffffff814eba00 t nouveau_drm_probe +ffffffff814ebc00 t nouveau_accel_fini +ffffffff814ebc90 t nouveau_cli_work_flush +ffffffff814ebdc0 t nouveau_cli_fini +ffffffff814ebe20 t nouveau_cli_work +ffffffff814ebe30 t nouveau_drm_postclose +ffffffff814ebf00 t nouveau_cli_init +ffffffff814ec460 t nouveau_drm_open +ffffffff814ec5b0 t nouveau_pmops_runtime.part.4 +ffffffff814ec5d0 t nouveau_pmops_runtime_idle +ffffffff814ec6e0 t nouveau_pmops_runtime_resume +ffffffff814ec820 t nouveau_pmops_runtime_suspend +ffffffff814ec8c0 t nouveau_drm_unload +ffffffff814ec990 t nouveau_drm_load +ffffffff814ed280 T nouveau_cli_work_queue +ffffffff814ed320 T nouveau_drm_device_remove +ffffffff814ed360 t nouveau_drm_remove +ffffffff814ed370 T nouveau_pmops_runtime +ffffffff814ed390 T nouveau_platform_device_create +ffffffff814ed400 T nouveau_hwmon_init +ffffffff814ed410 T nouveau_hwmon_fini +ffffffff814ed420 t nvkm_client_unmap +ffffffff814ed430 t nvkm_client_map +ffffffff814ed440 t nvkm_client_ioctl +ffffffff814ed450 t nvkm_client_resume +ffffffff814ed460 t nvkm_client_suspend +ffffffff814ed470 t nvkm_client_driver_init +ffffffff814ed480 t nvkm_client_ntfy +ffffffff814ed4b0 T usif_notify +ffffffff814ed5f0 T usif_ioctl +ffffffff814edcc0 T usif_client_fini +ffffffff814edd80 T usif_client_init +ffffffff814eddb0 T nouveau_vga_init +ffffffff814ede00 T nouveau_vga_fini +ffffffff814ede10 T nouveau_vga_lastclose +ffffffff814ede20 t nv10_bo_put_tile_region +ffffffff814ede70 t nouveau_bo_invalidate_caches +ffffffff814ede80 t nouveau_bo_del_ttm +ffffffff814edf00 t nouveau_ttm_io_mem_free +ffffffff814edf40 t nouveau_ttm_io_mem_reserve +ffffffff814ee0b0 t nouveau_bo_verify_access +ffffffff814ee0d0 t nv10_bo_update_tile_region +ffffffff814ee180 t nouveau_ttm_tt_create +ffffffff814ee190 t set_placement_list +ffffffff814ee1f0 t nouveau_bo_init_mem_type +ffffffff814ee2e0 t nouveau_bo_move_ntfy +ffffffff814ee3b0 t nouveau_ttm_tt_unpopulate +ffffffff814ee450 t nouveau_ttm_tt_populate +ffffffff814ee630 t nouveau_bo_move_m2mf.constprop.14 +ffffffff814ee7f0 t nouveau_bo_move_flipd.constprop.13 +ffffffff814ee970 t nouveau_bo_move_flips.constprop.12 +ffffffff814eead0 t nouveau_bo_move +ffffffff814eef40 T nouveau_bo_placement_set +ffffffff814ef070 T nouveau_bo_new +ffffffff814ef600 t nouveau_bo_evict_flags +ffffffff814ef660 T nouveau_bo_map +ffffffff814ef700 T nouveau_bo_unmap +ffffffff814ef720 T nouveau_bo_sync_for_device +ffffffff814ef7b0 T nouveau_bo_sync_for_cpu +ffffffff814ef840 T nouveau_bo_validate +ffffffff814ef8a0 T nouveau_bo_pin +ffffffff814efb10 T nouveau_bo_unpin +ffffffff814efbe0 t nouveau_ttm_fault_reserve_notify +ffffffff814efcd0 T nouveau_bo_wr16 +ffffffff814efd00 T nouveau_bo_rd32 +ffffffff814efd30 T nouveau_bo_wr32 +ffffffff814efd50 t nve0_bo_move_init +ffffffff814efe70 t nve0_bo_move_copy +ffffffff814efff0 t nvc0_bo_move_init +ffffffff814f0070 t nvc0_bo_move_copy +ffffffff814f0260 t nvc0_bo_move_m2mf +ffffffff814f0470 t nva3_bo_move_copy +ffffffff814f0660 t nv98_bo_move_exec +ffffffff814f0780 t nv84_bo_move_exec +ffffffff814f08a0 t nv50_bo_move_init +ffffffff814f09a0 t nv50_bo_move_m2mf +ffffffff814f0eb0 t nv04_bo_move_init +ffffffff814f0f70 t nv04_bo_move_m2mf +ffffffff814f1210 T nouveau_bo_move_init +ffffffff814f1300 T nouveau_bo_fence +ffffffff814f1320 t nouveau_gem_info +ffffffff814f1480 t nouveau_gem_object_delete_work +ffffffff814f14b0 t validate_fini_no_ticket +ffffffff814f15d0 T nouveau_gem_object_del +ffffffff814f1670 T nouveau_gem_object_open +ffffffff814f1790 T nouveau_gem_object_close +ffffffff814f1970 T nouveau_gem_new +ffffffff814f1a70 T nouveau_gem_ioctl_new +ffffffff814f1b20 T nouveau_gem_ioctl_pushbuf +ffffffff814f3100 T nouveau_gem_ioctl_cpu_prep +ffffffff814f3190 T nouveau_gem_ioctl_cpu_fini +ffffffff814f31d0 T nouveau_gem_ioctl_info +ffffffff814f3220 T nouveau_mem_map +ffffffff814f32f0 T nouveau_mem_fini +ffffffff814f3360 T nouveau_mem_host +ffffffff814f34e0 T nouveau_mem_vram +ffffffff814f3620 T nouveau_mem_del +ffffffff814f3640 T nouveau_mem_new +ffffffff814f3690 T nouveau_gem_prime_get_sg_table +ffffffff814f36c0 T nouveau_gem_prime_vmap +ffffffff814f3700 T nouveau_gem_prime_vunmap +ffffffff814f3720 T nouveau_gem_prime_import_sg_table +ffffffff814f3810 T nouveau_gem_prime_pin +ffffffff814f3840 T nouveau_gem_prime_unpin +ffffffff814f3860 T nouveau_gem_prime_res_obj +ffffffff814f3880 t nv04_sgdma_unbind +ffffffff814f3890 t nv50_sgdma_bind +ffffffff814f38b0 t nv04_sgdma_bind +ffffffff814f3910 t nouveau_sgdma_destroy +ffffffff814f3930 T nouveau_sgdma_create_ttm +ffffffff814f39b0 t nouveau_manager_init +ffffffff814f39c0 t nouveau_manager_fini +ffffffff814f39d0 t nouveau_manager_debug +ffffffff814f39e0 t nouveau_ttm_init_host +ffffffff814f3a80 t nouveau_manager_del +ffffffff814f3a90 t nouveau_gart_manager_new +ffffffff814f3ae0 t nv04_gart_manager_new +ffffffff814f3ba0 t nouveau_ttm_mem_global_release +ffffffff814f3bb0 t nouveau_ttm_mem_global_init +ffffffff814f3bc0 t nouveau_vram_manager_new +ffffffff814f3c60 T nouveau_ttm_mmap +ffffffff814f3ca0 T nouveau_ttm_global_init +ffffffff814f3da0 T nouveau_ttm_global_release +ffffffff814f3de0 T nouveau_ttm_init +ffffffff814f4120 T nouveau_ttm_fini +ffffffff814f41e0 T nouveau_vma_unmap +ffffffff814f4210 T nouveau_vma_map +ffffffff814f4250 T nouveau_vma_find +ffffffff814f4290 T nouveau_vma_del +ffffffff814f4320 T nouveau_vma_new +ffffffff814f44c0 T nouveau_vmm_fini +ffffffff814f44e0 T nouveau_vmm_init +ffffffff814f4520 T nouveau_conn_atomic_get_property +ffffffff814f45c0 T nouveau_conn_atomic_set_property +ffffffff814f4710 t nouveau_connector_detect_depth +ffffffff814f47c0 t nouveau_connector_best_encoder +ffffffff814f47d0 T nouveau_conn_atomic_destroy_state +ffffffff814f47f0 T nouveau_conn_atomic_duplicate_state +ffffffff814f4870 T nouveau_conn_reset +ffffffff814f4900 t nouveau_connector_mode_valid +ffffffff814f4b10 t nouveau_connector_destroy +ffffffff814f4b60 t nouveau_connector_set_property +ffffffff814f4c40 t nouveau_connector_set_encoder +ffffffff814f4d00 T nouveau_conn_native_mode +ffffffff814f4eb0 t nouveau_connector_get_modes +ffffffff814f5100 T nouveau_conn_attach_properties +ffffffff814f5230 T find_encoder +ffffffff814f52a0 t nouveau_connector_hotplug +ffffffff814f53b0 t nouveau_connector_aux_xfer +ffffffff814f5460 t nouveau_connector_force +ffffffff814f54e0 t nouveau_connector_detect +ffffffff814f58b0 t nouveau_connector_detect_lvds +ffffffff814f5a30 T nouveau_encoder_connector_get +ffffffff814f5a80 T nouveau_connector_create +ffffffff814f5f90 t nouveau_user_framebuffer_create_handle +ffffffff814f5fb0 t nouveau_user_framebuffer_destroy +ffffffff814f5fe0 t nouveau_display_hpd_work +ffffffff814f6040 t nouveau_display_vblank_handler +ffffffff814f6060 t nouveau_display_vblank_fini +ffffffff814f60a0 t nouveau_display_acpi_ntfy +ffffffff814f60f0 T nouveau_display_vblank_enable +ffffffff814f6110 T nouveau_display_vblank_disable +ffffffff814f6130 T nouveau_display_scanoutpos +ffffffff814f6290 T nouveau_framebuffer_new +ffffffff814f63b0 T nouveau_user_framebuffer_create +ffffffff814f6420 T nouveau_display_init +ffffffff814f6490 T nouveau_display_fini +ffffffff814f6520 T nouveau_display_create +ffffffff814f6b70 T nouveau_display_destroy +ffffffff814f6be0 T nouveau_display_suspend +ffffffff814f6cf0 T nouveau_display_resume +ffffffff814f6f40 T nouveau_crtc_page_flip +ffffffff814f7640 T nouveau_finish_page_flip +ffffffff814f7750 T nouveau_flip_complete +ffffffff814f7940 T nouveau_display_dumb_create +ffffffff814f79f0 T nouveau_display_dumb_map_offset +ffffffff814f7a30 t nv50_curs_prepare +ffffffff814f7ac0 t nv50_curs_release +ffffffff814f7ad0 t nv50_base_notify +ffffffff814f7ae0 t nv50_base_release +ffffffff814f7af0 t nv50_mstc_atomic_best_encoder +ffffffff814f7b20 t nv50_mstc_best_encoder +ffffffff814f7b40 t nv50_mstc_mode_valid +ffffffff814f7b50 t nv50_mstm_enable +ffffffff814f7c30 t nv50_outp_release +ffffffff814f7ca0 t nv50_dac_detect +ffffffff814f7d40 t nv50_wndw_atomic_destroy_state +ffffffff814f7d60 t nv50_wndw_atomic_duplicate_state +ffffffff814f7e30 t nv50_disp_outp_atomic_add +ffffffff814f7ea0 t nv50_wndw_reset +ffffffff814f7f00 t nv50_head_reset +ffffffff814f7f50 t nv50_wndw_destroy +ffffffff814f7f90 T nv50_display_fini +ffffffff814f8040 t nv50_curs_update +ffffffff814f8080 t nv50_curs_point +ffffffff814f80c0 t evo_wait +ffffffff814f81d0 t evo_kick +ffffffff814f8220 t nv50_sor_update +ffffffff814f8530 t nv50_dac_disable +ffffffff814f8610 t nv50_pior_disable +ffffffff814f86f0 t nv50_base_update +ffffffff814f87d0 t nv50_base_lut +ffffffff814f8870 t nv50_base_image_clr +ffffffff814f8960 t nv50_base_image_set +ffffffff814f8f70 t nv50_base_ntfy_clr +ffffffff814f8ff0 t nv50_base_ntfy_set +ffffffff814f90d0 t nv50_base_sema_clr +ffffffff814f9150 t nv50_base_sema_set +ffffffff814f92b0 T nv50_display_init +ffffffff814f9420 t nv50_curs_dtor +ffffffff814f9440 t nv50_disp_atomic_state_free +ffffffff814f9460 t nv50_disp_atomic_state_clear +ffffffff814f94d0 t nv50_disp_atomic_state_alloc +ffffffff814f9530 t nv50_msto_payload +ffffffff814f9640 t nv50_wndw_cleanup_fb +ffffffff814f96b0 t nv50_outp_acquire +ffffffff814f9780 t nv50_dac_enable +ffffffff814f9a90 t nv50_base_ntfy_wait_begun +ffffffff814f9b30 t nv50_disp_atomic_commit_core +ffffffff814fa220 t nv50_head_atomic_destroy_state +ffffffff814fa240 t nv50_head_atomic_duplicate_state +ffffffff814fa3b0 t nv50_base_acquire +ffffffff814fa520 t nv50_wndw_atomic_check +ffffffff814fa970 t nv50_pior_enable +ffffffff814faad0 t nv50_sor_destroy +ffffffff814fab10 t nv50_dac_destroy +ffffffff814fab30 t nv50_pior_destroy +ffffffff814fab40 t nv50_msto_destroy +ffffffff814fab60 t nv50_mstm_hotplug +ffffffff814fab70 t nv50_mstm_destroy_connector +ffffffff814fabc0 t nv50_mstm_register_connector +ffffffff814fac00 t nv50_mstm_add_connector +ffffffff814fad20 t nv50_mstc_get_modes +ffffffff814fada0 t nv50_mstc_destroy +ffffffff814fadc0 t nv50_mstc_detect +ffffffff814fade0 t nv50_msto_enable +ffffffff814faf10 t nv50_msto_disable +ffffffff814faf70 t nv50_sor_disable +ffffffff814fb160 t nv50_disp_atomic_commit_tail +ffffffff814fe980 t nv50_disp_atomic_commit +ffffffff814febf0 t nv50_disp_atomic_commit_work +ffffffff814fec00 t nv50_disp_atomic_check +ffffffff814fed30 t nv50_head_atomic_check +ffffffff814ff740 t nv50_curs_acquire +ffffffff814ff7f0 t nv50_wndw_prepare_fb +ffffffff814ffb70 t nv50_outp_atomic_check_view.isra.27 +ffffffff814ffc30 t nv50_outp_atomic_check +ffffffff814ffc50 t nv50_pior_atomic_check +ffffffff814ffc80 t nv50_msto_atomic_check +ffffffff814ffcf0 t nv50_audio_enable.isra.28 +ffffffff814ffe80 t nv50_hdmi_enable +ffffffff814ffff0 t nv50_sor_enable +ffffffff81500230 t nv50_chan_create.constprop.31 +ffffffff81500310 t nv50_dmac_create.constprop.30 +ffffffff81500550 t nv50_dmac_destroy.isra.17 +ffffffff81500660 T nv50_display_destroy +ffffffff815006f0 t nv50_base_dtor +ffffffff81500710 t nv50_head_destroy +ffffffff815007e0 T nv50_mstm_service +ffffffff81500880 T nv50_mstm_remove +ffffffff815008a0 T nv50_mstm_detect +ffffffff81500940 T nv50_display_create +ffffffff81501830 T nouveau_dp_detect +ffffffff81501b30 t nouveau_fbcon_release +ffffffff81501b60 t nouveau_fbcon_open +ffffffff81501ba0 t nouveau_fbcon_create +ffffffff815020a0 t nouveau_fbcon_set_suspend_work +ffffffff81502190 T nouveau_fbcon_accel_save_disable +ffffffff815021d0 T nouveau_fbcon_accel_restore +ffffffff81502200 T nouveau_fbcon_gpu_lockup +ffffffff81502240 t nouveau_fbcon_sync +ffffffff815022e0 t nouveau_fbcon_imageblit +ffffffff815023a0 t nouveau_fbcon_copyarea +ffffffff81502460 t nouveau_fbcon_fillrect +ffffffff81502520 T nouveau_fbcon_set_suspend +ffffffff81502550 T nouveau_fbcon_init +ffffffff815026d0 T nouveau_fbcon_fini +ffffffff815027e0 T nv04_fbcon_copyarea +ffffffff81502970 T nv04_fbcon_fillrect +ffffffff81502b90 T nv04_fbcon_imageblit +ffffffff81502ec0 T nv04_fbcon_accel_init +ffffffff815038d0 T nv50_fbcon_fillrect +ffffffff81503b90 T nv50_fbcon_copyarea +ffffffff81503e00 T nv50_fbcon_imageblit +ffffffff81504160 T nv50_fbcon_accel_init +ffffffff81504a70 T nvc0_fbcon_fillrect +ffffffff81504d30 T nvc0_fbcon_copyarea +ffffffff81504fa0 T nvc0_fbcon_imageblit +ffffffff81505300 T nvc0_fbcon_accel_init +ffffffff81505c10 t nouveau_abi16 +ffffffff81505cd0 t nouveau_abi16_ntfy_fini +ffffffff81505d20 t nouveau_abi16_chan_fini.isra.0 +ffffffff81505e00 T nouveau_abi16_get +ffffffff81505e60 T nouveau_abi16_put +ffffffff81505e80 T nouveau_abi16_swclass +ffffffff81505ea0 T nouveau_abi16_fini +ffffffff81505f00 T nouveau_abi16_ioctl_getparam +ffffffff81506080 T nouveau_abi16_ioctl_setparam +ffffffff81506090 T nouveau_abi16_ioctl_channel_alloc +ffffffff815063b0 T nouveau_abi16_usif +ffffffff81506470 T nouveau_abi16_ioctl_channel_free +ffffffff815064f0 T nouveau_abi16_ioctl_grobj_alloc +ffffffff815067b0 T nouveau_abi16_ioctl_notifierobj_alloc +ffffffff81506a20 T nouveau_abi16_ioctl_gpuobj_free +ffffffff81506af0 t nouveau_channel_killed +ffffffff81506b30 T nouveau_channel_idle +ffffffff81506bf0 T nouveau_channel_del +ffffffff81506d10 t nouveau_channel_prep +ffffffff81506f80 T nouveau_channel_new +ffffffff81507630 T OUT_RINGp +ffffffff81507670 T nv50_dma_push +ffffffff81507770 T nouveau_dma_wait +ffffffff81507e00 t nouveau_fence_get_get_driver_name +ffffffff81507e10 t nouveau_fence_get_timeline_name +ffffffff81507e30 t nouveau_fence_signal +ffffffff81507ec0 t nouveau_fence_update +ffffffff81507f20 t nouveau_fence_wait_uevent_handler +ffffffff81507f80 t nouveau_fence_release +ffffffff81507fb0 t nouveau_fence_is_signaled +ffffffff81507ff0 t nouveau_fence_no_signaling +ffffffff81508050 t nouveau_fence_enable_signaling +ffffffff815080c0 T nouveau_fence_context_del +ffffffff81508120 T nouveau_fence_context_free +ffffffff81508140 T nouveau_fence_context_new +ffffffff81508250 T nouveau_fence_emit +ffffffff81508330 T nouveau_fence_done +ffffffff815083e0 t nouveau_fence_wait_legacy +ffffffff81508520 T nouveau_fence_wait +ffffffff815085c0 T nouveau_fence_sync +ffffffff815087b0 T nouveau_fence_unref +ffffffff815087e0 T nouveau_fence_new +ffffffff81508860 t nv04_fence_sync +ffffffff81508870 t nv04_fence_context_del +ffffffff815088a0 t nv04_fence_read +ffffffff815088d0 t nv04_fence_emit +ffffffff81508a00 t nv04_fence_destroy +ffffffff81508a20 t nv04_fence_context_new +ffffffff81508a80 T nv04_fence_create +ffffffff81508ae0 t nv10_fence_sync +ffffffff81508af0 T nv10_fence_emit +ffffffff81508c20 T nv10_fence_read +ffffffff81508c50 T nv10_fence_context_del +ffffffff81508c90 T nv10_fence_destroy +ffffffff81508d00 t nv10_fence_context_new +ffffffff81508d60 T nv10_fence_create +ffffffff81508dd0 T nv17_fence_resume +ffffffff81508df0 T nv17_fence_sync +ffffffff81509190 t nv17_fence_context_new +ffffffff81509280 T nv17_fence_create +ffffffff815093a0 t nv50_fence_context_new +ffffffff81509490 T nv50_fence_create +ffffffff815095b0 t nv84_fence_emit +ffffffff815095e0 t nv84_fence_sync +ffffffff81509610 t nv84_fence_read +ffffffff81509640 t nv84_fence_context_del +ffffffff815096c0 T nv84_fence_context_new +ffffffff815097b0 t nv84_fence_resume +ffffffff81509800 t nv84_fence_suspend +ffffffff81509860 t nv84_fence_destroy +ffffffff815098d0 t nv84_fence_emit32 +ffffffff81509ac0 t nv84_fence_sync32 +ffffffff81509c90 T nv84_fence_create +ffffffff81509de0 t nvc0_fence_context_new +ffffffff81509e10 t nvc0_fence_emit32 +ffffffff81509fc0 t nvc0_fence_sync32 +ffffffff8150a150 T nvc0_fence_create +ffffffff8150a170 t clkcmptable +ffffffff8150a1e0 t run_digital_op_script +ffffffff8150a360 t parse_bit_lvds_tbl_entry +ffffffff8150a3b0 t parse_bit_init_tbl_entry +ffffffff8150a400 t parse_bit_display_tbl_entry +ffffffff8150a450 t parse_bit_A_tbl_entry +ffffffff8150a590 t parse_bit_tmds_tbl_entry +ffffffff8150a6a0 t parse_bit_i_tbl_entry +ffffffff8150a790 t parse_bit_M_tbl_entry +ffffffff8150a7e0 t get_fp_strap.isra.1 +ffffffff8150a9a0 t parse_dcb_entry +ffffffff8150b270 t parse_lvds_manufacturer_table_header.isra.4 +ffffffff8150b370 T call_lvds_script +ffffffff8150b810 T nouveau_bios_fp_mode +ffffffff8150b920 T nouveau_bios_parse_lvds_table +ffffffff8150bb70 T run_tmds_table +ffffffff8150bd80 T bit_table +ffffffff8150be30 t parse_bit_table.constprop.6 +ffffffff8150beb0 t parse_bit_structure +ffffffff8150bfa0 T olddcb_table +ffffffff8150c0b0 T olddcb_outp +ffffffff8150c160 T olddcb_outp_foreach +ffffffff8150c1d0 T olddcb_conntab +ffffffff8150c220 T olddcb_conn +ffffffff8150c250 T nouveau_bios_embedded_edid +ffffffff8150c340 T nouveau_run_vbios_init +ffffffff8150c550 T nouveau_bios_init +ffffffff8150d5e0 T nouveau_bios_takedown +ffffffff8150d5f0 T nouveau_calc_arb +ffffffff8150dae0 t nv04_crtc_cursor_move +ffffffff8150daf0 t nv_crtc_gamma_load +ffffffff8150db90 t nv_crtc_gamma_set +ffffffff8150dbc0 t crtc_wr_cio_state +ffffffff8150dc60 t nv04_crtc_do_mode_set_base +ffffffff8150e160 t nv04_crtc_mode_set_base_atomic +ffffffff8150e1b0 t nv_crtc_restore +ffffffff8150e2e0 t nv_crtc_prepare +ffffffff8150e480 t nv_crtc_dpms +ffffffff8150e890 t nouveau_crtc_set_config +ffffffff8150e9b0 t nv_crtc_save +ffffffff8150ea90 t nv_crtc_disable +ffffffff8150eb10 t nv_crtc_swap_fbs.isra.0 +ffffffff8150ebd0 t nv04_crtc_mode_set_base +ffffffff8150ec10 t nv_crtc_commit +ffffffff8150ec70 t nv_crtc_mode_set +ffffffff8150fce0 t nv_crtc_destroy +ffffffff8150fdb0 t nv04_crtc_cursor_set +ffffffff8150ffb0 T nv04_crtc_create +ffffffff81510170 t crtc_wr_cio_state +ffffffff81510210 t nv04_cursor_show +ffffffff815103a0 t nv04_cursor_hide +ffffffff81510530 t nv04_cursor_set_pos +ffffffff81510590 t nv04_cursor_set_offset +ffffffff815106c0 T nv04_cursor_init +ffffffff815106f0 t nv04_dac_save +ffffffff815107a0 t nv04_dac_mode_set +ffffffff81510a10 t nv04_dac_restore +ffffffff81510ae0 t nv04_dac_destroy +ffffffff81510b00 t nv04_dac_detect +ffffffff815118f0 t nv04_dac_commit +ffffffff81511980 t nv04_dac_prepare +ffffffff815119b0 T nv04_dac_output_offset +ffffffff815119e0 T nv17_dac_sample_load +ffffffff81512290 T nv04_dac_update_dacclk +ffffffff81512410 t nv04_dac_dpms +ffffffff81512480 T nv04_dac_in_use +ffffffff81512500 t nv04_dac_mode_fixup +ffffffff81512510 t nv17_dac_detect +ffffffff815125a0 T nv04_dac_create +ffffffff815126a0 t get_tmds_slave +ffffffff81512700 t nv04_dfp_destroy +ffffffff81512730 t nv04_dfp_mode_fixup +ffffffff815127b0 t nv04_dfp_restore +ffffffff81512870 t nv04_dfp_mode_set +ffffffff81512fd0 t nv04_dfp_commit +ffffffff81513220 t nv04_tmds_slave_init +ffffffff81513390 t nv04_dfp_prepare_sel_clk.isra.0 +ffffffff81513420 t nv04_dfp_prepare +ffffffff815135c0 T nv04_dfp_get_bound_head +ffffffff81513670 t nv04_dfp_save +ffffffff815136d0 T nv04_dfp_bind_head +ffffffff81513860 T nv04_dfp_disable +ffffffff81513930 T nv04_dfp_update_fp_control +ffffffff81513b20 t nv04_lvds_dpms +ffffffff81513d10 t nv04_tmds_dpms +ffffffff81513d80 T nv04_dfp_create +ffffffff81513e80 T nv04_display_init +ffffffff81513f00 T nv04_display_destroy +ffffffff81513fc0 T nv04_display_fini +ffffffff81514070 T nv04_display_create +ffffffff815143d0 t wr_cio_state +ffffffff81514460 t rd_cio_state +ffffffff81514500 T NVWriteVgaSeq +ffffffff815145b0 T NVReadVgaSeq +ffffffff81514650 T NVWriteVgaGr +ffffffff81514700 T NVReadVgaGr +ffffffff815147a0 T NVSetOwner +ffffffff81514a90 T NVBlankScreen +ffffffff81514b50 T nouveau_hw_get_pllvals +ffffffff81514ed0 T nouveau_hw_pllvals_to_clk +ffffffff81514f00 T nouveau_hw_get_clock +ffffffff81514ff0 T nouveau_hw_save_vga_fonts +ffffffff815156c0 T nouveau_hw_load_state_palette +ffffffff81515860 T nouveau_hw_save_state +ffffffff815173e0 T nouveau_hw_load_state +ffffffff81519500 t nv_set_property +ffffffff81519590 t nv_destroy_plane +ffffffff815195b0 t nv10_set_params +ffffffff815198a0 t nv04_disable_plane +ffffffff81519a10 t nv10_disable_plane +ffffffff81519a80 t nv10_update_plane +ffffffff8151a0b0 t nv04_update_plane +ffffffff8151a810 T nouveau_overlay_init +ffffffff8151abc0 t tv_load_filter +ffffffff8151ac60 t tv_save_filter +ffffffff8151ad00 T nv17_tv_state_save +ffffffff8151b1a0 T nv17_tv_state_load +ffffffff8151b7c0 T nv17_tv_update_properties +ffffffff8151bc10 T nv17_tv_update_rescaler +ffffffff8151c160 T nv17_ctv_update_rescaler +ffffffff8151c500 t nv04_tv_mode_set +ffffffff8151c580 t nv04_tv_destroy +ffffffff8151c5b0 t nv04_tv_commit +ffffffff8151c640 t nv04_tv_bind +ffffffff8151c860 t nv04_tv_prepare +ffffffff8151c8f0 t nv04_tv_dpms +ffffffff8151cb40 T nv04_tv_identify +ffffffff8151cb90 T nv04_tv_create +ffffffff8151ccd0 t nv17_tv_mode_set +ffffffff8151cfe0 t nv17_tv_restore +ffffffff8151d050 t nv17_tv_save +ffffffff8151d0c0 t nv17_tv_set_property +ffffffff8151d210 t nv17_tv_get_modes +ffffffff8151d480 t nv17_tv_mode_valid +ffffffff8151d530 t nv17_tv_mode_fixup +ffffffff8151d580 t nv17_tv_detect +ffffffff8151e160 t nv17_tv_commit +ffffffff8151e2c0 t nv17_tv_prepare +ffffffff8151e510 t nv17_tv_dpms +ffffffff8151e660 t nv17_tv_destroy +ffffffff8151e680 t nv17_tv_create_resources +ffffffff8151e820 T nv17_tv_create +ffffffff8151e920 T cn_queue_release_callback +ffffffff8151e940 T cn_cb_equal +ffffffff8151e960 T cn_queue_add_callback +ffffffff8151ea60 T cn_queue_del_callback +ffffffff8151eb00 T cn_queue_alloc_dev +ffffffff8151eb60 T cn_queue_free_dev +ffffffff8151ec00 t cn_proc_open +ffffffff8151ec20 t cn_proc_show +ffffffff8151ec90 t cn_fini +ffffffff8151ecd0 t cn_rx_skb +ffffffff8151edd0 t cn_init +ffffffff8151ee90 T cn_netlink_send_mult +ffffffff8151f060 T cn_netlink_send +ffffffff8151f080 T cn_add_callback +ffffffff8151f0b0 T cn_del_callback +ffffffff8151f0c0 t cn_proc_mcast_ctl +ffffffff8151f220 T proc_fork_connector +ffffffff8151f310 T proc_exec_connector +ffffffff8151f3d0 T proc_id_connector +ffffffff8151f510 T proc_sid_connector +ffffffff8151f5d0 T proc_ptrace_connector +ffffffff8151f6d0 T proc_comm_connector +ffffffff8151f7b0 T proc_coredump_connector +ffffffff8151f870 T proc_exit_connector +ffffffff8151f950 t free_master +ffffffff8151f9c0 t take_down_master +ffffffff8151f9f0 t devm_component_match_release +ffffffff8151fa50 t component_match_realloc.isra.4.part.5 +ffffffff8151fac0 t try_to_bring_up_master +ffffffff8151fc20 T component_match_add_release +ffffffff8151fd40 T component_master_add_with_match +ffffffff8151fe10 T component_master_del +ffffffff8151fe80 T component_unbind_all +ffffffff8151ff30 T component_bind_all +ffffffff81520140 T component_add +ffffffff81520280 T component_del +ffffffff81520360 t dev_attr_store +ffffffff81520380 t device_namespace +ffffffff815203b0 t devm_attr_group_match +ffffffff815203c0 t class_dir_child_ns_type +ffffffff815203d0 t __match_devt +ffffffff815203e0 t root_device_release +ffffffff815203f0 t class_dir_release +ffffffff81520400 t devm_attr_groups_remove +ffffffff81520410 t devm_attr_group_remove +ffffffff81520420 t device_remove_attrs +ffffffff81520490 t dev_attr_show +ffffffff815204e0 t device_release +ffffffff81520540 t dev_show +ffffffff81520570 t uevent_show +ffffffff81520660 t online_show +ffffffff815206b0 t klist_children_get +ffffffff815206d0 t __device_link_free_srcu +ffffffff81520710 t klist_children_put +ffffffff81520730 t device_remove_class_symlinks +ffffffff815207a0 t dev_uevent_filter +ffffffff815207d0 t dev_uevent_name +ffffffff815207f0 t cleanup_glue_dir.isra.3.part.4 +ffffffff81520820 t get_device_parent.isra.9 +ffffffff815209d0 t device_create_release +ffffffff815209e0 T device_links_read_lock +ffffffff815209f0 T device_links_read_unlock +ffffffff81520a00 T device_links_check_suppliers +ffffffff81520aa0 T device_links_driver_bound +ffffffff81520b30 T device_links_busy +ffffffff81520bb0 T device_links_unbind_consumers +ffffffff81520c90 T lock_device_hotplug +ffffffff81520ca0 T unlock_device_hotplug +ffffffff81520cb0 T lock_device_hotplug_sysfs +ffffffff81520ce0 T dev_driver_string +ffffffff81520d20 T device_store_ulong +ffffffff81520d70 T device_show_ulong +ffffffff81520d90 T device_store_int +ffffffff81520df0 T device_show_int +ffffffff81520e10 T device_store_bool +ffffffff81520e30 T device_show_bool +ffffffff81520e60 T device_add_groups +ffffffff81520e70 T device_remove_groups +ffffffff81520e80 T devm_device_add_group +ffffffff81520f00 T devm_device_remove_group +ffffffff81520f20 T devm_device_add_groups +ffffffff81520fa0 T devm_device_remove_groups +ffffffff81520fc0 T devices_kset_move_last +ffffffff81521020 T device_create_file +ffffffff81521040 T device_remove_file +ffffffff81521060 T device_remove_file_self +ffffffff81521080 T device_create_bin_file +ffffffff815210a0 T device_remove_bin_file +ffffffff815210b0 T device_initialize +ffffffff815211a0 T virtual_device_parent +ffffffff815211d0 T dev_set_name +ffffffff81521220 T device_private_init +ffffffff81521280 T device_add +ffffffff81521830 t device_create_groups_vargs +ffffffff81521910 T device_register +ffffffff81521930 T get_device +ffffffff81521950 T put_device +ffffffff81521960 T device_get_devnode +ffffffff81521a20 t dev_uevent +ffffffff81521bf0 T device_for_each_child +ffffffff81521c60 t device_is_dependent +ffffffff81521cf0 t device_reorder_to_tail +ffffffff81521d70 t device_check_offline +ffffffff81521dc0 T device_for_each_child_reverse +ffffffff81521e20 T device_find_child +ffffffff81521ea0 T device_offline +ffffffff81521f50 T device_online +ffffffff81521fe0 t online_store +ffffffff81522050 T __root_device_register +ffffffff815220f0 T device_create_vargs +ffffffff81522100 T device_create +ffffffff81522140 T device_create_with_groups +ffffffff81522170 T device_rename +ffffffff81522230 T device_move +ffffffff81522570 T dev_vprintk_emit +ffffffff81522700 T dev_printk_emit +ffffffff81522740 t __dev_printk +ffffffff815227b0 T dev_printk +ffffffff81522800 T dev_emerg +ffffffff81522860 T dev_alert +ffffffff815228c0 T dev_crit +ffffffff81522920 T dev_err +ffffffff81522980 t uevent_store +ffffffff815229b0 T dev_warn +ffffffff81522a10 T dev_notice +ffffffff81522a70 T _dev_info +ffffffff81522ad0 T device_link_add +ffffffff81522d40 t __device_link_del +ffffffff81522dc0 T device_link_del +ffffffff81522df0 t __device_links_no_driver +ffffffff81522e60 T device_links_no_driver +ffffffff81522e90 T device_links_driver_cleanup +ffffffff81522ef0 T device_del +ffffffff815231f0 T device_unregister +ffffffff81523210 T root_device_unregister +ffffffff81523250 T device_destroy +ffffffff815232a0 T device_shutdown +ffffffff81523490 T set_primary_fwnode +ffffffff815234e0 T set_secondary_fwnode +ffffffff81523510 T device_set_of_node_from_dev +ffffffff81523530 t drv_attr_show +ffffffff81523550 t drv_attr_store +ffffffff81523580 t bus_attr_show +ffffffff815235a0 t bus_attr_store +ffffffff815235d0 t bus_uevent_filter +ffffffff815235e0 t store_drivers_autoprobe +ffffffff81523600 t klist_devices_get +ffffffff81523610 t match_name +ffffffff81523630 t driver_attach_async +ffffffff81523640 t uevent_store +ffffffff81523660 t bus_uevent_store +ffffffff81523680 t driver_release +ffffffff81523690 t system_root_device_release +ffffffff815236a0 t bus_release +ffffffff815236c0 t klist_devices_put +ffffffff815236d0 t bus_rescan_devices_helper +ffffffff81523720 t show_drivers_autoprobe +ffffffff81523750 T bus_create_file +ffffffff815237b0 T bus_remove_file +ffffffff81523810 T bus_for_each_dev +ffffffff815238a0 T bus_find_device +ffffffff81523930 t bind_store +ffffffff81523aa0 t unbind_store +ffffffff81523be0 t store_drivers_probe +ffffffff81523c30 T bus_find_device_by_name +ffffffff81523c40 T subsys_find_device_by_id +ffffffff81523d30 T bus_for_each_drv +ffffffff81523db0 T bus_add_device +ffffffff81523ed0 T bus_probe_device +ffffffff81523f70 T bus_remove_device +ffffffff81524090 T bus_add_driver +ffffffff81524290 T bus_remove_driver +ffffffff81524320 T bus_rescan_devices +ffffffff81524330 T device_reprobe +ffffffff81524380 T bus_register +ffffffff815245c0 T bus_unregister +ffffffff81524650 t subsys_register.part.2 +ffffffff81524700 T bus_register_notifier +ffffffff81524720 T bus_unregister_notifier +ffffffff81524740 T bus_get_kset +ffffffff81524750 T bus_get_device_klist +ffffffff81524760 T bus_sort_breadthfirst +ffffffff815248c0 T subsys_dev_iter_init +ffffffff81524900 T subsys_dev_iter_next +ffffffff81524930 T subsys_dev_iter_exit +ffffffff81524940 T subsys_interface_register +ffffffff81524a40 T subsys_interface_unregister +ffffffff81524b30 T subsys_system_register +ffffffff81524b70 T subsys_virtual_register +ffffffff81524bc0 t coredump_store +ffffffff81524c00 t deferred_probe_work_func +ffffffff81524d30 t driver_sysfs_add +ffffffff81524dd0 t driver_sysfs_remove +ffffffff81524e20 t __device_attach_async_helper +ffffffff81524ec0 t driver_deferred_probe_trigger.part.0 +ffffffff81524f50 t deferred_probe_initcall +ffffffff81524f80 t driver_deferred_probe_add.isra.1 +ffffffff81524fe0 T driver_deferred_probe_del +ffffffff81525040 t driver_bound +ffffffff815250f0 T device_unblock_probing +ffffffff81525110 T device_is_bound +ffffffff81525130 T device_bind_driver +ffffffff81525180 t __device_attach +ffffffff81525290 T driver_probe_done +ffffffff815252b0 T wait_for_device_probe +ffffffff81525330 T device_block_probing +ffffffff81525340 T driver_probe_device +ffffffff81525640 t __driver_attach +ffffffff815256d0 t __device_attach_driver +ffffffff81525760 T driver_allows_async_probing +ffffffff81525770 T device_attach +ffffffff81525780 T device_initial_probe +ffffffff81525790 T driver_attach +ffffffff815257b0 T device_release_driver_internal +ffffffff815259c0 T device_release_driver +ffffffff815259d0 T driver_detach +ffffffff81525a40 T register_syscore_ops +ffffffff81525a80 T unregister_syscore_ops +ffffffff81525ad0 T syscore_suspend +ffffffff81525b80 T syscore_resume +ffffffff81525be0 T syscore_shutdown +ffffffff81525c50 T driver_for_each_device +ffffffff81525cd0 T driver_find_device +ffffffff81525d60 T driver_create_file +ffffffff81525d80 T driver_remove_file +ffffffff81525da0 T driver_add_groups +ffffffff81525db0 T driver_remove_groups +ffffffff81525dc0 T driver_unregister +ffffffff81525df0 T driver_find +ffffffff81525e30 T driver_register +ffffffff81525ef0 t class_attr_show +ffffffff81525f10 t class_attr_store +ffffffff81525f30 t class_child_ns_type +ffffffff81525f40 t class_create_release +ffffffff81525f50 t class_release +ffffffff81525f80 t klist_class_dev_put +ffffffff81525f90 t klist_class_dev_get +ffffffff81525fa0 T class_create_file_ns +ffffffff81525fc0 T class_remove_file_ns +ffffffff81525fe0 T __class_register +ffffffff81526130 T class_unregister +ffffffff81526150 T __class_create +ffffffff815261c0 T class_destroy +ffffffff815261e0 T class_dev_iter_init +ffffffff81526220 T class_dev_iter_next +ffffffff81526260 T class_dev_iter_exit +ffffffff81526270 T class_for_each_device +ffffffff81526320 T class_find_device +ffffffff815263d0 T class_interface_register +ffffffff815264c0 T class_interface_unregister +ffffffff81526590 T show_class_attr_string +ffffffff815265b0 T class_compat_register +ffffffff81526600 T class_compat_unregister +ffffffff81526620 T class_compat_create_link +ffffffff815266a0 T class_compat_remove_link +ffffffff815266e0 t platform_drv_probe_fail +ffffffff815266f0 t platform_drv_shutdown +ffffffff81526710 T platform_pm_suspend +ffffffff81526750 T platform_pm_resume +ffffffff81526790 t platform_device_release +ffffffff815267d0 t platform_drv_remove +ffffffff81526810 t platform_drv_probe +ffffffff815268a0 t driver_override_store +ffffffff81526950 t driver_override_show +ffffffff81526990 t platform_uevent +ffffffff815269d0 t platform_match +ffffffff81526a60 t modalias_show +ffffffff81526ab0 t platform_device_del.part.6 +ffffffff81526b20 W arch_setup_pdev_archdata +ffffffff81526b30 T platform_get_resource +ffffffff81526b80 T platform_get_irq +ffffffff81526c60 T platform_irq_count +ffffffff81526c90 T platform_get_resource_byname +ffffffff81526d10 T platform_get_irq_byname +ffffffff81526d30 T platform_device_put +ffffffff81526d40 T platform_device_alloc +ffffffff81526db0 T platform_device_add_resources +ffffffff81526e10 T platform_device_add_data +ffffffff81526e60 T platform_device_add_properties +ffffffff81526e70 T platform_device_add +ffffffff81527090 T platform_device_del +ffffffff815270a0 T platform_device_register +ffffffff815270c0 T platform_device_unregister +ffffffff815270e0 T platform_add_devices +ffffffff81527180 T platform_device_register_full +ffffffff81527280 T __platform_driver_register +ffffffff815272b0 T platform_driver_unregister +ffffffff815272c0 T __platform_register_drivers +ffffffff815273b0 T platform_unregister_drivers +ffffffff815273e0 T dma_get_required_mask +ffffffff81527430 t cpu_device_release +ffffffff81527440 t cpu_subsys_offline +ffffffff81527450 t cpu_subsys_online +ffffffff81527460 t cpu_subsys_match +ffffffff81527470 t device_create_release +ffffffff81527480 t print_cpu_modalias +ffffffff81527510 t cpu_uevent +ffffffff81527590 t print_cpus_isolated +ffffffff815275e0 t print_cpus_offline +ffffffff815276c0 t print_cpus_kernel_max +ffffffff815276e0 t show_cpus_attr +ffffffff81527760 T unregister_cpu +ffffffff81527790 T register_cpu +ffffffff81527890 T get_cpu_device +ffffffff815278c0 T cpu_device_create +ffffffff81527990 T cpu_is_hotpluggable +ffffffff815279d0 T kobj_map +ffffffff81527b40 T kobj_unmap +ffffffff81527c20 T kobj_lookup +ffffffff81527d30 T kobj_map_init +ffffffff81527dd0 t group_open_release +ffffffff81527de0 t devm_action_match +ffffffff81527e00 t devm_action_release +ffffffff81527e10 t devm_kmalloc_match +ffffffff81527e20 t devm_pages_match +ffffffff81527e30 t devm_percpu_match +ffffffff81527e40 t devm_pages_release +ffffffff81527e50 t devm_percpu_release +ffffffff81527e60 t release_nodes +ffffffff81528030 t group_close_release +ffffffff81528040 t devm_kmalloc_release +ffffffff81528050 T devres_alloc_node +ffffffff81528090 T devres_for_each_res +ffffffff81528160 T devres_free +ffffffff81528180 T devres_add +ffffffff815281e0 T devres_find +ffffffff81528290 T devres_get +ffffffff81528370 T devres_remove +ffffffff81528440 T devres_destroy +ffffffff81528460 T devres_release +ffffffff815284a0 T devres_release_all +ffffffff815284e0 T devres_open_group +ffffffff815285b0 T devres_close_group +ffffffff81528650 T devres_remove_group +ffffffff81528710 T devres_release_group +ffffffff815287b0 T devm_add_action +ffffffff81528810 T devm_remove_action +ffffffff81528850 T devm_kmalloc +ffffffff815288a0 T devm_kstrdup +ffffffff81528900 T devm_kvasprintf +ffffffff81528980 T devm_kasprintf +ffffffff815289c0 T devm_kfree +ffffffff815289f0 T devm_kmemdup +ffffffff81528a30 T devm_get_free_pages +ffffffff81528aa0 T devm_free_pages +ffffffff81528ad0 T __devm_alloc_percpu +ffffffff81528b40 T devm_free_percpu +ffffffff81528b65 t add_dr.part.0 +ffffffff81528b70 t internal_container_klist_put +ffffffff81528b80 t internal_container_klist_get +ffffffff81528b90 t attribute_container_release +ffffffff81528bb0 T attribute_container_classdev_to_container +ffffffff81528bc0 T attribute_container_register +ffffffff81528c20 T attribute_container_unregister +ffffffff81528ca0 T attribute_container_device_trigger +ffffffff81528d50 T attribute_container_trigger +ffffffff81528db0 T attribute_container_add_attrs +ffffffff81528e20 T attribute_container_add_class_device +ffffffff81528e40 T attribute_container_add_device +ffffffff81528f70 T attribute_container_add_class_device_adapter +ffffffff81528f80 T attribute_container_remove_attrs +ffffffff81528fe0 T attribute_container_remove_device +ffffffff815290e0 T attribute_container_class_device_del +ffffffff81529100 T attribute_container_find_class_device +ffffffff81529160 t anon_transport_dummy_function +ffffffff81529170 t transport_setup_classdev +ffffffff81529190 t transport_configure +ffffffff815291b0 t transport_remove_classdev +ffffffff81529200 t transport_destroy_classdev +ffffffff81529220 t transport_add_class_device +ffffffff81529250 T transport_class_register +ffffffff81529260 T transport_class_unregister +ffffffff81529270 T anon_transport_class_register +ffffffff815292b0 T anon_transport_class_unregister +ffffffff815292d0 T transport_setup_device +ffffffff815292e0 T transport_add_device +ffffffff815292f0 T transport_configure_device +ffffffff81529300 T transport_remove_device +ffffffff81529310 T transport_destroy_device +ffffffff81529320 t topology_remove_dev +ffffffff81529340 t thread_siblings_show +ffffffff81529370 t thread_siblings_list_show +ffffffff815293a0 t core_siblings_show +ffffffff815293d0 t core_siblings_list_show +ffffffff81529400 t core_id_show +ffffffff81529440 t physical_package_id_show +ffffffff81529480 t topology_add_dev +ffffffff815294a0 t topology_sysfs_init +ffffffff815294d0 t trivial_online +ffffffff815294e0 t container_offline +ffffffff81529500 t fwnode_property_read_int_array +ffffffff815295c0 t fwnode_get_mac_addr +ffffffff81529600 t property_entry_free_data +ffffffff81529670 t pset_prop_get +ffffffff815296c0 t pset_prop_find +ffffffff81529710 t pset_fwnode_property_read_string_array +ffffffff815297c0 t pset_fwnode_read_int_array +ffffffff815298e0 t pset_fwnode_property_present +ffffffff81529920 T dev_fwnode +ffffffff81529930 T fwnode_property_present +ffffffff815299a0 T device_property_present +ffffffff815299b0 T device_property_read_u8_array +ffffffff815299d0 T device_property_read_u16_array +ffffffff815299f0 T device_property_read_u32_array +ffffffff81529a10 T device_property_read_u64_array +ffffffff81529a30 T fwnode_property_read_u8_array +ffffffff81529a40 T fwnode_property_read_u16_array +ffffffff81529a50 T fwnode_property_read_u32_array +ffffffff81529a60 T fwnode_property_read_u64_array +ffffffff81529a70 T fwnode_property_read_string_array +ffffffff81529b20 T device_property_read_string_array +ffffffff81529b30 T device_property_read_string +ffffffff81529b50 T fwnode_property_read_string +ffffffff81529b70 T fwnode_property_match_string +ffffffff81529c10 T device_property_match_string +ffffffff81529c20 T fwnode_property_get_reference_args +ffffffff81529c50 T property_entries_dup +ffffffff81529f10 T property_entries_free +ffffffff81529f40 T device_remove_properties +ffffffff81529fd0 T device_add_properties +ffffffff8152a060 T fwnode_get_next_parent +ffffffff8152a0c0 T fwnode_get_parent +ffffffff8152a0e0 T fwnode_get_next_child_node +ffffffff8152a100 T device_get_next_child_node +ffffffff8152a170 T fwnode_get_named_child_node +ffffffff8152a190 T device_get_named_child_node +ffffffff8152a1c0 T fwnode_handle_get +ffffffff8152a1f0 T fwnode_handle_put +ffffffff8152a210 T fwnode_device_is_available +ffffffff8152a230 T fwnode_get_next_available_child_node +ffffffff8152a280 T device_get_child_node_count +ffffffff8152a2b0 T device_dma_supported +ffffffff8152a2e0 T device_get_dma_attr +ffffffff8152a310 T fwnode_get_phy_mode +ffffffff8152a3b0 T device_get_phy_mode +ffffffff8152a3c0 T fwnode_get_mac_address +ffffffff8152a420 T device_get_mac_address +ffffffff8152a430 T fwnode_irq_get +ffffffff8152a440 T fwnode_graph_get_next_endpoint +ffffffff8152a460 T fwnode_graph_get_port_parent +ffffffff8152a4e0 T fwnode_graph_get_remote_port_parent +ffffffff8152a540 T fwnode_graph_get_remote_port +ffffffff8152a570 T fwnode_graph_get_remote_endpoint +ffffffff8152a590 T fwnode_graph_parse_endpoint +ffffffff8152a5d0 T fwnode_graph_get_remote_node +ffffffff8152a680 T device_get_match_data +ffffffff8152a6b0 t cache_default_attrs_is_visible +ffffffff8152a7c0 t cpu_cache_sysfs_exit +ffffffff8152a880 t physical_line_partition_show +ffffffff8152a8a0 t size_show +ffffffff8152a8d0 t number_of_sets_show +ffffffff8152a8f0 t ways_of_associativity_show +ffffffff8152a910 t coherency_line_size_show +ffffffff8152a930 t level_show +ffffffff8152a950 t id_show +ffffffff8152a970 t write_policy_show +ffffffff8152a9d0 t allocation_policy_show +ffffffff8152aa70 t shared_cpu_map_show +ffffffff8152aa90 t shared_cpu_list_show +ffffffff8152aac0 t type_show +ffffffff8152ab30 t free_cache_attributes.part.3 +ffffffff8152ac20 t cacheinfo_cpu_pre_down +ffffffff8152ac60 T get_cpu_cacheinfo +ffffffff8152aca0 W cache_get_priv_group +ffffffff8152acb0 t cacheinfo_cpu_online +ffffffff8152b040 t dev_mount +ffffffff8152b050 t handle_remove +ffffffff8152b2e0 t handle_create +ffffffff8152b4a0 t devtmpfsd +ffffffff8152b5d0 T devtmpfs_create_node +ffffffff8152b6f0 T devtmpfs_delete_node +ffffffff8152b7c0 T devtmpfs_mount +ffffffff8152b820 t pm_qos_latency_tolerance_us_store +ffffffff8152b8c0 t wakeup_show +ffffffff8152b900 t autosuspend_delay_ms_show +ffffffff8152b930 t control_show +ffffffff8152b960 t runtime_status_show +ffffffff8152b9e0 t pm_qos_no_power_off_show +ffffffff8152ba10 t wakeup_store +ffffffff8152ba80 t autosuspend_delay_ms_store +ffffffff8152bb00 t runtime_active_time_show +ffffffff8152bb50 t runtime_suspended_time_show +ffffffff8152bba0 t control_store +ffffffff8152bc20 t pm_qos_resume_latency_us_store +ffffffff8152bcc0 t pm_qos_no_power_off_store +ffffffff8152bd20 t pm_qos_latency_tolerance_us_show +ffffffff8152bd70 t wakeup_abort_count_show.part.7 +ffffffff8152bd70 t wakeup_active_count_show.part.8 +ffffffff8152bd70 t wakeup_active_show.part.5 +ffffffff8152bd70 t wakeup_count_show.part.9 +ffffffff8152bd70 t wakeup_expire_count_show.part.6 +ffffffff8152bd70 t wakeup_last_time_ms_show.part.2 +ffffffff8152bd70 t wakeup_max_time_ms_show.part.3 +ffffffff8152bd70 t wakeup_prevent_sleep_time_ms_show.part.1 +ffffffff8152bd70 t wakeup_total_time_ms_show.part.4 +ffffffff8152bd80 t wakeup_prevent_sleep_time_ms_show +ffffffff8152be00 t wakeup_last_time_ms_show +ffffffff8152be80 t wakeup_max_time_ms_show +ffffffff8152bf00 t wakeup_total_time_ms_show +ffffffff8152bf80 t wakeup_active_show +ffffffff8152bff0 t wakeup_expire_count_show +ffffffff8152c060 t wakeup_abort_count_show +ffffffff8152c0d0 t wakeup_active_count_show +ffffffff8152c140 t wakeup_count_show +ffffffff8152c1b0 t pm_qos_resume_latency_us_show +ffffffff8152c200 T dpm_sysfs_add +ffffffff8152c2e0 T wakeup_sysfs_add +ffffffff8152c2f0 T wakeup_sysfs_remove +ffffffff8152c300 T pm_qos_sysfs_add_resume_latency +ffffffff8152c310 T pm_qos_sysfs_remove_resume_latency +ffffffff8152c320 T pm_qos_sysfs_add_flags +ffffffff8152c330 T pm_qos_sysfs_remove_flags +ffffffff8152c340 T pm_qos_sysfs_add_latency_tolerance +ffffffff8152c350 T pm_qos_sysfs_remove_latency_tolerance +ffffffff8152c360 T rpm_sysfs_remove +ffffffff8152c370 T dpm_sysfs_remove +ffffffff8152c3c0 T pm_generic_runtime_suspend +ffffffff8152c3f0 T pm_generic_runtime_resume +ffffffff8152c420 T pm_generic_prepare +ffffffff8152c450 T pm_generic_suspend_noirq +ffffffff8152c480 T pm_generic_suspend_late +ffffffff8152c4b0 T pm_generic_suspend +ffffffff8152c4e0 T pm_generic_freeze_noirq +ffffffff8152c510 T pm_generic_freeze_late +ffffffff8152c540 T pm_generic_freeze +ffffffff8152c570 T pm_generic_poweroff_noirq +ffffffff8152c5a0 T pm_generic_poweroff_late +ffffffff8152c5d0 T pm_generic_poweroff +ffffffff8152c600 T pm_generic_thaw_noirq +ffffffff8152c630 T pm_generic_thaw_early +ffffffff8152c660 T pm_generic_thaw +ffffffff8152c690 T pm_generic_resume_noirq +ffffffff8152c6c0 T pm_generic_resume_early +ffffffff8152c6f0 T pm_generic_resume +ffffffff8152c720 T pm_generic_restore_noirq +ffffffff8152c750 T pm_generic_restore_early +ffffffff8152c780 T pm_generic_restore +ffffffff8152c7b0 T pm_generic_complete +ffffffff8152c7e0 T dev_pm_get_subsys_data +ffffffff8152c860 T dev_pm_put_subsys_data +ffffffff8152c8b0 T dev_pm_domain_attach +ffffffff8152c8d0 T dev_pm_domain_detach +ffffffff8152c900 T dev_pm_domain_set +ffffffff8152c930 t apply_constraint +ffffffff8152c9f0 t __dev_pm_qos_remove_request +ffffffff8152ca60 t dev_pm_qos_constraints_allocate +ffffffff8152cb60 t __dev_pm_qos_hide_latency_limit.isra.2 +ffffffff8152cba0 t __dev_pm_qos_hide_flags.isra.3 +ffffffff8152cbe0 t __dev_pm_qos_update_request +ffffffff8152cc40 t __dev_pm_qos_add_request +ffffffff8152ccd0 T __dev_pm_qos_flags +ffffffff8152cd10 T dev_pm_qos_flags +ffffffff8152cd80 T __dev_pm_qos_read_value +ffffffff8152cda0 T dev_pm_qos_read_value +ffffffff8152cdf0 T dev_pm_qos_constraints_destroy +ffffffff8152cfe0 T dev_pm_qos_add_request +ffffffff8152d030 T dev_pm_qos_update_request +ffffffff8152d060 T dev_pm_qos_remove_request +ffffffff8152d090 T dev_pm_qos_add_notifier +ffffffff8152d100 T dev_pm_qos_remove_notifier +ffffffff8152d150 T dev_pm_qos_add_ancestor_request +ffffffff8152d1b0 T dev_pm_qos_expose_latency_limit +ffffffff8152d300 T dev_pm_qos_hide_latency_limit +ffffffff8152d350 T dev_pm_qos_expose_flags +ffffffff8152d4a0 T dev_pm_qos_hide_flags +ffffffff8152d500 T dev_pm_qos_update_flags +ffffffff8152d590 T dev_pm_qos_get_user_latency_tolerance +ffffffff8152d5e0 T dev_pm_qos_update_user_latency_tolerance +ffffffff8152d6c0 T dev_pm_qos_expose_latency_tolerance +ffffffff8152d700 T dev_pm_qos_hide_latency_tolerance +ffffffff8152d750 t __rpm_get_callback +ffffffff8152d7d0 t dev_memalloc_noio +ffffffff8152d7e0 t rpm_check_suspend_allowed +ffffffff8152d870 t __pm_runtime_barrier +ffffffff8152d9a0 t pm_runtime_autosuspend_expiration.part.0 +ffffffff8152da00 T update_pm_runtime_accounting +ffffffff8152da40 T pm_runtime_autosuspend_expiration +ffffffff8152da60 T pm_runtime_set_memalloc_noio +ffffffff8152db00 T __pm_runtime_resume +ffffffff8152db50 t __rpm_callback +ffffffff8152dd40 t rpm_callback +ffffffff8152ddb0 t rpm_idle +ffffffff8152dee0 T __pm_runtime_idle +ffffffff8152df40 t rpm_resume +ffffffff8152e5e0 t rpm_suspend +ffffffff8152eb10 t pm_suspend_timer_fn +ffffffff8152eb70 T pm_schedule_suspend +ffffffff8152ec40 T __pm_runtime_suspend +ffffffff8152eca0 t update_autosuspend +ffffffff8152ecf0 t pm_runtime_work +ffffffff8152ed90 T pm_runtime_get_if_in_use +ffffffff8152ee10 T __pm_runtime_set_status +ffffffff8152f050 T pm_runtime_barrier +ffffffff8152f0e0 T __pm_runtime_disable +ffffffff8152f1c0 T pm_runtime_enable +ffffffff8152f250 T pm_runtime_forbid +ffffffff8152f2a0 T pm_runtime_allow +ffffffff8152f300 T pm_runtime_no_callbacks +ffffffff8152f340 T pm_runtime_irq_safe +ffffffff8152f380 T pm_runtime_set_autosuspend_delay +ffffffff8152f3d0 T __pm_runtime_use_autosuspend +ffffffff8152f430 T pm_runtime_init +ffffffff8152f4f0 T pm_runtime_reinit +ffffffff8152f560 T pm_runtime_remove +ffffffff8152f580 T pm_runtime_clean_up_links +ffffffff8152f610 T pm_runtime_get_suppliers +ffffffff8152f670 T pm_runtime_put_suppliers +ffffffff8152f6d0 T pm_runtime_new_link +ffffffff8152f700 T pm_runtime_drop_link +ffffffff8152f730 T pm_runtime_force_suspend +ffffffff8152f810 T pm_runtime_force_resume +ffffffff8152f8e0 t dev_pm_attach_wake_irq.isra.0 +ffffffff8152f950 t handle_threaded_wake_irq +ffffffff8152f9b0 T dev_pm_set_wake_irq +ffffffff8152fa20 T dev_pm_clear_wake_irq +ffffffff8152faa0 T dev_pm_set_dedicated_wake_irq +ffffffff8152fb80 T dev_pm_enable_wake_irq +ffffffff8152fba0 T dev_pm_disable_wake_irq +ffffffff8152fbc0 T dev_pm_enable_wake_irq_check +ffffffff8152fbf0 T dev_pm_disable_wake_irq_check +ffffffff8152fc20 T dev_pm_arm_wake_irq +ffffffff8152fc80 T dev_pm_disarm_wake_irq +ffffffff8152fcd0 t dpm_subsys_resume_noirq_cb +ffffffff8152fcd0 t dpm_subsys_suspend_noirq_cb +ffffffff8152fe10 t dpm_subsys_resume_early_cb +ffffffff8152ff50 t dpm_propagate_wakeup_to_parent +ffffffff8152ffa0 t dpm_subsys_suspend_late_cb +ffffffff815300e0 t pm_ops_is_empty +ffffffff81530130 t dpm_wait +ffffffff81530160 t dpm_wait_fn +ffffffff81530170 t dpm_wait_for_suppliers +ffffffff815301e0 t pm_dev_err +ffffffff81530280 t dpm_wait_for_subordinate +ffffffff81530310 t dpm_run_callback.isra.8 +ffffffff81530350 t device_resume_early +ffffffff81530410 t async_resume_early +ffffffff81530450 t device_resume +ffffffff815305c0 t async_resume +ffffffff81530600 t device_resume_noirq +ffffffff815307b0 t async_resume_noirq +ffffffff815307f0 t __device_suspend_noirq +ffffffff81530a60 t async_suspend_noirq +ffffffff81530af0 t __device_suspend_late +ffffffff81530c00 t async_suspend_late +ffffffff81530c90 t __device_suspend +ffffffff81530f80 t async_suspend +ffffffff81531010 T device_pm_sleep_init +ffffffff81531080 T device_pm_lock +ffffffff81531090 T device_pm_unlock +ffffffff815310a0 T device_pm_move_before +ffffffff815310e0 T device_pm_move_after +ffffffff81531130 T device_pm_move_last +ffffffff81531170 T dev_pm_skip_next_resume_phases +ffffffff81531180 T dev_pm_may_skip_resume +ffffffff815311a0 T dpm_noirq_resume_devices +ffffffff815313b0 T dpm_noirq_end +ffffffff815313c0 T dpm_resume_noirq +ffffffff815313e0 T dpm_resume_early +ffffffff815315f0 T dpm_resume_start +ffffffff81531600 T dpm_resume +ffffffff81531810 T dpm_complete +ffffffff815319d0 T dpm_resume_end +ffffffff815319e0 T dpm_noirq_begin +ffffffff815319f0 T dpm_noirq_suspend_devices +ffffffff81531bf0 T dpm_suspend_noirq +ffffffff81531c40 T dpm_suspend_late +ffffffff81531e60 T dpm_suspend_end +ffffffff81531eb0 T dpm_suspend +ffffffff815320c0 T dpm_prepare +ffffffff81532360 T dpm_suspend_start +ffffffff815323b0 T __suspend_report_result +ffffffff815323d0 T device_pm_wait_for_dev +ffffffff815323f0 T dpm_for_each_dev +ffffffff81532460 T device_pm_check_callbacks +ffffffff81532550 T device_pm_add +ffffffff815325e0 T device_pm_remove +ffffffff81532660 T dev_pm_smart_suspend_and_suspended +ffffffff81532680 t wakeup_source_deactivate.part.2 +ffffffff81532710 t pm_wakeup_timer_fn +ffffffff81532790 t __pm_relax.part.5 +ffffffff81532800 t wakeup_source_report_event +ffffffff815328a0 t __pm_stay_awake.part.10 +ffffffff815328e0 t pm_wakeup_ws_event.part.11 +ffffffff81532990 t wakeup_source_destroy.part.7 +ffffffff81532a50 T wakeup_source_prepare +ffffffff81532a90 T wakeup_source_create +ffffffff81532ae0 T wakeup_source_drop +ffffffff81532b00 T wakeup_source_destroy +ffffffff81532b10 T wakeup_source_add +ffffffff81532b90 T wakeup_source_remove +ffffffff81532be0 T wakeup_source_register +ffffffff81532c10 T wakeup_source_unregister +ffffffff81532c30 T device_wakeup_enable +ffffffff81532d10 T device_wakeup_attach_irq +ffffffff81532d40 T device_wakeup_detach_irq +ffffffff81532d60 T device_wakeup_arm_wake_irqs +ffffffff81532db0 T device_wakeup_disarm_wake_irqs +ffffffff81532e00 T device_wakeup_disable +ffffffff81532e70 T device_set_wakeup_capable +ffffffff81532ee0 T device_init_wakeup +ffffffff81532f20 T device_set_wakeup_enable +ffffffff81532f30 T __pm_stay_awake +ffffffff81532f40 T pm_stay_awake +ffffffff81532f80 T __pm_relax +ffffffff81532f90 T pm_relax +ffffffff81532fd0 T pm_wakeup_ws_event +ffffffff81532fe0 T pm_wakeup_dev_event +ffffffff81533040 T pm_print_active_wakeup_sources +ffffffff81533080 T pm_wakeup_pending +ffffffff81533110 T pm_system_wakeup +ffffffff81533120 T pm_system_cancel_wakeup +ffffffff81533130 T pm_wakeup_clear +ffffffff81533150 T pm_system_irq_wakeup +ffffffff81533170 T pm_get_wakeup_count +ffffffff81533220 T pm_save_wakeup_count +ffffffff81533270 T pm_wakep_autosleep_enabled +ffffffff81533330 t __pm_clk_add +ffffffff81533470 t __pm_clk_remove +ffffffff815334c0 T pm_clk_add +ffffffff815334d0 T pm_clk_add_clk +ffffffff815334e0 T of_pm_clk_add_clk +ffffffff81533510 T pm_clk_remove +ffffffff815335c0 T pm_clk_remove_clk +ffffffff81533660 T of_pm_clk_add_clks +ffffffff815336b0 T pm_clk_init +ffffffff815336d0 T pm_clk_create +ffffffff815336e0 T pm_clk_destroy +ffffffff815337d0 t pm_clk_notify +ffffffff81533860 T pm_clk_suspend +ffffffff815338d0 T pm_clk_resume +ffffffff81533970 T pm_clk_runtime_suspend +ffffffff815339d0 T pm_clk_runtime_resume +ffffffff81533a10 T pm_clk_add_notifier +ffffffff81533a30 t dmam_match +ffffffff81533a40 t dmam_release +ffffffff81533a90 T dmam_alloc_coherent +ffffffff81533b80 T dmam_free_coherent +ffffffff81533c00 T dmam_alloc_attrs +ffffffff81533d00 T dma_common_get_sgtable +ffffffff81533d90 T dma_common_mmap +ffffffff81533e20 T dma_common_pages_remap +ffffffff81533e70 T dma_common_contiguous_remap +ffffffff81533f60 T dma_common_free_remap +ffffffff81533fb0 T dma_configure +ffffffff81534080 T dma_deconfigure +ffffffff81534090 t devm_name_match +ffffffff815340a0 t fw_suspend +ffffffff815340b0 t fw_shutdown_notify +ffffffff815340c0 t fw_devm_match +ffffffff815340f0 t __lookup_fw_priv +ffffffff81534140 t __fw_entry_found +ffffffff81534180 t alloc_fw_cache_entry +ffffffff815341d0 t dev_create_fw_entry +ffffffff81534200 t fw_name_devm_release +ffffffff81534210 t free_fw_priv +ffffffff81534290 t dev_cache_fw_image +ffffffff815343b0 t release_firmware.part.7 +ffffffff81534410 t fw_pm_notify +ffffffff815344e0 t _request_firmware +ffffffff81534b10 t __async_dev_cache_fw_image +ffffffff81534ba0 t request_firmware_work_func +ffffffff81534c00 t device_uncache_fw_images_work +ffffffff81534d20 T request_firmware +ffffffff81534d30 T request_firmware_direct +ffffffff81534d40 T request_firmware_into_buf +ffffffff81534d50 T release_firmware +ffffffff81534d60 T request_firmware_nowait +ffffffff81534e70 t regmap_format_2_6_write +ffffffff81534e80 t regmap_format_10_14_write +ffffffff81534ea0 t regmap_format_8 +ffffffff81534eb0 t regmap_format_16_le +ffffffff81534ec0 t regmap_format_24 +ffffffff81534ee0 t regmap_format_32_le +ffffffff81534ef0 t regmap_format_64_le +ffffffff81534f00 t regmap_parse_inplace_noop +ffffffff81534f10 t regmap_parse_8 +ffffffff81534f20 t regmap_parse_16_le +ffffffff81534f30 t regmap_parse_24 +ffffffff81534f50 t regmap_parse_32_le +ffffffff81534f60 t regmap_parse_64_le +ffffffff81534f70 t regmap_lock_spinlock +ffffffff81534f80 t regmap_unlock_spinlock +ffffffff81534f90 t dev_get_regmap_release +ffffffff81534fa0 t dev_get_regmap_match +ffffffff81534fd0 t _regmap_bus_reg_write +ffffffff81534ff0 t _regmap_bus_reg_read +ffffffff81535010 t regmap_parse_64_be_inplace +ffffffff81535020 t regmap_parse_64_be +ffffffff81535030 t regmap_format_64_be +ffffffff81535040 t regmap_parse_32_be_inplace +ffffffff81535050 t regmap_parse_32_be +ffffffff81535060 t regmap_format_32_be +ffffffff81535070 t regmap_parse_16_be_inplace +ffffffff81535080 t regmap_parse_16_be +ffffffff81535090 t regmap_format_16_be +ffffffff815350a0 t regmap_format_7_9_write +ffffffff815350c0 t regmap_format_4_12_write +ffffffff815350e0 t regmap_unlock_mutex +ffffffff815350f0 t regmap_lock_mutex +ffffffff81535100 t _regmap_raw_multi_reg_write +ffffffff81535260 t regmap_range_exit +ffffffff815352c0 t regmap_set_work_buf_flag_mask.isra.1.part.2 +ffffffff815352f0 t regmap_unlock_hwlock_irqrestore +ffffffff81535300 t regmap_lock_unlock_none +ffffffff81535310 t regmap_format_16_native +ffffffff81535320 t regmap_format_32_native +ffffffff81535330 t regmap_format_64_native +ffffffff81535340 t regmap_parse_16_le_inplace +ffffffff81535350 t regmap_parse_16_native +ffffffff81535360 t regmap_parse_32_le_inplace +ffffffff81535370 t regmap_parse_32_native +ffffffff81535380 t regmap_parse_64_le_inplace +ffffffff81535390 t regmap_parse_64_native +ffffffff815353a0 t regmap_lock_hwlock +ffffffff815353b0 t regmap_lock_hwlock_irq +ffffffff815353c0 t regmap_lock_hwlock_irqsave +ffffffff815353d0 t regmap_unlock_hwlock +ffffffff815353e0 t regmap_unlock_hwlock_irq +ffffffff815353f0 t regmap_async_complete.part.12 +ffffffff815354c0 T regmap_reg_in_ranges +ffffffff815354f0 T regmap_check_range_table +ffffffff81535550 T regmap_writeable +ffffffff81535590 T regmap_cached +ffffffff81535600 T regmap_readable +ffffffff81535660 t _regmap_read +ffffffff81535710 T regmap_volatile +ffffffff81535770 T regmap_precious +ffffffff815357c0 T regmap_attach_dev +ffffffff81535810 T regmap_get_val_endian +ffffffff81535840 T __regmap_init +ffffffff81536540 T __devm_regmap_init +ffffffff815365f0 T devm_regmap_field_alloc +ffffffff81536660 T devm_regmap_field_free +ffffffff81536670 T regmap_field_alloc +ffffffff815366e0 T regmap_field_free +ffffffff815366f0 T regmap_reinit_cache +ffffffff81536760 T regmap_exit +ffffffff81536830 t devm_regmap_release +ffffffff81536840 T dev_get_regmap +ffffffff81536870 T regmap_get_device +ffffffff81536880 T regmap_can_raw_write +ffffffff815368b0 T regmap_get_raw_read_max +ffffffff815368c0 T regmap_get_raw_write_max +ffffffff815368d0 T _regmap_write +ffffffff81536960 t _regmap_update_bits +ffffffff81536a20 t _regmap_select_page +ffffffff81536ad0 t _regmap_bus_formatted_write +ffffffff81536b60 t _regmap_raw_read +ffffffff81536c50 t _regmap_bus_read +ffffffff81536cb0 T _regmap_raw_write +ffffffff81537310 t _regmap_bus_raw_write +ffffffff81537350 t _regmap_multi_reg_write +ffffffff81537750 T regmap_write +ffffffff815377a0 T regmap_write_async +ffffffff81537800 T regmap_raw_write +ffffffff815378a0 T regmap_bulk_write +ffffffff81537bc0 T regmap_multi_reg_write +ffffffff81537c00 T regmap_multi_reg_write_bypassed +ffffffff81537c60 T regmap_raw_write_async +ffffffff81537ce0 T regmap_read +ffffffff81537d30 T regmap_raw_read +ffffffff81537eb0 T regmap_field_read +ffffffff81537ef0 T regmap_fields_read +ffffffff81537f40 T regmap_bulk_read +ffffffff81538210 T regmap_update_bits_base +ffffffff81538290 T regmap_field_update_bits_base +ffffffff815382c0 T regmap_fields_update_bits_base +ffffffff81538300 T regmap_async_complete_cb +ffffffff815383b0 T regmap_async_complete +ffffffff815383d0 T regmap_register_patch +ffffffff815384d0 T regmap_get_val_bytes +ffffffff815384f0 T regmap_get_max_register +ffffffff81538510 T regmap_get_reg_stride +ffffffff81538520 T regmap_parse_val +ffffffff81538550 t regcache_default_cmp +ffffffff81538560 t regcache_sync_block_raw_flush +ffffffff815385f0 T regcache_exit +ffffffff81538650 T regcache_read +ffffffff815386b0 T regcache_write +ffffffff81538710 T regcache_drop_region +ffffffff81538780 T regcache_cache_only +ffffffff815387b0 T regcache_mark_dirty +ffffffff815387e0 T regcache_cache_bypass +ffffffff81538810 T regcache_get_val +ffffffff81538870 T regcache_init +ffffffff81538ce0 T regcache_set_val +ffffffff81538d80 T regcache_lookup_reg +ffffffff81538de0 t regcache_reg_needs_sync.part.2 +ffffffff81538e10 t regcache_default_sync +ffffffff81538ed0 T regcache_sync +ffffffff81539000 T regcache_sync_region +ffffffff815390b0 T regcache_sync_block +ffffffff815392e0 t regcache_rbtree_drop +ffffffff81539370 t regcache_rbtree_sync +ffffffff81539410 t regcache_rbtree_set_register +ffffffff81539430 t regcache_rbtree_lookup.isra.0 +ffffffff815394a0 t regcache_rbtree_read +ffffffff81539500 t regcache_rbtree_write +ffffffff815399a0 t regcache_rbtree_exit +ffffffff81539a30 t regcache_rbtree_init +ffffffff81539ad0 t regcache_flat_read +ffffffff81539af0 t regcache_flat_write +ffffffff81539b10 t regcache_flat_exit +ffffffff81539b30 t regcache_flat_init +ffffffff81539bc0 t regmap_smbus_byte_reg_read +ffffffff81539bf0 t regmap_smbus_byte_reg_write +ffffffff81539c10 t regmap_smbus_word_reg_read +ffffffff81539c40 t regmap_smbus_word_read_swapped +ffffffff81539c70 t regmap_smbus_word_write_swapped +ffffffff81539ca0 t regmap_smbus_word_reg_write +ffffffff81539cc0 t regmap_i2c_smbus_i2c_read +ffffffff81539d10 t regmap_i2c_smbus_i2c_write +ffffffff81539d40 t regmap_i2c_read +ffffffff81539dd0 t regmap_i2c_gather_write +ffffffff81539e90 t regmap_i2c_write +ffffffff81539ec0 t regmap_get_i2c_bus +ffffffff81539fd0 T __regmap_init_i2c +ffffffff8153a020 T __devm_regmap_init_i2c +ffffffff8153a070 t platform_msi_write_msg +ffffffff8153a090 t platform_msi_free_descs +ffffffff8153a120 t platform_msi_alloc_descs_with_irq +ffffffff8153a200 t platform_msi_alloc_priv_data +ffffffff8153a2d0 T platform_msi_create_irq_domain +ffffffff8153a380 T platform_msi_domain_alloc_irqs +ffffffff8153a410 T platform_msi_domain_free_irqs +ffffffff8153a470 T platform_msi_get_host_data +ffffffff8153a480 T platform_msi_create_device_domain +ffffffff8153a530 T platform_msi_domain_free +ffffffff8153a5c0 T platform_msi_domain_alloc +ffffffff8153a630 t find_free_cb +ffffffff8153a650 t xor_init +ffffffff8153a660 t transfer_xor +ffffffff8153a760 t unregister_transfer_cb +ffffffff8153a7d0 t lo_open +ffffffff8153a810 t loop_remove +ffffffff8153a850 t loop_exit_cb +ffffffff8153a860 t loop_attr_do_show_dio +ffffffff8153a8a0 t loop_attr_do_show_partscan +ffffffff8153a8e0 t loop_attr_do_show_autoclear +ffffffff8153a920 t loop_attr_do_show_sizelimit +ffffffff8153a940 t loop_attr_do_show_offset +ffffffff8153a960 t figure_loop_size +ffffffff8153aa00 t loop_kthread_worker_fn +ffffffff8153aa20 t __loop_update_dio +ffffffff8153ab60 t loop_attr_do_show_backing_file +ffffffff8153ac00 t loop_reread_partitions +ffffffff8153ac40 t loop_init_request +ffffffff8153ac80 t loop_clr_fd +ffffffff8153af80 t lo_release +ffffffff8153b020 t loop_set_status +ffffffff8153b420 t loop_set_status_old +ffffffff8153b610 t loop_set_status64 +ffffffff8153b650 t loop_get_status +ffffffff8153b820 t loop_get_status_old +ffffffff8153ba50 t loop_get_status64 +ffffffff8153baa0 t lo_ioctl +ffffffff8153c290 t lo_write_bvec +ffffffff8153c380 t lo_complete_rq +ffffffff8153c3f0 t loop_queue_rq +ffffffff8153c480 t loop_add +ffffffff8153c6f0 t loop_lookup.part.3 +ffffffff8153c730 t loop_lookup +ffffffff8153c760 t loop_probe +ffffffff8153c7e0 t loop_control_ioctl +ffffffff8153c910 t lo_rw_aio_do_completion +ffffffff8153c940 t lo_rw_aio +ffffffff8153cd30 t lo_rw_aio_complete +ffffffff8153cdb0 t loop_queue_work +ffffffff8153d620 T loop_register_transfer +ffffffff8153d650 T loop_unregister_transfer +ffffffff8153d690 t dma_buf_mmap_internal +ffffffff8153d6e0 t dma_buf_llseek +ffffffff8153d730 t dma_buf_release +ffffffff8153d870 t dma_buf_poll_cb +ffffffff8153d8b0 t dma_buf_poll +ffffffff8153dc60 T dma_buf_export +ffffffff8153de90 T dma_buf_fd +ffffffff8153dee0 T dma_buf_get +ffffffff8153df20 T dma_buf_put +ffffffff8153df40 T dma_buf_attach +ffffffff8153e030 T dma_buf_detach +ffffffff8153e0b0 T dma_buf_map_attachment +ffffffff8153e0f0 T dma_buf_unmap_attachment +ffffffff8153e120 T dma_buf_begin_cpu_access +ffffffff8153e180 t dma_buf_ioctl +ffffffff8153e240 T dma_buf_end_cpu_access +ffffffff8153e260 T dma_buf_kmap_atomic +ffffffff8153e270 T dma_buf_kunmap_atomic +ffffffff8153e290 T dma_buf_kmap +ffffffff8153e2a0 T dma_buf_kunmap +ffffffff8153e2c0 T dma_buf_mmap +ffffffff8153e390 T dma_buf_vmap +ffffffff8153e420 T dma_buf_vunmap +ffffffff8153e490 t dma_fence_default_wait_cb +ffffffff8153e4a0 T dma_fence_context_alloc +ffffffff8153e4b0 T dma_fence_signal_locked +ffffffff8153e540 T dma_fence_default_wait +ffffffff8153e730 T dma_fence_signal +ffffffff8153e7f0 T dma_fence_wait_timeout +ffffffff8153e810 T dma_fence_release +ffffffff8153e840 T dma_fence_free +ffffffff8153e850 T dma_fence_enable_sw_signaling +ffffffff8153e8b0 T dma_fence_add_callback +ffffffff8153e980 T dma_fence_get_status +ffffffff8153e9e0 T dma_fence_remove_callback +ffffffff8153ea30 T dma_fence_wait_any_timeout +ffffffff8153ed10 T dma_fence_init +ffffffff8153ed70 t dma_fence_array_get_driver_name +ffffffff8153ed80 t dma_fence_array_get_timeline_name +ffffffff8153ed90 t dma_fence_array_signaled +ffffffff8153edb0 t dma_fence_array_release +ffffffff8153ee20 t dma_fence_array_enable_signaling +ffffffff8153eee0 t dma_fence_array_cb_func +ffffffff8153ef10 t irq_dma_fence_array_work +ffffffff8153ef40 T dma_fence_array_create +ffffffff8153efd0 T dma_fence_match_context +ffffffff8153f020 T reservation_object_reserve_shared +ffffffff8153f090 T reservation_object_add_shared_fence +ffffffff8153f3e0 T reservation_object_add_excl_fence +ffffffff8153f490 T reservation_object_copy_fences +ffffffff8153f740 T reservation_object_get_fences_rcu +ffffffff8153f9c0 T reservation_object_wait_timeout_rcu +ffffffff8153fd10 T reservation_object_test_signaled_rcu +ffffffff8153ff80 t seqno_fence_get_driver_name +ffffffff8153ffa0 t seqno_fence_get_timeline_name +ffffffff8153ffc0 t seqno_enable_signaling +ffffffff8153ffe0 t seqno_signaled +ffffffff81540010 t seqno_wait +ffffffff81540040 t seqno_release +ffffffff81540080 t sync_file_release +ffffffff815400d0 t sync_file_fdget +ffffffff81540100 t sync_file_alloc +ffffffff81540180 t sync_file_poll +ffffffff81540230 t fence_check_cb_func +ffffffff81540250 t add_fence +ffffffff815402b0 T sync_file_create +ffffffff815402e0 T sync_file_get_fence +ffffffff81540310 T sync_file_get_name +ffffffff815403a0 t sync_file_ioctl +ffffffff81540a50 t scsi_vpd_inquiry +ffffffff81540ae0 t scsi_get_vpd_buf +ffffffff81540b70 t scsi_update_vpd_page +ffffffff81540bd0 T scsi_put_command +ffffffff81540bf0 T scsi_cmd_get_serial +ffffffff81540c30 T scsi_finish_command +ffffffff81540d20 T scsi_change_queue_depth +ffffffff81540d50 T scsi_track_queue_full +ffffffff81540dd0 T scsi_get_vpd_page +ffffffff81540e80 T scsi_attach_vpd +ffffffff81540f40 T scsi_report_opcode +ffffffff81541030 T scsi_device_get +ffffffff81541060 T scsi_device_put +ffffffff81541070 T __scsi_iterate_devices +ffffffff81541100 T starget_for_each_device +ffffffff815411b0 T __starget_for_each_device +ffffffff81541250 T __scsi_device_lookup_by_target +ffffffff81541290 T scsi_device_lookup_by_target +ffffffff81541340 T __scsi_device_lookup +ffffffff81541390 T scsi_device_lookup +ffffffff81541430 t __scsi_host_match +ffffffff81541440 t scsi_host_cls_release +ffffffff81541450 t scsi_host_dev_release +ffffffff81541540 T scsi_host_set_state +ffffffff815415b0 T scsi_remove_host +ffffffff815416e0 T scsi_add_host_with_dma +ffffffff81541a50 T scsi_host_alloc +ffffffff81541eb0 T scsi_register +ffffffff81541f10 T scsi_unregister +ffffffff81541f50 T scsi_host_lookup +ffffffff81541fc0 T scsi_host_get +ffffffff81541ff0 T scsi_host_put +ffffffff81542000 T scsi_init_hosts +ffffffff81542020 T scsi_exit_hosts +ffffffff81542040 T scsi_is_host_device +ffffffff81542050 T scsi_queue_work +ffffffff815420a0 T scsi_flush_work +ffffffff815420e0 t ioctl_internal_command.constprop.2 +ffffffff815421e0 t scsi_set_medium_removal.part.1 +ffffffff81542240 T scsi_set_medium_removal +ffffffff81542260 T scsi_ioctl +ffffffff815425d0 T scsi_ioctl_block_when_processing_errors +ffffffff81542610 t scsi_partsize.part.0 +ffffffff81542700 T scsi_bios_ptable +ffffffff815427d0 T scsicam_bios_param +ffffffff81542960 T scsi_partsize +ffffffff81542980 t __scsi_report_device_reset +ffffffff81542990 t scsi_eh_action +ffffffff815429d0 t scsi_reset_provider_done_command +ffffffff815429e0 t scsi_eh_inc_host_failed +ffffffff81542a40 t scsi_eh_done +ffffffff81542a60 t scsi_try_bus_reset +ffffffff81542b10 t scsi_try_host_reset +ffffffff81542bc0 t scsi_handle_queue_ramp_up +ffffffff81542c70 t scsi_handle_queue_full +ffffffff81542ce0 t scsi_try_target_reset +ffffffff81542d60 t eh_lock_door_done +ffffffff81542d70 T scsi_eh_wakeup +ffffffff81542d90 T scsi_schedule_eh +ffffffff81542e00 T scsi_eh_scmd_add +ffffffff81542ee0 T scsi_times_out +ffffffff81542fd0 T scsi_block_when_processing_errors +ffffffff81543060 T scsi_check_sense +ffffffff81543530 T scsi_eh_prep_cmnd +ffffffff815437d0 t scsi_send_eh_cmnd +ffffffff81543bc0 t scsi_eh_try_stu.part.4 +ffffffff81543c20 t scsi_eh_tur +ffffffff81543c80 t scsi_eh_test_devices +ffffffff81543eb0 T scsi_eh_restore_cmnd +ffffffff81543f30 T scsi_eh_finish_cmd +ffffffff81543f60 T scsi_noretry_cmd +ffffffff81544000 T scmd_eh_abort_handler +ffffffff81544100 T scsi_decide_disposition +ffffffff81544290 T scsi_eh_get_sense +ffffffff815443c0 T scsi_eh_ready_devs +ffffffff81544b80 T scsi_eh_flush_done_q +ffffffff81544c30 T scsi_error_handler +ffffffff81544fb0 T scsi_report_bus_reset +ffffffff81544fe0 T scsi_report_device_reset +ffffffff81545030 T scsi_ioctl_reset +ffffffff815452b0 T scsi_command_normalize_sense +ffffffff815452d0 T scsi_get_sense_info_fld +ffffffff81545330 t scsi_uninit_cmd +ffffffff81545370 t __scsi_error_from_host_byte +ffffffff815453d0 t scsi_unprep_fn +ffffffff815453e0 t scsi_lld_busy +ffffffff81545430 t scsi_dispatch_cmd +ffffffff81545510 t scsi_mq_put_budget +ffffffff81545530 t scsi_mq_free_sgtables +ffffffff815455a0 t scsi_release_buffers +ffffffff81545600 t scsi_dec_host_busy +ffffffff81545670 t scsi_kick_queue +ffffffff81545690 t scsi_run_queue +ffffffff81545940 t scsi_mq_exit_request +ffffffff81545970 t scsi_old_exit_rq +ffffffff815459b0 t scsi_mq_init_request +ffffffff81545a50 t scsi_old_init_rq +ffffffff81545b40 t scsi_initialize_rq +ffffffff81545b70 t scsi_timeout +ffffffff81545b80 t scsi_done +ffffffff81545b90 t scsi_map_queues +ffffffff81545bc0 t scsi_mq_get_budget +ffffffff81545c90 t scsi_mq_done +ffffffff81545ca0 t scsi_init_cmd_errh +ffffffff81545d20 t scsi_init_sgtable +ffffffff81545d90 t scsi_prep_state_check +ffffffff81545e10 t target_block +ffffffff81545e40 t target_unblock +ffffffff81545e70 T scsi_init_sense_cache +ffffffff81545f30 T scsi_execute +ffffffff81546180 T scsi_device_unbusy +ffffffff815461b0 T scsi_requeue_run_queue +ffffffff815461c0 T scsi_run_host_queues +ffffffff81546200 T scsi_init_io +ffffffff81546310 t scsi_setup_cmnd +ffffffff81546440 T scsi_add_cmd_to_list +ffffffff815464a0 T scsi_del_cmd_from_list +ffffffff81546500 t scsi_mq_uninit_cmd +ffffffff81546520 t scsi_mq_requeue_cmd +ffffffff81546570 t __scsi_queue_insert +ffffffff81546650 T scsi_queue_insert +ffffffff81546660 t scsi_softirq_done +ffffffff81546780 t scsi_request_fn +ffffffff81546cb0 t scsi_end_request +ffffffff81546e70 T scsi_io_completion +ffffffff81547460 T scsi_init_command +ffffffff81547590 t scsi_prep_fn +ffffffff815476d0 t scsi_queue_rq +ffffffff81547b90 T __scsi_init_queue +ffffffff81547ce0 T scsi_old_alloc_queue +ffffffff81547dd0 T scsi_mq_alloc_queue +ffffffff81547e10 T scsi_mq_setup_tags +ffffffff81547f00 T scsi_mq_destroy_tags +ffffffff81547f10 T scsi_device_from_queue +ffffffff81547f60 T scsi_block_requests +ffffffff81547f70 T scsi_unblock_requests +ffffffff81547f80 T scsi_exit_queue +ffffffff81547fb0 T scsi_mode_select +ffffffff815481c0 T scsi_mode_sense +ffffffff81548500 T scsi_test_unit_ready +ffffffff815485b0 T scsi_device_set_state +ffffffff81548660 T sdev_evt_send +ffffffff815486d0 T sdev_evt_alloc +ffffffff81548710 T sdev_evt_send_simple +ffffffff81548750 T scsi_evt_thread +ffffffff81548960 T scsi_device_quiesce +ffffffff815489f0 t device_quiesce_fn +ffffffff81548a00 T scsi_device_resume +ffffffff81548a50 t device_resume_fn +ffffffff81548a60 T scsi_target_quiesce +ffffffff81548a70 T scsi_target_resume +ffffffff81548a80 T scsi_internal_device_block_nowait +ffffffff81548b10 t device_block +ffffffff81548ba0 T scsi_start_queue +ffffffff81548bf0 T scsi_internal_device_unblock_nowait +ffffffff81548c30 t device_unblock +ffffffff81548c60 T scsi_target_block +ffffffff81548ca0 T scsi_target_unblock +ffffffff81548cf0 T scsi_kmap_atomic_sg +ffffffff81548e00 T scsi_kunmap_atomic_sg +ffffffff81548e30 T sdev_disable_disk_events +ffffffff81548e40 T sdev_enable_disk_events +ffffffff81548e60 T scsi_vpd_lun_id +ffffffff815492d0 T scsi_vpd_tpg_id +ffffffff815493a0 T scsi_device_type +ffffffff815493d0 T scsilun_to_int +ffffffff81549410 T int_to_scsilun +ffffffff81549440 T scsi_normalize_sense +ffffffff815494f0 T scsi_sense_desc_find +ffffffff81549570 T scsi_build_sense_buffer +ffffffff815495a0 T scsi_set_sense_information +ffffffff81549630 T scsi_set_sense_field_pointer +ffffffff81549730 T scsi_dma_map +ffffffff815497a0 T scsi_dma_unmap +ffffffff81549800 t scsi_target_dev_release +ffffffff81549820 t scsi_target_destroy +ffffffff815498d0 t scsi_target_reap_ref_put +ffffffff81549920 t scsi_alloc_target +ffffffff81549c50 t scsi_alloc_sdev +ffffffff81549f40 t scsi_probe_and_add_lun +ffffffff8154aae0 t __scsi_scan_target +ffffffff8154afd0 t scsi_scan_channel +ffffffff8154b050 T scsi_complete_async_scans +ffffffff8154b1a0 T scsi_is_target_device +ffffffff8154b1b0 T scsi_target_reap +ffffffff8154b1d0 T scsi_sanitize_inquiry_string +ffffffff8154b210 T __scsi_add_device +ffffffff8154b330 T scsi_add_device +ffffffff8154b350 T scsi_rescan_device +ffffffff8154b3c0 T scsi_scan_target +ffffffff8154b4c0 T scsi_scan_host_selected +ffffffff8154b5b0 t do_scsi_scan_host +ffffffff8154b640 t do_scan_async +ffffffff8154b7c0 T scsi_scan_host +ffffffff8154b960 T scsi_forget_host +ffffffff8154b9c0 T scsi_get_host_dev +ffffffff8154ba60 T scsi_free_host_dev +ffffffff8154ba78 t scsi_target_reap.part.0 +ffffffff8154ba80 t scsi_sdev_attr_is_visible +ffffffff8154bae0 t scsi_sdev_bin_attr_is_visible +ffffffff8154bb20 t store_shost_eh_deadline +ffffffff8154bc10 t show_shost_mode +ffffffff8154bcb0 t show_shost_supported_mode +ffffffff8154bce0 t store_host_reset +ffffffff8154bd70 t show_prot_guard_type +ffffffff8154bda0 t show_iostat_counterbits +ffffffff8154bdc0 t show_prot_capabilities +ffffffff8154bde0 t show_proc_name +ffffffff8154be10 t show_unchecked_isa_dma +ffffffff8154be40 t show_sg_prot_tablesize +ffffffff8154be70 t show_sg_tablesize +ffffffff8154bea0 t show_can_queue +ffffffff8154bec0 t show_cmd_per_lun +ffffffff8154bef0 t show_host_busy +ffffffff8154bf10 t show_unique_id +ffffffff8154bf30 t show_use_blk_mq +ffffffff8154bf60 t sdev_show_evt_lun_change_reported +ffffffff8154bf90 t sdev_show_evt_mode_parameter_change_reported +ffffffff8154bfc0 t sdev_show_evt_soft_threshold_reached +ffffffff8154bff0 t sdev_show_evt_capacity_change_reported +ffffffff8154c020 t sdev_show_evt_inquiry_change_reported +ffffffff8154c050 t sdev_show_evt_media_change +ffffffff8154c080 t sdev_show_blacklist +ffffffff8154c150 t show_queue_type_field +ffffffff8154c180 t sdev_show_queue_depth +ffffffff8154c1b0 t sdev_show_modalias +ffffffff8154c1e0 t show_iostat_ioerr_cnt +ffffffff8154c200 t show_iostat_iodone_cnt +ffffffff8154c220 t show_iostat_iorequest_cnt +ffffffff8154c240 t sdev_show_eh_timeout +ffffffff8154c270 t sdev_show_timeout +ffffffff8154c2b0 t sdev_show_rev +ffffffff8154c2e0 t sdev_show_model +ffffffff8154c310 t sdev_show_vendor +ffffffff8154c340 t sdev_show_device_busy +ffffffff8154c360 t sdev_show_scsi_level +ffffffff8154c390 t sdev_show_type +ffffffff8154c3c0 t sdev_show_device_blocked +ffffffff8154c3e0 t show_state_field +ffffffff8154c450 t show_shost_state +ffffffff8154c4e0 t store_shost_state +ffffffff8154c5a0 t scsi_device_dev_release +ffffffff8154c5c0 t scsi_device_dev_release_usercontext +ffffffff8154c790 t scsi_device_cls_release +ffffffff8154c7a0 t show_inquiry +ffffffff8154c7e0 t show_vpd_pg80 +ffffffff8154c840 t show_vpd_pg83 +ffffffff8154c8a0 t sdev_store_evt_lun_change_reported +ffffffff8154c8e0 t sdev_store_evt_mode_parameter_change_reported +ffffffff8154c920 t sdev_store_evt_soft_threshold_reached +ffffffff8154c960 t sdev_store_evt_capacity_change_reported +ffffffff8154c9a0 t sdev_store_evt_inquiry_change_reported +ffffffff8154c9e0 t sdev_store_evt_media_change +ffffffff8154ca20 t sdev_store_queue_depth +ffffffff8154cab0 t sdev_store_queue_ramp_up_period +ffffffff8154cb00 t sdev_show_queue_ramp_up_period +ffffffff8154cb30 t sdev_show_wwid +ffffffff8154cb60 t store_queue_type_field +ffffffff8154cba0 t sdev_store_eh_timeout +ffffffff8154cc10 t sdev_store_timeout +ffffffff8154cc50 t store_state_field +ffffffff8154cd30 t store_rescan_field +ffffffff8154cd40 t show_shost_eh_deadline +ffffffff8154cd80 t show_shost_active_mode +ffffffff8154cdb0 t check_set +ffffffff8154ce10 t store_scan +ffffffff8154cef0 t scsi_bus_uevent +ffffffff8154cf20 t scsi_bus_match +ffffffff8154cf50 T scsi_device_state_name +ffffffff8154cfa0 T scsi_host_state_name +ffffffff8154d010 T scsi_sysfs_register +ffffffff8154d060 T scsi_sysfs_unregister +ffffffff8154d080 T scsi_sysfs_add_sdev +ffffffff8154d2e0 T __scsi_remove_device +ffffffff8154d400 T scsi_remove_device +ffffffff8154d430 t sdev_store_delete +ffffffff8154d460 T scsi_remove_target +ffffffff8154d630 T scsi_register_driver +ffffffff8154d640 T scsi_register_interface +ffffffff8154d650 T scsi_sysfs_add_host +ffffffff8154d6e0 T scsi_sysfs_device_initialize +ffffffff8154d830 T scsi_is_sdev_device +ffffffff8154d840 t scsi_dev_info_list_find +ffffffff8154da30 t scsi_strcpy_devinfo +ffffffff8154db30 T scsi_dev_info_list_add_keyed +ffffffff8154dc80 T scsi_dev_info_list_del_keyed +ffffffff8154dcd0 T scsi_get_device_flags_keyed +ffffffff8154dd10 T scsi_get_device_flags +ffffffff8154dd20 T scsi_dev_info_add_list +ffffffff8154ddb0 T scsi_dev_info_remove_list +ffffffff8154de50 T scsi_exit_devinfo +ffffffff8154de60 T scsi_exit_sysctl +ffffffff8154de70 T scsi_trace_parse_cdb +ffffffff8154de90 t scsi_log_release_buffer +ffffffff8154dee0 t sdev_format_header +ffffffff8154df40 t scsi_format_opcode_name +ffffffff8154e050 t scsi_log_reserve_buffer +ffffffff8154e0e0 t scsi_log_print_sense_hdr +ffffffff8154e310 t scsi_log_print_sense +ffffffff8154e420 T sdev_prefix_printk +ffffffff8154e500 T scmd_printk +ffffffff8154e5f0 T __scsi_format_command +ffffffff8154e6a0 T scsi_print_command +ffffffff8154e930 T scsi_print_sense_hdr +ffffffff8154e940 T __scsi_print_sense +ffffffff8154e950 T scsi_print_sense +ffffffff8154e990 T scsi_print_result +ffffffff8154eaf0 t do_scsi_suspend +ffffffff8154eb10 t do_scsi_freeze +ffffffff8154eb30 t do_scsi_poweroff +ffffffff8154eb50 t do_scsi_resume +ffffffff8154eb70 t do_scsi_thaw +ffffffff8154eb90 t do_scsi_restore +ffffffff8154ebb0 t scsi_runtime_resume +ffffffff8154ec30 t scsi_runtime_suspend +ffffffff8154ecb0 t scsi_bus_resume_common +ffffffff8154edc0 t scsi_bus_restore +ffffffff8154edd0 t scsi_bus_thaw +ffffffff8154ede0 t scsi_bus_resume +ffffffff8154edf0 t scsi_runtime_idle +ffffffff8154ee30 t scsi_dev_type_resume +ffffffff8154ee90 t async_sdev_restore +ffffffff8154eea0 t async_sdev_thaw +ffffffff8154eeb0 t async_sdev_resume +ffffffff8154eec0 t scsi_bus_suspend_common +ffffffff8154ef50 t scsi_bus_poweroff +ffffffff8154ef60 t scsi_bus_freeze +ffffffff8154ef70 t scsi_bus_suspend +ffffffff8154ef80 t scsi_bus_prepare +ffffffff8154efc0 T scsi_autopm_get_device +ffffffff8154f000 T scsi_autopm_put_device +ffffffff8154f020 T scsi_autopm_get_target +ffffffff8154f030 T scsi_autopm_put_target +ffffffff8154f040 T scsi_autopm_get_host +ffffffff8154f080 T scsi_autopm_put_host +ffffffff8154f0a0 t sd_default_probe +ffffffff8154f0b0 t sd_eh_reset +ffffffff8154f0d0 t sd_unlock_native_capacity +ffffffff8154f100 t scsi_disk_release +ffffffff8154f170 t max_medium_access_timeouts_store +ffffffff8154f1c0 t protection_type_store +ffffffff8154f230 t max_medium_access_timeouts_show +ffffffff8154f250 t max_write_same_blocks_show +ffffffff8154f270 t zeroing_mode_show +ffffffff8154f2a0 t provisioning_mode_show +ffffffff8154f2d0 t thin_provisioning_show +ffffffff8154f300 t app_tag_own_show +ffffffff8154f330 t protection_type_show +ffffffff8154f350 t manage_start_stop_show +ffffffff8154f380 t allow_restart_show +ffffffff8154f3b0 t FUA_show +ffffffff8154f3e0 t cache_type_show +ffffffff8154f420 t sd_config_write_same +ffffffff8154f590 t max_write_same_blocks_store +ffffffff8154f640 t zeroing_mode_store +ffffffff8154f6a0 t sd_config_discard +ffffffff8154f7c0 t provisioning_mode_store +ffffffff8154f870 t manage_start_stop_store +ffffffff8154f8e0 t allow_restart_store +ffffffff8154f960 t sd_rescan +ffffffff8154f980 t sd_set_flush_flag +ffffffff8154f9b0 t cache_type_store +ffffffff8154fbc0 t sd_eh_action +ffffffff8154fcf0 t read_capacity_error +ffffffff8154fdc0 t sd_completed_bytes +ffffffff8154fe60 t sd_done +ffffffff81550120 t sd_uninit_command +ffffffff81550180 t sd_setup_write_same16_cmnd +ffffffff815502a0 t sd_setup_write_same10_cmnd +ffffffff815503d0 t sd_init_command +ffffffff81550e50 t sd_pr_command +ffffffff81550f40 t sd_pr_clear +ffffffff81550f60 t sd_pr_preempt +ffffffff81550fa0 t sd_pr_release +ffffffff81550fd0 t sd_pr_reserve +ffffffff81551010 t sd_pr_register +ffffffff81551040 t sd_getgeo +ffffffff815510e0 t scsi_disk_put +ffffffff81551120 t sd_ioctl +ffffffff815511b0 t sd_release +ffffffff81551200 t media_not_present +ffffffff81551260 t protection_mode_show +ffffffff815512c0 t sd_print_result.isra.4 +ffffffff81551310 t read_capacity_10 +ffffffff815514b0 t sd_sync_cache +ffffffff81551610 t sd_start_stop_device +ffffffff81551730 t sd_suspend_common +ffffffff81551830 t sd_suspend_runtime +ffffffff81551840 t sd_suspend_system +ffffffff81551850 t sd_resume +ffffffff815518d0 t sd_shutdown +ffffffff815519c0 t sd_remove +ffffffff81551a70 t sd_major +ffffffff81551aa0 t scsi_disk_get.isra.7 +ffffffff81551af0 t sd_check_events +ffffffff81551c20 t sd_open +ffffffff81551d30 t read_capacity_16.part.8 +ffffffff81552190 t sd_revalidate_disk +ffffffff81553dc0 t sd_probe_async +ffffffff81553f60 t sd_probe +ffffffff81554230 t ata_rwcmd_protocol +ffffffff815542a0 T ata_std_qc_defer +ffffffff815542e0 T ata_noop_qc_prep +ffffffff815542f0 t ata_host_stop +ffffffff81554350 t ata_dummy_qc_issue +ffffffff81554360 t ata_finalize_port_ops +ffffffff81554420 t ata_qc_complete_internal +ffffffff81554430 t ata_port_request_pm +ffffffff81554520 t ata_port_runtime_resume +ffffffff81554550 t ata_port_runtime_suspend +ffffffff81554570 t ata_port_pm_poweroff +ffffffff81554590 t ata_port_pm_freeze +ffffffff815545d0 t ata_port_pm_suspend +ffffffff81554610 t ata_port_pm_resume +ffffffff81554660 t ata_host_release +ffffffff815546f0 t ata_id_n_sectors +ffffffff81554770 t ata_host_start.part.6 +ffffffff81554940 t ata_dummy_error_handler +ffffffff81554950 T ata_link_next +ffffffff815549c0 T ata_dev_next +ffffffff81554a70 t ata_port_runtime_idle +ffffffff81554b00 T ata_dev_phys_link +ffffffff81554b30 T atapi_cmd_type +ffffffff81554ba0 T ata_tf_to_fis +ffffffff81554c30 T ata_tf_from_fis +ffffffff81554c80 T ata_build_rw_tf +ffffffff81554ed0 T ata_pack_xfermask +ffffffff81554ef0 T ata_unpack_xfermask +ffffffff81554f30 T ata_xfer_mask2mode +ffffffff81554f70 T ata_xfer_mode2mask +ffffffff81554fd0 T ata_xfer_mode2shift +ffffffff81555010 T ata_mode_string +ffffffff81555040 T sata_spd_string +ffffffff81555060 T ata_dev_classify +ffffffff815550b0 T ata_id_string +ffffffff815550f0 T ata_id_c_string +ffffffff81555130 t ata_dev_blacklisted +ffffffff815551c0 T ata_tf_to_lba48 +ffffffff81555200 T ata_tf_to_lba +ffffffff81555230 T ata_id_xfermask +ffffffff81555310 T ata_pio_need_iordy +ffffffff81555380 T ata_cable_40wire +ffffffff81555390 T ata_cable_80wire +ffffffff815553a0 T ata_cable_unknown +ffffffff815553b0 T ata_cable_ignore +ffffffff815553c0 T ata_cable_sata +ffffffff815553d0 T ata_dev_pair +ffffffff81555410 T sata_set_spd +ffffffff815554e0 T ata_timing_merge +ffffffff815555d0 T ata_timing_find_mode +ffffffff81555620 T ata_timing_compute +ffffffff81555970 T ata_timing_cycle2mode +ffffffff81555a80 T sata_link_scr_lpm +ffffffff81555c10 T atapi_check_dma +ffffffff81555c40 T ata_sg_init +ffffffff81555c60 T swap_buf_le16 +ffffffff81555c70 T ata_qc_new_init +ffffffff81555d70 T ata_qc_free +ffffffff81555da0 T __ata_qc_complete +ffffffff81555eb0 T ata_qc_complete +ffffffff81556070 T ata_qc_issue +ffffffff81556200 T sata_scr_valid +ffffffff81556220 T sata_scr_read +ffffffff81556250 T sata_scr_write +ffffffff81556280 T sata_scr_write_flush +ffffffff815562f0 T ata_phys_link_online +ffffffff81556340 T ata_phys_link_offline +ffffffff81556390 T ata_link_online +ffffffff815563c0 T ata_link_offline +ffffffff815563f0 T ata_sas_port_suspend +ffffffff81556410 T ata_sas_port_resume +ffffffff81556430 T ata_host_suspend +ffffffff81556440 T ata_host_resume +ffffffff81556450 T ata_dev_init +ffffffff81556520 T ata_link_init +ffffffff815565e0 T ata_port_alloc +ffffffff81556760 T ata_host_alloc +ffffffff81556840 T ata_host_alloc_pinfo +ffffffff815568e0 T ata_slave_link_init +ffffffff81556930 T ata_host_start +ffffffff81556940 T ata_host_init +ffffffff81556980 T __ata_port_probe +ffffffff815569d0 T ata_host_detach +ffffffff81556b30 T ata_pci_remove_one +ffffffff81556b40 T pci_test_config_bits +ffffffff81556bd0 T ata_pci_device_do_suspend +ffffffff81556c00 T ata_pci_device_do_resume +ffffffff81556c50 T ata_pci_device_suspend +ffffffff81556c70 T ata_pci_device_resume +ffffffff81556ca0 T ata_platform_remove_one +ffffffff81556cb0 T ata_ratelimit +ffffffff81556cd0 T ata_msleep +ffffffff81556d50 T sata_link_debounce +ffffffff81556ea0 T ata_wait_register +ffffffff81556f30 T sata_lpm_ignore_phy_events +ffffffff81556f70 T ata_port_printk +ffffffff81556fd0 T ata_force_cbl +ffffffff81557040 T ata_qc_complete_multiple +ffffffff81557110 T ata_link_printk +ffffffff81557190 T sata_down_spd_limit +ffffffff815572b0 T ata_wait_ready +ffffffff815573d0 T ata_wait_after_reset +ffffffff81557400 T sata_link_resume +ffffffff815575f0 T ata_std_prereset +ffffffff81557670 T sata_link_hardreset +ffffffff81557890 T sata_std_hardreset +ffffffff815578d0 T ata_std_postreset +ffffffff81557a20 T sata_link_init_spd +ffffffff81557bc0 T ata_host_register +ffffffff81557e60 T ata_host_activate +ffffffff81557f90 T ata_dev_printk +ffffffff81557ff0 T ata_tf_read_block +ffffffff815580a0 T ata_exec_internal_sg +ffffffff81558690 T ata_exec_internal +ffffffff815586f0 T ata_do_dev_read_id +ffffffff81558740 T ata_dev_set_feature +ffffffff815587d0 T ata_dev_read_id +ffffffff81558d00 t ata_read_log_page.part.10 +ffffffff81558ec0 T ata_read_log_page +ffffffff81558ee0 t ata_log_supported +ffffffff81558f30 t ata_read_native_max_address +ffffffff815590f0 t ata_identify_page_supported +ffffffff815591d0 T ata_down_xfermask_limit +ffffffff81559440 t ata_dev_same_device +ffffffff81559570 T ata_dev_reread_id +ffffffff81559630 T ata_dev_configure +ffffffff8155ac10 T ata_bus_probe +ffffffff8155b020 T ata_port_probe +ffffffff8155b050 t async_port_probe +ffffffff8155b0a0 T ata_dev_revalidate +ffffffff8155b210 T ata_do_set_mode +ffffffff8155bbe0 T ata_print_version +ffffffff8155bbf9 t ata_set_max_sectors +ffffffff8155bd20 t ata_scsi_em_message_store +ffffffff8155bd50 t ata_scsi_em_message_show +ffffffff8155bd80 t ata_scsi_flush_xlat +ffffffff8155bdb0 t scsi_16_lba_len +ffffffff8155bdd0 t ata_scsiop_inq_b1 +ffffffff8155beb0 t ata_scsiop_inq_b2 +ffffffff8155bec0 t ata_scsiop_report_luns +ffffffff8155bed0 t ata_scsi_lpm_store +ffffffff8155bfe0 t ata_scsi_lpm_show +ffffffff8155c020 t ata_scsi_em_message_type_show +ffffffff8155c050 t ata_scsi_find_dev +ffffffff8155c0c0 t ata_ncq_prio_enable_show +ffffffff8155c150 t ata_scsi_activity_show +ffffffff8155c1a0 t ata_scsi_park_store +ffffffff8155c330 t ata_scsi_park_show +ffffffff8155c410 t ata_ncq_prio_enable_store +ffffffff8155c530 t ata_scsi_activity_store +ffffffff8155c5c0 t ata_scsiop_inq_80 +ffffffff8155c5f0 t ata_scsiop_maint_in +ffffffff8155c6a0 t ata_scsiop_read_cap +ffffffff8155c950 t ata_scsi_dev_config +ffffffff8155cb30 t ata_scsiop_inq_83 +ffffffff8155cc00 t ata_scsiop_inq_00 +ffffffff8155ccc0 t ata_scsiop_inq_std +ffffffff8155cde0 t atapi_xlat +ffffffff8155cf50 t ata_to_sense_error +ffffffff8155d080 t ata_gen_passthru_sense +ffffffff8155d320 t atapi_qc_complete +ffffffff8155d5e0 t atapi_sense_complete +ffffffff8155d620 t ata_scsi_set_invalid_field +ffffffff8155d690 t ata_scsi_start_stop_xlat +ffffffff8155d760 t ata_scsi_zbc_out_xlat +ffffffff8155d940 t ata_scsi_zbc_in_xlat +ffffffff8155db90 t ata_scsi_verify_xlat +ffffffff8155de10 t ata_scsi_write_same_xlat +ffffffff8155e1b0 t ata_scsiop_inq_b0 +ffffffff8155e230 t ata_scsiop_inq_b6 +ffffffff8155e280 t ata_scsi_security_inout_xlat +ffffffff8155e3b0 t ata_scsi_pass_thru +ffffffff8155e780 t ata_scsi_var_len_cdb_xlat +ffffffff8155e7a0 t ata_scsi_rw_xlat +ffffffff8155e9e0 t ata_scsi_translate +ffffffff8155eb80 t ata_scsiop_inq_89 +ffffffff8155ec60 t ata_scsi_handle_link_detach +ffffffff8155ed90 t atapi_drain_needed +ffffffff8155edd0 t modecpy +ffffffff8155ee70 t ata_msense_caching +ffffffff8155ef10 t ata_msense_control +ffffffff8155ef60 t ata_scsiop_mode_sense +ffffffff8155f250 t ata_scsi_mode_select_xlat +ffffffff8155f630 t ata_scsi_qc_complete +ffffffff8155fa40 t ata_scsi_report_zones_complete +ffffffff8155fb70 t ata_scsi_rbuf_fill +ffffffff8155fc10 T ata_scsi_set_sense +ffffffff8155fc50 T ata_scsi_set_sense_information +ffffffff8155fc90 T ata_std_bios_param +ffffffff8155fcd0 T ata_scsi_unlock_native_capacity +ffffffff8155fd40 T ata_cmd_ioctl +ffffffff8155ff90 T ata_task_ioctl +ffffffff81560160 T ata_sas_scsi_ioctl +ffffffff815603b0 T ata_scsi_ioctl +ffffffff815603d0 T ata_scsi_slave_config +ffffffff81560460 T ata_scsi_slave_destroy +ffffffff81560550 T __ata_change_queue_depth +ffffffff81560640 T ata_scsi_change_queue_depth +ffffffff81560660 T ata_scsi_simulate +ffffffff81560960 T ata_scsi_queuecmd +ffffffff81560b70 T ata_scsi_add_hosts +ffffffff81560cc0 T ata_scsi_scan_host +ffffffff81560e50 T ata_scsi_offline_dev +ffffffff81560e70 T ata_scsi_media_change_notify +ffffffff81560e90 T ata_scsi_hotplug +ffffffff81560f30 T ata_scsi_user_scan +ffffffff81561050 T ata_scsi_dev_rescan +ffffffff81561160 T ata_sas_port_alloc +ffffffff815611b0 T ata_sas_port_start +ffffffff815611d0 T ata_sas_port_stop +ffffffff815611e0 T ata_sas_async_probe +ffffffff815611f0 T ata_sas_sync_probe +ffffffff81561200 T ata_sas_port_init +ffffffff81561230 T ata_sas_port_destroy +ffffffff81561260 T ata_sas_slave_configure +ffffffff81561290 T ata_sas_queuecmd +ffffffff81561450 T ata_sas_allocate_tag +ffffffff815614b0 T ata_sas_free_tag +ffffffff815614c0 t ata_eh_scsidone +ffffffff815614d0 t ata_eh_categorize_error +ffffffff81561520 t ata_do_reset +ffffffff81561590 t ata_do_link_abort +ffffffff81561640 t __ata_eh_qc_complete +ffffffff81561690 t ata_eh_park_issue_cmd +ffffffff815617a0 t ata_eh_clear_action.part.1 +ffffffff815617f0 t ata_eh_clear_action +ffffffff81561880 t ata_eh_set_pending.part.2 +ffffffff81561900 t ata_eh_freeze_port.part.3 +ffffffff81561940 t ata_eh_thaw_port.part.4 +ffffffff81561980 t ata_ering_clear +ffffffff815619c0 T __ata_ehi_push_desc +ffffffff81561a30 T ata_ehi_push_desc +ffffffff81561ac0 T ata_ehi_clear_desc +ffffffff81561ad0 T ata_port_desc +ffffffff81561b70 T ata_port_pbar_desc +ffffffff81561c10 T ata_internal_cmd_timeout +ffffffff81561c90 T ata_internal_cmd_timed_out +ffffffff81561d10 T ata_ering_map +ffffffff81561d70 T ata_eh_acquire +ffffffff81561da0 T ata_eh_release +ffffffff81561dc0 T ata_scsi_timed_out +ffffffff81561e80 T ata_scsi_cmd_error_handler +ffffffff81561fb0 T ata_port_wait_eh +ffffffff81562070 T ata_qc_schedule_eh +ffffffff815620e0 T ata_std_sched_eh +ffffffff81562110 T ata_std_end_eh +ffffffff81562120 T ata_port_schedule_eh +ffffffff81562130 T ata_link_abort +ffffffff81562140 T ata_port_abort +ffffffff81562150 T ata_port_freeze +ffffffff81562180 T ata_eh_fastdrain_timerfn +ffffffff81562290 T sata_async_notification +ffffffff81562300 T ata_eh_freeze_port +ffffffff81562320 T ata_eh_thaw_port +ffffffff81562340 T ata_eh_qc_complete +ffffffff81562360 T ata_eh_qc_retry +ffffffff81562380 T ata_dev_disable +ffffffff815623f0 T ata_eh_detach_dev +ffffffff81562490 t ata_eh_schedule_probe +ffffffff81562620 T ata_eh_about_to_do +ffffffff81562680 T ata_eh_done +ffffffff815626a0 T atapi_eh_tur +ffffffff81562740 T atapi_eh_request_sense +ffffffff81562820 T ata_eh_analyze_ncq_error +ffffffff81562b00 t ata_eh_link_autopsy +ffffffff81563450 T ata_eh_autopsy +ffffffff81563510 T ata_get_cmd_descript +ffffffff81563520 T ata_eh_report +ffffffff81563a10 T ata_eh_reset +ffffffff815645e0 T ata_set_mode +ffffffff815646e0 T ata_link_nr_enabled +ffffffff81564720 T ata_eh_recover +ffffffff81565990 T ata_eh_finish +ffffffff81565a50 T ata_scsi_port_error_handler +ffffffff81566180 T ata_scsi_error +ffffffff81566210 T ata_do_eh +ffffffff815662b0 T ata_std_error_handler +ffffffff81566310 t ata_tport_release +ffffffff81566320 t ata_tport_match +ffffffff81566340 t ata_tlink_match +ffffffff81566370 t ata_tdev_match +ffffffff815663a0 t ata_tdev_delete +ffffffff815663d0 t show_ata_dev_trim +ffffffff81566470 t show_ata_dev_gscr +ffffffff815664f0 t show_ata_dev_id +ffffffff81566570 t show_ata_dev_spdn_cnt +ffffffff815665a0 t show_ata_port_port_no +ffffffff815665d0 t show_ata_port_idle_irq +ffffffff81566600 t show_ata_port_nr_pmp_links +ffffffff81566620 t show_ata_dev_ering +ffffffff81566660 t ata_show_ering +ffffffff81566760 t get_ata_xfer_names +ffffffff815667f0 t show_ata_dev_xfer_mode +ffffffff81566810 t show_ata_dev_dma_mode +ffffffff81566830 t show_ata_dev_pio_mode +ffffffff81566850 t show_ata_dev_class +ffffffff815668d0 t show_ata_link_sata_spd +ffffffff81566900 t show_ata_link_sata_spd_limit +ffffffff81566940 t show_ata_link_hw_sata_spd_limit +ffffffff81566980 t ata_tdev_release +ffffffff81566990 t ata_tlink_release +ffffffff815669a0 T ata_tlink_delete +ffffffff81566a10 T ata_tport_delete +ffffffff81566a50 T ata_tlink_add +ffffffff81566c00 T ata_tport_add +ffffffff81566d00 T ata_attach_transport +ffffffff81567200 T ata_release_transport +ffffffff81567240 T libata_trace_parse_status +ffffffff81567260 T libata_trace_parse_eh_action +ffffffff81567280 T libata_trace_parse_eh_err_mask +ffffffff815672a0 T libata_trace_parse_qc_flags +ffffffff815672c0 T libata_trace_parse_subcmd +ffffffff815672e0 t ata_acpi_handle_hotplug +ffffffff81567400 t ata_acpi_ap_notify_dock +ffffffff81567420 t ata_acpi_dev_notify_dock +ffffffff81567440 t ata_acpi_uevent.isra.2 +ffffffff815674b0 t ata_acpi_ap_uevent +ffffffff815674d0 t ata_acpi_dev_uevent +ffffffff815674f0 t ata_acpi_run_tf +ffffffff81567860 T ata_dev_acpi_handle +ffffffff81567890 t ata_dev_get_GTF +ffffffff81567a60 T ata_acpi_bind_dev +ffffffff81567b80 T ata_acpi_gtm +ffffffff81567c90 T ata_acpi_bind_port +ffffffff81567d90 T ata_acpi_stm +ffffffff81567e90 T ata_acpi_dissociate +ffffffff81567f10 T ata_acpi_gtm_xfermask +ffffffff81567f80 T ata_acpi_cbl_80wire +ffffffff81568000 T ata_acpi_on_suspend +ffffffff81568010 T ata_acpi_on_resume +ffffffff81568160 T ata_acpi_set_state +ffffffff815682e0 T ata_acpi_on_devcfg +ffffffff81568600 T ata_acpi_on_disable +ffffffff81568620 t ahci_pci_device_runtime_suspend +ffffffff81568640 t ahci_pci_reset_controller +ffffffff815686c0 t ahci_pci_init_controller +ffffffff81568700 t ahci_pci_device_runtime_resume +ffffffff81568730 t ahci_mcp89_apple_enable +ffffffff81568830 t ahci_pci_device_resume +ffffffff81568890 t ahci_pci_device_suspend +ffffffff815688e0 t ahci_remove_one +ffffffff815688f0 t ahci_get_irq_vector +ffffffff81568900 t ahci_vt8251_hardreset +ffffffff81568980 t ahci_avn_hardreset +ffffffff81568ba0 t ahci_p5wdh_hardreset +ffffffff81568cc0 t ahci_init_one +ffffffff81569ac0 t ahci_scr_read +ffffffff81569b20 t ahci_scr_write +ffffffff81569b80 T ahci_start_engine +ffffffff81569bb0 t ahci_activity_store +ffffffff81569c70 T ahci_check_ready +ffffffff81569cb0 t ahci_bad_pmp_check_ready +ffffffff81569d00 t ahci_freeze +ffffffff81569d30 t ahci_thaw +ffffffff81569d70 t ahci_activity_show +ffffffff81569db0 t ahci_show_host_version +ffffffff81569de0 t ahci_show_host_cap2 +ffffffff81569e10 t ahci_show_host_caps +ffffffff81569e40 t ahci_transmit_led_message +ffffffff81569f50 t ahci_show_em_supported +ffffffff8156a000 t ahci_store_em_buffer +ffffffff8156a120 t ahci_show_port_cmd +ffffffff8156a190 t ahci_read_em_buffer +ffffffff8156a310 t ahci_led_store +ffffffff8156a390 t ahci_led_show +ffffffff8156a420 t ahci_postreset +ffffffff8156a480 t ahci_qc_fill_rtf +ffffffff8156a4f0 t ahci_pmp_qc_defer +ffffffff8156a500 t ahci_enable_ahci +ffffffff8156a540 t ahci_handle_port_interrupt +ffffffff8156aab0 t ahci_multi_irqs_intr_hard +ffffffff8156ab10 t ahci_sw_activity_blink +ffffffff8156abc0 t ahci_dev_config +ffffffff8156ac00 t ahci_qc_prep +ffffffff8156ad60 T ahci_qc_issue +ffffffff8156ae50 T ahci_save_initial_config +ffffffff8156b220 T ahci_stop_engine +ffffffff8156b300 t ahci_set_aggressive_devslp +ffffffff8156b460 t ahci_set_lpm +ffffffff8156b5c0 t ahci_pmp_detach +ffffffff8156b690 t ahci_pmp_attach +ffffffff8156b7c0 T ahci_error_handler +ffffffff8156b820 t ahci_deinit_port.constprop.11 +ffffffff8156b8a0 t ahci_port_suspend +ffffffff8156b940 t ahci_port_stop +ffffffff8156b9a0 T ahci_start_fis_rx +ffffffff8156ba00 T ahci_port_resume +ffffffff8156bbd0 t ahci_port_start +ffffffff8156bd50 T ahci_reset_controller +ffffffff8156be20 T ahci_reset_em +ffffffff8156be40 T ahci_init_controller +ffffffff8156bf50 T ahci_dev_classify +ffffffff8156bfa0 T ahci_fill_cmd_slot +ffffffff8156bfe0 T ahci_kick_engine +ffffffff8156c090 t ahci_post_internal_cmd +ffffffff8156c0a0 t ahci_exec_polled_cmd.constprop.12 +ffffffff8156c1b0 T ahci_do_softreset +ffffffff8156c370 t ahci_softreset +ffffffff8156c390 t ahci_pmp_retry_softreset +ffffffff8156c420 T ahci_do_hardreset +ffffffff8156c530 t ahci_hardreset +ffffffff8156c550 T ahci_handle_port_intr +ffffffff8156c600 t ahci_single_level_irq_intr +ffffffff8156c660 T ahci_print_info +ffffffff8156c930 T ahci_set_em_messages +ffffffff8156c9a0 T ahci_host_activate +ffffffff8156cb00 t always_on +ffffffff8156cb10 t loopback_get_ts_info +ffffffff8156cb30 t loopback_setup +ffffffff8156cbd0 t loopback_dev_free +ffffffff8156cbf0 t loopback_get_stats64 +ffffffff8156cc60 t loopback_xmit +ffffffff8156cd40 t loopback_dev_init +ffffffff8156cdb0 t loopback_net_init +ffffffff8156ce40 t get_rfh_string +ffffffff8156cef0 T iwl_write8 +ffffffff8156cf10 T iwl_write32 +ffffffff8156cf20 T iwl_write64 +ffffffff8156cf60 T iwl_read32 +ffffffff8156cf70 T iwl_poll_bit +ffffffff8156cfe0 T iwl_read_direct32 +ffffffff8156d050 T iwl_write_direct32 +ffffffff8156d0b0 T iwl_write_direct64 +ffffffff8156d130 T iwl_poll_direct_bit +ffffffff8156d190 T iwl_read_prph_no_grab +ffffffff8156d1a0 T iwl_write_prph_no_grab +ffffffff8156d1b0 T iwl_write_prph64_no_grab +ffffffff8156d1f0 T iwl_read_prph +ffffffff8156d260 T iwl_write_prph +ffffffff8156d2c0 T iwl_poll_prph_bit +ffffffff8156d320 T iwl_set_bits_prph +ffffffff8156d3a0 T iwl_set_bits_mask_prph +ffffffff8156d420 T iwl_clear_bits_prph +ffffffff8156d4a0 T iwl_force_nmi +ffffffff8156d4d0 T iwl_dump_fh +ffffffff8156d720 t iwl_request_firmware +ffffffff8156d8d0 t alloc_sec_data +ffffffff8156d910 t iwl_store_ucode_sec +ffffffff8156d990 t iwl_dealloc_ucode +ffffffff8156da50 t iwl_req_fw_callback +ffffffff8156f100 T iwl_drv_start +ffffffff8156f1b0 T iwl_drv_stop +ffffffff8156f240 T iwl_opmode_register +ffffffff8156f320 T iwl_opmode_deregister +ffffffff8156f3e0 T __iwl_warn +ffffffff8156f440 T __iwl_info +ffffffff8156f4a0 T __iwl_crit +ffffffff8156f500 T __iwl_err +ffffffff8156f570 t iwl_read_otp_word +ffffffff8156f690 T iwl_read_eeprom +ffffffff8156fc10 t eeprom_indirect_address +ffffffff8156fd20 t iwl_init_band_reference.isra.0 +ffffffff8156fe10 T iwl_init_sband_channels +ffffffff8156fe90 T iwl_init_ht_hw_capab +ffffffff81570020 T iwl_parse_eeprom_data +ffffffff81570950 T iwl_nvm_check_version +ffffffff815709a0 t iwl_send_phy_db_cmd +ffffffff81570a20 t iwl_phy_db_get_section +ffffffff81570a80 t iwl_phy_db_free_section +ffffffff81570ab0 t iwl_phy_db_send_all_channel_groups +ffffffff81570b60 T iwl_phy_db_init +ffffffff81570b90 T iwl_phy_db_free +ffffffff81570c20 T iwl_phy_db_set_section +ffffffff81570d40 T iwl_send_phy_db_data +ffffffff81570e70 T iwl_init_sbands +ffffffff81571360 T iwl_set_hw_address_from_csr +ffffffff81571400 T iwl_parse_nvm_data +ffffffff81571860 T iwl_parse_nvm_mcc_info +ffffffff81571af0 t iwl_pci_suspend +ffffffff81571b00 t iwl_pci_resume +ffffffff81571be0 t iwl_pci_remove +ffffffff81571c10 t iwl_pci_probe +ffffffff81571db0 T iwl_pci_fw_enter_d0i3 +ffffffff81571f10 T iwl_pci_fw_exit_d0i3 +ffffffff81572030 T iwl_pci_register_driver +ffffffff81572060 T iwl_pci_unregister_driver +ffffffff81572070 t iwl_pcie_dummy_napi_poll +ffffffff81572080 t iwl_pcie_free_rbs_pool +ffffffff81572120 t iwl_pcie_rxq_inc_wr_ptr +ffffffff815721b0 t iwl_pcie_rxq_check_wrptr +ffffffff81572220 t iwl_pcie_rx_reuse_rbd +ffffffff815722e0 t iwl_pcie_irq_handle_error +ffffffff815723c0 t iwl_pcie_rx_alloc_page +ffffffff81572420 t iwl_pcie_rxq_alloc_rbs +ffffffff81572610 t _iwl_pcie_rx_init +ffffffff81572c90 t iwl_pcie_rxmq_restock.part.3 +ffffffff81572d40 t iwl_pcie_rxq_restock +ffffffff81572e70 t iwl_pcie_rx_handle +ffffffff815735b0 T iwl_pcie_rx_stop +ffffffff81573610 T iwl_pcie_rx_allocator_work +ffffffff81573920 T iwl_pcie_enable_rx_wake +ffffffff81573980 T iwl_pcie_rx_init +ffffffff81573d00 T iwl_pcie_gen2_rx_init +ffffffff81573d10 T iwl_pcie_rx_free +ffffffff81573ef0 T iwl_pcie_irq_rx_msix_handler +ffffffff81573f70 T iwl_pcie_handle_rfkill_irq +ffffffff815740a0 T iwl_pcie_irq_handler +ffffffff81574760 T iwl_pcie_free_ict +ffffffff815747d0 T iwl_pcie_alloc_ict +ffffffff815748a0 T iwl_pcie_reset_ict +ffffffff81574a30 T iwl_pcie_disable_ict +ffffffff81574a60 T iwl_pcie_isr +ffffffff81574a80 T iwl_pcie_msix_isr +ffffffff81574a90 T iwl_pcie_irq_msix_handler +ffffffff81574d30 t iwl_queue_init +ffffffff81574da0 t iwl_pcie_txq_build_tfd +ffffffff81574e70 t iwl_pcie_txq_stuck_timer +ffffffff81574ed0 t iwl_pcie_txq_inc_wr_ptr +ffffffff81574f70 t iwl_pcie_tfd_unmap.isra.2 +ffffffff81575100 t iwl_pcie_clear_cmd_in_flight +ffffffff81575160 t iwl_pcie_enqueue_hcmd +ffffffff81575a20 T iwl_queue_space +ffffffff81575a50 T iwl_pcie_alloc_dma_ptr +ffffffff81575b10 T iwl_pcie_free_dma_ptr +ffffffff81575b80 T iwl_pcie_txq_check_wrptrs +ffffffff81575c10 T iwl_pcie_txq_free_tfd +ffffffff81575c90 t iwl_pcie_txq_unmap +ffffffff81575e30 T iwl_pcie_txq_alloc +ffffffff81576150 T iwl_pcie_txq_init +ffffffff81576190 T iwl_pcie_free_tso_page +ffffffff815761c0 T iwl_pcie_tx_start +ffffffff815763b0 T iwl_trans_pcie_tx_reset +ffffffff815764a0 T iwl_pcie_tx_stop +ffffffff81576630 T iwl_pcie_tx_free +ffffffff815768a0 T iwl_pcie_set_tx_cmd_queue_size +ffffffff815768f0 T iwl_pcie_tx_init +ffffffff81576c40 T iwl_trans_pcie_txq_enable +ffffffff81576fb0 T iwl_trans_pcie_txq_set_shared_mode +ffffffff81576fd0 T iwl_trans_pcie_txq_disable +ffffffff81577090 T iwl_pcie_hcmd_complete +ffffffff81577480 T iwl_trans_pcie_send_hcmd +ffffffff81577860 T get_page_hdr +ffffffff815778f0 T iwl_trans_pcie_tx +ffffffff81578a20 T iwl_trans_pcie_reclaim +ffffffff81578e20 t iwl_trans_pcie_write8 +ffffffff81578e30 t iwl_trans_pcie_write32 +ffffffff81578e40 t iwl_trans_pcie_read32 +ffffffff81578e50 t iwl_trans_pcie_read_prph +ffffffff81578e80 t iwl_trans_pcie_write_prph +ffffffff81578eb0 t iwl_pcie_set_hw_ready +ffffffff81578f20 t iwl_trans_pcie_sw_reset +ffffffff81578f50 t iwl_trans_pcie_write_mem +ffffffff81578ff0 t iwl_trans_pcie_block_txq_ptrs +ffffffff815790a0 t iwl_pcie_alloc_fw_monitor +ffffffff815792c0 t iwl_trans_pcie_release_nic_access +ffffffff81579300 t iwl_trans_pcie_set_bits_mask +ffffffff81579360 t iwl_trans_pcie_read_mem +ffffffff815793f0 t iwl_trans_pcie_dump_regs +ffffffff815797d0 t iwl_trans_pcie_grab_nic_access +ffffffff81579880 t iwl_trans_pcie_dump_monitor +ffffffff81579b10 t iwl_trans_pcie_dump_data +ffffffff8157a320 t iwl_trans_pcie_configure +ffffffff8157a420 t iwl_trans_pcie_freeze_txq_timer +ffffffff8157a4e0 t iwl_trans_pcie_fw_alive +ffffffff8157a500 t iwl_pcie_load_section +ffffffff8157a940 t iwl_trans_pcie_set_pmi +ffffffff8157a960 t iwl_trans_pcie_resume +ffffffff8157a980 t iwl_trans_pcie_suspend +ffffffff8157a9a0 t iwl_trans_pcie_unref +ffffffff8157a9f0 t iwl_trans_pcie_ref +ffffffff8157aa30 t iwl_pcie_set_pwr +ffffffff8157aa90 t iwl_pcie_load_cpu_sections_8000.isra.6 +ffffffff8157acd0 t iwl_pcie_load_cpu_sections.isra.7 +ffffffff8157ada0 T iwl_pcie_apm_config +ffffffff8157ae40 t iwl_pcie_apm_init +ffffffff8157b030 T iwl_pcie_apm_stop_master +ffffffff8157b090 t iwl_pcie_apm_stop +ffffffff8157b3d0 T iwl_pcie_prepare_card_hw +ffffffff8157b4b0 T iwl_pcie_apply_destination +ffffffff8157b6e0 T iwl_pcie_conf_msix_hw +ffffffff8157b880 t iwl_trans_pcie_d3_resume +ffffffff8157bb40 t _iwl_trans_pcie_stop_device.constprop.12 +ffffffff8157bde0 T iwl_pcie_synchronize_irqs +ffffffff8157be30 t iwl_trans_pcie_d3_suspend +ffffffff8157bf70 t iwl_trans_pcie_op_mode_leave +ffffffff8157c0c0 T iwl_trans_pcie_rf_kill +ffffffff8157c130 T iwl_pcie_check_hw_rf_kill +ffffffff8157c1b0 t iwl_trans_pcie_start_fw +ffffffff8157c700 t iwl_trans_pcie_start_hw +ffffffff8157c880 T iwl_trans_pcie_handle_stop_rfkill +ffffffff8157c8e0 t iwl_trans_pcie_stop_device +ffffffff8157c930 T iwl_trans_pcie_free +ffffffff8157cad0 T iwl_trans_pcie_log_scd_error +ffffffff8157cc60 t iwl_trans_pcie_wait_txq_empty +ffffffff8157cd60 t iwl_trans_pcie_wait_txqs_empty +ffffffff8157cdd0 T iwl_pcie_dump_csr +ffffffff8157d040 T iwl_trans_pcie_alloc +ffffffff8157db50 t iwl_pcie_ctxt_info_alloc_dma.isra.1 +ffffffff8157dc20 t iwl_pcie_ctxt_info_free_paging.part.2 +ffffffff8157dcc0 T iwl_pcie_ctxt_info_free_paging +ffffffff8157dcd0 T iwl_pcie_ctxt_info_init +ffffffff8157e2f0 T iwl_pcie_ctxt_info_free +ffffffff8157e410 t iwl_pcie_gen2_apm_init +ffffffff8157e4d0 T _iwl_trans_pcie_gen2_stop_device +ffffffff8157e780 T iwl_trans_pcie_gen2_stop_device +ffffffff8157e7e0 T iwl_trans_pcie_gen2_fw_alive +ffffffff8157e860 T iwl_trans_pcie_gen2_start_fw +ffffffff8157eb10 t iwl_pcie_gen2_set_tb +ffffffff8157eb70 t iwl_pcie_gen2_txq_free_memory +ffffffff8157ec50 t iwl_pcie_gen2_tfd_unmap.isra.1 +ffffffff8157ed00 t iwl_pcie_gen2_enqueue_hcmd +ffffffff8157f4f0 T iwl_trans_pcie_gen2_tx +ffffffff81580110 T iwl_trans_pcie_gen2_send_hcmd +ffffffff815804b0 T iwl_pcie_gen2_txq_unmap +ffffffff815806a0 T iwl_pcie_gen2_tx_stop +ffffffff81580730 T iwl_trans_pcie_dyn_txq_alloc +ffffffff81580950 T iwl_trans_pcie_dyn_txq_free +ffffffff81580970 T iwl_pcie_gen2_tx_free +ffffffff81580a60 T iwl_pcie_gen2_tx_init +ffffffff81580b90 t iwl_hcmd_names_cmp +ffffffff81580ba0 T iwl_trans_alloc +ffffffff81580c40 T iwl_trans_free +ffffffff81580c50 T iwl_trans_send_cmd +ffffffff81580d00 T iwl_get_cmd_string +ffffffff81580d70 T iwl_cmd_groups_verify_sorted +ffffffff81580de0 T iwl_trans_ref +ffffffff81580e00 T iwl_trans_unref +ffffffff81580e20 T iwl_notification_wait_init +ffffffff81580e50 T iwl_notification_wait +ffffffff81580f30 T iwl_abort_notification_waits +ffffffff81580f80 T iwl_init_notification_wait +ffffffff81580ff0 T iwl_remove_notification +ffffffff81581040 T iwl_wait_notification +ffffffff81581120 t iwl_send_paging_cmd.isra.0 +ffffffff81581210 t iwl_free_fw_paging.part.1 +ffffffff815812e0 T iwl_free_fw_paging +ffffffff815812f0 T iwl_init_paging +ffffffff81581740 T iwl_get_shared_mem_conf +ffffffff815818a0 T iwl_fw_runtime_init +ffffffff81581940 T iwl_fw_runtime_suspend +ffffffff81581950 T iwl_fw_runtime_resume +ffffffff81581960 t iwl_dump_prph +ffffffff81581a50 t iwl_fwrt_dump_rxf.isra.0 +ffffffff81581bd0 t iwl_fwrt_dump_txf.isra.1 +ffffffff81581d20 T iwl_fw_error_dump +ffffffff81582ca0 T iwl_fw_dbg_collect_desc +ffffffff81582d60 T iwl_fw_dbg_collect +ffffffff81582dd0 T iwl_fw_dbg_collect_trig +ffffffff81582ee0 T iwl_fw_start_dbg_conf +ffffffff81583020 T iwl_fw_error_dump_wk +ffffffff81583260 T iwl_fwrt_handle_notification +ffffffff815832b0 T iwl_fw_get_nvm +ffffffff815834d0 t iwl_acpi_get_wifi_pkg.part.0 +ffffffff81583540 T iwl_acpi_get_object +ffffffff815835c0 T iwl_acpi_get_wifi_pkg +ffffffff815835e0 T iwl_acpi_get_mcc +ffffffff81583650 T iwl_acpi_get_pwr_limit +ffffffff815836b0 t iwl_wait_init_complete +ffffffff815836c0 t iwl_alive_fn +ffffffff81583790 t iwl_wait_phy_db_entry +ffffffff815837b0 t iwl_send_phy_cfg_cmd +ffffffff81583860 t iwl_mvm_load_ucode_wait_alive +ffffffff81583ab0 t iwl_run_unified_mvm_ucode +ffffffff81583c60 t iwl_send_rss_cfg_cmd +ffffffff81583d10 T iwl_mvm_mfu_assert_dump_notif +ffffffff81583d50 T iwl_run_init_mvm_ucode +ffffffff81584000 T iwl_mvm_sar_select_profile +ffffffff81584130 T iwl_mvm_get_sar_geo_profile +ffffffff81584210 T iwl_mvm_up +ffffffff815849d0 T iwl_mvm_load_d3_fw +ffffffff81584b10 T iwl_mvm_rx_card_state_notif +ffffffff81584b20 T iwl_mvm_rx_mfuart_notif +ffffffff81584b30 t iwl_mvm_mac_config +ffffffff81584b40 t iwl_mvm_mac_set_rts_threshold +ffffffff81584b50 t iwl_mvm_tx_last_beacon +ffffffff81584b60 t iwl_mvm_channel_switch +ffffffff81584b70 t iwl_mvm_cleanup_iterator +ffffffff81584be0 t iwl_mvm_recalc_multicast +ffffffff81584c20 t iwl_mvm_mu_mimo_iface_iterator +ffffffff81584c40 t iwl_mvm_get_free_phy_ctxt +ffffffff81584c90 t iwl_mvm_configure_filter +ffffffff81584d10 t iwl_mvm_sta_pre_rcu_remove +ffffffff81584d70 t iwl_mvm_mac_conf_tx +ffffffff81584df0 t iwl_mvm_config_iface_filter +ffffffff81584e50 t iwl_mvm_post_channel_switch +ffffffff81584f40 t iwl_mvm_pre_channel_switch +ffffffff81585180 t iwl_mvm_remove_chanctx +ffffffff815851d0 t __iwl_mvm_add_chanctx +ffffffff81585250 t iwl_mvm_add_chanctx +ffffffff81585290 t iwl_mvm_change_chanctx +ffffffff81585340 t iwl_mvm_mac_release_buffered_frames +ffffffff81585370 t iwl_mvm_mac_allow_buffered_frames +ffffffff815853a0 t iwl_mvm_mac_event_callback +ffffffff815856b0 t iwl_mvm_cancel_roc +ffffffff815856e0 t iwl_mvm_set_tx_power +ffffffff81585780 t iwl_mvm_update_mu_groups +ffffffff815857d0 t iwl_mvm_mac_flush +ffffffff81585a50 t iwl_mvm_mac_get_survey +ffffffff81585b90 t iwl_mvm_mac_sta_statistics +ffffffff81585c80 t iwl_mvm_sta_rc_update +ffffffff81585ca0 t iwl_mvm_tdls_check_trigger +ffffffff81585dc0 t iwl_mvm_mac_sched_scan_stop +ffffffff81585e20 t iwl_mvm_mac_cancel_hw_scan +ffffffff81585e60 t iwl_mvm_mac_sched_scan_start +ffffffff81585ed0 t iwl_mvm_mac_hw_scan +ffffffff81585f30 t iwl_mvm_mac_update_tkip_key +ffffffff81585f50 t iwl_mvm_mac_set_key +ffffffff815862b0 t iwl_mvm_prepare_multicast +ffffffff81586350 t iwl_mvm_set_tim +ffffffff81586390 t iwl_mvm_mc_iface_iterator +ffffffff81586460 t iwl_mvm_mac_remove_interface +ffffffff815865d0 t iwl_mvm_mac_sta_state +ffffffff81586bf0 t __iwl_mvm_mac_sta_notify.isra.2 +ffffffff81586dd0 t iwl_mvm_mac_sta_notify +ffffffff81586de0 t iwl_mvm_send_aux_roc_cmd.isra.3 +ffffffff81587020 t iwl_mvm_roc +ffffffff81587290 t iwl_mvm_rx_aux_roc +ffffffff81587310 t __iwl_mvm_unassign_vif_chanctx.constprop.10 +ffffffff81587400 t iwl_mvm_unassign_vif_chanctx +ffffffff81587440 T iwl_mvm_ref +ffffffff815874a0 T iwl_mvm_unref +ffffffff81587510 t iwl_mvm_mac_reconfig_complete +ffffffff81587650 t iwl_mvm_stop_ap_ibss +ffffffff815877c0 t iwl_mvm_mac_tx +ffffffff81587940 T iwl_mvm_ref_taken +ffffffff815879c0 T iwl_mvm_ref_sync +ffffffff81587a80 t __iwl_mvm_assign_vif_chanctx +ffffffff81587c30 t iwl_mvm_switch_vif_chanctx +ffffffff81587e20 t iwl_mvm_assign_vif_chanctx +ffffffff81587e70 t iwl_mvm_mac_mgd_prepare_tx +ffffffff81587ee0 t iwl_mvm_mac_ampdu_action +ffffffff815882f0 t iwl_mvm_start_ap_ibss +ffffffff815884e0 t iwl_mvm_bss_info_changed +ffffffff81588a90 t iwl_mvm_mac_add_interface +ffffffff81588d10 T iwl_mvm_get_regdomain +ffffffff81588dc0 T iwl_mvm_get_current_regdomain +ffffffff81588e10 T iwl_mvm_update_changed_regdom +ffffffff81588ea0 T iwl_mvm_init_fw_regd +ffffffff81588f90 T iwl_mvm_mac_setup_register +ffffffff81589830 T __iwl_mvm_mac_start +ffffffff81589b10 t iwl_mvm_mac_start +ffffffff81589be0 T __iwl_mvm_mac_stop +ffffffff81589cd0 t iwl_mvm_mac_stop +ffffffff81589d80 T iwl_mvm_mu_mimo_grp_notif +ffffffff81589dc0 T iwl_mvm_sta_pm_notif +ffffffff81589ec0 T iwl_mvm_sync_rx_queues_internal +ffffffff8158a0a0 t iwl_mvm_sync_rx_queues +ffffffff8158a0f0 t iwl_mvm_nvm_fixups.isra.0 +ffffffff8158a120 T iwl_mvm_read_external_nvm +ffffffff8158a3e0 T iwl_mvm_load_nvm_to_nic +ffffffff8158a5b0 T iwl_nvm_init +ffffffff8158aa50 T iwl_mvm_update_mcc +ffffffff8158ac70 T iwl_mvm_init_mcc +ffffffff8158ae30 T iwl_mvm_rx_chub_update_mcc +ffffffff8158af00 t iwl_mvm_fwrt_fw_running +ffffffff8158af10 t iwl_mvm_nic_config +ffffffff8158aff0 t iwl_mvm_free_skb +ffffffff8158b020 t iwl_mvm_set_rfkill_state +ffffffff8158b080 t iwl_mvm_set_hw_rfkill_state +ffffffff8158b100 t iwl_mvm_async_cb +ffffffff8158b150 t iwl_mvm_rx_common +ffffffff8158b3d0 t iwl_mvm_rx +ffffffff8158b430 t iwl_op_mode_mvm_stop +ffffffff8158b530 t iwl_mvm_fwrt_dump_end +ffffffff8158b550 t iwl_mvm_tx_unblock_dwork +ffffffff8158b5a0 t iwl_mvm_d0i3_exit_work_iter +ffffffff8158b600 t iwl_mvm_async_handlers_wk +ffffffff8158b720 t iwl_mvm_rx_mq_rss +ffffffff8158b780 t iwl_mvm_rx_mq +ffffffff8158b800 t iwl_mvm_fwrt_dump_start +ffffffff8158b830 t iwl_mvm_reprobe_wk +ffffffff8158b860 t iwl_op_mode_mvm_start +ffffffff8158c0b0 t iwl_mvm_enter_d0i3_iterator +ffffffff8158c210 T iwl_mvm_enter_d0i3 +ffffffff8158c440 t iwl_mvm_exit_d0i3_iterator +ffffffff8158c460 T iwl_mvm_async_handlers_purge +ffffffff8158c4f0 T iwl_mvm_stop_mac_queues +ffffffff8158c570 t iwl_mvm_stop_sw_queue +ffffffff8158c5b0 T iwl_mvm_start_mac_queues +ffffffff8158c630 t iwl_mvm_wake_sw_queue +ffffffff8158c670 T iwl_mvm_set_hw_ctkill_state +ffffffff8158c690 T iwl_mvm_nic_restart +ffffffff8158c7a0 t iwl_mvm_cmd_queue_full +ffffffff8158c7b0 t iwl_mvm_nic_error +ffffffff8158c7d0 T iwl_mvm_d0i3_enable_tx +ffffffff8158c910 t iwl_mvm_d0i3_exit_work +ffffffff8158ca20 T _iwl_mvm_exit_d0i3 +ffffffff8158cac0 T iwl_mvm_exit_d0i3 +ffffffff8158cae0 t iwl_mvm_binding_iterator +ffffffff8158cb20 T iwl_mvm_get_channel_width +ffffffff8158cb40 T iwl_mvm_get_ctrl_pos +ffffffff8158cba0 t iwl_mvm_phy_ctxt_apply.constprop.1 +ffffffff8158cd10 T iwl_mvm_phy_ctxt_add +ffffffff8158cd30 T iwl_mvm_phy_ctxt_ref +ffffffff8158cd40 T iwl_mvm_phy_ctxt_changed +ffffffff8158cde0 T iwl_mvm_phy_ctxt_unref +ffffffff8158ce40 T iwl_mvm_phy_ctx_count +ffffffff8158ce70 t iwl_mvm_go_iterator +ffffffff8158cea0 t iwl_mvm_mac_tsf_id_iter +ffffffff8158cf30 t iwl_mvm_mac_iface_iterator +ffffffff8158cf60 t iwl_mvm_mac_ctxt_set_tx +ffffffff8158d070 t iwl_mvm_find_ie_offset +ffffffff8158d0b0 t iwl_mvm_mac_ctxt_send_cmd +ffffffff8158d100 t iwl_mvm_mac_ctxt_cmd_fill_ap +ffffffff8158d270 t iwl_mvm_beacon_loss_iterator +ffffffff8158d3b0 t iwl_mvm_mac_ap_iterator +ffffffff8158d3e0 t iwl_mvm_mac_ctxt_set_tim.isra.2 +ffffffff8158d450 t iwl_mvm_mac_ctxt_send_beacon_cmd.isra.3 +ffffffff8158d4c0 t iwl_mvm_mac_ctxt_cmd_common +ffffffff8158d860 t iwl_mvm_mac_ctxt_cmd_sta +ffffffff8158d9c0 t iwl_mvm_mac_ctxt_cmd_p2p_device +ffffffff8158da50 t iwl_mvm_mac_ctxt_cmd_ibss +ffffffff8158daf0 t iwl_mvm_mac_ctxt_cmd_ap +ffffffff8158db80 t iwl_mvm_mac_ctxt_cmd_go +ffffffff8158dc30 t iwl_mvm_mac_ctxt_cmd_listener +ffffffff8158dcd0 t iwl_mvm_mac_ctx_send +ffffffff8158dd20 T iwl_mvm_mac_get_queues_mask +ffffffff8158dd80 t iwl_mvm_iface_hw_queues_iter +ffffffff8158dda0 T iwl_mvm_get_used_hw_queues +ffffffff8158ddf0 T iwl_mvm_mac_ctxt_recalc_tsf_id +ffffffff8158de80 T iwl_mvm_mac_ctxt_init +ffffffff8158e130 T iwl_mvm_mac_ctxt_beacon_changed +ffffffff8158e410 T iwl_mvm_mac_ctxt_add +ffffffff8158e480 T iwl_mvm_mac_ctxt_changed +ffffffff8158e4b0 T iwl_mvm_mac_ctxt_remove +ffffffff8158e590 T iwl_mvm_rx_beacon_notif +ffffffff8158e710 T iwl_mvm_rx_missed_beacons_notif +ffffffff8158e750 T iwl_mvm_rx_stored_beacon_notif +ffffffff8158e880 T iwl_mvm_channel_switch_noa_notif +ffffffff8158e940 t iwl_mvm_diversity_iter +ffffffff8158e980 t iwl_mvm_ll_iter +ffffffff8158e9b0 t iwl_mvm_sta_iface_iterator +ffffffff8158e9d0 t iwl_mvm_dump_lmac_error_log +ffffffff8158ef70 t iwl_mvm_bss_iface_iterator +ffffffff8158ef90 T iwl_mvm_send_cmd +ffffffff8158f000 T iwl_mvm_send_cmd_pdu +ffffffff8158f060 T iwl_mvm_send_cmd_status +ffffffff8158f0e0 T iwl_mvm_send_cmd_pdu_status +ffffffff8158f140 T iwl_mvm_legacy_rate_to_mac80211_idx +ffffffff8158f190 T iwl_mvm_mac80211_idx_to_hwrate +ffffffff8158f1a0 T iwl_mvm_rx_fw_error +ffffffff8158f220 T first_antenna +ffffffff8158f240 T iwl_mvm_next_antenna +ffffffff8158f280 T iwl_mvm_dump_nic_error_log +ffffffff8158f520 T iwl_mvm_find_free_queue +ffffffff8158f5b0 T iwl_mvm_reconfig_scd +ffffffff8158f6b0 T iwl_mvm_tvqm_enable_txq +ffffffff8158f770 T iwl_mvm_enable_txq +ffffffff8158f9c0 T iwl_mvm_disable_txq +ffffffff8158fc60 T iwl_mvm_send_lq_cmd +ffffffff8158fcf0 T iwl_mvm_update_smps +ffffffff8158fda0 T iwl_mvm_request_statistics +ffffffff8158fe80 T iwl_mvm_accu_radio_stats +ffffffff8158fec0 T iwl_mvm_rx_diversity_allowed +ffffffff8158ff40 T iwl_mvm_update_low_latency +ffffffff81590050 T iwl_mvm_low_latency +ffffffff81590080 T iwl_mvm_get_bss_vif +ffffffff815900e0 T iwl_mvm_is_vif_assoc +ffffffff81590110 T iwl_mvm_get_wd_timeout +ffffffff815901d0 T iwl_mvm_connection_loss +ffffffff815902f0 T iwl_mvm_inactivity_check +ffffffff815907d0 T iwl_mvm_event_frame_timeout_callback +ffffffff815908d0 T iwl_mvm_get_sync_time +ffffffff81590950 t iwl_mvm_stat_iterator +ffffffff81590ac0 T iwl_mvm_rx_rx_phy_cmd +ffffffff81590b50 T iwl_mvm_rx_rx_mpdu +ffffffff81591360 T iwl_mvm_handle_rx_statistics +ffffffff81591630 T iwl_mvm_rx_statistics +ffffffff81591660 T iwl_mvm_window_status_notif +ffffffff81591710 t iwl_mvm_pass_packet_to_mac80211.isra.1 +ffffffff81591900 t iwl_mvm_release_frames +ffffffff81591ae0 T iwl_mvm_notify_rx_queue +ffffffff81591bf0 T iwl_mvm_reorder_timer_expired +ffffffff81591d60 T iwl_mvm_rx_queue_notif +ffffffff81591ea0 T iwl_mvm_rx_mpdu_mq +ffffffff81592dc0 T iwl_mvm_rx_frame_release +ffffffff81592ea0 t iwl_mvm_tx_csum +ffffffff81593090 t iwl_mvm_check_ratid_empty +ffffffff81593170 t iwl_mvm_get_tx_rate.isra.1 +ffffffff81593230 t iwl_mvm_tx_tso.isra.3.constprop.4 +ffffffff81593730 T iwl_mvm_set_tx_cmd +ffffffff81593b00 T iwl_mvm_set_tx_cmd_rate +ffffffff81593bf0 t iwl_mvm_set_tx_params +ffffffff81593fd0 t iwl_mvm_tx_mpdu +ffffffff81594470 T iwl_mvm_tx_skb_non_sta +ffffffff81594720 T iwl_mvm_tx_skb +ffffffff815948c0 T iwl_mvm_hwrate_to_tx_rate +ffffffff81594a90 t iwl_mvm_tx_reclaim +ffffffff81594de0 T iwl_mvm_rx_tx_cmd +ffffffff815953b0 T iwl_mvm_rx_ba_notif +ffffffff815955a0 T iwl_mvm_flush_tx_path +ffffffff81595600 T iwl_mvm_flush_sta_tids +ffffffff81595660 T iwl_mvm_flush_sta +ffffffff815956a0 t iwl_mvm_iface_iterator +ffffffff815956f0 t iwl_mvm_binding_update +ffffffff81595900 T iwl_mvm_binding_add_vif +ffffffff81595960 T iwl_mvm_binding_remove_vif +ffffffff815959e0 t iwl_mvm_quota_iterator +ffffffff81595a80 T iwl_mvm_update_quotas +ffffffff81595e50 t __iwl_mvm_remove_sta_key +ffffffff81595f20 t iwl_mvm_int_sta_modify_disable_tx +ffffffff81595fd0 t iwl_mvm_enable_aux_snif_queue +ffffffff81596050 t iwl_mvm_add_int_sta_common +ffffffff81596150 t iwl_mvm_invalidate_sta_queue +ffffffff815962d0 t iwl_mvm_free_inactive_queue +ffffffff81596550 t iwl_mvm_rx_agg_session_expired +ffffffff815965d0 t iwl_mvm_send_sta_key +ffffffff81596a10 t iwl_mvm_send_sta_igtk +ffffffff81596d10 t __iwl_mvm_set_sta_key +ffffffff81596e70 t iwl_mvm_unreserve_agg_queue.isra.0 +ffffffff81596ee0 t iwl_mvm_rm_sta_common +ffffffff81596f70 T iwl_mvm_sta_send_to_fw +ffffffff81597240 T iwl_mvm_scd_queue_redirect +ffffffff81597510 T iwl_mvm_add_sta +ffffffff81597b30 T iwl_mvm_drain_sta +ffffffff81597c00 T iwl_mvm_wait_sta_queues_empty +ffffffff81597cb0 T iwl_mvm_rm_sta +ffffffff81597f50 T iwl_mvm_rm_sta_id +ffffffff81597f80 T iwl_mvm_allocate_int_sta +ffffffff81598000 T iwl_mvm_dealloc_int_sta +ffffffff81598020 T iwl_mvm_add_aux_sta +ffffffff81598190 T iwl_mvm_add_snif_sta +ffffffff81598250 T iwl_mvm_rm_snif_sta +ffffffff815982a0 T iwl_mvm_dealloc_snif_sta +ffffffff815982d0 T iwl_mvm_del_aux_sta +ffffffff81598300 T iwl_mvm_send_add_bcast_sta +ffffffff81598480 T iwl_mvm_send_rm_bcast_sta +ffffffff81598560 T iwl_mvm_alloc_bcast_sta +ffffffff815985b0 T iwl_mvm_add_p2p_bcast_sta +ffffffff81598610 T iwl_mvm_dealloc_bcast_sta +ffffffff81598650 T iwl_mvm_rm_p2p_bcast_sta +ffffffff815986a0 T iwl_mvm_add_mcast_sta +ffffffff81598860 T iwl_mvm_rm_mcast_sta +ffffffff815988f0 T iwl_mvm_sta_rx_agg +ffffffff81598e90 T iwl_mvm_sta_tx_agg +ffffffff81598fe0 T iwl_mvm_add_new_dqa_stream_wk +ffffffff8159a290 T iwl_mvm_sta_tx_agg_start +ffffffff8159a490 T iwl_mvm_sta_tx_agg_oper +ffffffff8159a7f0 T iwl_mvm_sta_tx_agg_stop +ffffffff8159a980 T iwl_mvm_sta_tx_agg_flush +ffffffff8159ab80 T iwl_mvm_set_sta_key +ffffffff8159add0 T iwl_mvm_remove_sta_key +ffffffff8159af50 T iwl_mvm_update_tkip_key +ffffffff8159b010 T iwl_mvm_sta_modify_ps_wake +ffffffff8159b0b0 T iwl_mvm_sta_modify_sleep_tx_count +ffffffff8159b380 T iwl_mvm_rx_eosp_notif +ffffffff8159b3e0 T iwl_mvm_sta_modify_disable_tx +ffffffff8159b480 T iwl_mvm_sta_modify_disable_tx_ap +ffffffff8159b4e0 T iwl_mvm_modify_all_sta_disable_tx +ffffffff8159b5d0 T iwl_mvm_csa_client_absent +ffffffff8159b630 T iwl_mvm_tid_queued +ffffffff8159b660 t iwl_mvm_bound_iface_iterator +ffffffff8159b6b0 t iwl_mvm_fill_sf_command.isra.0 +ffffffff8159b780 t iwl_mvm_sf_config +ffffffff8159b8b0 T iwl_mvm_sf_update +ffffffff8159b9e0 t iwl_mvm_scan_condition_iterator +ffffffff8159ba10 t iwl_scan_build_ssids +ffffffff8159bcb0 t iwl_mvm_lmac_scan_abort +ffffffff8159bd20 t iwl_mvm_scan_rx_ant.part.0 +ffffffff8159bd50 t iwl_mvm_scan_lmac +ffffffff8159c1a0 t iwl_mvm_scan_config_rates.isra.6 +ffffffff8159c220 t iwl_mvm_fill_channels.isra.8 +ffffffff8159c290 t iwl_mvm_scan_umac +ffffffff8159c7d0 t iwl_mvm_get_scan_type +ffffffff8159c850 t iwl_mvm_build_scan_probe +ffffffff8159ca80 t iwl_mvm_scan_stop.part.18 +ffffffff8159cc80 t iwl_mvm_check_running_scans +ffffffff8159cd30 T iwl_mvm_max_scan_ie_len +ffffffff8159cd60 T iwl_mvm_rx_lmac_scan_iter_complete_notif +ffffffff8159cd90 T iwl_mvm_rx_scan_match_found +ffffffff8159cda0 T iwl_mvm_rx_lmac_scan_complete_notif +ffffffff8159ceb0 T iwl_mvm_config_scan +ffffffff8159d1d0 T iwl_mvm_scan_timeout_wk +ffffffff8159d200 T iwl_mvm_rx_umac_scan_complete_notif +ffffffff8159d330 T iwl_mvm_rx_umac_scan_iter_complete_notif +ffffffff8159d380 T iwl_mvm_scan_size +ffffffff8159d3e0 T iwl_mvm_reg_scan_start +ffffffff8159d770 T iwl_mvm_sched_scan_start +ffffffff8159dc50 T iwl_mvm_report_scan_aborted +ffffffff8159dde0 T iwl_mvm_scan_stop +ffffffff8159de00 t __iwl_mvm_remove_time_event +ffffffff8159de80 t iwl_mvm_get_roc_te +ffffffff8159df00 t iwl_mvm_time_event_send_add +ffffffff8159e090 t iwl_mvm_te_check_trigger.isra.0 +ffffffff8159e1b0 t iwl_mvm_te_check_disconnect +ffffffff8159e220 t iwl_mvm_te_notif +ffffffff8159e2a0 t iwl_mvm_time_event_response +ffffffff8159e2f0 T iwl_mvm_te_clear_data +ffffffff8159e340 T iwl_mvm_roc_done_wk +ffffffff8159e3d0 T iwl_mvm_rx_time_event_notif +ffffffff8159e7f0 T iwl_mvm_remove_time_event +ffffffff8159e880 T iwl_mvm_stop_session_protection +ffffffff8159e8e0 T iwl_mvm_protect_session +ffffffff8159eb00 T iwl_mvm_start_p2p_roc +ffffffff8159ec40 T iwl_mvm_cleanup_roc_te +ffffffff8159ec70 T iwl_mvm_stop_roc +ffffffff8159ed70 T iwl_mvm_schedule_csa_period +ffffffff8159eea0 t rs_siso_allow +ffffffff8159eeb0 t rs_sgi_allow +ffffffff8159ef00 t rs_stay_in_table +ffffffff8159f0c0 t rs_bfer_active_iter +ffffffff8159f0e0 t rs_alloc +ffffffff8159f0f0 t rs_free +ffffffff8159f100 t rs_free_sta +ffffffff8159f110 t rs_rate_init_ops +ffffffff8159f120 t rs_drv_alloc_sta +ffffffff8159f150 t rs_ant_allow +ffffffff8159f160 t _rs_collect_tx_data.isra.1 +ffffffff8159f230 t rs_get_expected_tpt_table.isra.7 +ffffffff8159f2f0 t rs_bfer_priority.isra.11 +ffffffff8159f340 t rs_pretty_rate.isra.14 +ffffffff8159f3d0 t rs_rate_from_ucode_rate +ffffffff8159f580 t rs_mimo_allow +ffffffff8159f5f0 t ucode_rate_from_rs_rate.isra.25 +ffffffff8159f790 t rs_drv_get_rate +ffffffff8159f8a0 t rs_get_adjacent_rate.constprop.28 +ffffffff8159f9b0 t rs_get_lower_rate_in_column +ffffffff8159fa00 t rs_get_lower_rate_down_column +ffffffff8159fb10 t rs_fill_rates_for_column +ffffffff8159fc70 t rs_fill_lq_cmd +ffffffff8159ff90 t rs_collect_tlc_data.constprop.29 +ffffffff815a0080 T rs_update_last_rssi +ffffffff815a00e0 T iwl_mvm_rs_rate_init +ffffffff815a0ba0 T iwl_mvm_rs_tx_status +ffffffff815a2350 t rs_drv_mac80211_tx_status +ffffffff815a23e0 t rs_drv_rate_update +ffffffff815a2430 T iwl_mvm_rate_control_register +ffffffff815a2440 T iwl_mvm_rate_control_unregister +ffffffff815a2450 T iwl_mvm_tx_protection +ffffffff815a24c0 T iwl_mvm_tlc_update_notif +ffffffff815a2510 T rs_fw_rate_init +ffffffff815a28f0 T rs_fw_tx_protection +ffffffff815a2900 T iwl_mvm_rs_add_sta +ffffffff815a2940 t iwl_mvm_p2p_standalone_iterator +ffffffff815a2970 t iwl_mvm_power_disable_pm_iterator +ffffffff815a2990 t iwl_mvm_power_ps_disabled_iterator +ffffffff815a29c0 t iwl_mvm_power_get_vifs_iterator +ffffffff815a2a50 t _iwl_mvm_enable_beacon_filter +ffffffff815a2ae0 t iwl_mvm_power_set_ba +ffffffff815a2bb0 t _iwl_mvm_disable_beacon_filter +ffffffff815a2c40 t iwl_mvm_power_uapsd_misbehav_ap_iterator +ffffffff815a2c80 t iwl_mvm_power_build_cmd +ffffffff815a30a0 t iwl_mvm_power_send_cmd +ffffffff815a3110 T iwl_mvm_power_update_device +ffffffff815a3160 t iwl_mvm_power_set_ps +ffffffff815a31d0 T iwl_mvm_power_vif_assoc +ffffffff815a3220 T iwl_mvm_power_uapsd_misbehaving_ap_notif +ffffffff815a3270 T iwl_mvm_enable_beacon_filter +ffffffff815a32e0 T iwl_mvm_disable_beacon_filter +ffffffff815a32f0 T iwl_mvm_power_update_ps +ffffffff815a3370 T iwl_mvm_power_update_mac +ffffffff815a3550 T iwl_mvm_update_d0i3_power_mode +ffffffff815a36e0 t iwl_mvm_bt_coex_reduced_txp +ffffffff815a3750 t iwl_get_coex_type +ffffffff815a37d0 t iwl_mvm_bt_notif_iterator +ffffffff815a3a20 t iwl_mvm_bt_coex_notif_handle +ffffffff815a3bd0 T iwl_mvm_send_bt_init_conf +ffffffff815a3cb0 T iwl_mvm_rx_bt_coex_notif +ffffffff815a3d10 T iwl_mvm_bt_rssi_event +ffffffff815a3db0 T iwl_mvm_coex_agg_time_limit +ffffffff815a3e10 T iwl_mvm_bt_coex_is_mimo_allowed +ffffffff815a3e60 T iwl_mvm_bt_coex_is_ant_avail +ffffffff815a3e90 T iwl_mvm_bt_coex_is_shared_ant_avail +ffffffff815a3eb0 T iwl_mvm_bt_coex_is_tpc_allowed +ffffffff815a3ed0 T iwl_mvm_bt_coex_tx_prio +ffffffff815a3f70 T iwl_mvm_bt_coex_vif_change +ffffffff815a3f80 t compare_temps +ffffffff815a3f90 t iwl_mvm_tzone_get_trip_temp +ffffffff815a3fc0 t iwl_mvm_tzone_get_trip_type +ffffffff815a3fe0 t iwl_mvm_tcool_get_max_state +ffffffff815a3ff0 t iwl_mvm_tcool_get_cur_state +ffffffff815a4010 t iwl_mvm_tt_smps_iterator +ffffffff815a4040 t iwl_mvm_tt_tx_protection +ffffffff815a4100 t iwl_mvm_exit_ctkill.part.2 +ffffffff815a4130 t iwl_mvm_tt_tx_backoff.part.5 +ffffffff815a4150 t iwl_mvm_temp_notif_wait +ffffffff815a41a0 T iwl_mvm_enter_ctkill +ffffffff815a4240 T iwl_mvm_ct_kill_notif +ffffffff815a4290 T iwl_mvm_get_temp +ffffffff815a43c0 t check_exit_ctkill +ffffffff815a44d0 t iwl_mvm_tzone_get_temp +ffffffff815a4540 T iwl_mvm_tt_tx_backoff +ffffffff815a45d0 T iwl_mvm_tt_handler +ffffffff815a47f0 T iwl_mvm_temp_notif +ffffffff815a48f0 T iwl_mvm_tt_temp_changed +ffffffff815a4910 T iwl_mvm_ctdp_command +ffffffff815a49b0 t iwl_mvm_tcool_set_cur_state +ffffffff815a4a20 T iwl_mvm_send_temp_report_ths_cmd +ffffffff815a4b30 t iwl_mvm_tzone_set_trip_temp +ffffffff815a4c00 T iwl_mvm_thermal_initialize +ffffffff815a4eb0 T iwl_mvm_thermal_exit +ffffffff815a4f40 T iwl_mvm_set_wowlan_qos_seq +ffffffff815a4f70 T iwl_mvm_send_proto_offload +ffffffff815a54d0 t iwl_mvm_tdls_config +ffffffff815a55f0 t iwl_mvm_tdls_config_channel_switch.constprop.1 +ffffffff815a5b20 T iwl_mvm_teardown_tdls_peers +ffffffff815a5b80 T iwl_mvm_tdls_sta_count +ffffffff815a5bd0 T iwl_mvm_recalc_tdls_state +ffffffff815a5c80 T iwl_mvm_mac_mgd_protect_tdls_discover +ffffffff815a5d10 T iwl_mvm_rx_tdls_notif +ffffffff815a5de0 T iwl_mvm_tdls_ch_switch_work +ffffffff815a5ef0 T iwl_mvm_tdls_channel_switch +ffffffff815a6050 T iwl_mvm_tdls_cancel_channel_switch +ffffffff815a6120 T iwl_mvm_tdls_recv_channel_switch +ffffffff815a6240 t iwl_tof_iterator +ffffffff815a6260 T iwl_mvm_tof_init +ffffffff815a62f0 T iwl_mvm_tof_clean +ffffffff815a6360 T iwl_mvm_tof_config_cmd +ffffffff815a63e0 T iwl_mvm_tof_range_abort_cmd +ffffffff815a6470 T iwl_mvm_tof_range_request_cmd +ffffffff815a6550 T iwl_mvm_tof_range_request_ext_cmd +ffffffff815a65b0 T iwl_mvm_tof_resp_handler +ffffffff815a6680 t iwl_mvm_free_nd +ffffffff815a66d0 t iwl_mvm_wowlan_program_keys +ffffffff815a6c60 t iwl_mvm_iter_d0i3_ap_keys +ffffffff815a6cc0 t iwl_mvm_switch_to_d3 +ffffffff815a6d40 t iwl_mvm_d3_reprogram +ffffffff815a7110 t iwl_mvm_set_tkip_rx_seq +ffffffff815a7170 t iwl_mvm_d3_disconnect_iter +ffffffff815a7190 t iwl_mvm_get_wakeup_status +ffffffff815a7380 t iwl_mvm_query_netdetect_reasons +ffffffff815a7860 t iwl_mvm_get_wowlan_config.isra.4 +ffffffff815a79d0 t iwl_mvm_set_aes_rx_seq.isra.5 +ffffffff815a7b80 t iwl_mvm_set_key_rx_seq +ffffffff815a7bc0 t iwl_mvm_setup_connection_keep +ffffffff815a7d90 t iwl_mvm_d3_update_keys +ffffffff815a7e80 T iwl_mvm_set_rekey_data +ffffffff815a7f20 T iwl_mvm_ipv6_addr_change +ffffffff815a7ff0 T iwl_mvm_set_default_unicast_key +ffffffff815a8010 T iwl_mvm_set_last_nonqos_seq +ffffffff815a80a0 T iwl_mvm_wowlan_config_key_params +ffffffff815a8330 t iwl_mvm_wowlan_config.isra.9 +ffffffff815a8530 T iwl_mvm_suspend +ffffffff815a8ac0 T iwl_mvm_d0i3_update_keys +ffffffff815a8b30 T iwl_mvm_resume +ffffffff815a91c0 T iwl_mvm_set_wakeup +ffffffff815a91e0 t match_endpoint +ffffffff815a9290 t __each_dev +ffffffff815a92b0 t usb_dev_prepare +ffffffff815a92c0 t usb_dev_restore +ffffffff815a92d0 t usb_dev_thaw +ffffffff815a92e0 t usb_dev_resume +ffffffff815a92f0 t usb_dev_poweroff +ffffffff815a9300 t usb_dev_freeze +ffffffff815a9310 t usb_dev_suspend +ffffffff815a9320 t usb_dev_complete +ffffffff815a9330 t usb_release_dev +ffffffff815a9390 t usb_devnode +ffffffff815a93b0 t usb_dev_uevent +ffffffff815a9400 t __find_interface +ffffffff815a9430 t usb_bus_notify +ffffffff815a94a0 T usb_disabled +ffffffff815a94b0 T usb_find_common_endpoints +ffffffff815a9550 T usb_find_common_endpoints_reverse +ffffffff815a9600 T usb_find_alt_setting +ffffffff815a96b0 T usb_ifnum_to_if +ffffffff815a9710 T usb_altnum_to_altsetting +ffffffff815a9750 T usb_find_interface +ffffffff815a97a0 T usb_for_each_dev +ffffffff815a97d0 T usb_alloc_dev +ffffffff815a9ac0 T usb_get_dev +ffffffff815a9ae0 T usb_put_dev +ffffffff815a9b00 T usb_get_intf +ffffffff815a9b20 T usb_put_intf +ffffffff815a9b30 T usb_lock_device_for_reset +ffffffff815a9bf0 T usb_get_current_frame_number +ffffffff815a9c00 T __usb_get_extra_descriptor +ffffffff815a9c70 T usb_alloc_coherent +ffffffff815a9c90 T usb_free_coherent +ffffffff815a9cb0 t hub_ioctl +ffffffff815a9d90 t find_port_owner +ffffffff815a9e00 t recursively_mark_NOTATTACHED +ffffffff815a9e90 t set_port_feature +ffffffff815a9ec0 t clear_hub_feature +ffffffff815a9ef0 t hub_release +ffffffff815a9f20 t hub_tt_work +ffffffff815aa0b0 t usb_set_lpm_timeout +ffffffff815aa190 t usb_set_device_initiated_lpm +ffffffff815aa240 t usb_disable_link_state +ffffffff815aa2e0 t hub_ext_port_status +ffffffff815aa410 t hub_hub_status +ffffffff815aa4f0 t led_work +ffffffff815aa690 t release_devnum.isra.4 +ffffffff815aa6b0 t usb_disable_remote_wakeup +ffffffff815aa710 t kick_hub_wq.part.14 +ffffffff815aa780 t hub_irq +ffffffff815aa880 t hub_port_warm_reset_required +ffffffff815aa8c0 t usb_enable_link_state +ffffffff815aab50 T usb_hub_to_struct_hub +ffffffff815aab80 T usb_device_supports_lpm +ffffffff815aac40 T usb_clear_port_feature +ffffffff815aac80 t hub_power_on +ffffffff815aad10 T usb_kick_hub_wq +ffffffff815aad60 T usb_wakeup_notification +ffffffff815aadc0 T usb_hub_set_port_power +ffffffff815aae00 T usb_hub_clear_tt_buffer +ffffffff815aaf10 T usb_hub_claim_port +ffffffff815aaf40 T usb_hub_release_port +ffffffff815aaf70 T usb_hub_release_all_ports +ffffffff815aafe0 T usb_device_is_owned +ffffffff815ab040 T usb_set_device_state +ffffffff815ab150 t hub_port_disable +ffffffff815ab280 t hub_port_logical_disconnect +ffffffff815ab2c0 T usb_remove_device +ffffffff815ab340 t hub_port_reset +ffffffff815ab8a0 t hub_activate +ffffffff815abe80 t hub_post_reset +ffffffff815abee0 t hub_init_func3 +ffffffff815abf00 t hub_init_func2 +ffffffff815abf20 t hub_reset_resume +ffffffff815abf40 t hub_resume +ffffffff815abf60 T usb_disconnect +ffffffff815ac1d0 t hub_quiesce +ffffffff815ac260 t hub_pre_reset +ffffffff815ac2c0 t hub_suspend +ffffffff815ac4c0 t hub_disconnect +ffffffff815ac5c0 T usb_new_device +ffffffff815ac950 T usb_deauthorize_device +ffffffff815ac9a0 T usb_authorize_device +ffffffff815aca90 T usb_disable_ltm +ffffffff815acb20 T usb_enable_ltm +ffffffff815acbb0 T usb_port_suspend +ffffffff815acec0 T usb_remote_wakeup +ffffffff815acf10 T usb_root_hub_lost_power +ffffffff815acf30 T usb_enable_lpm +ffffffff815ad030 T usb_disable_lpm +ffffffff815ad0e0 T usb_unlocked_disable_lpm +ffffffff815ad120 T usb_unlocked_enable_lpm +ffffffff815ad160 T usb_port_disable +ffffffff815ad1a0 T hub_port_debounce +ffffffff815ad270 T usb_ep0_reinit +ffffffff815ad2b0 t hub_port_init +ffffffff815ade10 t usb_reset_and_verify_device +ffffffff815ae420 T usb_port_resume +ffffffff815ae980 T usb_hub_init +ffffffff815aea00 T usb_hub_cleanup +ffffffff815aea20 T usb_reset_device +ffffffff815aec20 t hub_event +ffffffff815aff00 T usb_queue_reset_device +ffffffff815aff30 T usb_hub_find_child +ffffffff815aff90 T usb_hub_adjust_deviceremovable +ffffffff815b00a0 t hub_probe +ffffffff815b0af0 T usb_get_hub_port_acpi_handle +ffffffff815b0b60 T usb_hcd_irq +ffffffff815b0b90 t authorized_default_show +ffffffff815b0bc0 t hcd_resume_work +ffffffff815b0bd0 t interface_authorized_default_store +ffffffff815b0c20 t interface_authorized_default_show +ffffffff815b0c50 t authorized_default_store +ffffffff815b0cb0 t usb_deregister_bus +ffffffff815b0d00 T usb_hcd_start_port_resume +ffffffff815b0d30 T usb_hcd_end_port_resume +ffffffff815b0d80 T usb_calc_bus_time +ffffffff815b0ed0 T usb_hcd_link_urb_to_ep +ffffffff815b0f60 T usb_hcd_check_unlink_urb +ffffffff815b0fb0 T usb_hcd_unlink_urb_from_ep +ffffffff815b0ff0 T usb_hcd_unmap_urb_setup_for_dma +ffffffff815b10a0 T usb_hcd_unmap_urb_for_dma +ffffffff815b11e0 t unmap_urb_for_dma +ffffffff815b1200 t __usb_hcd_giveback_urb +ffffffff815b12c0 t usb_giveback_urb_bh +ffffffff815b1380 T usb_hcd_map_urb_for_dma +ffffffff815b18e0 T usb_hcd_giveback_urb +ffffffff815b1a00 T usb_hcd_poll_rh_status +ffffffff815b1b80 t rh_timer_func +ffffffff815b1b90 T usb_hcd_submit_urb +ffffffff815b24c0 t unlink1 +ffffffff815b25b0 T usb_hcd_unlink_urb +ffffffff815b2650 T usb_hcd_flush_endpoint +ffffffff815b2760 T usb_hcd_alloc_bandwidth +ffffffff815b2ab0 T usb_hcd_disable_endpoint +ffffffff815b2ad0 T usb_hcd_reset_endpoint +ffffffff815b2b30 T usb_alloc_streams +ffffffff815b2c40 T usb_free_streams +ffffffff815b2d10 T usb_hcd_synchronize_unlinks +ffffffff815b2d30 T usb_hcd_get_frame_number +ffffffff815b2d60 T usb_hcd_resume_root_hub +ffffffff815b2db0 T usb_hc_died +ffffffff815b2e70 T hcd_bus_resume +ffffffff815b2fc0 T hcd_bus_suspend +ffffffff815b30d0 T __usb_create_hcd +ffffffff815b32f0 T usb_create_shared_hcd +ffffffff815b3300 T usb_create_hcd +ffffffff815b3310 T usb_get_hcd +ffffffff815b3330 T usb_put_hcd +ffffffff815b33b0 T usb_hcd_is_primary_hcd +ffffffff815b33d0 T usb_hcd_find_raw_port_number +ffffffff815b33f0 T usb_add_hcd +ffffffff815b3b10 T usb_remove_hcd +ffffffff815b3cc0 T usb_hcd_platform_shutdown +ffffffff815b3ce0 t usb_kill_urb.part.2 +ffffffff815b3d50 T usb_init_urb +ffffffff815b3da0 T usb_alloc_urb +ffffffff815b3de0 T usb_free_urb +ffffffff815b3e20 t __usb_unanchor_urb +ffffffff815b3e80 T usb_get_urb +ffffffff815b3ea0 T usb_anchor_urb +ffffffff815b3f00 T usb_unanchor_urb +ffffffff815b3f60 T usb_urb_ep_type_check +ffffffff815b3fc0 T usb_submit_urb +ffffffff815b4350 T usb_unlink_urb +ffffffff815b4380 T usb_kill_urb +ffffffff815b43a0 T usb_poison_urb +ffffffff815b4420 T usb_unpoison_urb +ffffffff815b4430 T usb_block_urb +ffffffff815b4440 T usb_kill_anchored_urbs +ffffffff815b44b0 T usb_poison_anchored_urbs +ffffffff815b4520 T usb_unpoison_anchored_urbs +ffffffff815b4570 T usb_anchor_suspend_wakeups +ffffffff815b4580 T usb_anchor_resume_wakeups +ffffffff815b45b0 T usb_wait_anchor_empty_timeout +ffffffff815b4670 T usb_get_from_anchor +ffffffff815b46c0 T usb_unlink_anchored_urbs +ffffffff815b46f0 T usb_scuttle_anchored_urbs +ffffffff815b4740 T usb_anchor_empty +ffffffff815b4750 t usb_api_blocking_completion +ffffffff815b4770 t sg_clean +ffffffff815b47c0 t usb_start_wait_urb +ffffffff815b4880 t sg_complete +ffffffff815b4a00 t remove_intf_ep_devs +ffffffff815b4a50 t create_intf_ep_devs +ffffffff815b4ac0 t usb_release_interface +ffffffff815b4b00 t usb_if_uevent +ffffffff815b4ba0 t __usb_queue_reset_device +ffffffff815b4bf0 T usb_control_msg +ffffffff815b4d00 t usb_get_string +ffffffff815b4d80 t usb_string_sub +ffffffff815b4e80 T usb_bulk_msg +ffffffff815b4fe0 T usb_interrupt_msg +ffffffff815b4ff0 T usb_sg_init +ffffffff815b5290 T usb_sg_cancel +ffffffff815b5370 T usb_sg_wait +ffffffff815b5480 T usb_get_descriptor +ffffffff815b5520 T usb_string +ffffffff815b5690 T usb_cache_string +ffffffff815b5720 T usb_get_device_descriptor +ffffffff815b5830 T usb_set_isoch_delay +ffffffff815b5880 T usb_get_status +ffffffff815b5980 T usb_clear_halt +ffffffff815b5a10 T usb_disable_endpoint +ffffffff815b5aa0 T usb_reset_endpoint +ffffffff815b5ad0 T usb_disable_interface +ffffffff815b5b20 T usb_disable_device +ffffffff815b5cf0 T usb_enable_endpoint +ffffffff815b5d70 T usb_enable_interface +ffffffff815b5dc0 T usb_set_interface +ffffffff815b60d0 T usb_reset_configuration +ffffffff815b6380 T usb_deauthorize_interface +ffffffff815b63e0 T usb_authorize_interface +ffffffff815b6410 T usb_set_configuration +ffffffff815b6c10 t driver_set_config_work +ffffffff815b6ca0 T usb_driver_set_configuration +ffffffff815b6d60 T cdc_parse_cdc_header +ffffffff815b7110 t autosuspend_check +ffffffff815b71f0 t remove_id_store +ffffffff815b72b0 t usb_uevent +ffffffff815b7350 t usb_resume_interface.isra.1 +ffffffff815b7410 t usb_suspend_both +ffffffff815b7610 t usb_resume_both +ffffffff815b7730 t usb_unbind_device +ffffffff815b7780 T usb_store_new_id +ffffffff815b7900 t new_id_store +ffffffff815b7920 T usb_show_dynids +ffffffff815b79b0 t new_id_show +ffffffff815b79c0 t remove_id_show +ffffffff815b79d0 T usb_driver_claim_interface +ffffffff815b7ae0 T usb_match_device +ffffffff815b7b80 T usb_match_one_id_intf +ffffffff815b7bf0 T usb_match_one_id +ffffffff815b7c30 t usb_match_dynamic_id +ffffffff815b7ca0 t usb_match_id.part.3 +ffffffff815b7d00 t usb_device_match +ffffffff815b7d80 T usb_match_id +ffffffff815b7d90 T usb_register_device_driver +ffffffff815b7e20 T usb_deregister_device_driver +ffffffff815b7e50 T usb_register_driver +ffffffff815b7f90 T usb_deregister +ffffffff815b8060 T usb_enable_autosuspend +ffffffff815b8070 T usb_disable_autosuspend +ffffffff815b8080 T usb_autosuspend_device +ffffffff815b80a0 T usb_autoresume_device +ffffffff815b80e0 t usb_probe_device +ffffffff815b8120 t usb_probe_interface +ffffffff815b83c0 T usb_autopm_put_interface +ffffffff815b83f0 T usb_autopm_put_interface_async +ffffffff815b8420 T usb_autopm_put_interface_no_suspend +ffffffff815b8470 t usb_unbind_interface +ffffffff815b86f0 T usb_driver_release_interface +ffffffff815b8760 T usb_forced_unbind_intf +ffffffff815b8780 t unbind_marked_interfaces.isra.6 +ffffffff815b87f0 T usb_resume +ffffffff815b8850 t rebind_marked_interfaces.isra.7 +ffffffff815b8900 T usb_unbind_and_rebind_marked_interfaces +ffffffff815b8920 T usb_resume_complete +ffffffff815b8940 T usb_suspend +ffffffff815b8a80 T usb_autopm_get_interface +ffffffff815b8ad0 T usb_autopm_get_interface_async +ffffffff815b8b40 T usb_autopm_get_interface_no_resume +ffffffff815b8b70 T usb_runtime_suspend +ffffffff815b8bd0 T usb_runtime_resume +ffffffff815b8bf0 T usb_runtime_idle +ffffffff815b8c20 T usb_set_usb2_hardware_lpm +ffffffff815b8c80 T usb_release_interface_cache +ffffffff815b8cd0 T usb_destroy_configuration +ffffffff815b8df0 T usb_get_configuration +ffffffff815ba530 T usb_release_bos_descriptor +ffffffff815ba570 T usb_get_bos_descriptor +ffffffff815ba820 t usb_devnode +ffffffff815ba840 t usb_open +ffffffff815ba8a0 T usb_major_init +ffffffff815ba8e0 T usb_major_cleanup +ffffffff815ba900 T usb_register_dev +ffffffff815bab70 T usb_deregister_dev +ffffffff815bac40 T hcd_buffer_create +ffffffff815bad20 T hcd_buffer_destroy +ffffffff815bad50 T hcd_buffer_alloc +ffffffff815baea0 T hcd_buffer_free +ffffffff815baf60 t dev_string_attrs_are_visible +ffffffff815bafb0 t intf_assoc_attrs_are_visible +ffffffff815bafc0 t autosuspend_show +ffffffff815baff0 t removable_show +ffffffff815bb030 t avoid_reset_quirk_show +ffffffff815bb060 t quirks_show +ffffffff815bb080 t maxchild_show +ffffffff815bb0a0 t version_show +ffffffff815bb0d0 t devpath_show +ffffffff815bb0f0 t devnum_show +ffffffff815bb110 t busnum_show +ffffffff815bb130 t speed_show +ffffffff815bb160 t bMaxPacketSize0_show +ffffffff815bb180 t bNumConfigurations_show +ffffffff815bb1a0 t bDeviceProtocol_show +ffffffff815bb1c0 t bDeviceSubClass_show +ffffffff815bb1e0 t bDeviceClass_show +ffffffff815bb200 t bcdDevice_show +ffffffff815bb220 t idProduct_show +ffffffff815bb240 t idVendor_show +ffffffff815bb260 t urbnum_show +ffffffff815bb280 t persist_show +ffffffff815bb2b0 t usb2_lpm_besl_show +ffffffff815bb2d0 t usb2_lpm_l1_timeout_show +ffffffff815bb2f0 t usb2_hardware_lpm_show +ffffffff815bb320 t iad_bFunctionProtocol_show +ffffffff815bb340 t iad_bFunctionSubClass_show +ffffffff815bb360 t iad_bFunctionClass_show +ffffffff815bb380 t iad_bInterfaceCount_show +ffffffff815bb3a0 t iad_bFirstInterface_show +ffffffff815bb3c0 t interface_authorized_show +ffffffff815bb3f0 t modalias_show +ffffffff815bb460 t bInterfaceProtocol_show +ffffffff815bb480 t bInterfaceSubClass_show +ffffffff815bb4a0 t bInterfaceClass_show +ffffffff815bb4c0 t bNumEndpoints_show +ffffffff815bb4e0 t bAlternateSetting_show +ffffffff815bb500 t bInterfaceNumber_show +ffffffff815bb520 t interface_show +ffffffff815bb550 t serial_show +ffffffff815bb5a0 t product_show +ffffffff815bb5f0 t manufacturer_show +ffffffff815bb640 t bMaxPower_show +ffffffff815bb6b0 t bmAttributes_show +ffffffff815bb710 t bConfigurationValue_show +ffffffff815bb770 t bNumInterfaces_show +ffffffff815bb7d0 t configuration_show +ffffffff815bb840 t usb3_hardware_lpm_u2_show +ffffffff815bb8a0 t usb3_hardware_lpm_u1_show +ffffffff815bb900 t supports_autosuspend_show +ffffffff815bb970 t remove_store +ffffffff815bb9e0 t avoid_reset_quirk_store +ffffffff815bba70 t bConfigurationValue_store +ffffffff815bbb10 t persist_store +ffffffff815bbba0 t authorized_store +ffffffff815bbc00 t authorized_show +ffffffff815bbc30 t read_descriptors +ffffffff815bbd30 t usb2_lpm_besl_store +ffffffff815bbd80 t usb2_lpm_l1_timeout_store +ffffffff815bbdc0 t usb2_hardware_lpm_store +ffffffff815bbe70 t active_duration_show +ffffffff815bbec0 t connected_duration_show +ffffffff815bbef0 t autosuspend_store +ffffffff815bbf50 t interface_authorized_store +ffffffff815bbfa0 t ltm_capable_show +ffffffff815bc000 t level_store +ffffffff815bc100 t level_show +ffffffff815bc160 T usb_remove_sysfs_dev_files +ffffffff815bc1c0 T usb_create_sysfs_dev_files +ffffffff815bc290 T usb_create_sysfs_intf_files +ffffffff815bc2f0 T usb_remove_sysfs_intf_files +ffffffff815bc320 t ep_device_release +ffffffff815bc330 t direction_show +ffffffff815bc370 t type_show +ffffffff815bc3a0 t interval_show +ffffffff815bc470 t wMaxPacketSize_show +ffffffff815bc4a0 t bInterval_show +ffffffff815bc4c0 t bmAttributes_show +ffffffff815bc4e0 t bEndpointAddress_show +ffffffff815bc520 T usb_create_ep_devs +ffffffff815bc5e0 T usb_remove_ep_devs +ffffffff815bc610 t usbfs_increase_memory_usage +ffffffff815bc650 t usbdev_vm_open +ffffffff815bc680 t async_getcompleted +ffffffff815bc6d0 t driver_probe +ffffffff815bc6e0 t driver_suspend +ffffffff815bc6f0 t driver_resume +ffffffff815bc700 t match_devt +ffffffff815bc710 t usbdev_poll +ffffffff815bc780 t destroy_async +ffffffff815bc800 t destroy_async_on_interface +ffffffff815bc890 t driver_disconnect +ffffffff815bc8f0 t releaseintf +ffffffff815bc940 t dec_usb_memory_use_count +ffffffff815bc9e0 t free_async +ffffffff815bcad0 t usbdev_release +ffffffff815bcbd0 t usbdev_vm_close +ffffffff815bcbe0 t usbdev_open +ffffffff815bcdd0 t usbdev_mmap +ffffffff815bcf50 t usbdev_read +ffffffff815bd160 t processcompl +ffffffff815bd3c0 t claimintf +ffffffff815bd440 t checkintf +ffffffff815bd4b0 t snoop_urb_data +ffffffff815bd5b0 t usbdev_remove +ffffffff815bd670 t usbdev_notify +ffffffff815bd690 t proc_disconnect_claim +ffffffff815bd770 t findintfep.isra.0 +ffffffff815bd830 t parse_usbdevfs_streams +ffffffff815bda00 t check_reset_of_active_ep +ffffffff815bda70 t check_ctrlrecip +ffffffff815bdb90 t snoop_urb.part.7 +ffffffff815bdca0 t async_completed +ffffffff815bdf30 t proc_getdriver.isra.8 +ffffffff815bdfc0 t usbdev_ioctl +ffffffff815c02d0 T usb_devio_cleanup +ffffffff815c0300 T usb_register_notify +ffffffff815c0310 T usb_unregister_notify +ffffffff815c0320 T usb_notify_add_device +ffffffff815c0340 T usb_notify_remove_device +ffffffff815c0380 T usb_notify_add_bus +ffffffff815c03a0 T usb_notify_remove_bus +ffffffff815c03c0 t generic_resume +ffffffff815c03e0 t generic_suspend +ffffffff815c0400 t generic_disconnect +ffffffff815c0430 T usb_choose_configuration +ffffffff815c05d0 t generic_probe +ffffffff815c0640 t __usb_detect_quirks +ffffffff815c0730 T usb_detect_quirks +ffffffff815c0790 T usb_detect_interface_quirks +ffffffff815c07b0 t usb_device_poll +ffffffff815c0800 t usb_device_dump +ffffffff815c1250 t usb_device_read +ffffffff815c1380 T usbfs_conn_disc_event +ffffffff815c13a0 t usb_port_runtime_resume +ffffffff815c1500 t usb_port_runtime_suspend +ffffffff815c1610 t usb_port_device_release +ffffffff815c1630 t connect_type_show +ffffffff815c1670 t usb3_lpm_permit_show +ffffffff815c16c0 t usb3_lpm_permit_store +ffffffff815c17d0 t link_peers +ffffffff815c18d0 t link_peers_report.part.0 +ffffffff815c1900 t match_location +ffffffff815c19a0 T usb_hub_create_port_device +ffffffff815c1ce0 T usb_hub_remove_port_device +ffffffff815c1d90 t non_ehci_add +ffffffff815c1db0 t ehci_remove +ffffffff815c1dd0 t hcd_pci_resume_noirq +ffffffff815c1de0 t for_each_companion +ffffffff815c1e90 t resume_common +ffffffff815c1fd0 t hcd_pci_runtime_resume +ffffffff815c1fe0 t hcd_pci_restore +ffffffff815c1ff0 t hcd_pci_resume +ffffffff815c2000 t ehci_wait_for_companions +ffffffff815c2030 t check_root_hub_suspended +ffffffff815c2080 t suspend_common +ffffffff815c21d0 t hcd_pci_runtime_suspend +ffffffff815c21e0 t hcd_pci_suspend +ffffffff815c2200 t hcd_pci_suspend_noirq +ffffffff815c2290 t ehci_post_add +ffffffff815c22d0 t ehci_pre_add +ffffffff815c2300 T usb_hcd_pci_probe +ffffffff815c26f0 T usb_hcd_pci_remove +ffffffff815c2800 T usb_hcd_pci_shutdown +ffffffff815c2860 t usb_acpi_bus_match +ffffffff815c2880 t usb_acpi_find_port +ffffffff815c28d0 t usb_acpi_find_companion +ffffffff815c2ac0 T usb_acpi_power_manageable +ffffffff815c2ae0 T usb_acpi_set_power_state +ffffffff815c2b30 T usb_acpi_register +ffffffff815c2b40 T usb_acpi_unregister +ffffffff815c2b50 t usb_amd_quirk_pll +ffffffff815c2ed0 t mmio_resource_enabled.part.0 +ffffffff815c2f00 t usb_asmedia_wait_write +ffffffff815c2f90 T sb800_prefetch +ffffffff815c2ff0 T usb_amd_find_chipset_info +ffffffff815c3310 T usb_hcd_amd_remote_wakeup_quirk +ffffffff815c3330 T usb_amd_hang_symptom_quirk +ffffffff815c3360 T usb_amd_prefetch_quirk +ffffffff815c3370 T usb_amd_quirk_pll_disable +ffffffff815c3380 T usb_asmedia_modifyflowcontrol +ffffffff815c3410 T usb_amd_quirk_pll_enable +ffffffff815c3420 T usb_amd_dev_put +ffffffff815c34c0 T usb_amd_pt_check_port +ffffffff815c3640 T uhci_reset_hc +ffffffff815c36a0 T uhci_check_and_reset_hc +ffffffff815c3710 T usb_enable_intel_xhci_ports +ffffffff815c37c0 t quirk_usb_early_handoff +ffffffff815c3e40 T usb_disable_xhci_ports +ffffffff815c3e60 T usb_xhci_needs_pci_reset +ffffffff815c3e80 t ehci_disable_ASE +ffffffff815c3eb0 t ehci_disable_PSE +ffffffff815c3ee0 t persist_enabled_on_companion +ffffffff815c3f10 t ehci_port_handed_over +ffffffff815c3f40 t ehci_port_power +ffffffff815c3fb0 t set_owner +ffffffff815c4050 t ehci_relinquish_port +ffffffff815c4070 t ehci_hub_status_data +ffffffff815c41e0 t ehci_halt +ffffffff815c42c0 t ehci_silence_controller +ffffffff815c4390 t ehci_urb_done +ffffffff815c43f0 t qh_refresh +ffffffff815c44c0 t iso_sched_free +ffffffff815c4500 t iso_sched_alloc +ffffffff815c4530 t find_tt +ffffffff815c4650 t reserve_release_intr_bandwidth +ffffffff815c4790 t reserve_release_iso_bandwidth +ffffffff815c4910 t ehci_shutdown +ffffffff815c4970 t uframe_periodic_max_store +ffffffff815c4aa0 t uframe_periodic_max_show +ffffffff815c4ad0 t companion_show +ffffffff815c4b80 t companion_store +ffffffff815c4c30 t ehci_run +ffffffff815c4dd0 t tt_available.isra.6 +ffffffff815c4f40 t ehci_get_frame +ffffffff815c4f80 t qtd_fill.isra.14 +ffffffff815c5040 t ehci_clear_tt_buffer.isra.15 +ffffffff815c50a0 t qh_completions +ffffffff815c5630 t ehci_remove_device +ffffffff815c5720 t qh_destroy.isra.18 +ffffffff815c5770 t ehci_mem_cleanup +ffffffff815c58a0 t compute_tt_budget.part.20 +ffffffff815c59a0 t iso_stream_schedule +ffffffff815c5f60 t ehci_enable_event +ffffffff815c5fd0 t ehci_hrtimer_func +ffffffff815c6080 t start_free_itds.part.22 +ffffffff815c60c0 t end_free_itds +ffffffff815c6240 t turn_on_io_watchdog +ffffffff815c6290 t ehci_poll_PSS +ffffffff815c6340 t enable_periodic.part.25 +ffffffff815c6360 t qh_link_periodic +ffffffff815c6530 t ehci_poll_ASS +ffffffff815c65e0 t qh_link_async +ffffffff815c6680 t ehci_clear_tt_buffer_complete +ffffffff815c6700 t start_iaa_cycle +ffffffff815c6760 t end_unlink_async +ffffffff815c69f0 t end_iaa_cycle +ffffffff815c6a20 t ehci_iaa_watchdog +ffffffff815c6a70 t start_unlink_async.part.31 +ffffffff815c6ae0 t unlink_empty_async +ffffffff815c6ba0 t ehci_qtd_alloc.isra.34 +ffffffff815c6c10 t ehci_qh_alloc +ffffffff815c6cf0 t qtd_list_free.isra.35 +ffffffff815c6d60 t qh_urb_transaction +ffffffff815c71b0 t ehci_quiesce.part.39 +ffffffff815c7280 T ehci_hub_control +ffffffff815c7d70 t ehci_bus_resume +ffffffff815c8380 t ehci_adjust_port_wakeup_flags.part.40 +ffffffff815c8550 t iso_stream_find +ffffffff815c8900 t qh_append_tds +ffffffff815c8f80 t check_intr_schedule +ffffffff815c90f0 t qh_schedule +ffffffff815c9270 t ehci_handle_intr_unlinks +ffffffff815c93c0 t ehci_urb_enqueue +ffffffff815ca1f0 t start_unlink_intr +ffffffff815ca480 t ehci_handle_start_intr_unlinks +ffffffff815ca520 t ehci_work.part.32 +ffffffff815caee0 t ehci_work +ffffffff815caf00 t ehci_handle_controller_death +ffffffff815cafc0 t ehci_bus_suspend +ffffffff815cb3f0 t ehci_irq +ffffffff815cb6c0 t ehci_endpoint_reset +ffffffff815cb790 t ehci_endpoint_disable +ffffffff815cb980 t ehci_urb_dequeue +ffffffff815cba30 T ehci_handshake +ffffffff815cba90 T ehci_reset +ffffffff815cbbd0 T ehci_setup +ffffffff815cc0e0 t ehci_stop +ffffffff815cc1b0 T ehci_adjust_port_wakeup_flags +ffffffff815cc1d0 T ehci_resume +ffffffff815cc350 T ehci_suspend +ffffffff815cc420 T ehci_init_driver +ffffffff815cc530 t ehci_pci_remove +ffffffff815cc550 t ehci_pci_probe +ffffffff815cc590 t ehci_pci_setup +ffffffff815ccaf0 t ehci_pci_resume +ffffffff815ccb40 t trace_xhci_dbg_address +ffffffff815ccb50 t calculate_max_exit_latency +ffffffff815ccc20 t xhci_endpoint_reset +ffffffff815ccc30 T xhci_find_raw_port_number +ffffffff815ccca0 t xhci_update_device +ffffffff815ccdb0 t xhci_get_frame +ffffffff815ccde0 t xhci_cleanup_msix +ffffffff815cce80 t xhci_set_cmd_ring_deq +ffffffff815ccef0 t compliance_mode_recovery_timer_init +ffffffff815ccf50 t xhci_init +ffffffff815cd0b0 t compliance_mode_recovery +ffffffff815cd190 t xhci_check_args.part.1 +ffffffff815cd200 t xhci_drop_ep_from_interval_table.isra.7 +ffffffff815cd360 t xhci_get_timeout_no_hub_lpm +ffffffff815cd400 t xhci_update_timeout_for_endpoint +ffffffff815cd5d0 t xhci_count_num_new_endpoints.isra.23 +ffffffff815cd5f0 t xhci_free_host_resources +ffffffff815cd630 t xhci_zero_in_ctx.isra.28 +ffffffff815cd6c0 t xhci_add_ep_to_interval_table.isra.30 +ffffffff815cd890 t xhci_reset_bandwidth +ffffffff815cd940 t xhci_get_endpoint_index.part.33 +ffffffff815cd960 t xhci_get_endpoint_flag +ffffffff815cd990 t xhci_urb_dequeue +ffffffff815cdd10 t xhci_check_bw_drop_ep_streams.part.37 +ffffffff815cdd70 t xhci_check_args.constprop.41 +ffffffff815cdda0 t xhci_add_endpoint +ffffffff815cdf50 t xhci_drop_endpoint +ffffffff815ce100 t trace_xhci_dbg_cancel_urb +ffffffff815ce110 t trace_xhci_dbg_init +ffffffff815ce120 t trace_xhci_dbg_context_change +ffffffff815ce130 t trace_xhci_dbg_quirks +ffffffff815ce140 t trace_xhci_dbg_reset_ep +ffffffff815ce150 T xhci_handshake +ffffffff815ce1b0 T xhci_quiesce +ffffffff815ce1d0 T xhci_halt +ffffffff815ce280 T xhci_start +ffffffff815ce320 T xhci_run +ffffffff815ce8a0 T xhci_reset +ffffffff815cea20 t xhci_shutdown +ffffffff815ceaf0 t xhci_stop +ffffffff815ceca0 T xhci_suspend +ffffffff815cf0a0 T xhci_resume +ffffffff815cf470 T xhci_get_endpoint_index +ffffffff815cf490 T xhci_get_endpoint_address +ffffffff815cf4b0 T xhci_last_valid_endpoint +ffffffff815cf4c0 T xhci_update_tt_active_eps +ffffffff815cf520 t xhci_reserve_bandwidth +ffffffff815cfb30 t xhci_configure_endpoint +ffffffff815d00a0 t xhci_change_max_exit_latency +ffffffff815d01f0 t xhci_disable_usb3_lpm_timeout +ffffffff815d0260 t xhci_enable_usb3_lpm_timeout +ffffffff815d04a0 t xhci_set_usb2_hardware_lpm +ffffffff815d07d0 t xhci_update_hub_device +ffffffff815d0a30 t xhci_check_bandwidth +ffffffff815d0cd0 t xhci_free_streams +ffffffff815d1030 t xhci_alloc_streams +ffffffff815d16d0 t xhci_urb_enqueue +ffffffff815d1b50 T xhci_cleanup_stalled_ring +ffffffff815d1d00 T xhci_free_device_endpoint_resources +ffffffff815d1d70 T xhci_disable_slot +ffffffff815d1e40 T xhci_alloc_dev +ffffffff815d2090 t xhci_discover_or_reset_device +ffffffff815d23c0 t xhci_setup_device +ffffffff815d2870 t xhci_enable_device +ffffffff815d2880 t xhci_address_device +ffffffff815d2890 t xhci_free_dev +ffffffff815d2960 T xhci_gen_setup +ffffffff815d2db0 T xhci_init_driver +ffffffff815d2f40 t trace_xhci_dbg_context_change +ffffffff815d2f50 t xhci_test_trb_in_td +ffffffff815d3060 t xhci_check_trb_in_td_math +ffffffff815d3350 t xhci_link_segments.isra.0 +ffffffff815d33b0 t xhci_remove_segment_mapping.isra.8 +ffffffff815d33e0 t xhci_segment_free.isra.10 +ffffffff815d3420 t xhci_segment_alloc.isra.11 +ffffffff815d34f0 t xhci_alloc_segments_for_ring +ffffffff815d3600 t xhci_update_stream_segment_mapping.part.13 +ffffffff815d36d0 t xhci_free_tt_info.isra.14 +ffffffff815d3780 t xhci_parse_exponent_interval.isra.15 +ffffffff815d3810 t xhci_free_container_ctx.part.17 +ffffffff815d3840 t trace_xhci_dbg_ring_expansion +ffffffff815d3850 t trace_xhci_dbg_init +ffffffff815d3860 T xhci_ring_free +ffffffff815d38f0 T xhci_ring_alloc +ffffffff815d39f0 T xhci_free_endpoint_ring +ffffffff815d3a20 T xhci_ring_expansion +ffffffff815d3bd0 T xhci_alloc_container_ctx +ffffffff815d3c90 T xhci_free_container_ctx +ffffffff815d3ca0 T xhci_get_input_control_ctx +ffffffff815d3cb0 T xhci_get_slot_ctx +ffffffff815d3cd0 T xhci_get_ep_ctx +ffffffff815d3d00 T xhci_dma_to_transfer_ring +ffffffff815d3d20 T xhci_stream_id_to_ring +ffffffff815d3d50 T xhci_setup_streams_ep_input_ctx +ffffffff815d3db0 T xhci_setup_no_streams_ep_input_ctx +ffffffff815d3de0 T xhci_alloc_tt_info +ffffffff815d3f30 T xhci_alloc_virt_device +ffffffff815d40f0 T xhci_copy_ep0_dequeue_into_input_ctx +ffffffff815d4150 T xhci_setup_addressable_virt_dev +ffffffff815d4430 T xhci_endpoint_init +ffffffff815d4900 T xhci_endpoint_zero +ffffffff815d4960 T xhci_clear_endpoint_bw_info +ffffffff815d4980 T xhci_update_bw_info +ffffffff815d4a80 T xhci_endpoint_copy +ffffffff815d4ae0 T xhci_slot_copy +ffffffff815d4b40 T xhci_alloc_command +ffffffff815d4c00 T xhci_alloc_command_with_ctx +ffffffff815d4c50 T xhci_urb_free_priv +ffffffff815d4c60 T xhci_free_command +ffffffff815d4c90 T xhci_alloc_stream_info +ffffffff815d4fa0 t xhci_free_stream_info.part.19 +ffffffff815d50a0 T xhci_free_stream_info +ffffffff815d50b0 t xhci_free_virt_device.part.20 +ffffffff815d51f0 T xhci_free_virt_device +ffffffff815d5200 T xhci_free_virt_devices_depth_first +ffffffff815d52f0 T xhci_alloc_erst +ffffffff815d5400 T xhci_free_erst +ffffffff815d5460 T xhci_mem_cleanup +ffffffff815d5930 T xhci_mem_init +ffffffff815d6ad0 t trace_xhci_dbg_quirks +ffffffff815d6ae0 t inc_enq +ffffffff815d6b90 t ring_doorbell_for_active_rings +ffffffff815d6c50 t xhci_td_remainder +ffffffff815d6cc0 t xhci_unmap_td_bounce_buffer.isra.19 +ffffffff815d6d90 t xhci_giveback_urb_in_irq.isra.20 +ffffffff815d6e20 t xhci_kill_ring_urbs +ffffffff815d6ee0 t xhci_td_cleanup +ffffffff815d6fd0 t prepare_ring +ffffffff815d7170 t prepare_transfer +ffffffff815d7280 t queue_command +ffffffff815d7410 t xhci_trb_virt_to_dma.part.26 +ffffffff815d7430 t trace_xhci_dbg_cancel_urb +ffffffff815d7440 t trace_xhci_dbg_ring_expansion +ffffffff815d7450 t trace_xhci_dbg_reset_ep +ffffffff815d7460 t sum_trb_lengths.isra.13 +ffffffff815d74b0 t td_to_noop.constprop.44 +ffffffff815d7530 t xhci_handle_stopped_cmd_ring +ffffffff815d7610 T xhci_trb_virt_to_dma +ffffffff815d7630 T inc_deq +ffffffff815d76d0 T xhci_ring_cmd_db +ffffffff815d76f0 T xhci_ring_ep_doorbell +ffffffff815d7730 T xhci_triad_to_transfer_ring +ffffffff815d77b0 T xhci_find_new_dequeue_state +ffffffff815d7a20 T xhci_cleanup_command_queue +ffffffff815d7ac0 t xhci_hc_died.part.36 +ffffffff815d7cc0 T xhci_hc_died +ffffffff815d7cd0 T xhci_stop_endpoint_command_watchdog +ffffffff815d7d70 T xhci_handle_command_timeout +ffffffff815d7ef0 T trb_in_td +ffffffff815d8080 T xhci_is_vendor_info_code +ffffffff815d8090 T count_trbs +ffffffff815d80b0 T xhci_queue_bulk_tx +ffffffff815d8880 T xhci_queue_intr_tx +ffffffff815d8930 T xhci_queue_ctrl_tx +ffffffff815d8bc0 T xhci_queue_isoc_tx_prepare +ffffffff815d9550 T xhci_queue_slot_control +ffffffff815d9570 T xhci_queue_address_device +ffffffff815d95a0 T xhci_queue_vendor_command +ffffffff815d95b0 T xhci_queue_reset_device +ffffffff815d95d0 T xhci_queue_configure_endpoint +ffffffff815d9600 T xhci_queue_evaluate_context +ffffffff815d9630 T xhci_queue_stop_endpoint +ffffffff815d9670 T xhci_queue_new_dequeue_state +ffffffff815d9860 t handle_cmd_completion +ffffffff815da440 T xhci_queue_reset_ep +ffffffff815da480 t xhci_cleanup_halted_endpoint.isra.39 +ffffffff815da540 t finish_td.isra.41 +ffffffff815da630 T xhci_irq +ffffffff815dbd30 T xhci_msi_irq +ffffffff815dbd40 t trace_xhci_dbg_quirks +ffffffff815dbd50 t xhci_get_ports +ffffffff815dbda0 t xhci_set_port_power +ffffffff815dbe40 t xhci_stop_device.constprop.7 +ffffffff815dc010 T xhci_port_state_to_neutral +ffffffff815dc020 T xhci_find_slot_id_by_port +ffffffff815dc070 T xhci_ring_device +ffffffff815dc120 T xhci_set_link_state +ffffffff815dc140 T xhci_test_and_clear_bit +ffffffff815dc160 T xhci_hub_control +ffffffff815ddb00 T xhci_hub_status_data +ffffffff815ddce0 T xhci_bus_suspend +ffffffff815ddfb0 T xhci_bus_resume +ffffffff815de3c0 T xhci_get_slot_state +ffffffff815de3f0 T xhci_dbg_trace +ffffffff815de440 t trace_xhci_dbg_quirks +ffffffff815de450 t xhci_ssic_port_unused_quirk +ffffffff815de510 t xhci_pme_quirk +ffffffff815de550 t xhci_pci_remove +ffffffff815de5c0 t xhci_pci_resume +ffffffff815de650 t xhci_pci_suspend +ffffffff815de710 t xhci_pci_quirks +ffffffff815deb50 t xhci_pci_setup +ffffffff815debe0 t xhci_pci_probe +ffffffff815dee10 t host_info +ffffffff815dee20 t write_info +ffffffff815dee30 t max_sectors_store +ffffffff815dee80 t max_sectors_show +ffffffff815deeb0 t show_info +ffffffff815df400 t target_alloc +ffffffff815df460 t slave_configure +ffffffff815df720 t slave_alloc +ffffffff815df760 t bus_reset +ffffffff815df780 t device_reset +ffffffff815df7c0 t command_abort +ffffffff815df840 t queuecommand +ffffffff815df8e0 T usb_stor_report_device_reset +ffffffff815df930 T usb_stor_report_bus_reset +ffffffff815df960 T usb_stor_host_template_init +ffffffff815dfa10 T usb_stor_pad12_command +ffffffff815dfa50 T usb_stor_ufi_command +ffffffff815dfad0 T usb_stor_transparent_scsi_command +ffffffff815dfae0 T usb_stor_access_xfer_buf +ffffffff815dfc00 T usb_stor_set_xfer_buf +ffffffff815dfc50 t usb_stor_blocking_completion +ffffffff815dfc60 t usb_stor_msg_common +ffffffff815dfd70 t last_sector_hacks.isra.0.part.1 +ffffffff815dfe40 T usb_stor_control_msg +ffffffff815dfef0 T usb_stor_clear_halt +ffffffff815dff60 t interpret_urb_result +ffffffff815dffb0 t usb_stor_bulk_transfer_sglist.part.3 +ffffffff815e0060 t usb_stor_reset_common.part.4 +ffffffff815e0140 T usb_stor_ctrl_transfer +ffffffff815e0200 T usb_stor_bulk_transfer_buf +ffffffff815e0290 T usb_stor_bulk_srb +ffffffff815e02e0 T usb_stor_bulk_transfer_sg +ffffffff815e0330 T usb_stor_stop_transport +ffffffff815e0370 T usb_stor_CB_transport +ffffffff815e05a0 T usb_stor_Bulk_max_lun +ffffffff815e0610 T usb_stor_Bulk_transport +ffffffff815e09b0 T usb_stor_CB_reset +ffffffff815e0a30 T usb_stor_Bulk_reset +ffffffff815e0a80 T usb_stor_port_reset +ffffffff815e0ae0 T usb_stor_invoke_transport +ffffffff815e0f90 T usb_stor_pre_reset +ffffffff815e0fa0 T usb_stor_suspend +ffffffff815e0fe0 T usb_stor_resume +ffffffff815e1020 T usb_stor_reset_resume +ffffffff815e1030 T usb_stor_post_reset +ffffffff815e1050 t usb_stor_scan_dwork +ffffffff815e10d0 t release_everything +ffffffff815e1170 T usb_stor_disconnect +ffffffff815e1220 t fill_inquiry_response.part.2 +ffffffff815e1450 t usb_stor_control_thread +ffffffff815e16e0 T fill_inquiry_response +ffffffff815e16f0 T usb_stor_adjust_quirks +ffffffff815e1880 T usb_stor_probe1 +ffffffff815e1de0 T usb_stor_probe2 +ffffffff815e2090 t storage_probe +ffffffff815e2110 T usb_stor_euscsi_init +ffffffff815e2140 T usb_stor_ucr61s2b_init +ffffffff815e21d0 T usb_stor_huawei_e220_init +ffffffff815e2200 t sierra_get_swoc_info +ffffffff815e2230 t truinst_show +ffffffff815e2320 t sierra_set_ms_mode.constprop.1 +ffffffff815e2360 T sierra_ms_init +ffffffff815e2450 T option_ms_init +ffffffff815e2660 T usb_usual_ignore_device +ffffffff815e26c0 T usb_otg_state_string +ffffffff815e26e0 T usb_speed_string +ffffffff815e2700 T usb_get_maximum_speed +ffffffff815e2740 T usb_state_string +ffffffff815e2760 T usb_get_dr_mode +ffffffff815e27a0 t input_to_handler +ffffffff815e2880 t input_default_getkeycode +ffffffff815e2900 t input_default_setkeycode +ffffffff815e2a40 t input_proc_devices_poll +ffffffff815e2a90 t devm_input_device_match +ffffffff815e2aa0 t input_seq_stop +ffffffff815e2ac0 t __input_release_device +ffffffff815e2b30 t input_dev_toggle +ffffffff815e2ce0 t input_dev_poweroff +ffffffff815e2d10 t input_dev_resume +ffffffff815e2d40 t input_devnode +ffffffff815e2d60 t input_dev_release +ffffffff815e2da0 t input_print_modalias_bits +ffffffff815e2e40 t input_print_modalias +ffffffff815e3010 t input_dev_show_modalias +ffffffff815e3040 t input_dev_show_id_version +ffffffff815e3070 t input_dev_show_id_product +ffffffff815e30a0 t input_dev_show_id_vendor +ffffffff815e30d0 t input_dev_show_id_bustype +ffffffff815e3100 t input_dev_show_uniq +ffffffff815e3130 t input_dev_show_phys +ffffffff815e3160 t input_dev_show_name +ffffffff815e3190 t devm_input_device_release +ffffffff815e31b0 t input_proc_handlers_open +ffffffff815e31c0 t input_proc_devices_open +ffffffff815e31d0 t input_handlers_seq_show +ffffffff815e3230 t input_handlers_seq_next +ffffffff815e3250 t input_devices_seq_next +ffffffff815e3260 t input_pass_values.part.1 +ffffffff815e33a0 t input_repeat_key +ffffffff815e3450 t input_dev_release_keys.part.2 +ffffffff815e3510 t input_dev_freeze +ffffffff815e3550 t input_dev_suspend +ffffffff815e35a0 t __input_unregister_device +ffffffff815e36e0 t devm_input_device_unregister +ffffffff815e36f0 t input_print_bitmap +ffffffff815e3800 t input_add_uevent_bm_var +ffffffff815e3880 t input_dev_uevent +ffffffff815e3bb0 t input_dev_show_cap_sw +ffffffff815e3bf0 t input_dev_show_cap_ff +ffffffff815e3c30 t input_dev_show_cap_snd +ffffffff815e3c70 t input_dev_show_cap_led +ffffffff815e3cb0 t input_dev_show_cap_msc +ffffffff815e3cf0 t input_dev_show_cap_abs +ffffffff815e3d30 t input_dev_show_cap_rel +ffffffff815e3d70 t input_dev_show_cap_key +ffffffff815e3db0 t input_dev_show_cap_ev +ffffffff815e3df0 t input_dev_show_properties +ffffffff815e3e30 t input_handlers_seq_start +ffffffff815e3e70 t input_devices_seq_start +ffffffff815e3eb0 t input_alloc_absinfo.part.7 +ffffffff815e3ed0 t input_seq_print_bitmap +ffffffff815e3fa0 t input_devices_seq_show +ffffffff815e42a0 T input_alloc_absinfo +ffffffff815e42c0 t input_handle_event +ffffffff815e4830 T input_event +ffffffff815e48a0 T input_inject_event +ffffffff815e4940 T input_set_abs_params +ffffffff815e49d0 T input_grab_device +ffffffff815e4a30 T input_release_device +ffffffff815e4a60 T input_open_device +ffffffff815e4b00 T input_flush_device +ffffffff815e4b60 T input_close_device +ffffffff815e4bc0 T input_scancode_to_scalar +ffffffff815e4bf0 T input_get_keycode +ffffffff815e4c40 T input_set_keycode +ffffffff815e4d10 T input_match_device_id +ffffffff815e4e70 t input_attach_handler +ffffffff815e4f20 T input_reset_device +ffffffff815e4f80 T input_allocate_device +ffffffff815e5050 T devm_input_allocate_device +ffffffff815e50c0 T input_free_device +ffffffff815e5110 T input_set_capability +ffffffff815e51e0 T input_enable_softrepeat +ffffffff815e5200 T input_register_device +ffffffff815e56a0 T input_unregister_device +ffffffff815e56f0 T input_register_handler +ffffffff815e57b0 T input_unregister_handler +ffffffff815e5850 T input_handler_for_each_handle +ffffffff815e58c0 T input_register_handle +ffffffff815e5980 T input_unregister_handle +ffffffff815e59e0 T input_get_new_minor +ffffffff815e5a30 T input_free_minor +ffffffff815e5a3e t input_proc_exit +ffffffff815e5a80 T input_event_from_user +ffffffff815e5aa0 T input_event_to_user +ffffffff815e5ac0 T input_ff_effect_from_user +ffffffff815e5af0 t adjust_dual +ffffffff815e5bc0 t copy_abs +ffffffff815e5c30 t __input_mt_drop_unused +ffffffff815e5ca0 T input_mt_init_slots +ffffffff815e5e60 T input_mt_destroy_slots +ffffffff815e5ea0 T input_mt_report_slot_state +ffffffff815e5f20 T input_mt_report_finger_count +ffffffff815e5fb0 T input_mt_report_pointer_emulation +ffffffff815e6130 T input_mt_drop_unused +ffffffff815e6150 T input_mt_sync_frame +ffffffff815e6190 T input_mt_assign_slots +ffffffff815e64c0 T input_mt_get_slot_by_key +ffffffff815e6540 t erase_effect +ffffffff815e6620 T input_ff_event +ffffffff815e66b0 T input_ff_flush +ffffffff815e6710 T input_ff_upload +ffffffff815e6940 T input_ff_erase +ffffffff815e69a0 T input_ff_create +ffffffff815e6af0 T input_ff_destroy +ffffffff815e6b40 t evdev_poll +ffffffff815e6ba0 t evdev_flush +ffffffff815e6c00 t evdev_cleanup +ffffffff815e6cb0 t evdev_disconnect +ffffffff815e6d00 t evdev_fasync +ffffffff815e6d10 t evdev_free +ffffffff815e6d40 t evdev_pass_values +ffffffff815e6f70 t __evdev_queue_syn_dropped +ffffffff815e7020 t str_to_user +ffffffff815e7070 t evdev_handle_get_keycode +ffffffff815e70f0 t evdev_handle_get_keycode_v2 +ffffffff815e7150 t evdev_handle_set_keycode +ffffffff815e71d0 t evdev_handle_set_keycode_v2 +ffffffff815e7210 t evdev_write +ffffffff815e7310 t evdev_read +ffffffff815e7540 t evdev_connect +ffffffff815e7700 t evdev_events +ffffffff815e77b0 t evdev_event +ffffffff815e77e0 t bits_to_user.isra.0 +ffffffff815e7810 t evdev_open +ffffffff815e79d0 t evdev_handle_get_val.isra.7 +ffffffff815e7b80 t evdev_ioctl +ffffffff815e8600 t evdev_release +ffffffff815e86f0 T rtc_month_days +ffffffff815e8750 T rtc_year_days +ffffffff815e87b0 T rtc_time64_to_tm +ffffffff815e89a0 T rtc_valid_tm +ffffffff815e8a40 T rtc_tm_to_time64 +ffffffff815e8a70 T rtc_tm_to_ktime +ffffffff815e8aa0 T rtc_ktime_to_tm +ffffffff815e8b00 T rtc_set_ntp_time +ffffffff815e8c10 t devm_rtc_device_match +ffffffff815e8c20 t rtc_device_release +ffffffff815e8c40 t rtc_allocate_device +ffffffff815e8da0 T rtc_device_register +ffffffff815e8f00 T rtc_device_unregister +ffffffff815e8f50 t devm_rtc_device_release +ffffffff815e8f60 t devm_rtc_release_device +ffffffff815e8f80 T devm_rtc_device_register +ffffffff815e9010 T devm_rtc_device_unregister +ffffffff815e9030 T devm_rtc_allocate_device +ffffffff815e90f0 T __rtc_register_device +ffffffff815e91b0 t __rtc_match +ffffffff815e91d0 t rtc_update_hrtimer +ffffffff815e9230 t __rtc_read_time.isra.1 +ffffffff815e92a0 t __rtc_set_alarm +ffffffff815e9340 t rtc_timer_enqueue +ffffffff815e94e0 t rtc_timer_remove +ffffffff815e95f0 T rtc_read_time +ffffffff815e9640 T rtc_set_time +ffffffff815e9730 T __rtc_read_alarm +ffffffff815e9a90 T rtc_read_alarm +ffffffff815e9b80 T rtc_set_alarm +ffffffff815e9c50 T rtc_initialize_alarm +ffffffff815e9d70 T rtc_alarm_irq_enable +ffffffff815e9e10 T rtc_update_irq_enable +ffffffff815e9f10 T rtc_handle_legacy_irq +ffffffff815e9fc0 T rtc_aie_update_irq +ffffffff815e9fd0 T rtc_uie_update_irq +ffffffff815e9fe0 T rtc_pie_update_irq +ffffffff815ea030 T rtc_update_irq +ffffffff815ea070 T rtc_class_open +ffffffff815ea090 T rtc_class_close +ffffffff815ea0a0 T rtc_irq_register +ffffffff815ea120 T rtc_irq_unregister +ffffffff815ea160 T rtc_irq_set_state +ffffffff815ea1f0 T rtc_irq_set_freq +ffffffff815ea2a0 T rtc_timer_do_work +ffffffff815ea4a0 T rtc_timer_init +ffffffff815ea4c0 T rtc_timer_start +ffffffff815ea520 T rtc_timer_cancel +ffffffff815ea560 T rtc_read_offset +ffffffff815ea5d0 T rtc_set_offset +ffffffff815ea640 t rtc_dev_open +ffffffff815ea690 t rtc_dev_poll +ffffffff815ea6e0 t rtc_dev_fasync +ffffffff815ea700 t rtc_dev_ioctl +ffffffff815eab70 t rtc_dev_release +ffffffff815eabb0 t rtc_dev_read +ffffffff815ead50 T rtc_dev_prepare +ffffffff815eada0 t rtc_proc_release +ffffffff815eadc0 t rtc_proc_open +ffffffff815eade0 t rtc_proc_show +ffffffff815eb0a0 T rtc_proc_add_device +ffffffff815eb0d0 T rtc_proc_del_device +ffffffff815eb0f0 t rtc_attr_is_visible +ffffffff815eb150 t offset_store +ffffffff815eb1a0 t offset_show +ffffffff815eb1e0 t max_user_freq_show +ffffffff815eb200 t time_show +ffffffff815eb240 t date_show +ffffffff815eb290 t since_epoch_show +ffffffff815eb2d0 t wakealarm_show +ffffffff815eb320 t wakealarm_store +ffffffff815eb480 t hctosys_show +ffffffff815eb4a0 t max_user_freq_store +ffffffff815eb4f0 t name_show +ffffffff815eb530 T rtc_get_dev_attribute_groups +ffffffff815eb540 T mc146818_get_time +ffffffff815eb6d0 T mc146818_set_time +ffffffff815eb900 t rtc_wake_off +ffffffff815eb910 t rtc_wake_on +ffffffff815eb930 t cmos_nvram_read +ffffffff815eb9b0 t cmos_nvram_write +ffffffff815eba50 t rtc_handler +ffffffff815ebb00 t cmos_checkintr +ffffffff815ebb50 t cmos_interrupt +ffffffff815ebc30 t cmos_irq_disable +ffffffff815ebc70 t cmos_do_shutdown +ffffffff815ebcb0 t cmos_procfs +ffffffff815ebda0 t cmos_read_alarm +ffffffff815ebf30 t cmos_set_time +ffffffff815ebf40 t cmos_read_time +ffffffff815ebf50 t cmos_validate_alarm +ffffffff815ec0d0 t cmos_do_probe +ffffffff815ec480 t cmos_suspend +ffffffff815ec570 t cmos_do_remove +ffffffff815ec5f0 t cmos_platform_remove +ffffffff815ec600 t cmos_pnp_remove +ffffffff815ec610 t cmos_wake_setup.part.0 +ffffffff815ec6d0 t cmos_pnp_probe +ffffffff815ec770 t cmos_irq_enable.constprop.1 +ffffffff815ec7c0 t cmos_set_alarm +ffffffff815ec950 t cmos_resume +ffffffff815ecb00 t cmos_aie_poweroff +ffffffff815ecbb0 t cmos_platform_shutdown +ffffffff815ecc00 t cmos_pnp_shutdown +ffffffff815ecc50 t cmos_alarm_irq_enable +ffffffff815eccb0 T i2c_register_board_info +ffffffff815ece30 t get_scl_gpio_value +ffffffff815ece40 t set_scl_gpio_value +ffffffff815ece50 t dummy_probe +ffffffff815ece60 T i2c_generic_scl_recovery +ffffffff815ecfe0 t i2c_client_dev_release +ffffffff815ecff0 t show_name +ffffffff815ed020 t i2c_adapter_dev_release +ffffffff815ed030 t i2c_default_probe +ffffffff815ed130 t i2c_adapter_unlock_bus +ffffffff815ed140 t i2c_adapter_trylock_bus +ffffffff815ed150 t i2c_adapter_lock_bus +ffffffff815ed160 t i2c_host_notify_irq_map +ffffffff815ed180 t i2c_device_uevent +ffffffff815ed1c0 t show_modalias +ffffffff815ed200 t i2c_quirk_error +ffffffff815ed260 t i2c_match_id.part.6 +ffffffff815ed2a0 t i2c_device_match +ffffffff815ed300 t i2c_device_shutdown +ffffffff815ed340 t i2c_device_remove +ffffffff815ed3b0 t i2c_device_probe +ffffffff815ed5d0 t i2c_check_mux_children +ffffffff815ed630 t i2c_cmd +ffffffff815ed670 t i2c_do_add_adapter.part.13 +ffffffff815ed6b0 t i2c_unregister_device.part.15 +ffffffff815ed700 t i2c_sysfs_delete_device +ffffffff815ed8c0 t i2c_do_del_adapter +ffffffff815ed970 t __process_removed_adapter +ffffffff815ed980 t __process_removed_driver +ffffffff815ed9a0 t __unregister_dummy +ffffffff815ed9c0 t __unregister_client +ffffffff815eda00 t dummy_remove +ffffffff815eda10 t get_sda_gpio_value +ffffffff815eda20 T i2c_transfer_trace_reg +ffffffff815eda30 T i2c_transfer_trace_unreg +ffffffff815eda40 T i2c_match_id +ffffffff815eda60 T i2c_recover_bus +ffffffff815eda80 T i2c_verify_client +ffffffff815edaa0 T i2c_check_addr_validity +ffffffff815edad0 T i2c_check_7bit_addr_validity_strict +ffffffff815edae0 T i2c_new_device +ffffffff815ede00 t i2c_sysfs_new_device +ffffffff815ee040 t i2c_detect +ffffffff815ee290 t __process_new_driver +ffffffff815ee2d0 t __process_new_adapter +ffffffff815ee310 t i2c_register_adapter +ffffffff815ee670 T i2c_unregister_device +ffffffff815ee680 T i2c_new_dummy +ffffffff815ee6e0 T i2c_new_secondary_device +ffffffff815ee6f0 T i2c_adapter_depth +ffffffff815ee700 T i2c_verify_adapter +ffffffff815ee720 T i2c_handle_smbus_host_notify +ffffffff815ee750 T i2c_add_adapter +ffffffff815ee7b0 T i2c_add_numbered_adapter +ffffffff815ee820 T i2c_del_adapter +ffffffff815eea50 T i2c_parse_fw_timings +ffffffff815eeb60 T i2c_for_each_dev +ffffffff815eeba0 T i2c_register_driver +ffffffff815eec00 T i2c_del_driver +ffffffff815eec20 T i2c_use_client +ffffffff815eec50 T i2c_release_client +ffffffff815eec60 T i2c_clients_command +ffffffff815eec90 T __i2c_transfer +ffffffff815eeeb0 T i2c_transfer +ffffffff815eef50 T i2c_transfer_buffer_flags +ffffffff815eefa0 T i2c_probe_func_quick_read +ffffffff815eefc0 T i2c_new_probed_device +ffffffff815ef0a0 T i2c_get_adapter +ffffffff815ef0e0 T i2c_put_adapter +ffffffff815ef0f0 T i2c_get_dma_safe_msg_buf +ffffffff815ef130 T i2c_release_dma_safe_msg_buf +ffffffff815ef170 t i2c_smbus_msg_pec +ffffffff815ef1e0 t i2c_smbus_try_get_dmabuf +ffffffff815ef220 t i2c_smbus_xfer_emulated +ffffffff815ef8d0 T i2c_smbus_xfer +ffffffff815efa20 T i2c_smbus_read_byte +ffffffff815efa60 T i2c_smbus_write_byte +ffffffff815efa90 T i2c_smbus_read_byte_data +ffffffff815efad0 T i2c_smbus_write_byte_data +ffffffff815efb10 T i2c_smbus_read_word_data +ffffffff815efb50 T i2c_smbus_write_word_data +ffffffff815efb90 T i2c_smbus_read_block_data +ffffffff815efc40 T i2c_smbus_write_block_data +ffffffff815efd20 T i2c_smbus_read_i2c_block_data +ffffffff815efdf0 T i2c_smbus_write_i2c_block_data +ffffffff815efed0 T i2c_smbus_read_i2c_block_data_or_emulated +ffffffff815f0010 T i2c_setup_smbus_alert +ffffffff815f0080 t i2c_acpi_find_match_device +ffffffff815f00b0 t i2c_acpi_do_lookup +ffffffff815f01e0 t i2c_acpi_get_info +ffffffff815f0370 t i2c_acpi_fill_info +ffffffff815f03f0 t i2c_acpi_find_adapter_by_handle +ffffffff815f0420 t i2c_acpi_lookup_speed +ffffffff815f0470 t i2c_acpi_register_device +ffffffff815f04d0 t i2c_acpi_add_device +ffffffff815f0520 t i2c_acpi_find_match_adapter +ffffffff815f0570 t i2c_acpi_notify.part.3 +ffffffff815f05c0 t i2c_acpi_notify +ffffffff815f0640 T i2c_acpi_register_devices +ffffffff815f06a0 T i2c_acpi_match_device +ffffffff815f06c0 T i2c_acpi_find_bus_speed +ffffffff815f07a0 T i2c_acpi_new_device +ffffffff815f0880 t smbalert_remove +ffffffff815f0890 t smbus_alert +ffffffff815f0910 t smbalert_work +ffffffff815f0920 t smbus_do_alert +ffffffff815f09b0 t smbalert_probe +ffffffff815f0a70 T i2c_handle_smbus_alert +ffffffff815f0a90 t bit_func +ffffffff815f0aa0 t i2c_start +ffffffff815f0ae0 t sclhi +ffffffff815f0b60 t i2c_repstart +ffffffff815f0bd0 t i2c_outb +ffffffff815f0cd0 t i2c_stop +ffffffff815f0d20 t acknak +ffffffff815f0da0 t try_address +ffffffff815f0e10 t __i2c_bit_add_bus +ffffffff815f11f0 t bit_xfer +ffffffff815f16f0 T i2c_bit_add_bus +ffffffff815f1700 T i2c_bit_add_numbered_bus +ffffffff815f1710 t i801_func +ffffffff815f1750 t i801_enable_host_notify +ffffffff815f17b0 t i801_resume +ffffffff815f17c0 t i801_suspend +ffffffff815f17f0 t i801_acpi_io_handler +ffffffff815f18b0 t i801_acpi_remove +ffffffff815f1940 t i801_remove +ffffffff815f19b0 t i801_add_tco +ffffffff815f1c40 t i801_probe +ffffffff815f22c0 t i801_check_pre +ffffffff815f23d0 t i801_isr +ffffffff815f2600 t i801_wait_intr.isra.5 +ffffffff815f2650 t i801_check_post +ffffffff815f27d0 t i801_transaction +ffffffff815f2910 t dmi_check_onboard_devices +ffffffff815f2a40 t i801_access +ffffffff815f3560 t __power_supply_is_system_supplied +ffffffff815f35b0 t power_supply_read_temp +ffffffff815f3600 t ps_get_max_charge_cntl_limit +ffffffff815f3650 t ps_get_cur_chrage_cntl_limit +ffffffff815f36a0 t ps_set_cur_charge_cntl_limit +ffffffff815f36d0 t power_supply_match_device_by_name +ffffffff815f36f0 t power_supply_changed_work +ffffffff815f3790 t power_supply_dev_release +ffffffff815f37a0 t __power_supply_register +ffffffff815f3af0 t __power_supply_is_supplied_by +ffffffff815f3b90 t __power_supply_am_i_supplied +ffffffff815f3bf0 t __power_supply_get_supplier_max_current +ffffffff815f3c40 t __power_supply_changed_work +ffffffff815f3c80 T power_supply_changed +ffffffff815f3cd0 t power_supply_deferred_register_work +ffffffff815f3d20 T power_supply_am_i_supplied +ffffffff815f3d60 T power_supply_is_system_supplied +ffffffff815f3da0 T power_supply_set_input_current_limit_from_supplier +ffffffff815f3e10 T power_supply_set_battery_charged +ffffffff815f3e40 T power_supply_get_by_name +ffffffff815f3e70 T power_supply_put +ffffffff815f3e80 T power_supply_get_battery_info +ffffffff815f3ed0 T power_supply_get_property +ffffffff815f3f00 T power_supply_set_property +ffffffff815f3f30 T power_supply_property_is_writeable +ffffffff815f3f60 T power_supply_external_power_changed +ffffffff815f3f80 T power_supply_powers +ffffffff815f3fa0 T power_supply_reg_notifier +ffffffff815f3fb0 T power_supply_unreg_notifier +ffffffff815f3fc0 T power_supply_register +ffffffff815f3fd0 T power_supply_register_no_ws +ffffffff815f3fe0 T devm_power_supply_register +ffffffff815f4070 T devm_power_supply_register_no_ws +ffffffff815f4100 T power_supply_unregister +ffffffff815f4190 t devm_power_supply_release +ffffffff815f41a0 T power_supply_get_drvdata +ffffffff815f41b0 t power_supply_attr_is_visible +ffffffff815f4210 t power_supply_store_property +ffffffff815f4320 t power_supply_show_property +ffffffff815f4520 T power_supply_init_attrs +ffffffff815f4550 T power_supply_uevent +ffffffff815f4700 t thermal_set_governor +ffffffff815f47a0 t __find_governor.part.3 +ffffffff815f47f0 t thermal_zone_device_set_polling +ffffffff815f4840 t handle_thermal_trip +ffffffff815f49c0 t thermal_release +ffffffff815f4a20 t thermal_zone_device_update.part.7 +ffffffff815f4ac0 t thermal_zone_device_check +ffffffff815f4af0 t thermal_pm_notify +ffffffff815f4bd0 T thermal_register_governor +ffffffff815f4d40 T thermal_unregister_governor +ffffffff815f4e40 T thermal_zone_device_set_policy +ffffffff815f4ec0 T thermal_build_list_of_policies +ffffffff815f4f60 T thermal_zone_device_update +ffffffff815f4f80 T thermal_notify_framework +ffffffff815f4f90 T power_actor_get_max_power +ffffffff815f4fc0 T power_actor_get_min_power +ffffffff815f5030 T power_actor_set_power +ffffffff815f50c0 T thermal_zone_bind_cooling_device +ffffffff815f5500 T thermal_zone_device_rebind_exception +ffffffff815f5590 t __bind +ffffffff815f5640 t __thermal_cooling_device_register +ffffffff815f59c0 T thermal_zone_unbind_cooling_device +ffffffff815f5b20 T thermal_zone_device_unbind_exception +ffffffff815f5bb0 t __unbind +ffffffff815f5c00 T thermal_cooling_device_register +ffffffff815f5c10 T thermal_of_cooling_device_register +ffffffff815f5c20 T thermal_cooling_device_unregister +ffffffff815f5da0 T thermal_zone_device_register +ffffffff815f6310 T thermal_zone_device_unregister +ffffffff815f64e0 T thermal_zone_get_zone_by_name +ffffffff815f65a0 T thermal_generate_netlink_event +ffffffff815f66f0 t thermal_zone_mode_is_visible +ffffffff815f6710 t thermal_zone_passive_is_visible +ffffffff815f6780 t thermal_cooling_device_cur_state_store +ffffffff815f67f0 t passive_store +ffffffff815f68c0 t passive_show +ffffffff815f68e0 t mode_show +ffffffff815f6940 t offset_show +ffffffff815f6970 t slope_show +ffffffff815f69a0 t integral_cutoff_show +ffffffff815f69d0 t k_d_show +ffffffff815f6a00 t k_i_show +ffffffff815f6a30 t k_pu_show +ffffffff815f6a60 t k_po_show +ffffffff815f6a90 t sustainable_power_show +ffffffff815f6ac0 t policy_show +ffffffff815f6ae0 t type_show +ffffffff815f6b00 t trip_point_hyst_show +ffffffff815f6ba0 t trip_point_temp_show +ffffffff815f6c30 t thermal_cooling_device_cur_state_show +ffffffff815f6c80 t thermal_cooling_device_max_state_show +ffffffff815f6cc0 t thermal_cooling_device_type_show +ffffffff815f6ce0 t mode_store +ffffffff815f6d60 t offset_store +ffffffff815f6dc0 t slope_store +ffffffff815f6e20 t integral_cutoff_store +ffffffff815f6e80 t k_d_store +ffffffff815f6ee0 t k_i_store +ffffffff815f6f40 t k_pu_store +ffffffff815f6fa0 t k_po_store +ffffffff815f7000 t trip_point_temp_store +ffffffff815f70b0 t sustainable_power_store +ffffffff815f7110 t available_policies_show +ffffffff815f7120 t policy_store +ffffffff815f7170 t temp_show +ffffffff815f71b0 t trip_point_hyst_store +ffffffff815f7250 t trip_point_type_show +ffffffff815f7390 T thermal_zone_create_device_groups +ffffffff815f77a0 T thermal_zone_destroy_device_groups +ffffffff815f7810 T thermal_cooling_device_setup_sysfs +ffffffff815f7820 T thermal_cooling_device_trip_point_show +ffffffff815f7850 T thermal_cooling_device_weight_show +ffffffff815f7870 T thermal_cooling_device_weight_store +ffffffff815f78b0 T get_tz_trend +ffffffff815f7910 T get_thermal_instance +ffffffff815f79b0 T thermal_zone_get_temp +ffffffff815f7a20 T thermal_zone_set_trips +ffffffff815f7b60 T thermal_cdev_update +ffffffff815f7bf0 T thermal_zone_get_slope +ffffffff815f7c10 T thermal_zone_get_offset +ffffffff815f7c30 t thermal_zone_trip_update +ffffffff815f7f00 t step_wise_throttle +ffffffff815f7f80 T thermal_gov_step_wise_register +ffffffff815f7f90 T thermal_gov_step_wise_unregister +ffffffff815f7fa0 t pch_wpt_get_temp +ffffffff815f7fc0 t pch_thermal_get_temp +ffffffff815f7fe0 t pch_get_trip_type +ffffffff815f8020 t pch_get_trip_temp +ffffffff815f8060 t intel_pch_thermal_suspend +ffffffff815f8080 t intel_pch_thermal_resume +ffffffff815f80a0 t intel_pch_thermal_remove +ffffffff815f80e0 t pch_wpt_init +ffffffff815f8230 t intel_pch_thermal_probe +ffffffff815f83c0 t pch_wpt_suspend +ffffffff815f83e0 t pch_wpt_resume +ffffffff815f8400 t hci_uart_open +ffffffff815f8410 t hci_uart_tty_read +ffffffff815f8420 t hci_uart_tty_poll +ffffffff815f8430 t hci_uart_tty_receive +ffffffff815f8550 t hci_uart_tty_ioctl +ffffffff815f87c0 t hci_uart_init_work +ffffffff815f8820 t hci_uart_flush +ffffffff815f88f0 t hci_uart_close +ffffffff815f8910 t hci_uart_tty_close +ffffffff815f89c0 t hci_uart_write_work +ffffffff815f8b70 t hci_uart_tty_open +ffffffff815f8c40 t hci_uart_tty_write +ffffffff815f8c50 T hci_uart_register_proto +ffffffff815f8c90 T hci_uart_unregister_proto +ffffffff815f8cc0 T hci_uart_tx_wakeup +ffffffff815f8d80 t hci_uart_tty_wakeup +ffffffff815f8db0 t hci_uart_send_frame +ffffffff815f8ea0 T hci_uart_init_ready +ffffffff815f8ed0 T hci_uart_set_flow_control +ffffffff815f9030 T hci_uart_set_speeds +ffffffff815f9040 T hci_uart_set_baudrate +ffffffff815f90c0 t hci_uart_setup +ffffffff815f91b0 t h4_dequeue +ffffffff815f91c0 t h4_enqueue +ffffffff815f91f0 t h4_flush +ffffffff815f9210 t h4_close +ffffffff815f9250 t h4_open +ffffffff815f9290 T h4_recv_buf +ffffffff815f9580 t h4_recv +ffffffff815f9600 t alloc_bulk_urb +ffffffff815f96a0 t alloc_isoc_urb +ffffffff815f9820 t btusb_bulk_complete +ffffffff815f9910 t btusb_recv_intr +ffffffff815f9a60 t btusb_intr_complete +ffffffff815f9b40 t alloc_ctrl_urb +ffffffff815f9c10 t btusb_submit_intr_urb +ffffffff815f9d80 t btusb_submit_bulk_urb +ffffffff815f9eb0 t btusb_submit_isoc_urb +ffffffff815fa0d0 t btusb_isoc_complete +ffffffff815fa3b0 t btusb_recv_bulk +ffffffff815fa500 t btusb_recv_bulk_intel +ffffffff815fa520 t btusb_tx_complete +ffffffff815fa5a0 t btusb_isoc_tx_complete +ffffffff815fa5f0 t submit_tx_urb +ffffffff815fa690 t btusb_notify +ffffffff815fa6d0 t submit_or_queue_tx_urb +ffffffff815fa760 t btusb_resume +ffffffff815fa9b0 t btusb_stop_traffic +ffffffff815fa9f0 t btusb_flush +ffffffff815faa70 t btusb_suspend +ffffffff815fab50 t btusb_disconnect +ffffffff815fac60 t btusb_send_frame +ffffffff815facf0 t btusb_setup_csr +ffffffff815fada0 t btusb_set_bdaddr_ath3012 +ffffffff815fae20 t btusb_set_bdaddr_marvell +ffffffff815faea0 t btusb_shutdown_intel +ffffffff815faf00 t btusb_setup_bcm92035 +ffffffff815faf60 t btusb_setup_intel_new +ffffffff815fb470 t btusb_close +ffffffff815fb550 t btusb_waker +ffffffff815fb570 t btusb_work +ffffffff815fb930 t btusb_diag_complete +ffffffff815fba50 t btusb_probe +ffffffff815fc350 t btusb_setup_qca_download_fw.isra.1 +ffffffff815fc5a0 t btusb_setup_intel +ffffffff815fcaf0 t btusb_recv_event_intel +ffffffff815fcba0 t btusb_send_frame_intel +ffffffff815fcd30 t btusb_open +ffffffff815fcf40 t btusb_setup_qca +ffffffff815fd2f0 t regmap_ibt_free_context +ffffffff815fd300 t regmap_ibt_read +ffffffff815fd430 t regmap_ibt_gather_write +ffffffff815fd540 t regmap_ibt_write +ffffffff815fd560 T btintel_check_bdaddr +ffffffff815fd630 T btintel_enter_mfg +ffffffff815fd690 T btintel_exit_mfg +ffffffff815fd710 T btintel_set_bdaddr +ffffffff815fd770 T btintel_hw_error +ffffffff815fd860 T btintel_version_info +ffffffff815fd8c0 T btintel_secure_send +ffffffff815fd9d0 T btintel_load_ddc_config +ffffffff815fdae0 T btintel_set_event_mask +ffffffff815fdb50 T btintel_set_diag +ffffffff815fdbe0 T btintel_set_diag_mfg +ffffffff815fdc20 T btintel_set_event_mask_mfg +ffffffff815fdc60 T btintel_read_version +ffffffff815fdd00 T btintel_regmap_init +ffffffff815fdd80 T btintel_send_intel_reset +ffffffff815fddf0 T btintel_read_boot_params +ffffffff815fdfa0 T btintel_download_firmware +ffffffff815fe120 t _edac_mc_free +ffffffff815fe200 t edac_report_get +ffffffff815fe250 t edac_report_set +ffffffff815fe2f0 t edac_mc_workq_function +ffffffff815fe360 T edac_get_report_status +ffffffff815fe370 T edac_set_report_status +ffffffff815fe380 T edac_dimm_info_location +ffffffff815fe410 T edac_align_ptr +ffffffff815fe470 T edac_mc_alloc +ffffffff815fea10 T edac_mc_free +ffffffff815fea20 T edac_has_mcs +ffffffff815fea50 T find_mci_by_dev +ffffffff815feab0 T edac_mc_reset_delay_period +ffffffff815feb20 T edac_mc_find +ffffffff815feb80 T edac_get_owner +ffffffff815feb90 T edac_mc_add_mc_with_groups +ffffffff815feec0 T edac_mc_del_mc +ffffffff815fefe0 T edac_mc_find_csrow_by_page +ffffffff815ff080 T edac_raw_mc_handle_error +ffffffff815ff520 T edac_mc_handle_error +ffffffff815ff9c0 t edac_device_workq_function +ffffffff815ffa40 T edac_device_alloc_ctl_info +ffffffff815ffd50 T edac_device_free_ctl_info +ffffffff815ffd60 T edac_device_reset_delay_period +ffffffff815ffda0 T edac_device_alloc_index +ffffffff815ffdb0 T edac_device_add_device +ffffffff81600000 T edac_device_del_device +ffffffff816000e0 T edac_device_handle_ce +ffffffff81600190 T edac_device_handle_ue +ffffffff81600290 t edac_set_poll_msec +ffffffff816002f0 t dimm_attr_release +ffffffff81600300 t mci_sdram_scrub_rate_store +ffffffff81600370 t mci_sdram_scrub_rate_show +ffffffff816003c0 t mci_max_location_show +ffffffff81600440 t mci_ce_count_show +ffffffff81600460 t mci_ue_count_show +ffffffff81600480 t mci_ce_noinfo_show +ffffffff816004a0 t mci_ue_noinfo_show +ffffffff816004c0 t mci_seconds_show +ffffffff81600500 t mci_size_mb_show +ffffffff81600570 t mci_ctl_name_show +ffffffff81600590 t dimmdev_ue_count_show +ffffffff81600630 t dimmdev_ce_count_show +ffffffff816006d0 t dimmdev_edac_mode_show +ffffffff81600700 t dimmdev_dev_type_show +ffffffff81600730 t dimmdev_mem_type_show +ffffffff81600760 t dimmdev_size_show +ffffffff81600780 t mci_reset_counters_store +ffffffff81600880 t dimmdev_location_show +ffffffff81600890 t dimmdev_label_store +ffffffff81600900 t mci_attr_is_visible +ffffffff81600930 t dimmdev_label_show +ffffffff81600970 t mc_attr_release +ffffffff81600980 t mci_attr_release +ffffffff81600990 T edac_mc_get_log_ue +ffffffff816009a0 T edac_mc_get_log_ce +ffffffff816009b0 T edac_mc_get_panic_on_ue +ffffffff816009c0 T edac_mc_get_poll_msec +ffffffff816009d0 T edac_create_sysfs_mci_device +ffffffff81600bf0 T edac_remove_sysfs_mci_device +ffffffff81600c30 T edac_unregister_sysfs +ffffffff81600c60 T edac_mc_sysfs_exit +ffffffff81600c70 T edac_op_state_to_string +ffffffff81600cd0 T edac_get_sysfs_subsys +ffffffff81600ce0 t edac_dev_ctl_info_show +ffffffff81600d00 t edac_dev_ctl_info_store +ffffffff81600d30 t edac_dev_instance_show +ffffffff81600d50 t edac_dev_instance_store +ffffffff81600d80 t edac_dev_block_show +ffffffff81600da0 t edac_dev_block_store +ffffffff81600dc0 t edac_device_ctl_log_ce_store +ffffffff81600df0 t edac_device_ctl_log_ue_store +ffffffff81600e20 t edac_device_ctl_panic_on_ue_store +ffffffff81600e50 t edac_device_ctl_poll_msec_store +ffffffff81600e80 t edac_device_ctl_poll_msec_show +ffffffff81600ea0 t edac_device_ctl_log_ce_show +ffffffff81600ec0 t edac_device_ctl_log_ue_show +ffffffff81600ee0 t edac_device_ctl_panic_on_ue_show +ffffffff81600f00 t instance_ue_count_show +ffffffff81600f20 t instance_ce_count_show +ffffffff81600f40 t block_ue_count_show +ffffffff81600f60 t block_ce_count_show +ffffffff81600f80 t edac_device_ctrl_master_release +ffffffff81600f90 t edac_device_ctrl_instance_release +ffffffff81600fa0 t edac_device_ctrl_block_release +ffffffff81600fc0 t edac_device_remove_main_sysfs_attributes +ffffffff81601000 t edac_device_delete_block.isra.0 +ffffffff81601050 t edac_device_delete_instance.isra.1 +ffffffff81601090 T edac_device_register_sysfs_main_kobj +ffffffff81601120 T edac_device_unregister_sysfs_main_kobj +ffffffff81601130 T edac_device_create_sysfs +ffffffff81601450 T edac_device_remove_sysfs +ffffffff816014a0 T edac_queue_work +ffffffff816014c0 T edac_mod_work +ffffffff816014e0 T edac_stop_work +ffffffff81601500 T edac_workqueue_setup +ffffffff81601530 T edac_workqueue_teardown +ffffffff81601560 t edac_pci_generic_check +ffffffff81601570 t edac_pci_workq_function +ffffffff816015f0 T edac_pci_alloc_ctl_info +ffffffff81601690 T edac_pci_free_ctl_info +ffffffff816016a0 T edac_pci_alloc_index +ffffffff816016b0 T edac_pci_add_device +ffffffff816018d0 T edac_pci_del_device +ffffffff816019a0 T edac_pci_create_generic_ctl +ffffffff81601a50 T edac_pci_release_generic_ctl +ffffffff81601a70 t edac_pci_instance_show +ffffffff81601a90 t edac_pci_instance_store +ffffffff81601ac0 t edac_pci_dev_show +ffffffff81601ae0 t edac_pci_dev_store +ffffffff81601b10 t edac_pci_release_main_kobj +ffffffff81601b20 t edac_pci_int_show +ffffffff81601b40 t instance_npe_count_show +ffffffff81601b60 t instance_pe_count_show +ffffffff81601b80 t edac_pci_int_store +ffffffff81601bb0 t edac_pci_instance_release +ffffffff81601bd0 t get_pci_parity_status +ffffffff81601c50 t edac_pci_main_kobj_teardown +ffffffff81601c70 t edac_pci_do_parity_check.part.1 +ffffffff81601e80 T edac_pci_get_check_errors +ffffffff81601e90 T edac_pci_get_poll_msec +ffffffff81601ea0 T edac_pci_create_sysfs +ffffffff81602010 T edac_pci_remove_sysfs +ffffffff81602040 T edac_pci_do_parity_check +ffffffff81602060 T edac_pci_clear_parity_errors +ffffffff816020c0 T edac_pci_handle_pe +ffffffff81602100 T edac_pci_handle_npe +ffffffff81602140 t rir_limit +ffffffff81602160 t sad_limit +ffffffff81602180 t interleave_mode +ffffffff81602190 t dram_attr +ffffffff816021a0 t knl_sad_limit +ffffffff816021c0 t knl_interleave_mode +ffffffff816021d0 t dram_attr_knl +ffffffff816021e0 t knl_get_width +ffffffff816021f0 t sbridge_get_width +ffffffff81602200 t ibridge_get_width +ffffffff81602230 t broadwell_get_width +ffffffff81602260 t knl_get_memory_type +ffffffff81602270 t haswell_rir_limit +ffffffff81602290 t knl_get_node_id +ffffffff816022c0 t knl_get_tohm +ffffffff81602310 t knl_get_tolm +ffffffff81602340 t haswell_get_node_id +ffffffff81602370 t haswell_get_memory_type +ffffffff816023f0 t haswell_get_tohm +ffffffff81602450 t haswell_get_tolm +ffffffff81602480 t sbridge_get_tohm +ffffffff816024c0 t sbridge_get_tolm +ffffffff816024f0 t get_node_id +ffffffff81602520 t get_memory_type +ffffffff81602560 t ibridge_get_tohm +ffffffff816025a0 t ibridge_get_tolm +ffffffff816025d0 t sbridge_mce_check_error +ffffffff81602701 t knl_get_mc_route +ffffffff81602766 t knl_show_edc_route +ffffffff816027bd t knl_show_mc_route +ffffffff816027f1 t get_source_id.isra.2 +ffffffff81602850 t sbridge_mce_output_error +ffffffff81603489 t sbridge_unregister_mci.isra.8 +ffffffff816034d9 t sbridge_put_all_devices +ffffffff81603560 t knl_get_dimm_capacity.constprop.14 +ffffffff81603980 t cpufreq_notify_transition +ffffffff81603a40 t show_scaling_driver +ffffffff81603a60 t show_scaling_available_governors +ffffffff81603b30 t show +ffffffff81603b80 t find_governor +ffffffff81603bd0 t store_scaling_setspeed +ffffffff81603c40 t show_boost +ffffffff81603c70 t show_scaling_max_freq +ffffffff81603c90 t show_scaling_min_freq +ffffffff81603cb0 t show_cpuinfo_transition_latency +ffffffff81603cd0 t show_cpuinfo_max_freq +ffffffff81603cf0 t show_cpuinfo_min_freq +ffffffff81603d10 t show_bios_limit +ffffffff81603d80 t store +ffffffff81603e00 t cpufreq_sysfs_release +ffffffff81603e10 t add_cpu_dev_symlink +ffffffff81603e70 t cpufreq_policy_free +ffffffff81603f50 t cpufreq_exit_governor.part.1 +ffffffff81603f70 t cpufreq_stop_governor.part.2 +ffffffff81603f90 T cpufreq_suspend +ffffffff816040a0 t cpufreq_governor_limits.part.3 +ffffffff816040c0 t cpufreq_boost_set_sw +ffffffff81604170 t create_boost_sysfs_file +ffffffff816041b0 t remove_boost_sysfs_file +ffffffff816041e0 t show_scaling_setspeed +ffffffff81604220 t show_scaling_governor +ffffffff816042a0 t cpufreq_parse_governor.isra.8 +ffffffff81604370 t cpufreq_boost_trigger_state.part.17 +ffffffff81604420 t store_boost +ffffffff816044b0 T disable_cpufreq +ffffffff816044c0 T have_governor_per_policy +ffffffff816044e0 T get_governor_parent_kobj +ffffffff81604500 T get_cpu_idle_time +ffffffff816045d0 W arch_set_freq_scale +ffffffff816045e0 T cpufreq_generic_init +ffffffff81604620 T cpufreq_cpu_get_raw +ffffffff81604650 T cpufreq_generic_get +ffffffff816046d0 T cpufreq_cpu_get +ffffffff81604760 T cpufreq_cpu_put +ffffffff81604770 T cpufreq_freq_transition_begin +ffffffff81604830 T cpufreq_freq_transition_end +ffffffff816048b0 t cpufreq_out_of_sync +ffffffff816048e0 t __cpufreq_get +ffffffff81604960 t show_cpuinfo_cur_freq +ffffffff816049b0 t cpufreq_update_current_freq +ffffffff81604a20 t cpufreq_start_governor +ffffffff81604a90 t cpufreq_offline +ffffffff81604c40 t cpuhp_cpufreq_offline +ffffffff81604c50 t cpufreq_remove_dev +ffffffff81604cc0 T cpufreq_enable_fast_switch +ffffffff81604d60 T cpufreq_disable_fast_switch +ffffffff81604da0 T cpufreq_driver_resolve_freq +ffffffff81604ef0 T cpufreq_policy_transition_delay_us +ffffffff81604f40 t show_scaling_cur_freq +ffffffff81604fb0 T cpufreq_show_cpus +ffffffff81605050 t show_related_cpus +ffffffff81605060 t show_affected_cpus +ffffffff81605080 T cpufreq_quick_get +ffffffff81605100 T cpufreq_quick_get_max +ffffffff81605120 T cpufreq_get +ffffffff81605170 T cpufreq_resume +ffffffff81605290 T cpufreq_get_current_driver +ffffffff816052a0 T cpufreq_get_driver_data +ffffffff816052c0 T cpufreq_register_notifier +ffffffff81605350 T cpufreq_unregister_notifier +ffffffff816053d0 T cpufreq_driver_fast_switch +ffffffff816053f0 T __cpufreq_driver_target +ffffffff81605920 T cpufreq_generic_suspend +ffffffff81605960 T cpufreq_driver_target +ffffffff816059a0 W cpufreq_fallback_governor +ffffffff816059b0 t cpufreq_init_governor +ffffffff81605a30 t cpufreq_set_policy +ffffffff81605bf0 t store_scaling_governor +ffffffff81605c80 t store_scaling_max_freq +ffffffff81605d00 t store_scaling_min_freq +ffffffff81605d80 t cpufreq_init_policy +ffffffff81605e10 t cpufreq_online +ffffffff81606420 t cpuhp_cpufreq_online +ffffffff81606430 t cpufreq_add_dev +ffffffff81606480 T cpufreq_register_governor +ffffffff81606500 T cpufreq_unregister_governor +ffffffff816065d0 T cpufreq_get_policy +ffffffff81606640 T cpufreq_update_policy +ffffffff81606700 t handle_update +ffffffff81606710 T cpufreq_boost_trigger_state +ffffffff81606730 T cpufreq_enable_boost_support +ffffffff81606760 T cpufreq_boost_enabled +ffffffff81606770 T cpufreq_register_driver +ffffffff81606920 T cpufreq_unregister_driver +ffffffff81606990 t show_available_freqs +ffffffff81606a10 t scaling_available_frequencies_show +ffffffff81606a20 t scaling_boost_frequencies_show +ffffffff81606a30 T policy_has_boost_freq +ffffffff81606a70 T cpufreq_frequency_table_cpuinfo +ffffffff81606b10 T cpufreq_frequency_table_verify +ffffffff81606bf0 T cpufreq_generic_frequency_table_verify +ffffffff81606c10 T cpufreq_table_index_unsorted +ffffffff81606d40 T cpufreq_frequency_table_get_index +ffffffff81606d90 T cpufreq_table_validate_and_show +ffffffff81606e40 t cpufreq_gov_powersave_limits +ffffffff81606e50 T cpufreq_default_governor +ffffffff81606e60 t atom_get_min_pstate +ffffffff81606e70 t atom_get_max_pstate +ffffffff81606e80 t atom_get_turbo_pstate +ffffffff81606e90 t atom_get_val +ffffffff81606f10 t silvermont_get_scaling +ffffffff81606f30 t airmont_get_scaling +ffffffff81606f50 t atom_get_vid +ffffffff81606fb0 t core_get_min_pstate +ffffffff81606fd0 t core_get_max_pstate_physical +ffffffff81606fe0 t core_get_max_pstate +ffffffff81607080 t core_get_turbo_pstate +ffffffff816070a0 t core_get_scaling +ffffffff816070b0 t core_get_val +ffffffff816070e0 t knl_get_aperf_mperf_shift +ffffffff816070f0 t knl_get_turbo_pstate +ffffffff81607120 t intel_pstate_update_pstate +ffffffff81607150 t intel_pstate_update_util +ffffffff81607360 t intel_cpufreq_fast_switch +ffffffff816073e0 t show_min_perf_pct +ffffffff81607400 t show_max_perf_pct +ffffffff81607420 t show_num_pstates +ffffffff81607490 t show_turbo_pct +ffffffff81607530 t show_no_turbo +ffffffff816075e0 t show_energy_performance_available_preferences +ffffffff81607650 t show_status +ffffffff816076c0 t intel_pstate_set_pstate +ffffffff816076f0 t intel_cpufreq_stop_cpu +ffffffff81607710 t intel_pstate_clear_update_util_hook +ffffffff81607740 t intel_pstate_cpu_exit +ffffffff81607770 t intel_pstste_sched_itmt_work_fn +ffffffff81607780 t intel_pstate_update_policies +ffffffff816077b0 t store_min_perf_pct +ffffffff81607870 t store_max_perf_pct +ffffffff81607920 t store_no_turbo +ffffffff81607a50 t intel_cpufreq_target +ffffffff81607b70 t intel_pstate_driver_cleanup +ffffffff81607c00 t intel_pstate_unregister_driver +ffffffff81607c30 t intel_pstate_register_driver +ffffffff81607ca0 t store_status +ffffffff81607df0 t intel_pstate_verify_policy +ffffffff81607ea0 t intel_pstate_get_epp +ffffffff81607f10 t show_energy_performance_preference +ffffffff81607fa0 t intel_pstate_hwp_save_state +ffffffff81607fe0 t intel_pstate_hwp_enable +ffffffff81608030 t intel_pstate_init_cpu +ffffffff816081c0 t intel_pstate_update_perf_limits.isra.6 +ffffffff81608320 t intel_pstate_set_epb +ffffffff81608390 t intel_pstate_hwp_set +ffffffff816084b0 t intel_pstate_set_policy +ffffffff816085b0 t store_energy_performance_preference +ffffffff816086e0 t intel_pstate_resume +ffffffff81608750 t intel_pstate_stop_cpu +ffffffff81608790 t __intel_pstate_cpu_init.part.13 +ffffffff81608940 t intel_cpufreq_cpu_init +ffffffff81608980 t intel_pstate_cpu_init +ffffffff816089b0 t intel_cpufreq_verify_policy +ffffffff81608a70 t cpuidle_latency_notify +ffffffff81608a80 T cpuidle_disabled +ffffffff81608a90 T disable_cpuidle +ffffffff81608aa0 T cpuidle_not_available +ffffffff81608ae0 T cpuidle_play_dead +ffffffff81608b60 T cpuidle_use_deepest_state +ffffffff81608ba0 T cpuidle_find_deepest_state +ffffffff81608bf0 T cpuidle_enter_s2idle +ffffffff81608cb0 T cpuidle_enter_state +ffffffff81608eb0 T cpuidle_select +ffffffff81608ec0 T cpuidle_enter +ffffffff81608ed0 T cpuidle_reflect +ffffffff81608ef0 T cpuidle_install_idle_handler +ffffffff81608f10 T cpuidle_uninstall_idle_handler +ffffffff81608f30 T cpuidle_pause_and_lock +ffffffff81608f40 T cpuidle_resume_and_unlock +ffffffff81608f60 T cpuidle_pause +ffffffff81608f80 T cpuidle_resume +ffffffff81608fb0 T cpuidle_enable_device +ffffffff81609050 T cpuidle_disable_device +ffffffff816090b0 t cpuidle_unregister_device.part.3 +ffffffff81609150 T cpuidle_register_device +ffffffff816092b0 T cpuidle_unregister_device +ffffffff816092d0 T cpuidle_unregister +ffffffff81609330 T cpuidle_register +ffffffff816093c0 t cpuidle_setup_broadcast_timer +ffffffff816093e0 T cpuidle_register_driver +ffffffff816094f0 T cpuidle_unregister_driver +ffffffff81609560 T cpuidle_get_driver +ffffffff81609580 T cpuidle_get_cpu_driver +ffffffff816095a0 T cpuidle_driver_ref +ffffffff816095f0 T cpuidle_driver_unref +ffffffff81609640 t cpuidle_switch_governor.part.0 +ffffffff816096f0 T cpuidle_switch_governor +ffffffff81609710 T cpuidle_register_governor +ffffffff81609800 t cpuidle_state_show +ffffffff81609830 t cpuidle_state_store +ffffffff81609860 t store_current_governor +ffffffff81609940 t cpuidle_store +ffffffff816099a0 t cpuidle_show +ffffffff816099f0 t show_state_disable +ffffffff81609a10 t show_state_time +ffffffff81609a30 t show_state_usage +ffffffff81609a50 t show_state_power_usage +ffffffff81609a70 t show_state_target_residency +ffffffff81609a90 t show_state_exit_latency +ffffffff81609ab0 t show_current_governor +ffffffff81609b10 t show_current_driver +ffffffff81609b70 t show_available_governors +ffffffff81609c10 t store_state_disable +ffffffff81609c70 t cpuidle_state_sysfs_release +ffffffff81609c80 t cpuidle_sysfs_release +ffffffff81609c90 t show_state_name +ffffffff81609cc0 t show_state_desc +ffffffff81609d00 T cpuidle_add_interface +ffffffff81609d30 T cpuidle_remove_interface +ffffffff81609d40 T cpuidle_add_device_sysfs +ffffffff81609ed0 T cpuidle_remove_device_sysfs +ffffffff81609f40 T cpuidle_add_sysfs +ffffffff81609ff0 T cpuidle_remove_sysfs +ffffffff8160a020 t menu_reflect +ffffffff8160a040 t menu_enable_device +ffffffff8160a0a0 t menu_select +ffffffff8160a500 T cpuidle_poll_state_init +ffffffff8160a560 t dmi_decode_table +ffffffff8160a620 t raw_table_read +ffffffff8160a640 t dmi_matches +ffffffff8160a6f0 T dmi_check_system +ffffffff8160a740 T dmi_first_match +ffffffff8160a780 T dmi_get_system_info +ffffffff8160a790 T dmi_name_in_serial +ffffffff8160a7c0 T dmi_name_in_vendors +ffffffff8160a810 T dmi_find_device +ffffffff8160a870 T dmi_get_date +ffffffff8160a9d0 T dmi_walk +ffffffff8160aa30 T dmi_match +ffffffff8160aa60 T dmi_memdev_name +ffffffff8160aac0 t sys_dmi_field_show +ffffffff8160aaf0 t get_modalias +ffffffff8160abf0 t dmi_dev_uevent +ffffffff8160ac60 t sys_dmi_modalias_show +ffffffff8160ac80 t efi_attr_is_visible +ffffffff8160ace0 t fw_platform_size_show +ffffffff8160ad10 t config_table_show +ffffffff8160ad30 t runtime_show +ffffffff8160ad50 t fw_vendor_show +ffffffff8160ad70 t systab_show +ffffffff8160aeb0 T efi_runtime_disabled +ffffffff8160aec0 T efi_mem_attributes +ffffffff8160af30 T efi_mem_type +ffffffff8160afb0 T efi_status_to_err +ffffffff8160b020 T efi_is_table_address +ffffffff8160b060 t validate_boot_order +ffffffff8160b070 t validate_uint16 +ffffffff8160b080 t validate_ascii_string +ffffffff8160b0b0 t validate_device_path.part.0 +ffffffff8160b120 t validate_device_path +ffffffff8160b140 t validate_load_option +ffffffff8160b210 T efivar_validate +ffffffff8160b370 T efivar_variable_is_removable +ffffffff8160b430 T efivar_init +ffffffff8160b790 T efivar_entry_add +ffffffff8160b7f0 T efivar_entry_remove +ffffffff8160b860 T __efivar_entry_delete +ffffffff8160b890 T efivar_entry_delete +ffffffff8160b960 T efivar_entry_set_safe +ffffffff8160bb10 T efivar_entry_find +ffffffff8160bc60 T efivar_entry_set +ffffffff8160bda0 T efivar_entry_size +ffffffff8160be30 T __efivar_entry_get +ffffffff8160be60 T efivar_entry_get +ffffffff8160bee0 T efivar_entry_set_get_size +ffffffff8160c0d0 T efivar_entry_iter_begin +ffffffff8160c0e0 T efivar_entry_iter_end +ffffffff8160c0f0 T __efivar_entry_iter +ffffffff8160c200 T efivar_entry_iter +ffffffff8160c290 T efivars_kobject +ffffffff8160c2b0 T efivar_run_worker +ffffffff8160c2e0 T efivars_register +ffffffff8160c340 T efivars_unregister +ffffffff8160c3c0 t efi_power_off +ffffffff8160c3f0 T efi_reboot +ffffffff8160c4b0 t capsule_reboot_notify +ffffffff8160c4e0 T efi_capsule_pending +ffffffff8160c500 T efi_capsule_supported +ffffffff8160c5a0 T efi_capsule_update +ffffffff8160c8a0 t fw_resource_version_show +ffffffff8160c8c0 t fw_resource_count_max_show +ffffffff8160c8e0 t fw_resource_count_show +ffffffff8160c900 t last_attempt_status_show +ffffffff8160c920 t last_attempt_version_show +ffffffff8160c940 t capsule_flags_show +ffffffff8160c960 t lowest_supported_fw_version_show +ffffffff8160c980 t fw_version_show +ffffffff8160c9a0 t fw_type_show +ffffffff8160c9c0 t esre_release +ffffffff8160c9f0 t fw_class_show +ffffffff8160ca30 t esre_attr_show +ffffffff8160ca70 t esrt_attr_is_visible +ffffffff8160ca90 T efi_call_virt_check_flags +ffffffff8160caf0 t virt_efi_query_capsule_caps +ffffffff8160cd20 t virt_efi_update_capsule +ffffffff8160cf50 t virt_efi_query_variable_info_nonblocking +ffffffff8160d180 t virt_efi_query_variable_info +ffffffff8160d3b0 t virt_efi_reset_system +ffffffff8160d5d0 t virt_efi_get_next_high_mono_count +ffffffff8160d7d0 t virt_efi_set_variable_nonblocking +ffffffff8160d9f0 t virt_efi_set_variable +ffffffff8160dc10 t virt_efi_get_next_variable +ffffffff8160de20 t virt_efi_get_variable +ffffffff8160e040 t virt_efi_set_wakeup_time +ffffffff8160e250 t virt_efi_get_wakeup_time +ffffffff8160e460 t virt_efi_set_time +ffffffff8160e660 t virt_efi_get_time +ffffffff8160e870 T efi_native_runtime_setup +ffffffff8160e910 t acpi_pm_read +ffffffff8160e920 t acpi_pm_check_blacklist +ffffffff8160e960 t acpi_pm_check_graylist +ffffffff8160e990 T acpi_pm_read_verified +ffffffff8160e9e0 t acpi_pm_read_slow +ffffffff8160e9f0 t pit_set_oneshot +ffffffff8160ea20 t pit_set_periodic +ffffffff8160ea60 t pit_next_event +ffffffff8160eaa0 t pit_shutdown +ffffffff8160eaf0 t fetch_item +ffffffff8160ebc0 t __bus_add_driver +ffffffff8160ebe0 t __bus_removed_driver +ffffffff8160ec00 t hid_close_report +ffffffff8160ed20 t hid_device_release +ffffffff8160ed50 t hid_scan_main +ffffffff8160ef30 t hid_get_report +ffffffff8160ef70 t implement +ffffffff8160f0b0 t read_report_descriptor +ffffffff8160f0f0 t show_country +ffffffff8160f110 t hid_uevent +ffffffff8160f1d0 t new_id_store +ffffffff8160f2c0 t modalias_show +ffffffff8160f300 t snto32 +ffffffff8160f330 t hid_process_event +ffffffff8160f450 t hid_parser_reserved +ffffffff8160f480 t hid_parser_global +ffffffff8160f900 t hid_parser_local +ffffffff8160fc40 T hid_register_report +ffffffff8160fce0 t hid_add_field +ffffffff81610010 t hid_parser_main +ffffffff81610270 T hid_parse_report +ffffffff816102a0 T hid_validate_values +ffffffff816103b0 T hid_open_report +ffffffff81610600 T hid_snto32 +ffffffff81610610 T hid_field_extract +ffffffff816106c0 T hid_output_report +ffffffff81610810 T hid_alloc_report_buf +ffffffff81610840 T hid_set_field +ffffffff81610900 T hid_report_raw_event +ffffffff81610d00 T hid_input_report +ffffffff81610e50 T __hid_request +ffffffff81610f60 T hid_match_one_id +ffffffff81610fb0 T hid_match_id +ffffffff81610fe0 T hid_connect +ffffffff81611330 T hid_disconnect +ffffffff81611380 t hid_device_remove +ffffffff81611420 T hid_hw_start +ffffffff81611480 T hid_hw_stop +ffffffff816114a0 T hid_hw_open +ffffffff81611510 T hid_hw_close +ffffffff81611550 T hid_match_device +ffffffff816115f0 t hid_device_probe +ffffffff81611730 t hid_bus_match +ffffffff81611750 T hid_add_device +ffffffff81611940 T hid_allocate_device +ffffffff81611a30 T hid_destroy_device +ffffffff81611a80 T __hid_register_driver +ffffffff81611ae0 T hid_unregister_driver +ffffffff81611b90 T hid_check_keys_pressed +ffffffff81611bf0 t match_scancode +ffffffff81611c00 t match_keycode +ffffffff81611c20 t match_index +ffffffff81611c30 t hidinput_find_key +ffffffff81611d20 t hidinput_close +ffffffff81611d30 t hidinput_open +ffffffff81611d40 t hidinput_locate_usage +ffffffff81611da0 t hidinput_getkeycode +ffffffff81611df0 t hidinput_setkeycode +ffffffff81611ea0 T hidinput_calc_abs_res +ffffffff81611fa0 T hidinput_hid_event +ffffffff81612360 T hidinput_report_event +ffffffff816123a0 T hidinput_find_field +ffffffff81612430 t hidinput_input_event +ffffffff816124d0 T hidinput_get_led_field +ffffffff81612540 t hidinput_led_worker +ffffffff81612650 T hidinput_count_leds +ffffffff816126d0 T hidinput_disconnect +ffffffff81612770 T hidinput_connect +ffffffff81615d90 T hid_ignore +ffffffff81615f40 T hid_quirks_init +ffffffff81616100 T hid_quirks_exit +ffffffff816161a0 T hid_lookup_quirk +ffffffff81616360 t uhid_char_poll +ffffffff816163b0 t uhid_report_wake_up +ffffffff81616480 t uhid_hid_parse +ffffffff816164a0 t uhid_dev_destroy +ffffffff816164f0 t uhid_char_release +ffffffff81616540 t uhid_char_open +ffffffff81616630 t uhid_device_add_worker +ffffffff81616690 t uhid_dev_create2 +ffffffff81616800 t uhid_dev_create +ffffffff81616a90 t uhid_char_write +ffffffff81616c50 t uhid_char_read +ffffffff81616e10 t uhid_queue +ffffffff81616e70 t uhid_queue_event +ffffffff81616ed0 t uhid_hid_close +ffffffff81616ee0 t uhid_hid_open +ffffffff81616ef0 t uhid_hid_stop +ffffffff81616f10 t uhid_hid_start +ffffffff81616fb0 t __uhid_report_queue_and_wait +ffffffff81617110 t uhid_hid_raw_request +ffffffff816173d0 t uhid_hid_output_report +ffffffff81617470 t hid_generic_removed_driver +ffffffff81617480 t hid_generic_add_driver +ffffffff816174a0 t __check_hid_generic +ffffffff816174d0 t __unmap_hid_generic +ffffffff81617530 t hid_generic_match +ffffffff81617560 t hid_submit_out +ffffffff81617690 t usbhid_restart_out_queue +ffffffff81617750 t hid_irq_out +ffffffff81617860 t hid_submit_ctrl +ffffffff81617aa0 t usbhid_restart_ctrl_queue +ffffffff81617b60 t usbhid_submit_report +ffffffff81617f30 t usbhid_request +ffffffff81617f50 t usbhid_wait_io +ffffffff81618020 t hid_set_idle +ffffffff81618060 t usbhid_idle +ffffffff81618090 t usbhid_raw_request +ffffffff816181e0 t usbhid_output_report +ffffffff81618270 t usbhid_power +ffffffff816182a0 t hid_cease_io +ffffffff816182d0 t hid_pre_reset +ffffffff81618310 t usbhid_close +ffffffff81618390 t hid_ctrl +ffffffff816184c0 t usbhid_disconnect +ffffffff81618510 t usbhid_probe +ffffffff816188e0 t hid_start_in.isra.1 +ffffffff81618980 t hid_reset +ffffffff816189f0 t hid_io_error.isra.2 +ffffffff81618af0 t usbhid_open +ffffffff81618bd0 t hid_restart_io +ffffffff81618d00 t hid_irq_in +ffffffff81618ef0 t hid_retry_timeout +ffffffff81618f20 t hid_resume_common.part.3 +ffffffff81618f40 t hid_resume +ffffffff81618f60 t hid_suspend +ffffffff81619150 t hid_free_buffers.isra.4 +ffffffff816191b0 t usbhid_stop +ffffffff816192b0 t usbhid_start +ffffffff81619990 t hid_get_class_descriptor.constprop.8 +ffffffff81619a10 t hid_post_reset +ffffffff81619b70 t hid_reset_resume +ffffffff81619bb0 t usbhid_parse +ffffffff81619e10 T usbhid_init_reports +ffffffff81619f00 T usbhid_find_interface +ffffffff81619f10 t hiddev_lookup_report +ffffffff81619f90 t hiddev_write +ffffffff81619fa0 t hiddev_poll +ffffffff8161a000 t hiddev_fasync +ffffffff8161a020 t hiddev_release +ffffffff8161a130 t hiddev_open +ffffffff8161a300 t hiddev_read +ffffffff8161a670 t hiddev_devnode +ffffffff8161a690 t hiddev_send_event.isra.0 +ffffffff8161a760 t hiddev_ioctl_string.isra.1 +ffffffff8161a810 t hiddev_ioctl_usage.isra.2 +ffffffff8161ab70 t hiddev_ioctl +ffffffff8161b1b0 T hiddev_hid_event +ffffffff8161b230 T hiddev_report_event +ffffffff8161b290 T hiddev_connect +ffffffff8161b3d0 T hiddev_disconnect +ffffffff8161b450 t find_guid +ffffffff8161b500 t __query_block +ffffffff8161b680 t wmi_dev_release +ffffffff8161b690 t wmi_method_enable +ffffffff8161b6f0 t wmi_dev_remove +ffffffff8161b790 t expensive_show +ffffffff8161b7c0 t instance_count_show +ffffffff8161b7e0 t guid_show +ffffffff8161b800 t modalias_show +ffffffff8161b820 t setable_show +ffffffff8161b840 t object_id_show +ffffffff8161b870 t notify_id_show +ffffffff8161b890 t wmi_char_open +ffffffff8161b940 t wmi_dev_match +ffffffff8161b9d0 t wmi_ioctl +ffffffff8161baf0 t wmi_char_read +ffffffff8161bb20 t wmi_dev_probe +ffffffff8161bce0 t wmi_dev_uevent +ffffffff8161bd30 t acpi_wmi_ec_space_handler +ffffffff8161bdd0 t acpi_wmi_notify_handler +ffffffff8161bf30 t acpi_wmi_remove +ffffffff8161c020 t get_subobj_info +ffffffff8161c090 t acpi_wmi_probe +ffffffff8161c6f0 T set_required_buffer_size +ffffffff8161c700 T wmidev_evaluate_method +ffffffff8161c7e0 T wmi_evaluate_method +ffffffff8161c830 T wmi_query_block +ffffffff8161c880 T wmidev_block_query +ffffffff8161c8c0 T wmi_set_block +ffffffff8161c9d0 T wmi_install_notify_handler +ffffffff8161cac0 T wmi_remove_notify_handler +ffffffff8161cbc0 T wmi_get_event_data +ffffffff8161cc40 t wmi_notify_debug +ffffffff8161cd10 T wmi_has_guid +ffffffff8161cd20 T __wmi_driver_register +ffffffff8161cd40 T wmi_driver_unregister +ffffffff8161cd50 T mxm_wmi_call_mxds +ffffffff8161cde0 T mxm_wmi_call_mxmx +ffffffff8161ce70 T mxm_wmi_supported +ffffffff8161ce80 t smartconnect_acpi_init +ffffffff8161cee0 t pmc_power_off +ffffffff8161cf10 T pmc_atom_read +ffffffff8161cf30 T pmc_atom_write +ffffffff8161cf50 t of_mbox_index_xlate +ffffffff8161cf80 t msg_submit +ffffffff8161d040 t tx_tick +ffffffff8161d0c0 t txdone_hrtimer +ffffffff8161d180 t mbox_free_channel.part.1 +ffffffff8161d1e0 T mbox_chan_received_data +ffffffff8161d200 T mbox_chan_txdone +ffffffff8161d220 T mbox_client_txdone +ffffffff8161d240 T mbox_client_peek_data +ffffffff8161d260 T mbox_send_message +ffffffff8161d370 T mbox_request_channel +ffffffff8161d3b0 T mbox_request_channel_byname +ffffffff8161d3f0 T mbox_free_channel +ffffffff8161d410 T mbox_controller_register +ffffffff8161d540 T mbox_controller_unregister +ffffffff8161d5f0 t pcc_mbox_probe +ffffffff8161d650 t pcc_send_data +ffffffff8161d7a0 t pcc_mbox_irq +ffffffff8161d880 t parse_pcc_subspace +ffffffff8161d8b0 T pcc_mbox_free_channel +ffffffff8161d950 T pcc_mbox_request_channel +ffffffff8161daa0 T log_non_standard_event +ffffffff8161dab0 T log_arm_hw_error +ffffffff8161dac0 T ras_userspace_consumers +ffffffff8161dad0 t sound_devnode +ffffffff8161db10 t snd_open +ffffffff8161db90 T snd_lookup_minor_data +ffffffff8161dc00 T snd_register_device +ffffffff8161dda0 T snd_unregister_device +ffffffff8161de20 t module_slot_match +ffffffff8161de30 t check_empty_slot +ffffffff8161de50 t default_release +ffffffff8161de60 t snd_disconnect_llseek +ffffffff8161de70 t snd_disconnect_read +ffffffff8161de80 t snd_disconnect_poll +ffffffff8161de90 t snd_disconnect_ioctl +ffffffff8161dea0 t snd_disconnect_mmap +ffffffff8161deb0 t snd_disconnect_fasync +ffffffff8161dec0 t get_slot_from_bitmask +ffffffff8161df10 t card_number_show_attr +ffffffff8161df30 t card_id_show_attr +ffffffff8161df60 t card_id_ok +ffffffff8161dfc0 t card_id_store_attr +ffffffff8161e0e0 t release_card_device +ffffffff8161e120 t snd_disconnect_release +ffffffff8161e200 t snd_card_set_id_no_lock +ffffffff8161e3c0 t snd_disconnect_write +ffffffff8161e3d0 T snd_device_initialize +ffffffff8161e410 T snd_card_new +ffffffff8161e780 T snd_card_locked +ffffffff8161e7b0 T snd_card_disconnect +ffffffff8161e930 T snd_card_disconnect_sync +ffffffff8161e9f0 T snd_card_free_when_closed +ffffffff8161ea20 T snd_card_free +ffffffff8161ea90 T snd_card_set_id +ffffffff8161ead0 T snd_card_add_dev_attr +ffffffff8161eb30 T snd_card_register +ffffffff8161ec40 T snd_component_add +ffffffff8161ecd0 T snd_card_file_add +ffffffff8161ed90 T snd_card_file_remove +ffffffff8161ef10 T snd_power_wait +ffffffff8161efd0 T copy_to_user_fromio +ffffffff8161f090 T copy_from_user_toio +ffffffff8161f190 t snd_ctl_elem_user_info +ffffffff8161f210 t snd_ctl_poll +ffffffff8161f260 t snd_ctl_new +ffffffff8161f2e0 t snd_ctl_empty_read_queue +ffffffff8161f360 t snd_ctl_dev_disconnect +ffffffff8161f3e0 t snd_ctl_dev_register +ffffffff8161f410 t snd_ctl_fasync +ffffffff8161f420 t snd_ctl_release +ffffffff8161f520 t snd_ctl_elem_list +ffffffff8161f6a0 t snd_ctl_elem_user_get +ffffffff8161f6e0 t snd_ctl_elem_user_put +ffffffff8161f750 t snd_ctl_elem_user_free +ffffffff8161f780 t snd_ctl_elem_user_enum_info +ffffffff8161f850 t snd_ctl_read +ffffffff8161fac0 t snd_ctl_tlv_ioctl +ffffffff8161fc40 t snd_ctl_find_hole +ffffffff8161fcd0 t snd_ctl_open +ffffffff8161fe00 t snd_ctl_notify.part.6 +ffffffff8161ff90 t snd_ctl_elem_user_tlv +ffffffff81620190 T snd_ctl_notify +ffffffff816201b0 T snd_ctl_new1 +ffffffff816202c0 T snd_ctl_free_one +ffffffff816202f0 T snd_ctl_remove +ffffffff816203e0 t snd_ctl_dev_free +ffffffff81620440 T snd_ctl_find_numid +ffffffff81620480 T snd_ctl_find_id +ffffffff81620530 T snd_ctl_add +ffffffff81620720 T snd_ctl_replace +ffffffff81620920 T snd_ctl_remove_id +ffffffff81620980 T snd_ctl_activate_id +ffffffff81620aa0 T snd_ctl_rename_id +ffffffff81620b50 t snd_ctl_elem_info_user +ffffffff81620ce0 t snd_ctl_remove_user_ctl +ffffffff81620da0 t snd_ctl_elem_add_user +ffffffff816212c0 t snd_ctl_ioctl +ffffffff81621b70 T snd_ctl_register_ioctl +ffffffff81621be0 T snd_ctl_unregister_ioctl +ffffffff81621c80 T snd_ctl_get_preferred_subdevice +ffffffff81621d10 T snd_ctl_create +ffffffff81621d90 T snd_ctl_boolean_mono_info +ffffffff81621dc0 T snd_ctl_boolean_stereo_info +ffffffff81621df0 T snd_ctl_enum_info +ffffffff81621e30 T release_and_free_resource +ffffffff81621e50 T snd_pci_quirk_lookup_id +ffffffff81621e80 T snd_pci_quirk_lookup +ffffffff81621ed0 t __snd_device_register.part.0 +ffffffff81621f00 t __snd_device_disconnect.part.1 +ffffffff81621f50 t __snd_device_free +ffffffff81621fc0 T snd_device_new +ffffffff81622080 T snd_device_disconnect +ffffffff816220d0 T snd_device_free +ffffffff81622110 T snd_device_register +ffffffff81622160 T snd_device_register_all +ffffffff816221b0 T snd_device_disconnect_all +ffffffff81622200 T snd_device_free_all +ffffffff81622240 t slave_info +ffffffff81622260 t slave_tlv_cmd +ffffffff81622280 t slave_free +ffffffff816222e0 t master_free +ffffffff816223a0 t slave_update +ffffffff81622450 t slave_init +ffffffff81622560 t slave_get +ffffffff816225a0 t master_init.part.2 +ffffffff81622610 t slave_put_val +ffffffff816226d0 t slave_put +ffffffff81622750 t master_get +ffffffff81622790 t master_info +ffffffff816227f0 t sync_slaves +ffffffff816228e0 t master_put +ffffffff81622960 T _snd_ctl_add_slave +ffffffff81622a30 T snd_ctl_make_virtual_master +ffffffff81622b30 T snd_ctl_add_vmaster_hook +ffffffff81622b50 T snd_ctl_sync_vmaster +ffffffff81622bc0 T snd_ctl_apply_vmaster_slaves +ffffffff81622c30 t jack_detect_kctl_get +ffffffff81622c40 T snd_kctl_jack_new +ffffffff81622d10 T snd_kctl_jack_report +ffffffff81622d30 t snd_jack_kctl_private_free +ffffffff81622d70 t snd_jack_kctl_new +ffffffff81622e00 t snd_jack_dev_disconnect +ffffffff81622e30 t snd_jack_dev_register +ffffffff81622ef0 t snd_jack_dev_free +ffffffff81622f80 T snd_jack_add_new_kctl +ffffffff81622fc0 T snd_jack_new +ffffffff81623130 T snd_jack_set_parent +ffffffff81623150 T snd_jack_set_key +ffffffff81623190 T snd_jack_report +ffffffff81623290 t snd_hwdep_llseek +ffffffff816232c0 t snd_hwdep_read +ffffffff816232e0 t snd_hwdep_write +ffffffff81623300 t snd_hwdep_poll +ffffffff81623330 t snd_hwdep_mmap +ffffffff81623360 t snd_hwdep_dev_free +ffffffff81623390 t release_hwdep_device +ffffffff816233a0 t snd_hwdep_dev_disconnect +ffffffff81623480 t snd_hwdep_dev_register +ffffffff816235a0 t snd_hwdep_release +ffffffff81623630 t snd_hwdep_open +ffffffff81623800 t snd_hwdep_info +ffffffff816238b0 t snd_hwdep_ioctl +ffffffff81623a70 t snd_hwdep_control_ioctl +ffffffff81623be0 T snd_hwdep_new +ffffffff81623d10 t snd_timer_find +ffffffff81623d80 t snd_timer_reschedule +ffffffff81623e10 t snd_timer_tasklet +ffffffff81623f00 t snd_timer_user_poll +ffffffff81623f60 t snd_timer_dev_disconnect +ffffffff81623fe0 t snd_timer_free_system +ffffffff81623ff0 t realloc_user_queue +ffffffff816240b0 t snd_timer_instance_new +ffffffff81624170 t snd_timer_dev_register +ffffffff816242a0 t snd_timer_notify1 +ffffffff816243a0 t snd_timer_start_slave +ffffffff81624480 t snd_timer_start1 +ffffffff81624600 t snd_timer_stop_slave +ffffffff816246f0 t snd_timer_stop1 +ffffffff816248a0 t snd_timer_user_fasync +ffffffff816248c0 t snd_timer_user_disconnect +ffffffff816248e0 t snd_timer_user_interrupt +ffffffff816249a0 t snd_timer_user_read +ffffffff81624bf0 t snd_timer_s_stop +ffffffff81624c40 t snd_timer_s_start +ffffffff81624cb0 t snd_timer_s_close +ffffffff81624cc0 t snd_timer_free.part.2 +ffffffff81624da0 t snd_timer_dev_free +ffffffff81624dc0 t snd_timer_user_open +ffffffff81624e60 t snd_timer_user_append_to_tqueue.part.6 +ffffffff81624ea0 t snd_timer_user_ccallback +ffffffff81624f80 t snd_timer_user_tinterrupt +ffffffff81625160 T snd_timer_resolution +ffffffff81625190 T snd_timer_start +ffffffff816251c0 T snd_timer_stop +ffffffff816251e0 t snd_timer_close_locked +ffffffff81625410 T snd_timer_open +ffffffff81625880 T snd_timer_close +ffffffff816258c0 t snd_timer_user_release +ffffffff81625920 t snd_timer_user_params.isra.11 +ffffffff81625b30 t snd_timer_user_start.isra.12 +ffffffff81625b80 T snd_timer_continue +ffffffff81625bb0 T snd_timer_pause +ffffffff81625bd0 t snd_timer_user_ioctl +ffffffff81626660 T snd_timer_interrupt +ffffffff816269d0 t snd_timer_s_function +ffffffff81626a00 T snd_timer_new +ffffffff81626b80 T snd_timer_notify +ffffffff81626cd0 T snd_timer_global_new +ffffffff81626d10 T snd_timer_global_free +ffffffff81626d20 T snd_timer_global_register +ffffffff81626d63 t snd_timer_free_all +ffffffff81626db0 t snd_hrtimer_stop +ffffffff81626dd0 t snd_hrtimer_start +ffffffff81626e00 t snd_hrtimer_close +ffffffff81626e60 t snd_hrtimer_callback +ffffffff81626f20 t snd_hrtimer_open +ffffffff81626f70 t show_pcm_class +ffffffff81626fb0 t snd_pcm_free_stream +ffffffff81627010 t snd_pcm_free +ffffffff81627060 t snd_pcm_dev_free +ffffffff81627070 t snd_pcm_dev_disconnect +ffffffff81627220 t snd_pcm_dev_register +ffffffff816273c0 t snd_pcm_control_ioctl +ffffffff81627610 T snd_pcm_format_name +ffffffff81627630 T snd_pcm_new_stream +ffffffff816277f0 t _snd_pcm_new +ffffffff81627940 T snd_pcm_new +ffffffff81627950 T snd_pcm_new_internal +ffffffff81627960 T snd_pcm_attach_substream +ffffffff81627cb0 T snd_pcm_detach_substream +ffffffff81627d50 t snd_pcm_mmap_data_open +ffffffff81627d60 t snd_pcm_mmap_data_close +ffffffff81627d70 t fixup_unreferenced_params +ffffffff81627ed0 t snd_pcm_action_single +ffffffff81627f50 t snd_pcm_pre_start +ffffffff81627fd0 t snd_pcm_do_start +ffffffff81628000 t snd_pcm_undo_start +ffffffff81628020 t snd_pcm_pre_stop +ffffffff81628040 t snd_pcm_pre_pause +ffffffff81628080 t snd_pcm_pre_suspend +ffffffff816280a0 t snd_pcm_pre_resume +ffffffff816280c0 t snd_pcm_pre_reset +ffffffff81628100 t snd_pcm_do_reset +ffffffff81628160 t snd_pcm_pre_prepare +ffffffff816281a0 t snd_pcm_pre_drain_init +ffffffff816281e0 t snd_pcm_post_drain_init +ffffffff816281f0 t snd_pcm_action_group +ffffffff81628450 t snd_pcm_action_nonatomic +ffffffff816284b0 t snd_pcm_mmap_status_fault +ffffffff81628520 t snd_pcm_mmap_control_fault +ffffffff81628590 t snd_pcm_mmap_data_fault +ffffffff81628660 t snd_pcm_hw_rule_buffer_bytes_max +ffffffff816286b0 t do_pcm_hwsync +ffffffff81628700 t snd_pcm_trigger_tstamp +ffffffff81628780 t snd_pcm_post_resume +ffffffff816287a0 t snd_pcm_post_start +ffffffff81628810 t snd_pcm_post_reset +ffffffff81628850 t snd_pcm_action +ffffffff81628940 t snd_pcm_post_stop +ffffffff816289a0 t snd_pcm_post_suspend +ffffffff81628a00 t snd_pcm_post_pause +ffffffff81628a60 t snd_pcm_hw_rule_muldivk +ffffffff81628ad0 t snd_pcm_hw_rule_mulkdiv +ffffffff81628b40 t snd_pcm_hw_rule_mul +ffffffff81628bb0 t snd_pcm_hw_rule_div +ffffffff81628c20 t snd_pcm_hw_rule_sample_bits +ffffffff81628cc0 t snd_pcm_hw_rule_format +ffffffff81628d90 t snd_pcm_hw_rule_rate +ffffffff81628dc0 t forward_appl_ptr +ffffffff81628e10 t rewind_appl_ptr +ffffffff81628e60 t snd_pcm_unlink +ffffffff81628f90 t pcm_release_private +ffffffff81628fa0 t snd_pcm_readv +ffffffff816290e0 t snd_pcm_read +ffffffff81629180 t snd_pcm_write +ffffffff81629190 t snd_pcm_writev +ffffffff816292d0 t snd_pcm_fasync +ffffffff81629300 t snd_pcm_do_stop +ffffffff81629340 t snd_pcm_do_drain_init +ffffffff816294a0 t snd_pcm_undo_pause +ffffffff816294d0 t snd_pcm_do_suspend +ffffffff81629520 t snd_pcm_do_resume +ffffffff81629570 t snd_pcm_do_prepare +ffffffff816295a0 t snd_pcm_do_pause +ffffffff81629620 t snd_pcm_lib_default_mmap.part.24 +ffffffff81629660 t snd_pcm_undo_resume +ffffffff816296a0 T snd_pcm_stream_lock +ffffffff816296f0 T snd_pcm_stream_unlock +ffffffff81629730 t snd_pcm_capture_forward +ffffffff816297c0 t snd_pcm_set_state +ffffffff81629810 t snd_pcm_post_prepare +ffffffff81629840 t snd_pcm_sw_params +ffffffff81629a40 t snd_pcm_sw_params_user +ffffffff81629aa0 t snd_pcm_action_lock_irq +ffffffff81629af0 t snd_pcm_delay +ffffffff81629bd0 t snd_pcm_capture_poll +ffffffff81629cb0 t snd_pcm_hwsync +ffffffff81629cf0 t snd_pcm_sync_ptr +ffffffff81629eb0 t snd_pcm_playback_poll +ffffffff81629fa0 t snd_pcm_drop +ffffffff8162a040 t snd_pcm_release_substream.part.20 +ffffffff8162a0e0 t snd_pcm_release +ffffffff8162a170 t snd_pcm_prepare +ffffffff8162a210 t snd_pcm_drain +ffffffff8162a4c0 T snd_pcm_stream_lock_irq +ffffffff8162a4e0 T snd_pcm_stream_unlock_irq +ffffffff8162a500 T _snd_pcm_stream_lock_irqsave +ffffffff8162a520 T snd_pcm_stream_unlock_irqrestore +ffffffff8162a540 T snd_pcm_info +ffffffff8162a620 T snd_pcm_info_user +ffffffff8162a690 T snd_pcm_hw_refine +ffffffff8162a9b0 t snd_pcm_hw_params +ffffffff8162ad80 T snd_pcm_status +ffffffff8162b070 t snd_pcm_status_user +ffffffff8162b0e0 t snd_pcm_ioctl +ffffffff8162bdd0 T snd_pcm_start +ffffffff8162bdf0 T snd_pcm_stop +ffffffff8162be10 T snd_pcm_drain_done +ffffffff8162be30 T snd_pcm_stop_xrun +ffffffff8162beb0 T snd_pcm_suspend +ffffffff8162bf10 T snd_pcm_suspend_all +ffffffff8162bf70 T snd_pcm_hw_constraints_init +ffffffff8162c4b0 T snd_pcm_hw_constraints_complete +ffffffff8162c680 T snd_pcm_release_substream +ffffffff8162c6a0 T snd_pcm_open_substream +ffffffff8162c740 t snd_pcm_open +ffffffff8162c910 t snd_pcm_capture_open +ffffffff8162c970 t snd_pcm_playback_open +ffffffff8162c9d0 T snd_pcm_kernel_ioctl +ffffffff8162cab0 T snd_pcm_lib_default_mmap +ffffffff8162cae0 T snd_pcm_lib_mmap_iomem +ffffffff8162cb20 T snd_pcm_mmap_data +ffffffff8162cc30 t snd_pcm_mmap +ffffffff8162cd30 t snd_pcm_hw_rule_msbits +ffffffff8162cd90 t snd_pcm_hw_rule_step +ffffffff8162ce60 t interleaved_copy +ffffffff8162cec0 t pcm_chmap_ctl_info +ffffffff8162cef0 t fill_silence +ffffffff8162cf60 t noninterleaved_copy +ffffffff8162d050 t xrun +ffffffff8162d0d0 t update_audio_tstamp +ffffffff8162d230 t default_read_copy_kernel +ffffffff8162d270 t default_write_copy_kernel +ffffffff8162d2b0 t pcm_chmap_ctl_private_free +ffffffff8162d2e0 t default_read_copy +ffffffff8162d330 t default_write_copy +ffffffff8162d380 t _snd_pcm_hw_param_any +ffffffff8162d3f0 t pcm_chmap_ctl_get +ffffffff8162d4e0 t pcm_chmap_ctl_tlv +ffffffff8162d610 T snd_pcm_playback_silence +ffffffff8162d870 T snd_pcm_update_state +ffffffff8162d960 t snd_pcm_update_hw_ptr0 +ffffffff8162dd20 T snd_pcm_update_hw_ptr +ffffffff8162dd30 T snd_pcm_set_ops +ffffffff8162dd60 T snd_pcm_set_sync +ffffffff8162dd90 T snd_interval_refine +ffffffff8162ded0 t snd_pcm_hw_rule_ratdens +ffffffff8162e190 T snd_interval_mul +ffffffff8162e250 T snd_interval_div +ffffffff8162e320 T snd_interval_muldivk +ffffffff8162e440 T snd_interval_mulkdiv +ffffffff8162e550 T snd_interval_ratnum +ffffffff8162e7b0 t snd_pcm_hw_rule_ratnums +ffffffff8162e830 T snd_interval_list +ffffffff8162e8f0 t snd_pcm_hw_rule_list +ffffffff8162e920 t snd_pcm_hw_rule_pow2 +ffffffff8162e950 t snd_pcm_hw_rule_noresample_func +ffffffff8162e980 T snd_interval_ranges +ffffffff8162ea70 t snd_pcm_hw_rule_ranges +ffffffff8162eaa0 T snd_pcm_hw_rule_add +ffffffff8162ec60 T snd_pcm_hw_constraint_mask +ffffffff8162ecb0 T snd_pcm_hw_constraint_mask64 +ffffffff8162ed10 T snd_pcm_hw_constraint_integer +ffffffff8162ed60 T snd_pcm_hw_constraint_minmax +ffffffff8162eda0 T snd_pcm_hw_constraint_list +ffffffff8162edc0 T snd_pcm_hw_constraint_ranges +ffffffff8162ede0 T snd_pcm_hw_constraint_ratnums +ffffffff8162ee00 T snd_pcm_hw_constraint_ratdens +ffffffff8162ee20 T snd_pcm_hw_constraint_msbits +ffffffff8162ee50 T snd_pcm_hw_constraint_step +ffffffff8162ee70 T snd_pcm_hw_constraint_pow2 +ffffffff8162ee90 T snd_pcm_hw_rule_noresample +ffffffff8162eec0 T _snd_pcm_hw_params_any +ffffffff8162ef40 T snd_pcm_hw_param_value +ffffffff8162f040 T _snd_pcm_hw_param_setempty +ffffffff8162f0a0 T snd_pcm_hw_param_first +ffffffff8162f240 T snd_pcm_hw_param_last +ffffffff8162f3f0 T snd_pcm_lib_ioctl +ffffffff8162f5d0 T snd_pcm_period_elapsed +ffffffff8162f650 T pcm_lib_apply_appl_ptr +ffffffff8162f6a0 T __snd_pcm_lib_xfer +ffffffff8162fe60 T snd_pcm_add_chmap_ctls +ffffffff8162ffd0 T snd_pcm_format_signed +ffffffff8162fff0 T snd_pcm_format_unsigned +ffffffff81630020 T snd_pcm_format_linear +ffffffff81630040 T snd_pcm_format_little_endian +ffffffff81630060 T snd_pcm_format_big_endian +ffffffff81630090 T snd_pcm_format_width +ffffffff816300b0 T snd_pcm_format_physical_width +ffffffff816300d0 T snd_pcm_format_size +ffffffff81630100 T snd_pcm_format_silence_64 +ffffffff81630130 T snd_pcm_format_set_silence +ffffffff81630230 T snd_pcm_limit_hw_rates +ffffffff816302c0 T snd_pcm_rate_to_rate_bit +ffffffff81630310 T snd_pcm_rate_bit_to_rate +ffffffff81630350 T snd_pcm_rate_mask_intersect +ffffffff816303c0 T snd_pcm_rate_range_to_bits +ffffffff81630420 t preallocate_pcm_pages +ffffffff816304b0 T snd_pcm_lib_preallocate_free +ffffffff816304e0 T snd_pcm_lib_preallocate_free_for_all +ffffffff81630560 T snd_pcm_lib_preallocate_pages +ffffffff816305d0 T snd_pcm_lib_preallocate_pages_for_all +ffffffff81630690 T snd_pcm_sgbuf_ops_page +ffffffff816306c0 T snd_pcm_lib_free_pages +ffffffff81630750 T snd_pcm_lib_malloc_pages +ffffffff81630890 T _snd_pcm_lib_alloc_vmalloc_buffer +ffffffff81630910 T snd_pcm_lib_free_vmalloc_buffer +ffffffff81630950 T snd_pcm_lib_get_vmalloc_page +ffffffff81630970 T snd_malloc_pages +ffffffff816309a0 T snd_free_pages +ffffffff816309c0 T snd_dma_alloc_pages +ffffffff81630b60 T snd_dma_alloc_pages_fallback +ffffffff81630be0 T snd_dma_free_pages +ffffffff81630ca0 T snd_free_sgbuf_pages +ffffffff81630da0 T snd_malloc_sgbuf_pages +ffffffff81631110 T snd_sgbuf_get_chunk_size +ffffffff81631180 t snd_rawmidi_input_event_work +ffffffff816311a0 t assign_substream +ffffffff81631230 t snd_rawmidi_poll +ffffffff81631380 t release_rawmidi_device +ffffffff81631390 t snd_rawmidi_free_substreams +ffffffff816313f0 t snd_rawmidi_alloc_substreams +ffffffff81631480 t open_substream +ffffffff81631620 t snd_rawmidi_info +ffffffff816316e0 t snd_rawmidi_info_user +ffffffff81631720 t snd_rawmidi_kernel_write1 +ffffffff81631910 t snd_rawmidi_dev_disconnect +ffffffff81631a10 t snd_rawmidi_dev_register +ffffffff81631ba0 t snd_rawmidi_write +ffffffff81631eb0 t snd_rawmidi_kernel_read1.isra.3 +ffffffff81631ff0 t snd_rawmidi_read +ffffffff81632210 t snd_rawmidi_free.part.4 +ffffffff81632290 t snd_rawmidi_dev_free +ffffffff816322b0 t snd_rawmidi_input_trigger.constprop.6 +ffffffff816322e0 T snd_rawmidi_drop_output +ffffffff81632340 T snd_rawmidi_drain_output +ffffffff81632500 t close_substream.part.5 +ffffffff816325f0 t rawmidi_open_priv +ffffffff816326f0 t snd_rawmidi_open +ffffffff81632970 t rawmidi_release_priv +ffffffff81632a00 t snd_rawmidi_release +ffffffff81632a40 T snd_rawmidi_drain_input +ffffffff81632a90 T snd_rawmidi_kernel_open +ffffffff81632b50 T snd_rawmidi_kernel_release +ffffffff81632b70 T snd_rawmidi_info_select +ffffffff81632c50 t snd_rawmidi_info_select_user +ffffffff81632ce0 t snd_rawmidi_control_ioctl +ffffffff81632e00 T snd_rawmidi_output_params +ffffffff81632eb0 T snd_rawmidi_input_params +ffffffff81632f20 t snd_rawmidi_ioctl +ffffffff81633210 T snd_rawmidi_receive +ffffffff816333f0 T snd_rawmidi_kernel_read +ffffffff81633430 T snd_rawmidi_transmit_empty +ffffffff81633470 T __snd_rawmidi_transmit_peek +ffffffff81633520 T snd_rawmidi_transmit_peek +ffffffff81633570 T __snd_rawmidi_transmit_ack +ffffffff816335e0 T snd_rawmidi_transmit_ack +ffffffff81633620 T snd_rawmidi_transmit +ffffffff81633690 T snd_rawmidi_kernel_write +ffffffff816336a0 T snd_rawmidi_new +ffffffff81633840 T snd_rawmidi_set_ops +ffffffff81633870 t hda_codec_match +ffffffff816338c0 t hda_codec_unsol_event +ffffffff816338e0 t hda_codec_driver_remove +ffffffff81633910 t hda_codec_driver_shutdown +ffffffff81633940 T snd_hda_codec_set_name +ffffffff816339c0 t hda_codec_driver_probe +ffffffff81633a90 T __hda_codec_driver_register +ffffffff81633af0 T hda_codec_driver_unregister +ffffffff81633b00 T snd_hda_codec_configure +ffffffff81633c00 t snd_hda_codec_dev_disconnect +ffffffff81633c10 t check_slave_present +ffffffff81633c20 t vmaster_mute_mode_get +ffffffff81633c30 t vmaster_hook +ffffffff81633c50 t snd_hda_spdif_mask_info +ffffffff81633c70 t snd_hda_spdif_cmask_get +ffffffff81633c80 t snd_hda_spdif_pmask_get +ffffffff81633c90 t convert_to_spdif_status +ffffffff81633cf0 t spdif_share_sw_get +ffffffff81633d10 t spdif_share_sw_put +ffffffff81633d30 t snd_hda_spdif_in_switch_get +ffffffff81633d50 t hda_pcm_default_open_close +ffffffff81633d60 t put_kctl_with_value +ffffffff81633dc0 t init_slave_unmute +ffffffff81633dd0 t read_pin_defaults +ffffffff81633eb0 t really_cleanup_stream +ffffffff81633f30 t hda_jackpoll_work +ffffffff81633f70 t snd_hda_spdif_out_switch_get +ffffffff81633fc0 t snd_hda_spdif_default_get +ffffffff81634030 t codec_exec_verb +ffffffff81634110 t snd_hda_codec_dev_release +ffffffff81634160 t snd_hda_codec_dev_free +ffffffff81634190 t set_dig_out +ffffffff816341f0 t snd_hda_spdif_default_put +ffffffff816342e0 t snd_hda_spdif_in_status_get +ffffffff81634330 t add_slave +ffffffff81634340 t map_slaves +ffffffff81634440 t vmaster_mute_mode_info +ffffffff81634460 t snd_hda_spdif_in_switch_put +ffffffff816344d0 t get_hda_cvt_setup +ffffffff81634530 t update_pcm_format.part.1 +ffffffff81634580 t snd_hda_codec_register.part.4 +ffffffff816345b0 t snd_hda_codec_dev_register +ffffffff816345d0 t snd_hda_codec_setup_stream.part.5 +ffffffff81634830 t hda_pcm_default_prepare +ffffffff81634850 t setup_dig_out_stream +ffffffff816349a0 t __snd_hda_codec_cleanup_stream.part.6 +ffffffff816349e0 t hda_pcm_default_cleanup +ffffffff81634a00 t cleanup_dig_out_stream +ffffffff81634a40 t snd_hda_correct_pin_ctl.part.9 +ffffffff81634b20 t read_widget_caps.constprop.10 +ffffffff81634ba0 t find_mixer_ctl.isra.2.constprop.11 +ffffffff81634c70 T snd_hda_sequence_write +ffffffff81634ca0 T snd_hda_override_conn_list +ffffffff81634d90 T snd_hda_get_conn_list +ffffffff81634f20 T snd_hda_get_connections +ffffffff81634f90 T snd_hda_get_conn_index +ffffffff81635090 T snd_hda_get_num_devices +ffffffff81635100 T snd_hda_get_devices +ffffffff81635190 T snd_hda_get_dev_select +ffffffff816351b0 T snd_hda_set_dev_select +ffffffff81635210 T snd_hda_add_pincfg +ffffffff81635290 T snd_hda_codec_set_pincfg +ffffffff816352b0 T snd_hda_codec_get_pincfg +ffffffff81635350 T snd_hda_codec_set_pin_target +ffffffff816353b0 T snd_hda_codec_get_pin_target +ffffffff81635400 T snd_hda_shutup_pins +ffffffff81635460 T snd_hda_codec_pcm_put +ffffffff816354d0 T snd_hda_codec_pcm_new +ffffffff816355a0 T snd_hda_codec_register +ffffffff816355c0 T snd_hda_codec_update_widgets +ffffffff81635610 T snd_hda_codec_setup_stream +ffffffff81635620 T __snd_hda_codec_cleanup_stream +ffffffff81635630 T query_amp_caps +ffffffff816356a0 t get_ctl_amp_tlv.isra.7 +ffffffff81635710 T snd_hda_mixer_amp_tlv +ffffffff81635760 t init_slave_0dB +ffffffff81635830 T snd_hda_check_amp_caps +ffffffff81635890 T snd_hda_override_amp_caps +ffffffff816358e0 T snd_hda_codec_amp_update +ffffffff81635950 T snd_hda_codec_amp_stereo +ffffffff816359d0 t snd_hda_spdif_out_switch_put +ffffffff81635ac0 T snd_hda_codec_amp_init +ffffffff81635bb0 T snd_hda_codec_amp_init_stereo +ffffffff81635c30 T snd_hda_mixer_amp_volume_info +ffffffff81635ce0 T snd_hda_mixer_amp_volume_get +ffffffff81635de0 T snd_hda_mixer_amp_volume_put +ffffffff81635f40 T snd_hda_set_vmaster_tlv +ffffffff81635f80 T snd_hda_find_mixer_ctl +ffffffff81635f90 T snd_hda_ctl_add +ffffffff81636020 T snd_hda_add_nid +ffffffff81636080 T snd_hda_ctls_clear +ffffffff816360e0 T snd_hda_codec_cleanup_for_unbind +ffffffff816362d0 T snd_hda_lock_devices +ffffffff816363d0 T snd_hda_unlock_devices +ffffffff81636400 T snd_hda_codec_reset +ffffffff81636460 T __snd_hda_add_vmaster +ffffffff81636570 T snd_hda_add_vmaster_hook +ffffffff816365f0 T snd_hda_sync_vmaster_hook +ffffffff81636620 t vmaster_mute_mode_put +ffffffff81636660 T snd_hda_mixer_amp_switch_info +ffffffff81636690 T snd_hda_mixer_amp_switch_get +ffffffff81636770 T snd_hda_mixer_amp_switch_put +ffffffff81636860 T snd_hda_create_dig_out_ctls +ffffffff81636a30 T snd_hda_spdif_out_of_nid +ffffffff81636a80 T snd_hda_spdif_ctls_unassign +ffffffff81636ac0 T snd_hda_spdif_ctls_assign +ffffffff81636bb0 T snd_hda_create_spdif_share_sw +ffffffff81636bf0 T snd_hda_create_spdif_in_ctls +ffffffff81636ce0 T snd_hda_codec_set_power_to_all +ffffffff81636d90 t hda_set_power_state +ffffffff81636ee0 T snd_hda_codec_new +ffffffff816371d0 t hda_call_codec_resume +ffffffff816372d0 t hda_codec_runtime_resume +ffffffff81637310 t hda_call_codec_suspend +ffffffff816373b0 t hda_codec_runtime_suspend +ffffffff81637450 T snd_hda_codec_eapd_power_filter +ffffffff81637500 T snd_hda_update_power_acct +ffffffff81637560 T snd_hda_codec_build_controls +ffffffff81637740 T snd_hda_codec_prepare +ffffffff81637850 T snd_hda_codec_cleanup +ffffffff816378a0 T snd_hda_codec_parse_pcms +ffffffff81637a60 T snd_hda_codec_build_pcms +ffffffff81637c00 T snd_hda_add_new_ctls +ffffffff81637d00 T snd_hda_set_power_save +ffffffff81637db0 T snd_hda_check_amp_list_power +ffffffff81637ee0 T snd_hda_input_mux_info +ffffffff81637f20 T snd_hda_input_mux_put +ffffffff81637f70 T snd_hda_enum_helper_info +ffffffff81637fa0 T snd_hda_multi_out_dig_open +ffffffff81637ff0 T snd_hda_multi_out_dig_prepare +ffffffff81638040 T snd_hda_multi_out_dig_cleanup +ffffffff81638080 T snd_hda_multi_out_dig_close +ffffffff816380b0 T snd_hda_multi_out_analog_open +ffffffff816381d0 T snd_hda_multi_out_analog_prepare +ffffffff81638460 T snd_hda_multi_out_analog_cleanup +ffffffff81638560 T snd_hda_get_default_vref +ffffffff816385f0 T snd_hda_correct_pin_ctl +ffffffff81638600 T _snd_hda_set_pin_ctl +ffffffff816386e0 T snd_hda_add_imux_item +ffffffff81638800 T snd_hda_bus_reset_codecs +ffffffff81638860 T snd_print_pcm_bits +ffffffff816388e0 t hda_free_jack_priv +ffffffff81638900 t read_pin_sense +ffffffff81638980 t is_jack_detectable.part.0 +ffffffff81638a10 t snd_hda_jack_tbl_new +ffffffff81638a80 t call_jack_callback.isra.2 +ffffffff81638b20 T is_jack_detectable +ffffffff81638b40 T snd_hda_jack_tbl_get +ffffffff81638b90 T snd_hda_jack_tbl_get_from_tag +ffffffff81638be0 T snd_hda_jack_tbl_clear +ffffffff81638c70 T snd_hda_jack_set_dirty_all +ffffffff81638ca0 T snd_hda_jack_detect_state +ffffffff81638d10 t jack_detect_update +ffffffff81638dd0 T snd_hda_pin_sense +ffffffff81638e30 T snd_hda_jack_detect_enable_callback +ffffffff81638ef0 T snd_hda_jack_detect_enable +ffffffff81638f10 T snd_hda_jack_set_gating_jack +ffffffff81638f60 T snd_hda_jack_report_sync +ffffffff81638ff0 T snd_hda_jack_add_kctl +ffffffff816390d0 t add_jack_kctl.part.3 +ffffffff81639210 T snd_hda_jack_add_kctls +ffffffff81639460 T snd_hda_jack_unsol_event +ffffffff816394d0 T snd_hda_jack_poll_all +ffffffff81639570 t compare_seq +ffffffff81639580 t compare_input_type +ffffffff816395b0 t hda_get_input_pin_label +ffffffff81639720 t check_output_pfx +ffffffff81639780 t sort_pins_by_sequence +ffffffff816397d0 t fill_audio_out_name +ffffffff81639a10 t apply_fixup +ffffffff81639b90 t can_be_headset_mic.part.1 +ffffffff81639be0 T snd_hda_get_input_pin_attr +ffffffff81639c30 T hda_get_autocfg_input_label +ffffffff81639d80 T snd_hda_parse_pin_defcfg +ffffffff8163a7f0 T snd_hda_get_pin_label +ffffffff8163a9f0 T snd_hda_add_verbs +ffffffff8163aa20 T snd_hda_apply_verbs +ffffffff8163aa60 T snd_hda_apply_pincfgs +ffffffff8163aa90 T snd_hda_apply_fixup +ffffffff8163aab0 T snd_hda_pick_pin_fixup +ffffffff8163abd0 T snd_hda_pick_fixup +ffffffff8163ad50 t power_off_acct_show +ffffffff8163ad90 t power_on_acct_show +ffffffff8163add0 t modelname_show +ffffffff8163ae10 t chip_name_show +ffffffff8163ae50 t vendor_name_show +ffffffff8163ae90 t mfg_show +ffffffff8163aec0 t afg_show +ffffffff8163aef0 t revision_id_show +ffffffff8163af20 t subsystem_id_show +ffffffff8163af50 t vendor_id_show +ffffffff8163af80 t pin_configs_show +ffffffff8163b000 t driver_pin_configs_show +ffffffff8163b020 t init_pin_configs_show +ffffffff8163b040 T snd_hda_sysfs_init +ffffffff8163b060 T snd_hda_sysfs_clear +ffffffff8163b070 t azx_pcm_hw_params +ffffffff8163b0b0 T azx_get_pos_lpib +ffffffff8163b0d0 t azx_link_power +ffffffff8163b0f0 t azx_pcm_mmap +ffffffff8163b130 t azx_get_time_info +ffffffff8163b380 t azx_get_sync_time +ffffffff8163b600 t azx_pcm_trigger +ffffffff8163b820 t azx_pcm_prepare +ffffffff8163b960 t azx_pcm_hw_free +ffffffff8163b9e0 t azx_pcm_close +ffffffff8163ba80 t azx_pcm_open +ffffffff8163bd70 t azx_pcm_free +ffffffff8163bdc0 t azx_rirb_get_response +ffffffff8163bfe0 t stream_update +ffffffff8163c030 t azx_send_cmd.part.2 +ffffffff8163c190 t azx_send_cmd +ffffffff8163c1b0 t azx_get_response +ffffffff8163c1e0 T azx_get_pos_posbuf +ffffffff8163c1f0 T azx_get_position +ffffffff8163c2e0 t azx_pcm_pointer +ffffffff8163c320 T snd_hda_attach_pcm_stream +ffffffff8163c4e0 T azx_init_chip +ffffffff8163c520 T azx_stop_all_streams +ffffffff8163c560 T azx_stop_chip +ffffffff8163c570 T azx_interrupt +ffffffff8163c6c0 T snd_hda_bus_reset +ffffffff8163c700 T azx_bus_init +ffffffff8163c810 T azx_probe_codecs +ffffffff8163caa0 T azx_codec_configure +ffffffff8163cb00 T azx_init_streams +ffffffff8163cbb0 T azx_free_streams +ffffffff8163cc30 t hdmi_get_spk_alloc +ffffffff8163cc80 t hdmi_get_chmap +ffffffff8163cce0 t is_hdmi_pcm_attached +ffffffff8163cd30 t free_hdmi_jack_priv +ffffffff8163cd40 t nvhdmi_chmap_cea_alloc_validate_get_type +ffffffff8163cd70 t nvhdmi_chmap_validate +ffffffff8163cd90 t atihdmi_pin_get_slot_channel +ffffffff8163ce60 t intel_not_share_assigned_cvt +ffffffff8163cf90 t hdmi_eld_ctl_info +ffffffff8163d050 t check_non_pcm_per_cvt +ffffffff8163d0a0 t hdmi_eld_ctl_get +ffffffff8163d1d0 t nvhdmi_8ch_7x_set_info_frame_parameters +ffffffff8163d240 t tegra_hdmi_set_format +ffffffff8163d2e0 t atihdmi_pin_setup_infoframe +ffffffff8163d300 t atihdmi_pin_hbr_setup +ffffffff8163d370 t nvhdmi_8ch_7x_pcm_prepare +ffffffff8163d590 t hdmi_setup_audio_infoframe +ffffffff8163d6f0 t hdmi_set_chmap +ffffffff8163d7b0 t atihdmi_pin_set_slot_channel +ffffffff8163d900 t hinfo_to_pcm_index +ffffffff8163d960 t hdmi_pcm_close +ffffffff8163db20 t generic_spec_free +ffffffff8163db60 t generic_hdmi_free +ffffffff8163dc00 t simple_playback_free +ffffffff8163dc30 t generic_hdmi_init +ffffffff8163dd30 t atihdmi_init +ffffffff8163ddd0 t generic_hdmi_build_pcms +ffffffff8163dec0 t simple_playback_build_pcms +ffffffff8163dfe0 t nvhdmi_7x_8ch_build_pcms +ffffffff8163e000 t generic_hdmi_playback_pcm_cleanup +ffffffff8163e020 t tegra_hdmi_pcm_cleanup +ffffffff8163e050 t generic_hdmi_playback_pcm_prepare +ffffffff8163e220 t tegra_hdmi_pcm_prepare +ffffffff8163e240 t hdmi_setup_stream +ffffffff8163e310 t atihdmi_setup_stream +ffffffff8163e390 t hdmi_pin_hbr_setup +ffffffff8163e420 t alloc_generic_hdmi +ffffffff8163e560 t alloc_intel_hdmi +ffffffff8163e590 t patch_simple_hdmi +ffffffff8163e6f0 t patch_via_hdmi +ffffffff8163e700 t hdmi_parse_codec +ffffffff8163eaf0 t generic_hdmi_init_per_pins +ffffffff8163ebb0 t i915_hsw_setup_stream +ffffffff8163ec50 t intel_haswell_enable_all_pins +ffffffff8163ecc0 t intel_haswell_fixup_enable_dp12 +ffffffff8163ed30 t haswell_set_power_state +ffffffff8163ed80 t simple_hdmi_unsol_event +ffffffff8163eda0 t simple_playback_init +ffffffff8163ee20 t simple_playback_pcm_prepare +ffffffff8163ee40 t simple_playback_pcm_close +ffffffff8163ee60 t nvhdmi_8ch_7x_pcm_close +ffffffff8163ef00 t simple_playback_pcm_open +ffffffff8163ef80 t nvhdmi_7x_init_8ch +ffffffff8163ef90 t nvhdmi_7x_init_2ch +ffffffff8163efa0 t atihdmi_paired_chmap_validate +ffffffff8163f0a0 t atihdmi_paired_cea_alloc_to_tlv_chmap +ffffffff8163f150 t atihdmi_pin_get_eld +ffffffff8163f180 t hdmi_choose_cvt.isra.1 +ffffffff8163f270 t atihdmi_paired_chmap_cea_alloc_validate_get_type +ffffffff8163f2c0 t hdmi_present_sense +ffffffff8163fa10 t generic_hdmi_resume +ffffffff8163fa60 t check_presence_and_report +ffffffff8163fae0 t hdmi_unsol_event +ffffffff8163fb60 t jack_callback +ffffffff8163fb70 t hdmi_repoll_eld +ffffffff8163fbc0 t intel_pin_eld_notify +ffffffff8163fc10 t tegra_hdmi_build_pcms +ffffffff8163fc90 t hdmi_pcm_open +ffffffff81640040 t generic_hdmi_build_jack +ffffffff816401e0 t generic_hdmi_build_controls +ffffffff816403c0 t simple_playback_build_controls +ffffffff816403f0 t nvhdmi_7x_8ch_build_controls +ffffffff81640480 t patch_nvhdmi_2ch +ffffffff816404d0 t patch_nvhdmi_8ch_7x +ffffffff816405a0 t parse_intel_hdmi +ffffffff81640600 t patch_i915_cpt_hdmi +ffffffff81640620 t patch_i915_byt_hdmi +ffffffff81640670 t patch_generic_hdmi +ffffffff816406c0 t patch_tegra_hdmi +ffffffff816406e0 t patch_nvhdmi +ffffffff81640720 t patch_atihdmi +ffffffff81640840 t intel_hsw_common_init.part.21 +ffffffff816408d0 t patch_i915_glk_hdmi +ffffffff816408f0 t i915_pin_cvt_fixup +ffffffff816409a0 t hdmi_pin_setup_infoframe +ffffffff81640b30 t patch_i915_hsw_hdmi +ffffffff81640b50 t hdmi_show_short_audio_desc.isra.0 +ffffffff81640c40 T snd_hdmi_parse_eld +ffffffff81640f70 T snd_hdmi_get_eld_size +ffffffff81640f90 T snd_hdmi_get_eld +ffffffff81641070 T snd_hdmi_show_eld +ffffffff816410c0 T snd_hdmi_eld_update_pcm_info +ffffffff816411a0 T snd_hdmi_get_eld_ati +ffffffff81641580 t azx_intel_link_power +ffffffff81641590 t azx_clear_irq_pending +ffffffff816415f0 t azx_via_get_position +ffffffff816416c0 t azx_runtime_idle +ffffffff81641720 t azx_dev_disconnect +ffffffff81641730 t pci_azx_writel +ffffffff81641740 t pci_azx_readl +ffffffff81641750 t pci_azx_writew +ffffffff81641760 t pci_azx_readw +ffffffff81641770 t pci_azx_writeb +ffffffff81641780 t pci_azx_readb +ffffffff81641790 t update_pci_byte +ffffffff816417e0 t azx_init_pci +ffffffff81641940 t intel_ml_lctl_set_power +ffffffff816419a0 t hda_intel_init_chip +ffffffff81641b50 t azx_runtime_resume +ffffffff81641c60 t azx_shutdown +ffffffff81641c90 t azx_runtime_suspend +ffffffff81641d10 t azx_thaw_noirq +ffffffff81641d40 t azx_freeze_noirq +ffffffff81641d70 t azx_suspend +ffffffff81641e10 t azx_remove +ffffffff81641e60 t azx_get_delay_from_lpib +ffffffff81641f10 t azx_position_ok +ffffffff81642090 t azx_irq_pending_work +ffffffff816421e0 t pcm_mmap_prepare +ffffffff81642210 t azx_free +ffffffff81642330 t azx_dev_free +ffffffff81642340 t azx_probe +ffffffff81642ac0 t param_set_xint +ffffffff81642b50 t azx_acquire_irq +ffffffff81642c20 t azx_resume +ffffffff81642cd0 t disable_msi_reset_irq +ffffffff81642d20 t azx_probe_work +ffffffff81643570 t __mark_pages_wc +ffffffff816435e0 t dma_free_pages +ffffffff81643600 t dma_alloc_pages +ffffffff81643630 t substream_free_pages +ffffffff81643670 t substream_alloc_pages +ffffffff81643710 t azx_get_pos_skl +ffffffff81643780 t azx_position_check +ffffffff816437e0 t __usb_audio_resume +ffffffff816438d0 t usb_audio_reset_resume +ffffffff816438e0 t usb_audio_resume +ffffffff816438f0 t usb_audio_suspend +ffffffff81643a10 t usb_audio_disconnect +ffffffff81643c00 t snd_usb_audio_free +ffffffff81643c80 t snd_usb_audio_dev_free +ffffffff81643c90 t snd_usb_create_stream +ffffffff81643e40 t usb_audio_probe +ffffffff81644820 t snd_usb_autosuspend.part.2 +ffffffff81644840 T snd_usb_unlock_shutdown +ffffffff81644870 T snd_usb_autoresume +ffffffff816448a0 T snd_usb_lock_shutdown +ffffffff81644900 T snd_usb_autosuspend +ffffffff81644910 t snd_usb_find_clock_source.isra.0 +ffffffff81644950 t uac_clock_selector_get_val.isra.4 +ffffffff816449a0 t __uac_clock_find_source +ffffffff81644d90 t get_sample_rate_v2.isra.5 +ffffffff81644e20 T snd_usb_clock_find_source +ffffffff81644e60 T snd_usb_init_sample_rate +ffffffff81645160 t wait_clear_urbs +ffffffff81645200 t deactivate_urbs +ffffffff816452a0 t release_urbs +ffffffff81645360 t snd_usb_endpoint_next_packet_size.part.2 +ffffffff816453b0 t prepare_outbound_urb +ffffffff816455c0 t queue_pending_output_urbs +ffffffff81645730 T snd_usb_endpoint_implicit_feedback_sink +ffffffff81645760 T snd_usb_endpoint_next_packet_size +ffffffff81645780 T snd_usb_add_endpoint +ffffffff81645940 T snd_usb_endpoint_sync_pending_stop +ffffffff81645960 T snd_usb_endpoint_set_params +ffffffff81645fe0 T snd_usb_endpoint_start +ffffffff816462b0 T snd_usb_endpoint_stop +ffffffff816462e0 T snd_usb_endpoint_deactivate +ffffffff81646310 T snd_usb_endpoint_release +ffffffff81646320 T snd_usb_endpoint_free +ffffffff81646330 T snd_usb_handle_sync_urb +ffffffff816465b0 t snd_complete_urb +ffffffff816467f0 t parse_audio_format_rates_v1.isra.0 +ffffffff816469f0 t parse_uac2_sample_rate_range.isra.1 +ffffffff81646b80 t parse_audio_format_rates_v2 +ffffffff81646d80 T snd_usb_parse_audio_format +ffffffff816472f0 T snd_usb_combine_bytes +ffffffff81647330 T snd_usb_find_desc +ffffffff81647380 T snd_usb_find_csint_desc +ffffffff816473f0 T snd_usb_ctl_msg +ffffffff81647540 T snd_usb_parse_datainterval +ffffffff81647570 t snd_usb_mixer_dump_cval +ffffffff81647580 T snd_usb_mixer_vol_tlv +ffffffff816475f0 T snd_usb_mixer_elem_free +ffffffff81647610 t usb_mixer_selector_elem_free +ffffffff816476a0 t find_audio_control_unit +ffffffff816476e0 t check_input_term +ffffffff81647990 t get_term_name +ffffffff81647b80 t mixer_ctl_selector_info +ffffffff81647bb0 t convert_signed_value.isra.1 +ffffffff81647c10 t get_ctl_value +ffffffff81647ea0 t mixer_ctl_selector_get +ffffffff81647f30 t mixer_ctl_procunit_get +ffffffff81647fd0 t get_abs_value.part.5 +ffffffff81648000 t snd_usb_get_cur_mix_value.part.11 +ffffffff81648050 t mixer_ctl_feature_get +ffffffff816481b0 t snd_usb_mixer_disconnect.part.14 +ffffffff816481e0 t snd_usb_mixer_free +ffffffff81648230 t snd_usb_mixer_dev_free +ffffffff81648240 T snd_usb_get_cur_mix_value +ffffffff81648260 T snd_usb_mixer_set_ctl_value +ffffffff816483e0 t mixer_ctl_selector_put +ffffffff81648470 t mixer_ctl_procunit_put +ffffffff81648500 t snd_usb_set_cur_mix_value.part.12 +ffffffff81648550 T snd_usb_set_cur_mix_value +ffffffff81648580 t mixer_ctl_feature_put +ffffffff816486d0 t get_min_max_with_quirks +ffffffff81648d60 t mixer_ctl_feature_info +ffffffff81648e20 t restore_mixer_value +ffffffff81648ec0 T snd_usb_mixer_add_control +ffffffff81648f30 t build_feature_ctl +ffffffff816494d0 t build_audio_procunit +ffffffff81649950 t parse_audio_unit +ffffffff8164a6b0 t snd_usb_mixer_controls +ffffffff8164a810 T snd_usb_mixer_notify_id +ffffffff8164a860 t snd_usb_mixer_interrupt +ffffffff8164aa10 T snd_usb_create_mixer +ffffffff8164ac70 T snd_usb_mixer_disconnect +ffffffff8164ac80 T snd_usb_mixer_suspend +ffffffff8164aca0 T snd_usb_mixer_resume +ffffffff8164ad20 T snd_usb_mixer_elem_init_std +ffffffff8164ad40 t snd_usb_sbrc_hwdep_poll +ffffffff8164ad80 t snd_audigy2nx_led_get +ffffffff8164ad90 t snd_emu0204_ch_switch_get +ffffffff8164ada0 t snd_xonar_u1_switch_get +ffffffff8164adc0 t snd_nativeinstruments_control_get +ffffffff8164add0 t snd_ftu_eff_switch_get +ffffffff8164ade0 t snd_microii_spdif_info +ffffffff8164ae00 t snd_microii_spdif_mask_get +ffffffff8164ae10 t snd_microii_spdif_switch_get +ffffffff8164ae30 t snd_soundblaster_e1_switch_get +ffffffff8164ae40 t snd_ftu_eff_switch_update +ffffffff8164aed0 t snd_ftu_eff_switch_put +ffffffff8164af20 t snd_xonar_u1_switch_update +ffffffff8164af80 t snd_xonar_u1_switch_put +ffffffff8164afc0 t snd_xonar_u1_switch_resume +ffffffff8164afd0 t snd_microii_spdif_switch_update +ffffffff8164b040 t snd_microii_spdif_switch_put +ffffffff8164b080 t snd_microii_spdif_default_update +ffffffff8164b150 t snd_microii_spdif_default_put +ffffffff8164b1b0 t snd_soundblaster_e1_switch_update +ffffffff8164b230 t snd_soundblaster_e1_switch_put +ffffffff8164b270 t snd_soundblaster_e1_switch_resume +ffffffff8164b280 t snd_usb_soundblaster_remote_complete +ffffffff8164b300 t snd_usb_sbrc_hwdep_read +ffffffff8164b3e0 t add_single_ctl_with_resume +ffffffff8164b480 t snd_emu0204_ch_switch_info +ffffffff8164b4a0 t snd_ftu_eff_switch_info +ffffffff8164b4c0 t snd_mbox1_switch_info +ffffffff8164b4e0 t snd_soundblaster_e1_switch_info +ffffffff8164b500 t snd_create_std_mono_ctl_offset +ffffffff8164b620 t snd_microii_spdif_default_get +ffffffff8164b720 t snd_ni_update_cur_val +ffffffff8164b790 t snd_nativeinstruments_control_put +ffffffff8164b7e0 t snd_ftu_create_effect_switch +ffffffff8164b8b0 t snd_audigy2nx_led_update.isra.1 +ffffffff8164b990 t snd_audigy2nx_led_resume +ffffffff8164b9b0 t snd_audigy2nx_led_put +ffffffff8164ba00 t snd_emu0204_ch_switch_update.isra.2 +ffffffff8164ba70 t snd_emu0204_ch_switch_put +ffffffff8164bab0 t snd_emu0204_ch_switch_resume +ffffffff8164bad0 t snd_mbox1_switch_update.isra.3 +ffffffff8164bc40 t snd_mbox1_switch_put +ffffffff8164bc90 t snd_mbox1_switch_resume +ffffffff8164bcb0 t snd_nativeinstruments_create_mixer +ffffffff8164be00 t snd_mbox1_switch_get +ffffffff8164be10 T snd_emuusb_set_samplerate +ffffffff8164be60 T snd_usb_mixer_apply_create_quirk +ffffffff8164ca00 T snd_usb_mixer_rc_memory_change +ffffffff8164ca50 T snd_usb_mixer_fu_apply_quirk +ffffffff8164cb30 t scarlett_ctl_switch_info +ffffffff8164cb60 t scarlett_ctl_info +ffffffff8164cba0 t scarlett_ctl_meter_get +ffffffff8164cc50 t scarlett_ctl_enum_info +ffffffff8164cc80 t scarlett_ctl_enum_get +ffffffff8164ccd0 t scarlett_ctl_get +ffffffff8164cd70 t scarlett_ctl_switch_get +ffffffff8164cde0 t scarlett_ctl_enum_put +ffffffff8164ce40 t scarlett_ctl_put +ffffffff8164ced0 t scarlett_ctl_switch_put +ffffffff8164cf60 t scarlett_ctl_resume +ffffffff8164cfb0 t scarlett_ctl_enum_dynamic_info +ffffffff8164d070 t add_new_ctl +ffffffff8164d150 t add_output_ctls +ffffffff8164d2f0 t scarlett_controls_create_generic +ffffffff8164d480 t scarlett_ctl_enum_resume +ffffffff8164d4a0 T snd_scarlett_controls_create +ffffffff8164d770 t snd_us16x08_route_get +ffffffff8164d790 t snd_us16x08_master_info +ffffffff8164d7c0 t snd_us16x08_master_get +ffffffff8164d7e0 t snd_us16x08_bus_get +ffffffff8164d810 t snd_us16x08_mix_info +ffffffff8164d820 t snd_us16x08_comp_get +ffffffff8164d850 t snd_us16x08_eqswitch_get +ffffffff8164d890 t snd_us16x08_eq_get +ffffffff8164d8d0 t snd_us16x08_meter_info +ffffffff8164d900 t snd_us16x08_meter_put +ffffffff8164d930 t snd_us16x08_route_info +ffffffff8164d950 t elem_private_free +ffffffff8164d990 t add_new_ctl +ffffffff8164da90 t snd_us16x08_send_urb.isra.0 +ffffffff8164dac0 t snd_us16x08_comp_put +ffffffff8164dbf0 t snd_us16x08_eq_put +ffffffff8164dd20 t snd_us16x08_channel_put +ffffffff8164dde0 t snd_us16x08_bus_put +ffffffff8164dec0 t snd_us16x08_master_put +ffffffff8164df80 t snd_us16x08_route_put +ffffffff8164e030 t snd_us16x08_eqswitch_put +ffffffff8164e150 t snd_us16x08_recv_urb.constprop.1 +ffffffff8164e1a0 t snd_us16x08_meter_get +ffffffff8164e430 t snd_us16x08_channel_get +ffffffff8164e450 T snd_us16x08_controls_create +ffffffff8164e810 t retire_capture_urb +ffffffff8164ea90 t start_endpoints +ffffffff8164eb70 t snd_usb_pcm_open +ffffffff8164f000 t snd_usb_capture_open +ffffffff8164f010 t snd_usb_playback_open +ffffffff8164f020 t hw_check_valid_format.isra.1 +ffffffff8164f0c0 t hw_rule_period_time +ffffffff8164f180 t hw_rule_format +ffffffff8164f220 t hw_rule_channels +ffffffff8164f310 t hw_rule_rate +ffffffff8164f410 t copy_to_urb.isra.5 +ffffffff8164f4f0 t prepare_playback_urb +ffffffff8164fab0 t stop_endpoints +ffffffff8164fb10 t snd_usb_substream_capture_trigger +ffffffff8164fb90 t snd_usb_substream_playback_trigger +ffffffff8164fc20 t snd_usb_hw_free +ffffffff8164fc90 t snd_usb_pcm_close.isra.7 +ffffffff8164fd30 t snd_usb_capture_close +ffffffff8164fd40 t snd_usb_playback_close +ffffffff8164fd50 t snd_usb_pcm_delay.part.8 +ffffffff8164fdc0 t snd_usb_pcm_pointer +ffffffff8164fe60 t retire_playback_urb +ffffffff8164ff10 T snd_usb_pcm_delay +ffffffff8164ff30 T snd_usb_init_pitch +ffffffff81650040 t set_format +ffffffff816505f0 t snd_usb_pcm_prepare +ffffffff81650950 t snd_usb_hw_params +ffffffff81650b50 T snd_usb_set_pcm_ops +ffffffff81650b70 T snd_usb_audio_create_proc +ffffffff81650b80 T snd_usb_proc_pcm_format_add +ffffffff81650ba0 t ignore_interface_quirk +ffffffff81650bb0 t create_align_transfer_quirk +ffffffff81650bc0 t create_standard_mixer_quirk +ffffffff81650be0 t create_any_midi_quirk +ffffffff81650c00 t create_uaxx_quirk +ffffffff81650dd0 t create_fixed_stream_quirk +ffffffff81650f80 t create_standard_audio_quirk +ffffffff81650ff0 t create_auto_pcm_quirk +ffffffff81651090 t snd_usb_cm106_write_int_reg +ffffffff816510e0 t create_auto_midi_quirk.isra.6 +ffffffff81651280 t create_autodetect_quirks +ffffffff81651370 T snd_usb_create_quirk +ffffffff816513b0 t create_composite_quirk +ffffffff81651490 T snd_usb_apply_interface_quirk +ffffffff816515f0 T snd_usb_apply_boot_quirk +ffffffff81651b30 T snd_usb_is_big_endian_format +ffffffff81651b90 T snd_usb_set_format_quirk +ffffffff81651c60 T snd_usb_get_sample_rate_quirk +ffffffff81651cd0 T snd_usb_select_mode_quirk +ffffffff81651e20 T snd_usb_endpoint_start_quirk +ffffffff81651e90 T snd_usb_set_interface_quirk +ffffffff81651ed0 T snd_usb_ctl_msg_quirk +ffffffff81652010 T snd_usb_interface_dsd_format_quirks +ffffffff816521c0 t usb_chmap_ctl_info +ffffffff816521f0 t snd_usb_init_substream +ffffffff816522d0 t usb_chmap_ctl_get +ffffffff81652340 t free_substream.part.0 +ffffffff816523a0 t add_chmap.part.1 +ffffffff816523f0 t usb_chmap_ctl_tlv +ffffffff81652560 t snd_usb_audio_pcm_free +ffffffff816525f0 T snd_usb_add_audio_stream +ffffffff81652940 T snd_usb_parse_audio_interface +ffffffff81653220 t snd_usbmidi_output_standard_packet +ffffffff81653240 t snd_usbmidi_output_midiman_packet +ffffffff81653270 t snd_usbmidi_get_port_info +ffffffff816532c0 t roland_load_get +ffffffff816532d0 t snd_usbmidi_out_endpoint_clear +ffffffff81653330 t snd_usbmidi_in_endpoint_delete +ffffffff81653390 t snd_usbmidi_rawmidi_free +ffffffff81653400 t snd_usbmidi_submit_urb +ffffffff81653440 t snd_usbmidi_do_output +ffffffff81653530 t snd_usbmidi_out_tasklet +ffffffff81653540 t snd_usbmidi_error_timer +ffffffff816535f0 t roland_load_put +ffffffff81653640 t snd_usbmidi_input_trigger +ffffffff81653670 t snd_usbmidi_standard_output +ffffffff81653940 t snd_usbmidi_input_data +ffffffff81653980 t ch345_broken_sysex_input +ffffffff81653a60 t snd_usbmidi_akai_input +ffffffff81653ac0 t snd_usbmidi_standard_input +ffffffff81653b20 t snd_usbmidi_cme_input +ffffffff81653b50 t snd_usbmidi_emagic_input +ffffffff81653c40 t snd_usbmidi_raw_input +ffffffff81653c50 t snd_usbmidi_midiman_input +ffffffff81653cb0 t snd_usbmidi_maudio_broken_running_status_input +ffffffff81653d70 t snd_usbmidi_emagic_output +ffffffff81653ea0 t snd_usbmidi_akai_output +ffffffff816540a0 t roland_load_info +ffffffff816540c0 t snd_usbmidi_output_drain +ffffffff816541a0 t snd_usbmidi_urb_error.isra.2 +ffffffff816541f0 t snd_usbmidi_in_urb_complete +ffffffff81654270 t snd_usbmidi_out_urb_complete +ffffffff81654330 t snd_usbmidi_raw_output +ffffffff81654380 t snd_usbmidi_novation_output +ffffffff816543e0 t snd_usbmidi_us122l_output +ffffffff81654470 t snd_usbmidi_ftdi_input +ffffffff81654490 t snd_usbmidi_novation_input +ffffffff816544c0 t snd_usbmidi_us122l_input +ffffffff816544f0 t send_bulk_static_data.isra.9 +ffffffff81654560 t snd_usbmidi_emagic_finish_out +ffffffff81654580 t snd_usbmidi_emagic_init_out +ffffffff816545c0 t snd_usbmidi_get_ms_info.isra.10 +ffffffff81654790 t snd_usbmidi_detect_endpoints +ffffffff81654940 t snd_usbmidi_detect_per_port_endpoints +ffffffff81654990 t snd_usbmidi_output_trigger +ffffffff816549f0 t snd_usbmidi_in_endpoint_create.isra.13 +ffffffff81654bf0 t snd_usbmidi_out_endpoint_create.isra.14 +ffffffff81654ef0 t snd_usbmidi_init_substream +ffffffff81654fc0 t snd_usbmidi_input_stop.part.17 +ffffffff81655030 t snd_usbmidi_input_start.part.18 +ffffffff816550c0 t substream_open.isra.19 +ffffffff81655270 t snd_usbmidi_input_close +ffffffff81655280 t snd_usbmidi_input_open +ffffffff816552a0 t snd_usbmidi_output_close +ffffffff816552b0 t snd_usbmidi_output_open +ffffffff81655360 T snd_usbmidi_disconnect +ffffffff816554b0 T snd_usbmidi_input_stop +ffffffff816554c0 T snd_usbmidi_input_start +ffffffff816554e0 T snd_usbmidi_suspend +ffffffff81655510 T snd_usbmidi_resume +ffffffff81655550 T __snd_usbmidi_create +ffffffff81655d40 t hda_uevent +ffffffff81655d80 t hda_bus_match +ffffffff81655df0 T hdac_get_device_id +ffffffff81655e30 t process_unsol_events +ffffffff81655ea0 T snd_hdac_bus_init +ffffffff81655f70 T snd_hdac_bus_exit +ffffffff81655f90 T snd_hdac_bus_exec_verb_unlocked +ffffffff81656030 T snd_hdac_bus_exec_verb +ffffffff81656080 T snd_hdac_bus_queue_event +ffffffff816560d0 T snd_hdac_bus_add_device +ffffffff81656140 T snd_hdac_bus_remove_device +ffffffff816561b0 T snd_hdac_device_exit +ffffffff81656210 t default_release +ffffffff81656220 T snd_hdac_device_register +ffffffff81656260 T snd_hdac_device_unregister +ffffffff81656290 T snd_hdac_device_set_chip_name +ffffffff816562e0 T snd_hdac_codec_modalias +ffffffff81656310 T snd_hdac_make_cmd +ffffffff81656370 T snd_hdac_exec_verb +ffffffff816563a0 T snd_hdac_read +ffffffff816563c0 T _snd_hdac_read_parm +ffffffff816563e0 t query_pcm_param +ffffffff81656480 t query_stream_param +ffffffff816564f0 T snd_hdac_read_parm_uncached +ffffffff81656520 T snd_hdac_override_parm +ffffffff81656560 T snd_hdac_get_sub_nodes +ffffffff816565b0 T snd_hdac_refresh_widgets +ffffffff81656640 T snd_hdac_device_init +ffffffff816569c0 T snd_hdac_get_connections +ffffffff81656c20 T snd_hdac_power_up +ffffffff81656c30 T snd_hdac_power_down +ffffffff81656c50 T snd_hdac_power_up_pm +ffffffff81656c90 T snd_hdac_keep_power_up +ffffffff81656ce0 T snd_hdac_power_down_pm +ffffffff81656d20 T snd_hdac_link_power +ffffffff81656d50 T snd_hdac_calc_stream_format +ffffffff81656e20 T snd_hdac_query_supported_pcm +ffffffff81657060 T snd_hdac_is_supported_format +ffffffff81657140 T snd_hdac_codec_read +ffffffff81657180 T snd_hdac_codec_write +ffffffff816571b0 T snd_hdac_check_power_state +ffffffff81657210 t modalias_show +ffffffff81657220 t chip_name_show +ffffffff81657250 t vendor_name_show +ffffffff81657280 t mfg_show +ffffffff816572a0 t afg_show +ffffffff816572c0 t revision_id_show +ffffffff816572e0 t subsystem_id_show +ffffffff81657300 t vendor_id_show +ffffffff81657320 t type_show +ffffffff81657340 t gpio_caps_show +ffffffff81657390 t pin_caps_show +ffffffff81657420 t caps_show +ffffffff81657470 t connections_show +ffffffff81657520 t pin_cfg_show +ffffffff816575a0 t add_widget_node +ffffffff81657640 t widget_tree_create +ffffffff81657750 t widget_attr_store +ffffffff816577d0 t widget_attr_show +ffffffff81657840 t widget_release +ffffffff81657850 t has_pcm_cap.part.0 +ffffffff816578a0 t pcm_formats_show +ffffffff81657920 t pcm_caps_show +ffffffff816579a0 t power_caps_show +ffffffff81657a20 t amp_out_caps_show +ffffffff81657aa0 t amp_in_caps_show +ffffffff81657b20 t widget_tree_free.isra.6 +ffffffff81657bd0 T hda_widget_sysfs_init +ffffffff81657c10 T hda_widget_sysfs_exit +ffffffff81657c20 T hda_widget_sysfs_reinit +ffffffff81657e50 t hda_volatile_reg +ffffffff81657eb0 t hda_writeable_reg +ffffffff81657f70 t hda_readable_reg +ffffffff81657fb0 t hda_reg_write +ffffffff816582a0 t hda_reg_read +ffffffff81658490 t __snd_hdac_regmap_read_raw +ffffffff81658530 T snd_hdac_regmap_init +ffffffff81658570 T snd_hdac_regmap_exit +ffffffff816585b0 T snd_hdac_regmap_add_vendor_verb +ffffffff816585e0 T snd_hdac_regmap_write_raw +ffffffff81658670 T snd_hdac_regmap_read_raw +ffffffff81658680 T snd_hdac_regmap_read_raw_uncached +ffffffff81658690 T snd_hdac_regmap_update_raw +ffffffff816586f0 t azx_int_clear +ffffffff816587a0 T snd_hdac_bus_init_cmd_io +ffffffff81658a50 T snd_hdac_bus_stop_cmd_io +ffffffff81658b50 T snd_hdac_bus_send_cmd +ffffffff81658c30 T snd_hdac_bus_update_rirb +ffffffff81658d80 T snd_hdac_bus_get_response +ffffffff81658e30 T snd_hdac_bus_parse_capabilities +ffffffff81658f20 T snd_hdac_bus_enter_link_reset +ffffffff81658fa0 T snd_hdac_bus_exit_link_reset +ffffffff81659020 T snd_hdac_bus_init_chip +ffffffff81659180 T snd_hdac_bus_stop_chip +ffffffff81659290 T snd_hdac_bus_handle_stream_irq +ffffffff81659370 T snd_hdac_bus_alloc_stream_pages +ffffffff81659490 T snd_hdac_bus_free_stream_pages +ffffffff81659530 t azx_cc_read +ffffffff81659550 t setup_bdle.isra.0 +ffffffff81659670 T snd_hdac_stream_init +ffffffff816596d0 T snd_hdac_stream_start +ffffffff81659770 T snd_hdac_stream_clear +ffffffff816597d0 T snd_hdac_stream_stop +ffffffff81659820 T snd_hdac_stream_reset +ffffffff816598e0 T snd_hdac_stream_setup +ffffffff81659af0 T snd_hdac_stream_cleanup +ffffffff81659b50 T snd_hdac_stream_assign +ffffffff81659c20 T snd_hdac_stream_release +ffffffff81659c50 T snd_hdac_get_stream +ffffffff81659ca0 T snd_hdac_stream_setup_periods +ffffffff81659ec0 T snd_hdac_stream_set_params +ffffffff81659f80 T snd_hdac_stream_timecounter_init +ffffffff8165a090 T snd_hdac_stream_sync_trigger +ffffffff8165a0f0 T snd_hdac_stream_sync +ffffffff8165a1c0 T snd_array_new +ffffffff8165a260 T snd_array_free +ffffffff8165a280 t hdmi_manual_channel_allocation +ffffffff8165a340 t hdmi_chmap_ctl_info +ffffffff8165a370 t hdmi_chmap_cea_alloc_validate_get_type +ffffffff8165a390 t hdmi_cea_alloc_to_tlv_chmap +ffffffff8165a3f0 t hdmi_pin_set_slot_channel +ffffffff8165a410 t hdmi_set_channel_count +ffffffff8165a460 t hdmi_pin_get_slot_channel +ffffffff8165a480 t hdmi_chmap_ctl_tlv +ffffffff8165a680 t hdmi_chmap_ctl_get +ffffffff8165a6d0 t hdmi_chmap_ctl_put +ffffffff8165a830 T snd_hdac_print_channel_allocation +ffffffff8165a8b0 T snd_hdac_chmap_to_spk_mask +ffffffff8165a8f0 T snd_hdac_spk_to_chmap +ffffffff8165a920 T snd_hdac_setup_channel_mapping +ffffffff8165adc0 T snd_hdac_get_active_channels +ffffffff8165ae00 T snd_hdac_get_ch_alloc_from_ca +ffffffff8165ae50 T snd_hdac_channel_allocation +ffffffff8165af50 T snd_hdac_register_chmap_ops +ffffffff8165afd0 T snd_hdac_add_chmap_ctls +ffffffff8165b040 t pcibios_allocate_rom_resources +ffffffff8165b0c0 t pcibios_allocate_bus_resources +ffffffff8165b150 t pcibios_allocate_resources +ffffffff8165b3a0 T pcibios_retrieve_fw_addr +ffffffff8165b430 T pcibios_align_resource +ffffffff8165b480 T pcibios_resource_survey_bus +ffffffff8165b4e0 t pci_mmcfg_read +ffffffff8165b5c0 t pci_mmcfg_write +ffffffff8165b690 T pci_mmcfg_arch_map +ffffffff8165b700 T pci_mmcfg_arch_unmap +ffffffff8165b730 t pci_conf1_read +ffffffff8165b820 t pci_conf1_write +ffffffff8165b900 t pci_conf2_read +ffffffff8165ba20 t pci_conf2_write +ffffffff8165bb40 t pci_mmconfig_alloc +ffffffff8165bbf0 t is_acpi_reserved +ffffffff8165bc60 t find_mboard_resource +ffffffff8165bc90 t list_add_sorted +ffffffff8165bd10 t check_mcfg_resource +ffffffff8165bda0 T pci_mmconfig_lookup +ffffffff8165bde0 T pci_mmconfig_insert +ffffffff8165bfd0 T pci_mmconfig_delete +ffffffff8165c090 t pci_fixup_latency +ffffffff8165c0a0 t pci_fixup_piix4_acpi +ffffffff8165c0b0 t pci_fixup_transparent_bridge +ffffffff8165c0d0 t pci_siemens_interrupt_controller +ffffffff8165c0e0 t pci_invalid_bar +ffffffff8165c0f0 t quirk_no_aersid +ffffffff8165c100 t pci_fixup_umc_ide +ffffffff8165c140 t pci_fixup_i450nx +ffffffff8165c1f0 t pci_fixup_i450gx +ffffffff8165c240 t sb600_hpet_quirk +ffffffff8165c280 t pci_fixup_amd_ehci_pme +ffffffff8165c2a0 t pci_fixup_via_northbridge_bug +ffffffff8165c380 t pci_early_fixup_cyrix_5530 +ffffffff8165c3c0 t pci_fixup_nforce2 +ffffffff8165c420 t pcie_rootport_aspm_quirk +ffffffff8165c4e0 t quirk_pcie_aspm_write +ffffffff8165c540 t quirk_pcie_aspm_read +ffffffff8165c570 t pci_fixup_video +ffffffff8165c640 t quirk_apple_mbp_poweroff +ffffffff8165c6e0 t pci_amd_enable_64bit_bar +ffffffff8165c8b0 t sb600_disable_hpet_bar +ffffffff8165c900 t pci_fixup_msi_k8t_onboard_sound +ffffffff8165c990 t pci_pre_fixup_toshiba_ohci1394 +ffffffff8165c9d0 t pci_post_fixup_toshiba_ohci1394 +ffffffff8165ca40 t twinhead_reserve_killing_zone +ffffffff8165ca80 t pci_acpi_root_prepare_resources +ffffffff8165cbc0 t pci_acpi_root_release_info +ffffffff8165cbf0 t pci_acpi_root_init_info +ffffffff8165ccc0 T pci_acpi_scan_root +ffffffff8165cde0 T pcibios_root_bridge_prepare +ffffffff8165ce10 T pcibios_scan_specific_bus +ffffffff8165ce80 t pirq_serverworks_get +ffffffff8165cea0 t pirq_serverworks_set +ffffffff8165cec0 t pirq_pico_get +ffffffff8165cee0 t pirq_pico_set +ffffffff8165cf10 t read_config_nybble +ffffffff8165cf50 t pirq_amd756_get +ffffffff8165cfb0 t pirq_cyrix_get +ffffffff8165cfc0 t pirq_opti_get +ffffffff8165cfd0 t pirq_via_get +ffffffff8165cff0 t pirq_via586_get +ffffffff8165d010 t pirq_ite_get +ffffffff8165d030 t pirq_ali_get +ffffffff8165d050 t pirq_sis_get +ffffffff8165d090 t pirq_piix_get +ffffffff8165d0c0 t write_config_nybble +ffffffff8165d130 t pirq_cyrix_set +ffffffff8165d150 t pirq_opti_set +ffffffff8165d170 t pirq_via_set +ffffffff8165d190 t pirq_via586_set +ffffffff8165d1b0 t pirq_ite_set +ffffffff8165d1d0 t pirq_ali_set +ffffffff8165d200 t pirq_sis_set +ffffffff8165d260 t pirq_piix_set +ffffffff8165d270 t pirq_get_info.isra.0 +ffffffff8165d2d0 t pirq_amd756_set +ffffffff8165d320 t pirq_vlsi_set +ffffffff8165d350 t pirq_vlsi_get +ffffffff8165d380 t pirq_disable_irq +ffffffff8165d3f0 T elcr_set_level_irq +ffffffff8165d450 t pcibios_lookup_irq +ffffffff8165d920 t pirq_enable_irq +ffffffff8165db10 T pcibios_penalize_isa_irq +ffffffff8165db50 T mp_should_keep_irq +ffffffff8165db70 T raw_pci_read +ffffffff8165dbb0 t pci_read +ffffffff8165dbd0 T raw_pci_write +ffffffff8165dc10 t pci_write +ffffffff8165dc30 T pcibios_fixup_bus +ffffffff8165dcd0 T pcibios_add_bus +ffffffff8165dce0 T pcibios_remove_bus +ffffffff8165dcf0 T pcibios_scan_root +ffffffff8165dda0 T pcibios_assign_all_busses +ffffffff8165ddb0 T add_dma_domain +ffffffff8165ddf0 T del_dma_domain +ffffffff8165de40 T pcibios_add_device +ffffffff8165df50 T pcibios_enable_device +ffffffff8165df80 T pcibios_disable_device +ffffffff8165dfa0 T pcibios_release_device +ffffffff8165dfd0 T pci_ext_cfg_avail +ffffffff8165dfe0 T read_pci_config +ffffffff8165e010 T read_pci_config_byte +ffffffff8165e050 T read_pci_config_16 +ffffffff8165e090 T write_pci_config +ffffffff8165e0d0 T write_pci_config_byte +ffffffff8165e110 T write_pci_config_16 +ffffffff8165e150 T early_pci_allowed +ffffffff8165e170 T early_dump_pci_device +ffffffff8165e220 T early_dump_pci_devices +ffffffff8165e2f0 T x86_pci_root_bus_node +ffffffff8165e340 T x86_pci_root_bus_resources +ffffffff8165e410 T update_res +ffffffff8165e4e0 t pm_check_save_msr +ffffffff8165e4f0 t bsp_pm_callback +ffffffff8165e530 t msr_initialize_bdw +ffffffff8165e5c0 T save_processor_state +ffffffff8165e720 T restore_processor_state +ffffffff8165e990 T fb_is_primary_device +ffffffff8165e9c0 t sockfs_security_xattr_set +ffffffff8165e9d0 t sock_recvmsg_nosec +ffffffff8165e9f0 T sock_recvmsg +ffffffff8165ea10 t sock_read_iter +ffffffff8165eaf0 t get_net_ns +ffffffff8165eb00 t sock_mmap +ffffffff8165eb20 t sock_splice_read +ffffffff8165eb50 t sock_fasync +ffffffff8165ebc0 t sock_ioctl +ffffffff8165eeb0 t sock_poll +ffffffff8165ef30 t sockfs_listxattr +ffffffff8165ef80 t sockfs_xattr_get +ffffffff8165efc0 t move_addr_to_user +ffffffff8165f030 t sockfd_lookup_light +ffffffff8165f090 t sockfs_mount +ffffffff8165f0c0 t sockfs_dname +ffffffff8165f0e0 t sock_destroy_inode +ffffffff8165f110 t sock_alloc_inode +ffffffff8165f1c0 t init_once +ffffffff8165f1d0 t sockfs_setattr +ffffffff8165f200 t move_addr_to_kernel.part.2 +ffffffff8165f220 t copy_msghdr_from_user +ffffffff8165f340 t ___sys_recvmsg +ffffffff8165f4a0 T move_addr_to_kernel +ffffffff8165f4c0 T sock_from_file +ffffffff8165f4e0 T sockfd_lookup +ffffffff8165f530 T sock_alloc +ffffffff8165f5a0 T sock_release +ffffffff8165f600 T sock_alloc_file +ffffffff8165f730 t sock_close +ffffffff8165f740 T __sock_tx_timestamp +ffffffff8165f770 T sock_sendmsg +ffffffff8165f790 t sock_write_iter +ffffffff8165f860 t ___sys_sendmsg +ffffffff8165fb30 T kernel_sendmsg +ffffffff8165fb60 T kernel_sendmsg_locked +ffffffff8165fbc0 T __sock_recv_timestamp +ffffffff8165fe70 T __sock_recv_wifi_status +ffffffff8165fec0 T __sock_recv_ts_and_drops +ffffffff8165ffc0 T kernel_recvmsg +ffffffff81660030 T brioctl_set +ffffffff81660060 T vlan_ioctl_set +ffffffff81660090 T dlci_ioctl_set +ffffffff816600c0 T sock_create_lite +ffffffff816600f0 T sock_wake_async +ffffffff81660150 T __sock_create +ffffffff816602b0 T sock_create +ffffffff816602e0 T sock_create_kern +ffffffff816602f0 T SyS_socket +ffffffff816602f0 T sys_socket +ffffffff816603b0 T SyS_socketpair +ffffffff816603b0 T sys_socketpair +ffffffff81660590 T SyS_bind +ffffffff81660590 T sys_bind +ffffffff81660630 T SyS_listen +ffffffff81660630 T sys_listen +ffffffff816606b0 T SyS_accept4 +ffffffff816606b0 T sys_accept4 +ffffffff81660850 T SyS_accept +ffffffff81660850 T sys_accept +ffffffff81660860 T SyS_connect +ffffffff81660860 T sys_connect +ffffffff81660910 T SyS_getsockname +ffffffff81660910 T sys_getsockname +ffffffff816609a0 T SyS_getpeername +ffffffff816609a0 T sys_getpeername +ffffffff81660a40 T SyS_sendto +ffffffff81660a40 T sys_sendto +ffffffff81660b70 T SyS_send +ffffffff81660b70 T sys_send +ffffffff81660b80 T SyS_recvfrom +ffffffff81660b80 T sys_recvfrom +ffffffff81660ca0 T SyS_recv +ffffffff81660ca0 T sys_recv +ffffffff81660cb0 T SyS_setsockopt +ffffffff81660cb0 T sys_setsockopt +ffffffff81660d60 T SyS_getsockopt +ffffffff81660d60 T sys_getsockopt +ffffffff81660e00 T SyS_shutdown +ffffffff81660e00 T sys_shutdown +ffffffff81660e60 T __sys_sendmsg +ffffffff81660ed0 T SyS_sendmsg +ffffffff81660ed0 T sys_sendmsg +ffffffff81660ee0 T __sys_sendmmsg +ffffffff81660ff0 T SyS_sendmmsg +ffffffff81660ff0 T sys_sendmmsg +ffffffff81661000 T __sys_recvmsg +ffffffff81661070 T SyS_recvmsg +ffffffff81661070 T sys_recvmsg +ffffffff81661080 T __sys_recvmmsg +ffffffff81661260 T SyS_recvmmsg +ffffffff81661260 T sys_recvmmsg +ffffffff81661310 T SyS_socketcall +ffffffff81661310 T sys_socketcall +ffffffff81661520 T sock_register +ffffffff816615a0 T sock_unregister +ffffffff816615f0 T sock_is_registered +ffffffff81661610 T socket_seq_show +ffffffff81661630 T kernel_bind +ffffffff81661640 T kernel_listen +ffffffff81661650 T kernel_accept +ffffffff816616f0 T kernel_connect +ffffffff81661700 T kernel_getsockname +ffffffff81661710 T kernel_getpeername +ffffffff81661730 T kernel_getsockopt +ffffffff81661790 T kernel_setsockopt +ffffffff816617f0 T kernel_sendpage +ffffffff81661810 t sock_sendpage +ffffffff81661830 T kernel_sendpage_locked +ffffffff81661860 T kernel_sock_shutdown +ffffffff81661870 T kernel_sock_ip_overhead +ffffffff816618e0 t sock_ofree +ffffffff81661900 t sock_def_destruct +ffffffff81661910 t sock_disable_timestamp +ffffffff81661940 t sock_def_error_report +ffffffff816619b0 t sock_def_wakeup +ffffffff816619f0 t sock_def_write_space +ffffffff81661aa0 t sock_def_readable +ffffffff81661b10 t __lock_sock +ffffffff81661ba0 t sock_inuse_exit_net +ffffffff81661bc0 t sock_inuse_init_net +ffffffff81661c20 t proto_seq_stop +ffffffff81661c30 t proto_exit_net +ffffffff81661c50 t proto_init_net +ffffffff81661c80 t proto_seq_open +ffffffff81661ca0 t proto_seq_next +ffffffff81661cb0 t proto_seq_start +ffffffff81661cd0 t sock_warn_obsolete_bsdism +ffffffff81661d40 t sock_set_timeout +ffffffff81661e40 t sk_prot_alloc.isra.6 +ffffffff81661ec0 t __sk_destruct +ffffffff81661fe0 T sk_ns_capable +ffffffff81662010 T sk_capable +ffffffff81662020 T sk_net_capable +ffffffff81662030 T sk_set_memalloc +ffffffff81662050 T __sk_backlog_rcv +ffffffff81662090 t __release_sock +ffffffff81662140 T __sk_dst_check +ffffffff816621a0 T sk_dst_check +ffffffff81662250 T sk_mc_loop +ffffffff816622b0 T sk_alloc +ffffffff816623c0 T sk_destruct +ffffffff816623f0 t __sk_free +ffffffff816624a0 T sock_wfree +ffffffff81662500 T sk_free +ffffffff81662520 T sock_efree +ffffffff81662540 T __sk_receive_skb +ffffffff816626e0 T sk_clone_lock +ffffffff81662a80 T sk_free_unlock_clone +ffffffff81662ab0 T sk_setup_caps +ffffffff81662b90 T __sock_wfree +ffffffff81662bc0 T skb_set_owner_w +ffffffff81662c60 T skb_orphan_partial +ffffffff81662d30 T sock_i_uid +ffffffff81662d70 T sock_i_ino +ffffffff81662db0 T sock_wmalloc +ffffffff81662e00 T sock_omalloc +ffffffff81662e60 T sock_kmalloc +ffffffff81662eb0 T sock_kfree_s +ffffffff81662ed0 T sock_kzfree_s +ffffffff81662ef0 T sock_alloc_send_pskb +ffffffff816630f0 T sock_alloc_send_skb +ffffffff81663100 T __sock_cmsg_send +ffffffff81663180 T sock_cmsg_send +ffffffff81663230 T skb_page_frag_refill +ffffffff816632e0 T sk_page_frag_refill +ffffffff81663350 T __sk_flush_backlog +ffffffff81663380 T __sk_mem_raise_allocated +ffffffff816635b0 T __sk_mem_schedule +ffffffff816635f0 T __sock_queue_rcv_skb +ffffffff816637b0 T sock_queue_rcv_skb +ffffffff816637e0 T __sk_mem_reduce_allocated +ffffffff81663840 T __sk_mem_reclaim +ffffffff81663860 T sock_rfree +ffffffff816638a0 T sk_clear_memalloc +ffffffff816638f0 T sk_set_peek_off +ffffffff81663900 T sock_no_bind +ffffffff81663910 T sock_no_connect +ffffffff81663920 T sock_no_socketpair +ffffffff81663930 T sock_no_accept +ffffffff81663940 T sock_no_getname +ffffffff81663950 T sock_no_poll +ffffffff81663960 T sock_no_ioctl +ffffffff81663970 T sock_no_listen +ffffffff81663980 T sock_no_shutdown +ffffffff81663990 T sock_no_setsockopt +ffffffff816639a0 T sock_no_getsockopt +ffffffff816639b0 T sock_no_sendmsg +ffffffff816639c0 T sock_no_sendmsg_locked +ffffffff816639d0 T sock_no_recvmsg +ffffffff816639e0 T sock_no_mmap +ffffffff816639f0 T sock_no_sendpage +ffffffff81663a60 T sock_no_sendpage_locked +ffffffff81663ad0 T sk_send_sigurg +ffffffff81663b30 T sk_reset_timer +ffffffff81663b60 T sk_stop_timer +ffffffff81663b90 T sock_init_data +ffffffff81663db0 T lock_sock_nested +ffffffff81663e00 T release_sock +ffffffff81663e90 T sk_wait_data +ffffffff81663f90 T lock_sock_fast +ffffffff81663ff0 T sock_enable_timestamp +ffffffff81664020 T sock_setsockopt +ffffffff81664950 T sock_get_timestamp +ffffffff816649f0 T sock_get_timestampns +ffffffff81664a90 T sock_recv_errqueue +ffffffff81664bb0 T sock_common_getsockopt +ffffffff81664bd0 T sock_common_recvmsg +ffffffff81664c20 T sock_common_setsockopt +ffffffff81664c40 T sk_common_release +ffffffff81664cc0 T sk_get_meminfo +ffffffff81664d40 T sock_getsockopt +ffffffff81665520 T sock_prot_inuse_add +ffffffff81665540 T sock_prot_inuse_get +ffffffff816655a0 t proto_seq_show +ffffffff81665900 T sock_inuse_get +ffffffff81665950 T proto_register +ffffffff81665b50 T proto_unregister +ffffffff81665c40 T sock_load_diag_module +ffffffff81665c80 T sk_busy_loop_end +ffffffff81665cd0 T reqsk_queue_alloc +ffffffff81665d00 T reqsk_fastopen_remove +ffffffff81665e40 t csum_block_add_ext +ffffffff81665e60 t csum_partial_ext +ffffffff81665e70 t skb_headers_offset_update +ffffffff81665ec0 t sock_rmem_free +ffffffff81665ee0 t kfree_skbmem +ffffffff81665f40 t skb_gso_transport_seglen +ffffffff81665fd0 t skb_ts_finish +ffffffff81666000 t sock_spd_release +ffffffff81666030 t skb_free_head +ffffffff81666050 t __copy_skb_header +ffffffff81666150 t __skb_clone +ffffffff81666250 t copy_skb_header +ffffffff816662c0 t skb_panic +ffffffff81666310 t __skb_to_sgvec +ffffffff81666570 t skb_clone_fraglist.isra.0 +ffffffff816665a0 t warn_crc32c_csum_combine +ffffffff816665d0 t warn_crc32c_csum_update +ffffffff81666600 t __kmalloc_reserve.isra.3 +ffffffff81666670 t mm_account_pinned_pages.part.4 +ffffffff816666f0 t skb_may_tx_timestamp.part.6 +ffffffff81666740 t __splice_segment.part.5 +ffffffff81666930 t __skb_splice_bits +ffffffff81666af0 T __alloc_skb +ffffffff81666c90 T __build_skb +ffffffff81666d70 T build_skb +ffffffff81666de0 T netdev_alloc_frag +ffffffff81666e10 T napi_alloc_frag +ffffffff81666e30 T __netdev_alloc_skb +ffffffff81666f20 T __napi_alloc_skb +ffffffff81667000 T skb_add_rx_frag +ffffffff81667070 T skb_coalesce_rx_frag +ffffffff816670a0 T skb_release_head_state +ffffffff816670f0 T __kfree_skb_flush +ffffffff81667130 T sock_zerocopy_put +ffffffff81667160 t skb_release_data +ffffffff81667270 t skb_release_all +ffffffff81667290 T __kfree_skb +ffffffff816672b0 T kfree_skb +ffffffff816672f0 T kfree_skb_list +ffffffff81667310 T sock_zerocopy_alloc +ffffffff816673d0 T sock_zerocopy_realloc +ffffffff816674a0 T consume_skb +ffffffff816674e0 T sock_zerocopy_callback +ffffffff81667660 T __kfree_skb_defer +ffffffff816676c0 T napi_consume_skb +ffffffff81667760 T skb_morph +ffffffff81667780 T __consume_stateless_skb +ffffffff816677a0 T skb_tx_error +ffffffff81667810 T sock_zerocopy_put_abort +ffffffff81667830 T pskb_expand_head +ffffffff81667ad0 T skb_copy_ubufs +ffffffff81667fc0 t skb_zerocopy_clone +ffffffff816680a0 T skb_clone +ffffffff81668150 t pskb_carve +ffffffff81668700 t skb_prepare_for_shift +ffffffff81668740 T skb_put +ffffffff81668780 T __pskb_copy_fclone +ffffffff81668990 T skb_realloc_headroom +ffffffff81668a00 T pskb_put +ffffffff81668a20 T skb_push +ffffffff81668a60 T skb_pull +ffffffff81668a90 T skb_trim +ffffffff81668ac0 T skb_copy_bits +ffffffff81668cd0 T skb_copy +ffffffff81668d60 T skb_copy_expand +ffffffff81668e30 T __pskb_pull_tail +ffffffff81669240 T __skb_pad +ffffffff81669330 t skb_maybe_pull_tail +ffffffff81669380 T skb_splice_bits +ffffffff81669440 T skb_send_sock_locked +ffffffff81669640 T skb_send_sock +ffffffff81669680 T skb_store_bits +ffffffff81669890 T __skb_checksum +ffffffff81669b10 T skb_checksum +ffffffff81669b40 T skb_copy_and_csum_bits +ffffffff81669dc0 T skb_zerocopy_headlen +ffffffff81669e00 T skb_zerocopy +ffffffff8166a110 T skb_copy_and_csum_dev +ffffffff8166a1c0 T skb_dequeue +ffffffff8166a220 T skb_dequeue_tail +ffffffff8166a280 T skb_queue_purge +ffffffff8166a2a0 T skb_rbtree_purge +ffffffff8166a2e0 T skb_queue_head +ffffffff8166a320 T skb_queue_tail +ffffffff8166a360 T skb_unlink +ffffffff8166a3b0 T skb_append +ffffffff8166a400 T skb_insert +ffffffff8166a450 T skb_split +ffffffff8166a700 T skb_shift +ffffffff8166ab10 T skb_prepare_seq_read +ffffffff8166ab30 T skb_seq_read +ffffffff8166ade0 t skb_ts_get_next_block +ffffffff8166adf0 T skb_abort_seq_read +ffffffff8166ae20 T skb_find_text +ffffffff8166aec0 T skb_append_datato_frags +ffffffff8166b0a0 T skb_append_pagefrags +ffffffff8166b180 T skb_pull_rcsum +ffffffff8166b210 T skb_gro_receive +ffffffff8166b550 T skb_to_sgvec +ffffffff8166b580 T skb_to_sgvec_nomark +ffffffff8166b590 T skb_cow_data +ffffffff8166b890 T sock_queue_err_skb +ffffffff8166b980 t __skb_complete_tx_timestamp +ffffffff8166ba40 T sock_dequeue_err_skb +ffffffff8166bb50 T skb_clone_sk +ffffffff8166bc00 T skb_complete_tx_timestamp +ffffffff8166bcf0 T __skb_tstamp_tx +ffffffff8166be90 T skb_tstamp_tx +ffffffff8166bea0 T skb_complete_wifi_ack +ffffffff8166bf90 T skb_partial_csum_set +ffffffff8166c020 t skb_checksum_setup_ip +ffffffff8166c0b0 T skb_checksum_setup +ffffffff8166c350 T __skb_warn_lro_forwarding +ffffffff8166c370 T kfree_skb_partial +ffffffff8166c3a0 T skb_try_coalesce +ffffffff8166c700 T skb_scrub_packet +ffffffff8166c7c0 T skb_gso_validate_network_len +ffffffff8166c830 T skb_gso_validate_mac_len +ffffffff8166c8a0 T skb_vlan_untag +ffffffff8166ca60 T skb_ensure_writable +ffffffff8166caf0 T __skb_vlan_pop +ffffffff8166cc90 T skb_vlan_pop +ffffffff8166cd20 T skb_vlan_push +ffffffff8166cea0 T alloc_skb_with_frags +ffffffff8166d060 T skb_condense +ffffffff8166d0b0 T ___pskb_trim +ffffffff8166d3a0 T skb_checksum_trimmed +ffffffff8166d500 T skb_segment +ffffffff8166e0f0 T pskb_extract +ffffffff8166e170 T skb_zerocopy_iter_stream +ffffffff8166e310 t receiver_wake_function +ffffffff8166e330 t skb_copy_and_csum_datagram +ffffffff8166e5a0 T __skb_wait_for_more_packets +ffffffff8166e6d0 T __skb_try_recv_from_queue +ffffffff8166e860 T __skb_try_recv_datagram +ffffffff8166e9a0 T __skb_recv_datagram +ffffffff8166ea40 T skb_recv_datagram +ffffffff8166ea70 T skb_free_datagram +ffffffff8166eab0 T __skb_free_datagram_locked +ffffffff8166ebd0 T __sk_queue_drop_skb +ffffffff8166ec80 T skb_kill_datagram +ffffffff8166ece0 T skb_copy_datagram_iter +ffffffff8166ee80 T skb_copy_datagram_from_iter +ffffffff8166f000 T __zerocopy_sg_from_iter +ffffffff8166f1d0 T zerocopy_sg_from_iter +ffffffff8166f220 T __skb_checksum_complete_head +ffffffff8166f270 T __skb_checksum_complete +ffffffff8166f2f0 T skb_copy_and_csum_datagram_msg +ffffffff8166f3c0 T datagram_poll +ffffffff8166f4b0 T sk_stream_write_space +ffffffff8166f570 T sk_stream_wait_connect +ffffffff8166f730 T sk_stream_wait_close +ffffffff8166f800 T sk_stream_wait_memory +ffffffff8166faf0 T sk_stream_error +ffffffff8166fb40 T sk_stream_kill_queues +ffffffff8166fc10 T __scm_destroy +ffffffff8166fc80 T __scm_send +ffffffff81670050 T put_cmsg +ffffffff81670120 T scm_detach_fds +ffffffff816702f0 T scm_fp_dup +ffffffff81670350 t __gnet_stats_copy_queue_cpu +ffffffff816703b0 T gnet_stats_start_copy_compat +ffffffff81670480 T gnet_stats_start_copy +ffffffff816704a0 T __gnet_stats_copy_basic +ffffffff81670530 T gnet_stats_copy_basic +ffffffff816705e0 T gnet_stats_copy_rate_est +ffffffff816706b0 T __gnet_stats_copy_queue +ffffffff816706f0 T gnet_stats_copy_queue +ffffffff816707d0 T gnet_stats_copy_app +ffffffff81670880 T gnet_stats_finish_copy +ffffffff81670950 t est_fetch_counters +ffffffff816709b0 t est_timer +ffffffff81670a90 T gen_new_estimator +ffffffff81670c20 T gen_kill_estimator +ffffffff81670c50 T gen_replace_estimator +ffffffff81670c60 T gen_estimator_active +ffffffff81670c70 T gen_estimator_read +ffffffff81670cd0 t net_eq_idr +ffffffff81670cf0 t net_defaults_init_net +ffffffff81670d00 t netns_get +ffffffff81670d60 t netns_owner +ffffffff81670d70 t rtnl_net_dumpid +ffffffff81670df0 t __peernet2id_alloc +ffffffff81670e60 t net_alloc_generic +ffffffff81670e90 t ops_init +ffffffff81670fb0 t net_ns_net_exit +ffffffff81670fc0 t net_ns_net_init +ffffffff81670fe0 t rtnl_net_fill.isra.0 +ffffffff81671090 t rtnl_net_dumpid_one +ffffffff816710e0 t rtnl_net_notifyid +ffffffff81671170 t ops_exit_list.isra.2 +ffffffff816711d0 t ops_free_list.part.3 +ffffffff81671230 t setup_net +ffffffff81671340 t unregister_pernet_operations +ffffffff81671400 t register_pernet_operations +ffffffff816715a0 T peernet2id +ffffffff816715f0 T peernet_has_id +ffffffff81671600 T get_net_ns_by_id +ffffffff81671690 T net_drop_ns +ffffffff816716d0 t cleanup_net +ffffffff81671990 T copy_net_ns +ffffffff81671ba0 T net_ns_barrier +ffffffff81671bc0 T __put_net +ffffffff81671c20 t netns_put +ffffffff81671c40 t netns_install +ffffffff81671cc0 T peernet2id_alloc +ffffffff81671e20 T get_net_ns_by_fd +ffffffff81671e70 T get_net_ns_by_pid +ffffffff81671ed0 t rtnl_net_getid +ffffffff81672050 t rtnl_net_newid +ffffffff81672250 T register_pernet_subsys +ffffffff81672290 T unregister_pernet_subsys +ffffffff816722c0 T register_pernet_device +ffffffff81672310 T unregister_pernet_device +ffffffff81672350 T secure_tcpv6_ts_off +ffffffff816723e0 T secure_tcpv6_seq +ffffffff816724a0 T secure_ipv6_port_ephemeral +ffffffff81672540 T secure_tcp_ts_off +ffffffff816725c0 T secure_tcp_seq +ffffffff81672650 T secure_ipv4_port_ephemeral +ffffffff816726c0 T skb_flow_dissector_init +ffffffff81672770 T __skb_flow_get_ports +ffffffff81672820 T skb_flow_dissect_tunnel_info +ffffffff81672930 T __skb_flow_dissect +ffffffff81673c40 T flow_get_u32_src +ffffffff81673c70 T flow_get_u32_dst +ffffffff81673ca0 T flow_hash_from_keys +ffffffff81673f20 T make_flow_keys_digest +ffffffff81673f50 T __skb_get_hash_symmetric +ffffffff816741f0 T __skb_get_hash +ffffffff816744d0 T skb_get_hash_perturb +ffffffff81674740 T __skb_get_poff +ffffffff816747f0 T skb_get_poff +ffffffff81674870 T __get_hash_from_flowi6 +ffffffff81674900 T __get_hash_from_flowi4 +ffffffff81674970 t sysctl_core_net_init +ffffffff81674a20 t flow_limit_table_len_sysctl +ffffffff81674ab0 t flow_limit_cpu_sysctl +ffffffff81674cb0 t rps_sock_flow_sysctl +ffffffff81674ea0 t proc_do_rss_key +ffffffff81674f10 t sysctl_core_net_exit +ffffffff81674f40 t proc_do_dev_weight +ffffffff81674f70 t skb_gro_reset_offset +ffffffff81674ff0 t __netdev_has_upper_dev +ffffffff81675000 t dev_xdp_install +ffffffff81675040 t list_netdevice +ffffffff81675120 t unlist_netdevice +ffffffff816751d0 t remove_xps_queue +ffffffff81675250 t netdev_create_hash +ffffffff81675290 t netstamp_clear +ffffffff816752c0 t get_rps_cpu +ffffffff81675590 t rps_trigger_softirq +ffffffff816755d0 t enqueue_to_backlog +ffffffff81675800 t netif_reset_xps_queues +ffffffff81675920 t netdev_exit +ffffffff81675950 t netdev_init +ffffffff816759c0 t flush_backlog +ffffffff81675af0 t __netif_receive_skb_core +ffffffff81676400 t gro_pull_from_frag0 +ffffffff816764b0 t napi_skb_free_stolen_head +ffffffff81676510 t netdev_adjacent_sysfs_add +ffffffff81676570 t netdev_adjacent_sysfs_del +ffffffff816765c0 t __netdev_printk +ffffffff816766e0 t net_rps_send_ipi +ffffffff81676730 t net_tx_action +ffffffff81676820 t napi_reuse_skb.isra.7 +ffffffff816768b0 t skb_warn_bad_offload.isra.8 +ffffffff816768e0 t __netif_receive_skb +ffffffff81676930 t process_backlog +ffffffff81676a80 t __netdev_adjacent_dev_insert +ffffffff81676c20 t dev_new_index.isra.16 +ffffffff81676c70 t napi_watchdog +ffffffff81676cc0 t __netdev_adjacent_dev_remove.constprop.35 +ffffffff81676dd0 t __netdev_adjacent_dev_unlink_neighbour +ffffffff81676e00 T dev_add_pack +ffffffff81676e80 T __dev_remove_pack +ffffffff81676f40 T dev_add_offload +ffffffff81676fb0 T netdev_boot_setup_check +ffffffff81677020 T dev_get_iflink +ffffffff81677050 T dev_fill_metadata_dst +ffffffff816771a0 T __dev_get_by_name +ffffffff81677220 T netdev_boot_base +ffffffff816772a0 T dev_get_by_name_rcu +ffffffff81677320 T dev_get_by_name +ffffffff81677360 T __dev_get_by_index +ffffffff816773b0 T dev_get_by_index_rcu +ffffffff81677400 T dev_get_by_index +ffffffff81677490 T dev_get_by_napi_id +ffffffff816774f0 T netdev_get_name +ffffffff81677580 T dev_getbyhwaddr_rcu +ffffffff816775f0 T __dev_getfirstbyhwtype +ffffffff81677650 T dev_getfirstbyhwtype +ffffffff816776d0 T __dev_get_by_flags +ffffffff81677730 T dev_valid_name +ffffffff816777c0 t dev_alloc_name_ns +ffffffff81677950 T dev_alloc_name +ffffffff81677970 T dev_get_valid_name +ffffffff816779f0 T dev_set_alias +ffffffff81677a90 T dev_get_alias +ffffffff81677ae0 T netdev_state_change +ffffffff81677b60 T register_netdevice_notifier +ffffffff81677d40 T unregister_netdevice_notifier +ffffffff81677e40 T call_netdevice_notifiers +ffffffff81677e80 T netdev_features_change +ffffffff81677e90 T netdev_notify_peers +ffffffff81677ec0 t __dev_close_many +ffffffff81677f40 T dev_close_many +ffffffff81678040 t dev_close.part.20 +ffffffff81678090 T dev_close +ffffffff816780a0 T net_inc_ingress_queue +ffffffff816780b0 T net_dec_ingress_queue +ffffffff816780c0 T net_enable_timestamp +ffffffff81678110 T net_disable_timestamp +ffffffff81678160 T is_skb_forwardable +ffffffff816781a0 T __dev_forward_skb +ffffffff816782a0 T dev_queue_xmit_nit +ffffffff81678500 T netdev_txq_to_tc +ffffffff81678540 T netif_set_xps_queue +ffffffff81678b10 T netdev_reset_tc +ffffffff81678b80 T netdev_set_tc_queue +ffffffff81678bd0 T netdev_set_num_tc +ffffffff81678c00 T netif_set_real_num_rx_queues +ffffffff81678c50 T netif_get_num_default_rss_queues +ffffffff81678c70 T __netif_schedule +ffffffff81678cc0 T netif_schedule_queue +ffffffff81678cf0 T netif_tx_wake_queue +ffffffff81678d20 T __dev_kfree_skb_irq +ffffffff81678d80 T __dev_kfree_skb_any +ffffffff81678da0 T netif_device_detach +ffffffff81678df0 T netif_device_attach +ffffffff81678e40 T __skb_tx_hash +ffffffff81678ed0 t __netdev_pick_tx +ffffffff81679040 T skb_checksum_help +ffffffff816791d0 T skb_crc32c_csum_help +ffffffff816792f0 T skb_network_protocol +ffffffff816793d0 T skb_mac_gso_segment +ffffffff816794d0 T __skb_gso_segment +ffffffff81679660 T passthru_features_check +ffffffff81679670 T netif_skb_features +ffffffff81679880 T dev_hard_start_xmit +ffffffff81679990 T skb_csum_hwoffload_help +ffffffff816799c0 t validate_xmit_skb.isra.26 +ffffffff81679c30 T validate_xmit_skb_list +ffffffff81679c90 T netdev_pick_tx +ffffffff81679d50 t __dev_queue_xmit +ffffffff8167a380 T dev_queue_xmit +ffffffff8167a390 T dev_queue_xmit_accel +ffffffff8167a3a0 T rps_may_expire_flow +ffffffff8167a420 T generic_xdp_tx +ffffffff8167a540 T do_xdp_generic +ffffffff8167a800 t netif_rx_internal +ffffffff8167a920 T dev_forward_skb +ffffffff8167a940 t netif_receive_skb_internal +ffffffff8167aa30 t napi_gro_complete +ffffffff8167aad0 t dev_gro_receive +ffffffff8167b030 T netif_rx +ffffffff8167b040 T netif_rx_ni +ffffffff8167b090 T dev_loopback_xmit +ffffffff8167b140 t dev_cpu_dead +ffffffff8167b2b0 T netdev_is_rx_handler_busy +ffffffff8167b2d0 T netdev_rx_handler_register +ffffffff8167b310 T netif_receive_skb_core +ffffffff8167b330 T netif_receive_skb +ffffffff8167b340 T napi_gro_flush +ffffffff8167b3b0 T gro_find_receive_by_type +ffffffff8167b3f0 T gro_find_complete_by_type +ffffffff8167b430 T napi_gro_receive +ffffffff8167b4b0 T napi_get_frags +ffffffff8167b4f0 T napi_gro_frags +ffffffff8167b690 T __skb_gro_checksum_complete +ffffffff8167b6d0 T __napi_schedule +ffffffff8167b710 t busy_poll_stop.isra.27 +ffffffff8167b760 T napi_schedule_prep +ffffffff8167b7a0 T __napi_schedule_irqoff +ffffffff8167b7d0 T napi_complete_done +ffffffff8167b880 t net_rx_action +ffffffff8167bae0 T napi_busy_loop +ffffffff8167bc80 T napi_hash_del +ffffffff8167bce0 T netif_napi_add +ffffffff8167be70 T napi_disable +ffffffff8167bed0 T netdev_has_any_upper_dev +ffffffff8167bef0 T netdev_master_upper_dev_get +ffffffff8167bf30 T netdev_adjacent_get_private +ffffffff8167bf40 T netdev_upper_get_next_dev_rcu +ffffffff8167bf60 T netdev_walk_all_upper_dev_rcu +ffffffff8167bfc0 T netdev_has_upper_dev +ffffffff8167bff0 t __netdev_upper_dev_link +ffffffff8167c1a0 T netdev_has_upper_dev_all_rcu +ffffffff8167c1c0 T netdev_lower_get_next_private +ffffffff8167c1e0 T netdev_lower_get_next_private_rcu +ffffffff8167c200 T netdev_lower_get_next +ffffffff8167c220 T netdev_walk_all_lower_dev +ffffffff8167c280 T netdev_walk_all_lower_dev_rcu +ffffffff8167c2e0 T netdev_lower_get_first_private_rcu +ffffffff8167c310 T netdev_master_upper_dev_get_rcu +ffffffff8167c340 T netdev_upper_dev_link +ffffffff8167c350 T netdev_master_upper_dev_link +ffffffff8167c370 T netdev_upper_dev_unlink +ffffffff8167c440 T netdev_bonding_info_change +ffffffff8167c4b0 T netdev_adjacent_rename_links +ffffffff8167c590 T netdev_lower_dev_get_private +ffffffff8167c5d0 T dev_get_nest_level +ffffffff8167c630 T netdev_lower_state_changed +ffffffff8167c690 T dev_get_flags +ffffffff8167c6f0 T __dev_notify_flags +ffffffff8167c7d0 t __dev_set_promiscuity +ffffffff8167c8c0 T __dev_set_rx_mode +ffffffff8167c950 T dev_set_rx_mode +ffffffff8167c980 t __dev_open +ffffffff8167ca60 T dev_open +ffffffff8167cab0 T dev_set_promiscuity +ffffffff8167caf0 t __dev_set_allmulti +ffffffff8167cbc0 T dev_set_allmulti +ffffffff8167cbd0 T __dev_change_flags +ffffffff8167cd30 T dev_change_flags +ffffffff8167cd90 T __dev_set_mtu +ffffffff8167cdb0 T dev_set_mtu +ffffffff8167cf60 T dev_set_group +ffffffff8167cf70 T dev_set_mac_address +ffffffff8167cff0 T dev_change_carrier +ffffffff8167d030 T dev_get_phys_port_id +ffffffff8167d050 T dev_get_phys_port_name +ffffffff8167d070 T dev_change_proto_down +ffffffff8167d0b0 T __dev_xdp_query +ffffffff8167d0e0 T dev_change_xdp_fd +ffffffff8167d2e0 T netif_stacked_transfer_operstate +ffffffff8167d340 T netif_tx_stop_all_queues +ffffffff8167d380 T init_dummy_netdev +ffffffff8167d3e0 T netdev_refcnt_read +ffffffff8167d430 T netdev_stats_to_stats64 +ffffffff8167d480 T dev_get_stats +ffffffff8167d530 T dev_ingress_queue_create +ffffffff8167d540 T netdev_set_default_ethtool_ops +ffffffff8167d560 T netdev_freemem +ffffffff8167d570 T synchronize_net +ffffffff8167d590 T dev_remove_pack +ffffffff8167d5a0 T dev_remove_offload +ffffffff8167d620 T netif_set_real_num_tx_queues +ffffffff8167d7b0 T netdev_rx_handler_unregister +ffffffff8167d7e0 T netif_napi_del +ffffffff8167d850 T free_netdev +ffffffff8167d950 T netdev_run_todo +ffffffff8167dc00 T alloc_netdev_mqs +ffffffff8167dff0 T dev_change_net_namespace +ffffffff8167e360 t default_device_exit +ffffffff8167e410 T netdev_increment_features +ffffffff8167e450 T netdev_drivername +ffffffff8167e490 T netdev_printk +ffffffff8167e4e0 T netdev_emerg +ffffffff8167e540 T netdev_alert +ffffffff8167e5a0 T netdev_crit +ffffffff8167e600 T netdev_err +ffffffff8167e660 T dev_change_tx_queue_len +ffffffff8167e700 T netdev_warn +ffffffff8167e760 T __netdev_update_features +ffffffff8167eba0 T netdev_update_features +ffffffff8167ebc0 T dev_disable_lro +ffffffff8167ec10 t generic_xdp_install +ffffffff8167ecb0 t rollback_registered_many +ffffffff8167f040 t unregister_netdevice_queue.part.29 +ffffffff8167f0c0 T unregister_netdevice_queue +ffffffff8167f110 T unregister_netdev +ffffffff8167f130 t unregister_netdevice_many.part.30 +ffffffff8167f1c0 T unregister_netdevice_many +ffffffff8167f1d0 t default_device_exit_batch +ffffffff8167f350 T netdev_change_features +ffffffff8167f370 T register_netdevice +ffffffff8167f7c0 T register_netdev +ffffffff8167f7e0 T netdev_notice +ffffffff8167f840 T netdev_info +ffffffff8167f8a0 T dev_change_name +ffffffff8167fb20 t __ethtool_get_flags +ffffffff8167fb80 t __ethtool_get_module_info +ffffffff8167fbd0 t __ethtool_get_module_eeprom +ffffffff8167fc20 t convert_legacy_settings_to_link_ksettings +ffffffff8167fcc0 t __ethtool_set_flags +ffffffff8167fd90 t ethtool_set_coalesce +ffffffff8167fdf0 t ethtool_flash_device +ffffffff8167fe50 t ethtool_set_settings +ffffffff8167ff00 t ethtool_set_rxnfc +ffffffff8167ffa0 t ethtool_get_coalesce +ffffffff81680020 t ethtool_get_channels +ffffffff816800a0 t ethtool_get_value +ffffffff816800f0 t ethtool_get_settings +ffffffff81680260 t ethtool_get_drvinfo +ffffffff816803f0 t ethtool_get_any_eeprom +ffffffff81680550 t ethtool_get_rxnfc +ffffffff81680670 t ethtool_get_rxfh_indir +ffffffff816807b0 t ethtool_get_rxfh +ffffffff81680980 t ethtool_set_channels +ffffffff81680b30 t phy_get_sset_count +ffffffff81680ba0 t load_link_ksettings_from_user +ffffffff81680c40 t ethtool_get_per_queue_coalesce +ffffffff81680d60 t ethtool_set_per_queue_coalesce +ffffffff81680f40 t ethtool_set_per_queue +ffffffff81680fc0 t ethtool_copy_validate_indir.isra.0 +ffffffff81681030 t ethtool_set_rxfh_indir +ffffffff816811c0 t ethtool_set_rxfh +ffffffff81681460 t ethtool_get_feature_mask +ffffffff816814b0 t __ethtool_get_sset_count +ffffffff81681520 t ethtool_get_sset_info +ffffffff81681640 t store_link_ksettings_for_user.constprop.8 +ffffffff81681700 T ethtool_op_get_link +ffffffff81681710 T ethtool_op_get_ts_info +ffffffff81681730 T ethtool_intersect_link_masks +ffffffff81681750 T ethtool_convert_legacy_u32_to_link_mode +ffffffff81681760 T ethtool_convert_link_mode_to_legacy_u32 +ffffffff81681770 T __ethtool_get_link_ksettings +ffffffff81681860 T netdev_rss_key_fill +ffffffff816818d0 T dev_ethtool +ffffffff81683ac0 t __hw_addr_create_ex +ffffffff81683b60 t __hw_addr_add_ex +ffffffff81683c50 t __hw_addr_flush +ffffffff81683cb0 t __dev_mc_add +ffffffff81683d20 t __hw_addr_sync_one +ffffffff81683d60 t __hw_addr_del_entry +ffffffff81683e00 t __hw_addr_del_ex +ffffffff81683e90 t __dev_mc_del +ffffffff81683ef0 t __hw_addr_unsync_one +ffffffff81683f30 t __hw_addr_sync_multiple +ffffffff81683fa0 T __hw_addr_sync +ffffffff81684020 T __hw_addr_unsync +ffffffff81684080 T __hw_addr_sync_dev +ffffffff81684150 T __hw_addr_unsync_dev +ffffffff816841c0 T __hw_addr_init +ffffffff816841d0 T dev_addr_flush +ffffffff816841f0 T dev_addr_init +ffffffff81684280 T dev_addr_add +ffffffff816842d0 T dev_addr_del +ffffffff81684360 T dev_uc_add_excl +ffffffff81684430 T dev_uc_add +ffffffff81684490 T dev_uc_del +ffffffff816844f0 T dev_uc_sync +ffffffff81684570 T dev_uc_sync_multiple +ffffffff816845f0 T dev_uc_unsync +ffffffff81684680 T dev_uc_flush +ffffffff816846b0 T dev_uc_init +ffffffff816846d0 T dev_mc_add_excl +ffffffff816847a0 T dev_mc_add +ffffffff816847b0 T dev_mc_add_global +ffffffff816847c0 T dev_mc_del +ffffffff816847d0 T dev_mc_del_global +ffffffff816847e0 T dev_mc_sync +ffffffff81684860 T dev_mc_sync_multiple +ffffffff816848e0 T dev_mc_unsync +ffffffff81684970 T dev_mc_flush +ffffffff816849a0 T dev_mc_init +ffffffff816849c0 t dst_discard +ffffffff816849d0 T dst_discard_out +ffffffff816849e0 t dst_md_discard +ffffffff816849f0 t dst_md_discard_out +ffffffff81684a00 T dst_init +ffffffff81684a90 T dst_alloc +ffffffff81684b10 T dst_destroy +ffffffff81684b90 t dst_destroy_rcu +ffffffff81684ba0 T dst_dev_put +ffffffff81684c10 T dst_release +ffffffff81684c70 T dst_release_immediate +ffffffff81684cc0 T dst_cow_metrics_generic +ffffffff81684da0 T __dst_destroy_metrics_generic +ffffffff81684dd0 T metadata_dst_alloc +ffffffff81684ea0 T metadata_dst_free +ffffffff81684eb0 T metadata_dst_alloc_percpu +ffffffff81684fe0 T metadata_dst_free_percpu +ffffffff81684ff0 T register_netevent_notifier +ffffffff81685000 T unregister_netevent_notifier +ffffffff81685010 T call_netevent_notifiers +ffffffff81685030 t neigh_stat_seq_start +ffffffff816850a0 t neigh_stat_seq_next +ffffffff81685100 t neigh_stat_seq_stop +ffffffff81685110 t neigh_invalidate +ffffffff81685200 t neigh_blackhole +ffffffff81685210 t neigh_fill_info +ffffffff81685490 t __neigh_notify +ffffffff81685540 t neigh_rcu_free_parms +ffffffff81685560 t pneigh_queue_purge +ffffffff81685590 t __pneigh_lookup_1 +ffffffff816855f0 t neigh_probe +ffffffff81685650 t neigh_hash_free_rcu +ffffffff816856b0 t neigh_hash_alloc +ffffffff81685760 t neigh_proxy_process +ffffffff81685890 t neigh_proc_update +ffffffff81685980 t neigh_stat_seq_show +ffffffff816859e0 T neigh_proc_dointvec_jiffies +ffffffff81685a10 T neigh_proc_dointvec_ms_jiffies +ffffffff81685a40 t neigh_proc_dointvec_unres_qlen +ffffffff81685b00 t neigh_proc_dointvec_zero_intmax +ffffffff81685b80 t neigh_proc_dointvec_userhz_jiffies +ffffffff81685bb0 t neightbl_fill_parms +ffffffff81685f40 t neigh_get_first.isra.3 +ffffffff81686010 t neigh_get_next.isra.4 +ffffffff816860d0 t pneigh_get_first.isra.5 +ffffffff81686120 t pneigh_get_next.isra.6 +ffffffff81686190 t neigh_add_timer +ffffffff816861d0 t neigh_stat_seq_open +ffffffff81686210 t neigh_rand_reach_time.part.15 +ffffffff81686230 t neigh_proc_base_reachable_time +ffffffff816862e0 t neightbl_set +ffffffff81686770 t neightbl_fill_info.constprop.17 +ffffffff81686ac0 t neightbl_dump_info +ffffffff81686d00 t neigh_dump_info +ffffffff81687250 T neigh_rand_reach_time +ffffffff81687260 T neigh_lookup +ffffffff81687360 T neigh_lookup_nodev +ffffffff81687460 T __pneigh_lookup +ffffffff816874a0 T pneigh_lookup +ffffffff816875f0 T pneigh_delete +ffffffff81687700 T neigh_destroy +ffffffff81687830 t neigh_cleanup_and_release +ffffffff81687880 t neigh_periodic_work +ffffffff81687a50 T neigh_remove_one +ffffffff81687b10 t neigh_del_timer +ffffffff81687b60 t neigh_flush_dev.isra.10 +ffffffff81687c90 T neigh_changeaddr +ffffffff81687cd0 T neigh_ifdown +ffffffff81687da0 t neigh_timer_handler +ffffffff81687ff0 T __neigh_create +ffffffff816885c0 T __neigh_event_send +ffffffff81688830 T neigh_update +ffffffff81688e80 t neigh_delete +ffffffff81689010 t neigh_add +ffffffff816892a0 T __neigh_set_probe_once +ffffffff816892f0 T neigh_event_ns +ffffffff81689390 T neigh_resolve_output +ffffffff81689530 T neigh_connected_output +ffffffff81689610 T neigh_direct_output +ffffffff81689620 T pneigh_enqueue +ffffffff81689720 T neigh_parms_alloc +ffffffff81689820 T neigh_parms_release +ffffffff816898a0 T neigh_table_init +ffffffff81689ac0 T neigh_table_clear +ffffffff81689b80 T neigh_for_each +ffffffff81689c40 T __neigh_for_each_release +ffffffff81689cf0 T neigh_xmit +ffffffff81689e60 T neigh_seq_start +ffffffff81689f30 T neigh_seq_next +ffffffff81689fa0 T neigh_seq_stop +ffffffff81689fc0 T neigh_app_ns +ffffffff81689fe0 T neigh_proc_dointvec +ffffffff8168a010 T neigh_sysctl_register +ffffffff8168a1e0 T neigh_sysctl_unregister +ffffffff8168a210 t rtnl_register_internal +ffffffff8168a310 t rtnl_link_ops_get +ffffffff8168a360 t set_operstate +ffffffff8168a3d0 t validate_linkmsg +ffffffff8168a530 t rtnl_bridge_notify +ffffffff8168a610 t nla_put_ifalias +ffffffff8168a6a0 t rtnl_dump_all +ffffffff8168a790 t rtnl_fill_vfinfo +ffffffff8168acc0 t rtnl_fill_vf +ffffffff8168ade0 t rtnl_fill_stats +ffffffff8168af00 t rtnl_xdp_fill +ffffffff8168b050 t rtnl_fill_ifinfo +ffffffff8168bd40 t rtnl_bridge_getlink +ffffffff8168bef0 t rtnl_bridge_setlink +ffffffff8168c0f0 t rtnl_bridge_dellink +ffffffff8168c2f0 t get_target_net +ffffffff8168c350 t rtnl_dump_ifinfo +ffffffff8168c720 t rtnetlink_net_exit +ffffffff8168c740 t rtnetlink_rcv +ffffffff8168c750 t rtnetlink_net_init +ffffffff8168c7c0 t if_nlmsg_size +ffffffff8168c9c0 t rtnl_getlink +ffffffff8168cbe0 t rtnl_ensure_unique_netns.part.4 +ffffffff8168cc30 t do_set_master +ffffffff8168ccd0 t rtnetlink_bind +ffffffff8168cd00 t rtnl_calcit.isra.10 +ffffffff8168cdf0 t rtnetlink_rcv_msg +ffffffff8168d0b0 t nlmsg_populate_fdb_fill.constprop.14 +ffffffff8168d1d0 t rtnl_fdb_notify +ffffffff8168d2b0 t nlmsg_populate_fdb +ffffffff8168d360 t rtnl_fill_statsinfo.isra.11.constprop.16 +ffffffff8168d970 t rtnl_stats_get +ffffffff8168dbc0 t rtnl_stats_dump +ffffffff8168dd80 T rtnl_lock +ffffffff8168dd90 T rtnl_kfree_skbs +ffffffff8168ddb0 T __rtnl_unlock +ffffffff8168ddf0 T rtnl_unlock +ffffffff8168de00 T rtnl_trylock +ffffffff8168de10 T rtnl_is_locked +ffffffff8168de30 T rtnl_register_module +ffffffff8168de40 T rtnl_register +ffffffff8168de80 T rtnl_unregister +ffffffff8168def0 T rtnl_unregister_all +ffffffff8168df70 T __rtnl_link_register +ffffffff8168dfd0 T rtnl_link_register +ffffffff8168e000 T __rtnl_link_unregister +ffffffff8168e0b0 T rtnl_link_unregister +ffffffff8168e1a0 T rtnl_af_register +ffffffff8168e1e0 T rtnl_af_unregister +ffffffff8168e220 T rtnetlink_send +ffffffff8168e290 T rtnl_unicast +ffffffff8168e2c0 T rtnl_notify +ffffffff8168e2f0 T rtnl_set_sk_err +ffffffff8168e310 T rtnetlink_put_metrics +ffffffff8168e480 T rtnl_put_cacheinfo +ffffffff8168e550 T rtnl_nla_parse_ifla +ffffffff8168e570 T rtnl_link_get_net +ffffffff8168e5b0 t rtnl_link_get_net_capable.constprop.15 +ffffffff8168e660 t do_setlink +ffffffff8168f470 t rtnl_setlink +ffffffff8168f570 T rtnl_delete_link +ffffffff8168f5b0 t rtnl_dellink +ffffffff8168f800 T rtnl_configure_link +ffffffff8168f870 T rtnl_create_link +ffffffff8168fa50 t rtnl_newlink +ffffffff816903c0 T rtmsg_ifinfo_build_skb +ffffffff81690490 t rtmsg_ifinfo_event.part.13 +ffffffff816904d0 t rtnetlink_event +ffffffff81690540 T rtmsg_ifinfo_send +ffffffff81690570 T rtmsg_ifinfo +ffffffff81690590 T rtmsg_ifinfo_newnet +ffffffff816905b0 T ndo_dflt_fdb_add +ffffffff81690640 t rtnl_fdb_add +ffffffff81690850 T ndo_dflt_fdb_del +ffffffff816908a0 t rtnl_fdb_del +ffffffff81690ad0 T ndo_dflt_fdb_dump +ffffffff81690b50 t rtnl_fdb_dump +ffffffff81690e30 T ndo_dflt_bridge_getlink +ffffffff816912ed t brport_nla_put_flag.part.6 +ffffffff81691310 T net_ratelimit +ffffffff81691330 T in_aton +ffffffff81691390 T in4_pton +ffffffff816914c0 t inet4_pton +ffffffff81691510 T in6_pton +ffffffff816918d0 t inet6_pton +ffffffff81691a40 T inet_pton_with_scope +ffffffff81691b00 T inet_proto_csum_replace4 +ffffffff81691ba0 T inet_proto_csum_replace16 +ffffffff81691cb0 T inet_proto_csum_replace_by_diff +ffffffff81691d40 t rfc2863_policy +ffffffff81691dc0 t linkwatch_do_dev +ffffffff81691e10 t linkwatch_schedule_work +ffffffff81691e90 t linkwatch_urgent_event +ffffffff81691f70 t __linkwatch_run_queue +ffffffff816920d0 t linkwatch_event +ffffffff81692100 T linkwatch_init_dev +ffffffff81692120 T linkwatch_forget_dev +ffffffff81692190 T linkwatch_run_queue +ffffffff816921a0 T linkwatch_fire_event +ffffffff81692230 T __get_raw_cpu_id +ffffffff81692240 T bpf_csum_update +ffffffff81692270 T bpf_get_cgroup_classid +ffffffff81692280 T bpf_set_hash_invalid +ffffffff816922a0 T bpf_set_hash +ffffffff816922b0 T bpf_sock_ops_cb_flags_set +ffffffff816922f0 t bpf_skb_is_valid_access +ffffffff81692370 t tc_cls_act_is_valid_access +ffffffff816923d0 t bpf_convert_ctx_access +ffffffff81692a30 t sock_filter_convert_ctx_access +ffffffff81692be0 t xdp_convert_ctx_access +ffffffff81692d10 t sock_ops_convert_ctx_access +ffffffff81693c40 t sk_skb_convert_ctx_access +ffffffff81693c70 T bpf_redirect +ffffffff81693ca0 T bpf_sk_redirect_map +ffffffff81693cc0 T bpf_skb_change_type +ffffffff81693cf0 T bpf_xdp_adjust_meta +ffffffff81693d40 T bpf_xdp_redirect +ffffffff81693d80 T bpf_xdp_redirect_map +ffffffff81693db0 T bpf_skb_under_cgroup +ffffffff81693e60 T __skb_get_pay_offset +ffffffff81693e70 T __skb_get_nlattr +ffffffff81693ec0 T __skb_get_nlattr_nest +ffffffff81693f20 t sk_filter_release +ffffffff81693f40 T bpf_skb_get_tunnel_opt +ffffffff81694050 T bpf_skb_set_tunnel_opt +ffffffff816940e0 t bpf_xdp_copy +ffffffff816940f0 t bpf_convert_filter +ffffffff81694b40 T bpf_skb_pull_data +ffffffff81694b90 T bpf_l3_csum_replace +ffffffff81694d00 T bpf_skb_store_bytes +ffffffff81694ea0 T bpf_csum_diff +ffffffff81694f40 T bpf_skb_load_bytes +ffffffff81694fb0 t bpf_skb_copy +ffffffff81695020 T bpf_l4_csum_replace +ffffffff81695180 t __bpf_redirect +ffffffff816953a0 T bpf_clone_redirect +ffffffff81695470 T bpf_get_hash_recalc +ffffffff81695490 T bpf_skb_vlan_push +ffffffff816954f0 T bpf_skb_vlan_pop +ffffffff81695530 T bpf_skb_change_head +ffffffff81695670 T bpf_skb_change_tail +ffffffff816958e0 T bpf_xdp_adjust_head +ffffffff81695950 t bpf_skb_net_hdr_push +ffffffff816959e0 t bpf_skb_generic_pop +ffffffff81695ac0 T bpf_skb_change_proto +ffffffff81695da0 t __xdp_map_lookup_elem +ffffffff81695dc0 T bpf_skb_event_output +ffffffff81695e20 T bpf_xdp_event_output +ffffffff81695e80 T bpf_skb_get_tunnel_key +ffffffff81695ff0 T bpf_skb_set_tunnel_key +ffffffff81696220 T bpf_get_socket_cookie +ffffffff81696240 T bpf_get_socket_uid +ffffffff81696290 T bpf_getsockopt +ffffffff81696350 T bpf_setsockopt +ffffffff81696560 t bpf_get_skb_set_tunnel_proto +ffffffff816965c0 t sk_filter_is_valid_access +ffffffff816965f0 t lwt_is_valid_access +ffffffff81696650 t sock_filter_is_valid_access +ffffffff816966a0 t tc_cls_act_prologue +ffffffff81696720 t xdp_is_valid_access +ffffffff81696770 t sock_ops_is_valid_access +ffffffff816967c0 t sk_skb_is_valid_access +ffffffff81696830 t __bpf_prog_release +ffffffff81696870 t sk_filter_release_rcu +ffffffff81696890 t __reuseport_attach_prog +ffffffff81696910 t bpf_prog_store_orig_filter.isra.18 +ffffffff81696990 t bpf_prepare_filter +ffffffff81696d40 t __get_filter +ffffffff81696e10 t bpf_base_func_proto +ffffffff81696e80 t sk_filter_func_proto +ffffffff81696eb0 t xdp_func_proto +ffffffff81696f10 t lwt_inout_func_proto +ffffffff81696f80 t lwt_xmit_func_proto +ffffffff81697010 t sock_filter_func_proto +ffffffff81697030 t sock_ops_func_proto +ffffffff81697070 t sk_skb_func_proto +ffffffff816970d0 t tc_cls_act_func_proto +ffffffff816971e0 t tc_cls_act_convert_ctx_access +ffffffff81697240 T bpf_get_route_realm +ffffffff81697250 T bpf_skb_adjust_room +ffffffff81697670 t sk_skb_prologue +ffffffff816976f0 T sk_filter_trim_cap +ffffffff81697860 T sk_filter_uncharge +ffffffff81697880 t __sk_attach_prog +ffffffff81697910 T sk_filter_charge +ffffffff816979a0 T bpf_prog_create +ffffffff81697a40 T bpf_prog_create_from_user +ffffffff81697b30 T bpf_prog_destroy +ffffffff81697b40 T sk_attach_filter +ffffffff81697b90 T sk_reuseport_attach_filter +ffffffff81697be0 T sk_attach_bpf +ffffffff81697c50 T sk_reuseport_attach_bpf +ffffffff81697cc0 T skb_do_redirect +ffffffff81697d20 T do_sk_redirect_map +ffffffff81697d40 T xdp_do_flush_map +ffffffff81697d80 T xdp_do_redirect +ffffffff81697f20 T xdp_do_generic_redirect +ffffffff81698020 T bpf_helper_changes_pkt_data +ffffffff816980c0 T bpf_warn_invalid_xdp_action +ffffffff816980d0 T sk_detach_filter +ffffffff81698110 T sk_get_filter +ffffffff816981a0 t sock_diag_broadcast_destroy_work +ffffffff81698300 t diag_net_exit +ffffffff81698320 t sock_diag_rcv +ffffffff81698350 t diag_net_init +ffffffff816983c0 t sock_diag_bind +ffffffff81698410 t sock_diag_rcv_msg +ffffffff81698530 T sock_gen_cookie +ffffffff81698570 T sock_diag_check_cookie +ffffffff816985a0 T sock_diag_save_cookie +ffffffff816985c0 T sock_diag_put_meminfo +ffffffff816985f0 T sock_diag_put_filterinfo +ffffffff81698690 T sock_diag_broadcast_destroy +ffffffff816986f0 T sock_diag_register_inet_compat +ffffffff81698720 T sock_diag_unregister_inet_compat +ffffffff81698750 T sock_diag_register +ffffffff816987a0 T sock_diag_unregister +ffffffff816987f0 T sock_diag_destroy +ffffffff81698840 t dev_ifsioc +ffffffff81698c30 T register_gifconf +ffffffff81698c50 T dev_ifconf +ffffffff81698d30 T dev_load +ffffffff81698d70 T dev_ioctl +ffffffff81699140 T tso_count_descs +ffffffff81699160 T tso_build_hdr +ffffffff81699250 T tso_build_data +ffffffff816992c0 T tso_start +ffffffff81699440 t __reuseport_alloc +ffffffff81699470 t reuseport_free_rcu +ffffffff81699490 T reuseport_alloc +ffffffff81699500 T reuseport_add_sock +ffffffff81699660 T reuseport_detach_sock +ffffffff81699700 T reuseport_select_sock +ffffffff816998d0 T reuseport_attach_prog +ffffffff81699910 t fib_notifier_net_init +ffffffff81699930 t fib_notifier_net_exit +ffffffff81699940 t fib_seq_sum +ffffffff816999d0 T call_fib_notifier +ffffffff816999f0 T call_fib_notifiers +ffffffff81699a10 T register_fib_notifier +ffffffff81699b30 T unregister_fib_notifier +ffffffff81699b40 T fib_notifier_ops_register +ffffffff81699bd0 T fib_notifier_ops_unregister +ffffffff81699c00 T xdp_rxq_info_unreg +ffffffff81699c20 T xdp_rxq_info_reg +ffffffff81699c90 T xdp_rxq_info_unused +ffffffff81699ca0 T xdp_rxq_info_is_reg +ffffffff81699cb0 t change_gro_flush_timeout +ffffffff81699cc0 t rx_queue_attr_show +ffffffff81699ce0 t rx_queue_attr_store +ffffffff81699d10 t rx_queue_namespace +ffffffff81699d40 t netdev_queue_attr_show +ffffffff81699d60 t netdev_queue_attr_store +ffffffff81699d90 t netdev_queue_namespace +ffffffff81699dc0 t net_grab_current_ns +ffffffff81699df0 t net_initial_ns +ffffffff81699e00 t net_netlink_ns +ffffffff81699e10 t net_namespace +ffffffff81699e20 t carrier_down_count_show +ffffffff81699e40 t format_proto_down +ffffffff81699e60 t format_gro_flush_timeout +ffffffff81699e80 t format_tx_queue_len +ffffffff81699ea0 t format_flags +ffffffff81699ec0 t format_mtu +ffffffff81699ee0 t format_link_mode +ffffffff81699f00 t format_addr_len +ffffffff81699f20 t format_addr_assign_type +ffffffff81699f40 t format_name_assign_type +ffffffff81699f60 t format_ifindex +ffffffff81699f80 t format_dev_port +ffffffff81699fa0 t format_dev_id +ffffffff81699fc0 t format_type +ffffffff81699fe0 t format_group +ffffffff8169a000 t bql_show_inflight +ffffffff8169a030 t bql_show_limit_min +ffffffff8169a050 t bql_show_limit_max +ffffffff8169a070 t bql_show_limit +ffffffff8169a090 t tx_maxrate_show +ffffffff8169a0b0 t tx_timeout_show +ffffffff8169a0f0 t carrier_up_count_show +ffffffff8169a110 t carrier_show +ffffffff8169a150 t carrier_changes_show +ffffffff8169a180 t operstate_show +ffffffff8169a1f0 t dormant_show +ffffffff8169a230 t change_proto_down +ffffffff8169a240 t net_current_may_mount +ffffffff8169a270 t change_flags +ffffffff8169a280 t change_mtu +ffffffff8169a290 t change_carrier +ffffffff8169a2b0 t ifalias_show +ffffffff8169a300 t broadcast_show +ffffffff8169a330 t address_show +ffffffff8169a380 t iflink_show +ffffffff8169a3b0 t change_group +ffffffff8169a3c0 t store_rps_dev_flow_table_cnt +ffffffff8169a4d0 t rps_dev_flow_table_release +ffffffff8169a4e0 t show_rps_dev_flow_table_cnt +ffffffff8169a520 t store_rps_map +ffffffff8169a670 t show_rps_map +ffffffff8169a6f0 t rx_queue_release +ffffffff8169a770 t netdev_queue_release +ffffffff8169a7b0 t bql_set_hold_time +ffffffff8169a800 t bql_show_hold_time +ffffffff8169a830 t bql_set +ffffffff8169a8c0 t bql_set_limit_min +ffffffff8169a8e0 t bql_set_limit_max +ffffffff8169a900 t bql_set_limit +ffffffff8169a920 t tx_maxrate_store +ffffffff8169aa00 t xps_cpus_store +ffffffff8169aab0 t traffic_class_show +ffffffff8169ab10 t xps_cpus_show +ffffffff8169ac50 t netdev_release +ffffffff8169ac80 t netdev_uevent +ffffffff8169acc0 t netdev_store.isra.3 +ffffffff8169ad80 t proto_down_store +ffffffff8169ada0 t flags_store +ffffffff8169adc0 t mtu_store +ffffffff8169ade0 t carrier_store +ffffffff8169ae00 t group_store +ffffffff8169ae20 t gro_flush_timeout_store +ffffffff8169ae60 t tx_queue_len_store +ffffffff8169aea0 t netdev_show.isra.5 +ffffffff8169af00 t proto_down_show +ffffffff8169af10 t gro_flush_timeout_show +ffffffff8169af20 t tx_queue_len_show +ffffffff8169af30 t flags_show +ffffffff8169af40 t mtu_show +ffffffff8169af50 t link_mode_show +ffffffff8169af60 t addr_len_show +ffffffff8169af70 t addr_assign_type_show +ffffffff8169af80 t ifindex_show +ffffffff8169af90 t dev_port_show +ffffffff8169afa0 t dev_id_show +ffffffff8169afb0 t type_show +ffffffff8169afc0 t group_show +ffffffff8169afd0 t name_assign_type_show +ffffffff8169aff0 t duplex_show.part.10 +ffffffff8169aff0 t ifalias_store.part.9 +ffffffff8169aff0 t phys_port_id_show.part.8 +ffffffff8169aff0 t phys_port_name_show.part.7 +ffffffff8169aff0 t phys_switch_id_show.part.6 +ffffffff8169aff0 t speed_show.part.11 +ffffffff8169b010 t phys_switch_id_show +ffffffff8169b040 t phys_port_name_show +ffffffff8169b0c0 t phys_port_id_show +ffffffff8169b140 t ifalias_store +ffffffff8169b1f0 t duplex_show +ffffffff8169b280 t speed_show +ffffffff8169b2f0 t netstat_show.isra.13 +ffffffff8169b370 t rx_nohandler_show +ffffffff8169b380 t tx_compressed_show +ffffffff8169b390 t rx_compressed_show +ffffffff8169b3a0 t tx_window_errors_show +ffffffff8169b3b0 t tx_heartbeat_errors_show +ffffffff8169b3c0 t tx_fifo_errors_show +ffffffff8169b3d0 t tx_carrier_errors_show +ffffffff8169b3e0 t tx_aborted_errors_show +ffffffff8169b3f0 t rx_missed_errors_show +ffffffff8169b400 t rx_fifo_errors_show +ffffffff8169b410 t rx_frame_errors_show +ffffffff8169b420 t rx_crc_errors_show +ffffffff8169b430 t rx_over_errors_show +ffffffff8169b440 t rx_length_errors_show +ffffffff8169b450 t collisions_show +ffffffff8169b460 t multicast_show +ffffffff8169b470 t tx_dropped_show +ffffffff8169b480 t rx_dropped_show +ffffffff8169b490 t tx_errors_show +ffffffff8169b4a0 t rx_errors_show +ffffffff8169b4b0 t tx_bytes_show +ffffffff8169b4c0 t rx_bytes_show +ffffffff8169b4d0 t tx_packets_show +ffffffff8169b4e0 t rx_packets_show +ffffffff8169b4f0 T net_rx_queue_update_kobjects +ffffffff8169b630 T netdev_queue_update_kobjects +ffffffff8169b770 T netdev_unregister_kobject +ffffffff8169b7f0 T netdev_register_kobject +ffffffff8169b940 T netdev_class_create_file_ns +ffffffff8169b960 T netdev_class_remove_file_ns +ffffffff8169b972 t get_netdev_queue_index.part.0 +ffffffff8169b980 t dev_seq_next +ffffffff8169ba10 t softnet_seq_start +ffffffff8169ba70 t softnet_seq_next +ffffffff8169bad0 t softnet_seq_stop +ffffffff8169bae0 t ptype_get_idx +ffffffff8169bb70 t dev_mc_net_exit +ffffffff8169bb90 t dev_proc_net_exit +ffffffff8169bbd0 t dev_mc_net_init +ffffffff8169bc00 t dev_mc_seq_open +ffffffff8169bc20 t ptype_seq_open +ffffffff8169bc40 t dev_seq_open +ffffffff8169bc60 t dev_seq_stop +ffffffff8169bc70 t softnet_seq_show +ffffffff8169bcd0 t ptype_seq_start +ffffffff8169bd00 t softnet_seq_open +ffffffff8169bd10 t dev_seq_printf_stats +ffffffff8169bdb0 t dev_seq_show +ffffffff8169bdd0 t dev_seq_start +ffffffff8169be80 t dev_proc_net_init +ffffffff8169bf30 t dev_mc_seq_show +ffffffff8169bfc0 t ptype_seq_show +ffffffff8169c060 t ptype_seq_next +ffffffff8169c110 t ptype_seq_stop +ffffffff8169c120 T eth_header_parse +ffffffff8169c150 T eth_header_cache +ffffffff8169c1a0 T eth_header_cache_update +ffffffff8169c1b0 T ether_setup +ffffffff8169c220 T eth_header +ffffffff8169c2d0 t devm_free_netdev +ffffffff8169c2e0 T eth_gro_receive +ffffffff8169c450 T eth_gro_complete +ffffffff8169c4c0 T eth_get_headlen +ffffffff8169c570 T eth_type_trans +ffffffff8169c670 T eth_prepare_mac_addr_change +ffffffff8169c6b0 T eth_commit_mac_addr_change +ffffffff8169c6d0 T eth_mac_addr +ffffffff8169c720 T eth_change_mtu +ffffffff8169c750 T eth_validate_addr +ffffffff8169c780 T alloc_etherdev_mqs +ffffffff8169c7a0 T devm_alloc_etherdev_mqs +ffffffff8169c830 T sysfs_format_mac +ffffffff8169c850 W arch_get_platform_mac_address +ffffffff8169c860 T eth_platform_get_mac_address +ffffffff8169c890 t noop_enqueue +ffffffff8169c8a0 t noop_dequeue +ffffffff8169c8b0 t noqueue_init +ffffffff8169c8c0 t mini_qdisc_rcu_func +ffffffff8169c8d0 t pfifo_fast_peek +ffffffff8169c930 t pfifo_fast_dequeue +ffffffff8169cad0 t pfifo_fast_enqueue +ffffffff8169cbc0 t pfifo_fast_dump +ffffffff8169cc20 t pfifo_fast_destroy +ffffffff8169cc50 t pfifo_fast_init +ffffffff8169cd40 t pfifo_fast_change_tx_queue_len +ffffffff8169cfa0 t pfifo_fast_reset +ffffffff8169d0d0 t dev_watchdog +ffffffff8169d2b0 T sch_direct_xmit +ffffffff8169d500 T __qdisc_run +ffffffff8169da00 T dev_trans_start +ffffffff8169da70 T __netdev_watchdog_up +ffffffff8169dad0 T netif_carrier_on +ffffffff8169db10 T netif_carrier_off +ffffffff8169db30 T qdisc_alloc +ffffffff8169dd30 T qdisc_reset +ffffffff8169de10 t dev_deactivate_queue.constprop.3 +ffffffff8169de60 T qdisc_free +ffffffff8169de90 T qdisc_destroy +ffffffff8169dfa0 T qdisc_create_dflt +ffffffff8169e010 T dev_graft_qdisc +ffffffff8169e060 T dev_activate +ffffffff8169e280 T dev_deactivate_many +ffffffff8169e510 T dev_deactivate +ffffffff8169e550 T dev_qdisc_change_tx_queue_len +ffffffff8169e640 T dev_init_scheduler +ffffffff8169e730 T dev_shutdown +ffffffff8169e7c0 T psched_ratecfg_precompute +ffffffff8169e840 T mini_qdisc_pair_swap +ffffffff8169e8b0 T mini_qdisc_pair_init +ffffffff8169e8e0 t mq_select_queue +ffffffff8169e910 t mq_leaf +ffffffff8169e940 t mq_find +ffffffff8169e980 t mq_dump_class +ffffffff8169e9d0 t mq_walk +ffffffff8169ea40 t mq_dump +ffffffff8169ec00 t mq_attach +ffffffff8169ec70 t mq_destroy +ffffffff8169ece0 t mq_init +ffffffff8169edd0 t mq_dump_class_stats +ffffffff8169ee40 t mq_graft +ffffffff8169eec0 t netlink_tap_exit_net +ffffffff8169eed0 t netlink_overrun +ffffffff8169ef10 t netlink_compare +ffffffff8169ef40 t netlink_update_listeners +ffffffff8169efe0 t netlink_update_subscriptions +ffffffff8169f060 t netlink_ioctl +ffffffff8169f070 t netlink_hash +ffffffff8169f0d0 t netlink_getsockopt +ffffffff8169f2c0 t netlink_getname +ffffffff8169f370 t netlink_undo_bind +ffffffff8169f3d0 t netlink_update_socket_mc +ffffffff8169f420 t netlink_sock_destruct_work +ffffffff8169f430 t netlink_skb_destructor +ffffffff8169f4b0 t netlink_trim +ffffffff8169f560 t netlink_data_ready +ffffffff8169f570 t netlink_tap_init_net +ffffffff8169f5c0 t __netlink_create +ffffffff8169f670 t netlink_sock_destruct +ffffffff8169f6e0 t deferred_put_nlk_sk +ffffffff8169f770 t netlink_create +ffffffff8169f8f0 t netlink_net_exit +ffffffff8169f910 t netlink_net_init +ffffffff8169f940 t netlink_seq_open +ffffffff8169f960 t netlink_seq_show +ffffffff8169f9f0 t netlink_seq_stop +ffffffff8169fa20 t __netlink_seq_next.isra.3 +ffffffff8169fae0 t netlink_seq_next +ffffffff8169faf0 t netlink_deliver_tap +ffffffff8169fcf0 t __netlink_sendskb +ffffffff8169fd30 t netlink_seq_start +ffffffff8169fda0 t __netlink_lookup +ffffffff8169fea0 t netlink_lookup +ffffffff8169ff00 t netlink_insert +ffffffff816a0230 t netlink_autobind.isra.2 +ffffffff816a0310 t netlink_connect +ffffffff816a0400 T netlink_add_tap +ffffffff816a0480 T netlink_remove_tap +ffffffff816a0530 T netlink_table_grab +ffffffff816a0630 T netlink_table_ungrab +ffffffff816a0660 t netlink_realloc_groups +ffffffff816a0740 t netlink_setsockopt +ffffffff816a0a10 t netlink_bind +ffffffff816a0cd0 t netlink_release +ffffffff816a11a0 T __netlink_ns_capable +ffffffff816a11e0 T netlink_ns_capable +ffffffff816a11f0 T netlink_capable +ffffffff816a1200 T netlink_net_capable +ffffffff816a1220 T netlink_getsockbyfilp +ffffffff816a1260 T netlink_attachskb +ffffffff816a1430 T netlink_sendskb +ffffffff816a1470 T netlink_detachskb +ffffffff816a14a0 T netlink_unicast +ffffffff816a16d0 T netlink_has_listeners +ffffffff816a1730 T netlink_broadcast_filtered +ffffffff816a1b30 t netlink_sendmsg +ffffffff816a1ec0 T netlink_broadcast +ffffffff816a1ed0 T netlink_set_err +ffffffff816a1fb0 T __netlink_kernel_create +ffffffff816a21d0 T netlink_kernel_release +ffffffff816a21f0 T __netlink_change_ngroups +ffffffff816a22a0 T netlink_change_ngroups +ffffffff816a22d0 T __netlink_clear_multicast_users +ffffffff816a2320 T __nlmsg_put +ffffffff816a23a0 t netlink_dump +ffffffff816a2660 t netlink_recvmsg +ffffffff816a29c0 T __netlink_dump_start +ffffffff816a2b60 T netlink_ack +ffffffff816a2df0 T netlink_rcv_skb +ffffffff816a2ee0 T nlmsg_notify +ffffffff816a2fc0 T netlink_register_notifier +ffffffff816a2fd0 T netlink_unregister_notifier +ffffffff816a2fe0 t genl_lock_done +ffffffff816a3030 t genl_lock_dumpit +ffffffff816a3070 t genl_lock_start +ffffffff816a30c0 t genl_family_find_byname +ffffffff816a3120 t genl_pernet_exit +ffffffff816a3140 t genl_unbind +ffffffff816a31c0 t genl_bind +ffffffff816a3260 t genl_rcv +ffffffff816a3290 t genl_family_rcv_msg +ffffffff816a3620 t genl_rcv_msg +ffffffff816a36a0 t genl_pernet_init +ffffffff816a3730 t genlmsg_mcast +ffffffff816a3840 T genl_lock +ffffffff816a3850 T genl_unlock +ffffffff816a3860 T genlmsg_put +ffffffff816a38d0 t ctrl_fill_info +ffffffff816a3ca0 t ctrl_dumpfamily +ffffffff816a3d50 t ctrl_build_family_msg +ffffffff816a3de0 t ctrl_getfamily +ffffffff816a3e90 t genl_ctrl_event +ffffffff816a41b0 T genl_register_family +ffffffff816a47b0 T genl_unregister_family +ffffffff816a4950 T genl_family_attrbuf +ffffffff816a4960 T genlmsg_multicast_allns +ffffffff816a4980 T genl_notify +ffffffff816a49c0 t bpf_test_run +ffffffff816a4ae0 t bpf_test_finish.isra.0 +ffffffff816a4b70 t bpf_test_init.isra.1 +ffffffff816a4bf0 T bpf_prog_test_run_skb +ffffffff816a4de0 T bpf_prog_test_run_xdp +ffffffff816a4f00 t accept_all +ffffffff816a4f10 t allocate_hook_entries_size +ffffffff816a4f50 t __nf_hook_entries_free +ffffffff816a4f60 t netfilter_net_exit +ffffffff816a4f80 t nf_hook_entry_head +ffffffff816a4fd0 t __nf_unregister_net_hook +ffffffff816a5210 t netfilter_net_init +ffffffff816a52d0 t __nf_register_net_hook +ffffffff816a5590 T nf_unregister_net_hook +ffffffff816a55d0 T nf_register_net_hook +ffffffff816a5650 T nf_register_net_hooks +ffffffff816a56f0 T nf_unregister_net_hooks +ffffffff816a5730 T nf_hook_slow +ffffffff816a57e0 T skb_make_writable +ffffffff816a5870 T nf_ct_attach +ffffffff816a58b0 T nf_conntrack_destroy +ffffffff816a58e0 t seq_next +ffffffff816a5900 t nf_log_net_exit +ffffffff816a5950 t nflog_open +ffffffff816a5970 t seq_stop +ffffffff816a5980 t seq_start +ffffffff816a59a0 t nf_log_net_init +ffffffff816a5b30 t __find_logger +ffffffff816a5bb0 t seq_show +ffffffff816a5cc0 t nf_log_proc_dostring +ffffffff816a5e50 T nf_log_set +ffffffff816a5eb0 T nf_log_unset +ffffffff816a5f00 T nf_log_register +ffffffff816a5fc0 T nf_log_unregister +ffffffff816a6030 T nf_log_bind_pf +ffffffff816a60a0 T nf_log_unbind_pf +ffffffff816a60e0 T nf_logger_request_module +ffffffff816a60f0 T nf_logger_put +ffffffff816a6130 T nf_logger_find_get +ffffffff816a61a0 T nf_log_packet +ffffffff816a62d0 T nf_log_trace +ffffffff816a63f0 T nf_log_buf_add +ffffffff816a64a0 T nf_log_buf_open +ffffffff816a64e0 T nf_log_buf_close +ffffffff816a6530 T nf_register_queue_handler +ffffffff816a6540 T nf_unregister_queue_handler +ffffffff816a6550 T nf_queue_entry_release_refs +ffffffff816a65a0 T nf_queue_entry_get_refs +ffffffff816a65e0 T nf_queue_nf_hook_drop +ffffffff816a6610 T nf_queue +ffffffff816a6860 T nf_reinject +ffffffff816a6a10 T nf_register_sockopt +ffffffff816a6ab0 T nf_unregister_sockopt +ffffffff816a6b00 T nf_setsockopt +ffffffff816a6bb0 T nf_getsockopt +ffffffff816a6c60 T nf_checksum +ffffffff816a6ca0 T nf_checksum_partial +ffffffff816a6ce0 T nf_route +ffffffff816a6d20 T nf_reroute +ffffffff816a6d50 t nfnetlink_net_exit_batch +ffffffff816a6db0 t nfnetlink_rcv_msg +ffffffff816a6fd0 t nfnl_err_reset +ffffffff816a7030 t nfnetlink_rcv +ffffffff816a76a0 t nfnetlink_net_init +ffffffff816a7710 T nfnl_lock +ffffffff816a7730 T nfnl_unlock +ffffffff816a7750 T nfnetlink_subsys_register +ffffffff816a77c0 T nfnetlink_subsys_unregister +ffffffff816a7810 T nfnetlink_has_listeners +ffffffff816a7820 T nfnetlink_send +ffffffff816a7840 T nfnetlink_set_err +ffffffff816a7850 T nfnetlink_unicast +ffffffff816a7870 t nf_conntrack_double_unlock +ffffffff816a78b0 t nf_ct_add_to_dying_list +ffffffff816a7910 t __nf_conntrack_hash_insert +ffffffff816a7970 t nf_conntrack_attach +ffffffff816a79a0 t iter_net_only +ffffffff816a79c0 t kill_all +ffffffff816a79d0 t hash_conntrack_raw +ffffffff816a7af0 t nf_ct_del_from_dying_or_unconfirmed_list +ffffffff816a7b50 t __nf_ct_unconfirmed_destroy.isra.7 +ffffffff816a7be0 T nf_conntrack_lock +ffffffff816a7c20 t nf_conntrack_double_lock.isra.8 +ffffffff816a7cb0 T nf_ct_get_tuple +ffffffff816a7d50 T nf_ct_get_tuplepr +ffffffff816a7e20 T nf_ct_invert_tuple +ffffffff816a7ea0 T nf_ct_tmpl_alloc +ffffffff816a7ef0 T nf_ct_tmpl_free +ffffffff816a7f20 T nf_ct_delete +ffffffff816a8090 t nf_ct_gc_expired +ffffffff816a8110 t __nf_conntrack_find_get.isra.6 +ffffffff816a83a0 t gc_worker +ffffffff816a8670 t early_drop +ffffffff816a8810 t __nf_conntrack_alloc.isra.10 +ffffffff816a8970 t nf_ct_iterate_cleanup +ffffffff816a8ab0 T nf_conntrack_find_get +ffffffff816a8ae0 T nf_conntrack_hash_check_insert +ffffffff816a8da0 T __nf_conntrack_confirm +ffffffff816a9190 T nf_conntrack_tuple_taken +ffffffff816a9340 T nf_conntrack_alloc +ffffffff816a9360 T nf_conntrack_free +ffffffff816a93a0 t init_conntrack +ffffffff816a95d0 t destroy_conntrack +ffffffff816a9660 T nf_conntrack_in +ffffffff816a99c0 T nf_ct_invert_tuplepr +ffffffff816a9a10 T nf_conntrack_alter_reply +ffffffff816a9ad0 T __nf_ct_refresh_acct +ffffffff816a9b40 T nf_ct_kill_acct +ffffffff816a9b80 T nf_ct_unconfirmed_destroy +ffffffff816a9bb0 T nf_ct_iterate_cleanup_net +ffffffff816a9bf0 T nf_ct_iterate_destroy +ffffffff816a9c70 T nf_ct_free_hashtable +ffffffff816a9cc0 T nf_conntrack_cleanup_start +ffffffff816a9ce0 T nf_conntrack_cleanup_end +ffffffff816a9d30 T nf_conntrack_cleanup_net_list +ffffffff816a9e00 T nf_conntrack_cleanup_net +ffffffff816a9e30 T nf_ct_alloc_hashtable +ffffffff816a9ed0 T nf_conntrack_hash_resize +ffffffff816aa0c0 T nf_conntrack_set_hashsize +ffffffff816aa120 T nf_conntrack_init_start +ffffffff816aa320 T nf_conntrack_init_end +ffffffff816aa340 T nf_conntrack_init_net +ffffffff816aa460 t nf_conntrack_pernet_exit +ffffffff816aa4b0 t nf_conntrack_pernet_init +ffffffff816aa580 t nf_conntrack_hash_sysctl +ffffffff816aa5b0 T need_conntrack +ffffffff816aa5c0 t nf_ct_expect_dst_hash +ffffffff816aa6f0 t nf_ct_expect_free_rcu +ffffffff816aa710 t nf_ct_exp_equal.isra.0 +ffffffff816aa7b0 T __nf_ct_expect_find +ffffffff816aa820 T nf_ct_expect_find_get +ffffffff816aa8d0 T nf_ct_expect_alloc +ffffffff816aa900 T nf_ct_expect_init +ffffffff816aaba0 T nf_ct_expect_put +ffffffff816aabd0 T nf_ct_unlink_expect_report +ffffffff816aac60 T nf_ct_find_expectation +ffffffff816aad40 T nf_ct_remove_expect +ffffffff816aad70 T nf_ct_remove_expectations +ffffffff816aadc0 T nf_ct_unexpect_related +ffffffff816aadf0 t nf_ct_expectation_timed_out +ffffffff816aae30 T nf_ct_expect_related_report +ffffffff816ab2e0 T nf_ct_expect_iterate_destroy +ffffffff816ab390 T nf_ct_expect_iterate_net +ffffffff816ab470 T nf_conntrack_expect_pernet_init +ffffffff816ab480 T nf_conntrack_expect_pernet_fini +ffffffff816ab490 T nf_conntrack_expect_init +ffffffff816ab520 T nf_conntrack_expect_fini +ffffffff816ab550 t __nf_ct_helper_find +ffffffff816ab5c0 t unhelp +ffffffff816ab5f0 t expect_iter_me +ffffffff816ab630 T __nf_conntrack_helper_find +ffffffff816ab6b0 T nf_conntrack_helper_try_module_get +ffffffff816ab750 T nf_conntrack_helper_put +ffffffff816ab770 T nf_ct_helper_ext_add +ffffffff816ab790 T __nf_ct_try_assign_helper +ffffffff816ab8f0 T nf_ct_helper_destroy +ffffffff816ab940 T nf_ct_helper_expectfn_register +ffffffff816ab980 T nf_ct_helper_expectfn_unregister +ffffffff816ab9c0 T nf_ct_helper_expectfn_find_by_name +ffffffff816aba10 T nf_ct_helper_expectfn_find_by_symbol +ffffffff816aba40 T nf_ct_helper_log +ffffffff816abae0 T nf_conntrack_helper_register +ffffffff816abc80 T nf_conntrack_helper_unregister +ffffffff816abcf0 T nf_ct_helper_init +ffffffff816abd70 T nf_conntrack_helpers_register +ffffffff816abdf0 T nf_conntrack_helpers_unregister +ffffffff816abe30 T nf_conntrack_helper_pernet_init +ffffffff816abed0 T nf_conntrack_helper_pernet_fini +ffffffff816abef0 T nf_conntrack_helper_init +ffffffff816abf60 T nf_conntrack_helper_fini +ffffffff816abf80 t kill_l3proto +ffffffff816abf90 t kill_l4proto +ffffffff816abfb0 t nf_ct_netns_do_get +ffffffff816ac050 t nf_ct_netns_do_put +ffffffff816ac0c0 t nf_ct_l4proto_register_sysctl.isra.2 +ffffffff816ac120 t __nf_ct_l4proto_unregister_one +ffffffff816ac160 t nf_ct_l4proto_unregister_sysctl.isra.5 +ffffffff816ac1a0 T __nf_ct_l4proto_find +ffffffff816ac1d0 T nf_ct_l3proto_find_get +ffffffff816ac200 T nf_ct_l3proto_try_module_get +ffffffff816ac250 T nf_ct_l3proto_module_put +ffffffff816ac280 T nf_ct_netns_get +ffffffff816ac2f0 T nf_ct_netns_put +ffffffff816ac320 T nf_ct_l4proto_find_get +ffffffff816ac370 T nf_ct_l4proto_put +ffffffff816ac380 T nf_ct_l3proto_register +ffffffff816ac3e0 T nf_ct_l3proto_unregister +ffffffff816ac440 T nf_ct_l4proto_register_one +ffffffff816ac520 T nf_ct_l4proto_pernet_register_one +ffffffff816ac5b0 T nf_ct_l4proto_unregister_one +ffffffff816ac5e0 T nf_ct_l4proto_pernet_unregister_one +ffffffff816ac650 T nf_ct_l4proto_pernet_register +ffffffff816ac6f0 T nf_ct_l4proto_unregister +ffffffff816ac750 T nf_ct_l4proto_register +ffffffff816ac7d0 T nf_ct_l4proto_pernet_unregister +ffffffff816ac810 T nf_conntrack_proto_pernet_init +ffffffff816ac890 T nf_conntrack_proto_pernet_fini +ffffffff816ac8f0 T nf_conntrack_proto_init +ffffffff816ac920 T nf_conntrack_proto_fini +ffffffff816ac941 T nf_l4proto_log_invalid +ffffffff816ac9b6 T nf_ct_l4proto_log_invalid +ffffffff816aca30 t generic_get_l4proto +ffffffff816aca40 t generic_invert_tuple +ffffffff816aca70 t generic_pkt_to_tuple +ffffffff816acaa0 t generic_pkt_to_tuple +ffffffff816acac0 t generic_invert_tuple +ffffffff816acae0 t generic_get_timeouts +ffffffff816acaf0 t generic_new +ffffffff816acb00 t generic_get_net_proto +ffffffff816acb10 t generic_init_net +ffffffff816acb60 t generic_packet +ffffffff816acb80 t tcp_invert_tuple +ffffffff816acba0 t tcp_get_timeouts +ffffffff816acbb0 t tcp_can_early_drop +ffffffff816acbc0 t tcp_get_net_proto +ffffffff816acbd0 t tcp_pkt_to_tuple +ffffffff816acc40 t tcp_error +ffffffff816acda0 t tcp_init_net +ffffffff816acf40 t tcp_options.isra.1 +ffffffff816ad020 t tcp_new +ffffffff816ad260 t tcp_packet +ffffffff816ae1e0 t udp_invert_tuple +ffffffff816ae200 t udp_get_timeouts +ffffffff816ae210 t udp_new +ffffffff816ae220 t udp_get_net_proto +ffffffff816ae230 t udp_pkt_to_tuple +ffffffff816ae290 t udp_error +ffffffff816ae3c0 t udp_packet +ffffffff816ae410 t udp_init_net +ffffffff816ae490 T nf_ct_ext_destroy +ffffffff816ae4e0 T nf_ct_ext_add +ffffffff816ae650 T nf_ct_extend_register +ffffffff816ae6a0 T nf_ct_extend_unregister +ffffffff816ae6e0 T seq_print_acct +ffffffff816ae720 T nf_conntrack_acct_pernet_init +ffffffff816ae7c0 T nf_conntrack_acct_pernet_fini +ffffffff816ae7e0 T nf_conntrack_acct_init +ffffffff816ae810 T nf_conntrack_acct_fini +ffffffff816ae820 T nf_ct_seqadj_init +ffffffff816ae870 T nf_ct_seqadj_set +ffffffff816ae900 T nf_ct_tcp_seqadj_set +ffffffff816ae940 T nf_ct_seq_adjust +ffffffff816aec20 T nf_ct_seq_offset +ffffffff816aec60 T nf_conntrack_seqadj_init +ffffffff816aec70 T nf_conntrack_seqadj_fini +ffffffff816aec80 t __nft_trace_packet +ffffffff816aed10 t nft_update_chain_stats.isra.0 +ffffffff816aed50 T nft_do_chain +ffffffff816af130 T nf_tables_core_module_exit +ffffffff816af160 t nf_tables_newexpr +ffffffff816af1f0 t nf_tables_valid_genid +ffffffff816af200 t nf_tables_check_loops +ffffffff816af3c0 t nf_tables_loop_check_setelem +ffffffff816af400 t nf_tables_init_net +ffffffff816af440 t nf_tables_rule_destroy +ffffffff816af4c0 t nft_obj_destroy +ffffffff816af4f0 t nf_tables_dump_flowtable_done +ffffffff816af510 t nf_tables_dump_obj_done +ffffffff816af530 t nf_tables_dump_sets_done +ffffffff816af540 t nf_tables_dump_rules_done +ffffffff816af570 t nf_tables_set_lookup +ffffffff816af5d0 t nf_tables_chain_lookup +ffffffff816af640 t nf_tables_expr_parse +ffffffff816af770 t nft_trans_alloc_gfp +ffffffff816af7d0 t nft_flush_set +ffffffff816af8c0 t nft_trans_rule_add +ffffffff816af930 t nft_delrule +ffffffff816af9d0 t nft_delrule_by_chain +ffffffff816afa10 t nf_tables_fill_set +ffffffff816afdc0 t nf_tables_set_notify +ffffffff816afe80 t nft_set_destroy +ffffffff816afeb0 t nft_table_disable +ffffffff816aff40 t nf_tables_flowtable_destroy +ffffffff816aff90 t nf_tables_dump_set +ffffffff816b0210 t nf_tables_dump_sets +ffffffff816b0400 t nft_stats_alloc +ffffffff816b0500 t nf_tables_table_destroy.isra.8 +ffffffff816b0530 t nf_tables_fill_table_info.isra.12 +ffffffff816b0690 t nf_tables_table_notify +ffffffff816b0750 t nf_tables_dump_tables +ffffffff816b08d0 t nf_tables_fill_flowtable_info.isra.13 +ffffffff816b0b70 t nf_tables_flowtable_notify +ffffffff816b0c30 t nf_tables_dump_flowtable +ffffffff816b0e30 t nf_tables_unregister_hook.part.16 +ffffffff816b0e50 t nf_tables_flowtable_event +ffffffff816b0f40 t nf_tables_chain_destroy +ffffffff816b0fa0 t nf_tables_exit_net +ffffffff816b1240 t nf_tables_fill_chain_info.isra.20 +ffffffff816b15f0 t nf_tables_chain_notify +ffffffff816b16b0 t nf_tables_dump_chains +ffffffff816b1850 t nf_tables_fill_gen_info.isra.21 +ffffffff816b1980 t nf_tables_getgen +ffffffff816b1a30 t nf_tables_table_lookup.part.23 +ffffffff816b1aa0 t nft_ctx_init_from_elemattr +ffffffff816b1b30 t nf_tables_getset +ffffffff816b1d60 t nf_tables_getchain +ffffffff816b1ef0 t nf_tables_gettable +ffffffff816b2030 t nf_tables_newrule +ffffffff816b2690 t nf_tables_flowtable_parse_hook +ffffffff816b2900 t nf_tables_newset +ffffffff816b3390 t nf_tables_rule_lookup.part.26 +ffffffff816b33f0 t nf_tables_delrule +ffffffff816b3620 t nf_tables_fill_obj_info +ffffffff816b3830 t nf_tables_dump_obj +ffffffff816b3a60 t nft_chain_parse_hook.constprop.38 +ffffffff816b3c10 t nf_tables_newchain +ffffffff816b4290 t nf_tables_newtable +ffffffff816b46d0 t nf_tables_dump_set_done +ffffffff816b46e0 t nft_delset +ffffffff816b4770 t nft_delchain +ffffffff816b47f0 t nf_tables_delchain +ffffffff816b49c0 t nft_delobj +ffffffff816b4a40 t nft_delflowtable +ffffffff816b4ac0 t nft_flush_table +ffffffff816b4d20 t nf_tables_deltable +ffffffff816b4f30 t nf_tables_delset +ffffffff816b50c0 T nft_register_chain_type +ffffffff816b5120 T nft_unregister_chain_type +ffffffff816b5160 T nft_register_expr +ffffffff816b51d0 T nft_unregister_expr +ffffffff816b5210 T nft_expr_dump +ffffffff816b5310 t nf_tables_fill_rule_info.isra.28 +ffffffff816b5580 t nf_tables_rule_notify +ffffffff816b5650 t nf_tables_getrule +ffffffff816b58b0 t nf_tables_dump_rules +ffffffff816b5af0 T nft_expr_init +ffffffff816b5b80 T nft_expr_destroy +ffffffff816b5ba0 T nft_register_set +ffffffff816b5be0 T nft_unregister_set +ffffffff816b5c20 T nft_set_lookup +ffffffff816b5cb0 T nf_tables_bind_set +ffffffff816b5d90 T nf_tables_unbind_set +ffffffff816b5e10 T nft_set_elem_init +ffffffff816b5fc0 T nft_set_gc_batch_alloc +ffffffff816b6000 T nft_register_obj +ffffffff816b6050 T nft_unregister_obj +ffffffff816b6090 T nf_tables_obj_lookup +ffffffff816b6110 t nf_tables_getobj +ffffffff816b6380 t nf_tables_newobj +ffffffff816b66f0 T nf_tables_obj_lookup_byhandle +ffffffff816b6780 t nf_tables_delobj +ffffffff816b68c0 T nft_obj_notify +ffffffff816b69c0 T nft_register_flowtable_type +ffffffff816b6a00 T nft_unregister_flowtable_type +ffffffff816b6a40 T nf_tables_flowtable_lookup +ffffffff816b6a90 t nf_tables_getflowtable +ffffffff816b6c70 t nf_tables_newflowtable +ffffffff816b70b0 T nf_tables_flowtable_lookup_byhandle +ffffffff816b7130 t nf_tables_delflowtable +ffffffff816b7250 T nft_flow_table_iterate +ffffffff816b72c0 T nft_chain_validate_dependency +ffffffff816b72e0 T nft_chain_validate_hooks +ffffffff816b7300 T nft_parse_u32_check +ffffffff816b7320 T nft_parse_register +ffffffff816b7340 T nft_dump_register +ffffffff816b7370 T nft_validate_register_load +ffffffff816b7390 T nft_validate_register_store +ffffffff816b7430 t nf_tables_bind_check_setelem +ffffffff816b7470 T nft_verdict_dump +ffffffff816b7530 T nft_data_init +ffffffff816b76b0 T nft_data_release +ffffffff816b76e0 T nft_set_elem_destroy +ffffffff816b7750 T nft_set_gc_batch_release +ffffffff816b7790 t nf_tables_abort +ffffffff816b7c40 t nft_del_setelem +ffffffff816b7f40 t nf_tables_delsetelem +ffffffff816b8080 t nft_add_set_elem +ffffffff816b8a20 t nf_tables_newsetelem +ffffffff816b8ba0 T nft_data_dump +ffffffff816b8c40 t nf_tables_fill_setelem.isra.32 +ffffffff816b8ea0 t nf_tables_fill_setelem_info +ffffffff816b9000 t nft_get_set_elem +ffffffff816b9190 t nf_tables_getsetelem +ffffffff816b9330 t nf_tables_setelem_notify.constprop.36 +ffffffff816b9410 t nf_tables_commit +ffffffff816b9bf0 t nf_tables_dump_setelem +ffffffff816b9c00 T __nft_release_basechain +ffffffff816b9ce0 T nft_trace_notify +ffffffff816ba2f0 T nft_trace_init +ffffffff816ba308 t trace_fill_header.part.1 +ffffffff816ba350 t nft_immediate_validate +ffffffff816ba360 t nft_immediate_dump +ffffffff816ba3b0 t nft_immediate_destroy +ffffffff816ba3d0 t nft_immediate_init +ffffffff816ba480 t nft_immediate_eval +ffffffff816ba500 t nft_cmp_fast_dump +ffffffff816ba5a0 t nft_cmp_dump +ffffffff816ba610 t nft_cmp_select_ops +ffffffff816ba6c0 t nft_cmp_eval +ffffffff816ba720 t nft_cmp_fast_init +ffffffff816ba7b0 t nft_cmp_init +ffffffff816ba820 t nft_range_dump +ffffffff816ba8b0 t nft_range_init +ffffffff816ba9d0 t nft_range_eval +ffffffff816baa50 t nft_bitwise_eval +ffffffff816baaa0 t nft_bitwise_dump +ffffffff816bab50 t nft_bitwise_init +ffffffff816bac90 t nft_byteorder_dump +ffffffff816bad50 t nft_byteorder_init +ffffffff816bae50 t nft_byteorder_eval +ffffffff816baff0 t nft_payload_select_ops +ffffffff816bb0a0 t nft_payload_dump +ffffffff816bb150 t nft_payload_set_dump +ffffffff816bb280 t nft_payload_init +ffffffff816bb2d0 t nft_payload_eval +ffffffff816bb5a0 t nft_payload_set_init +ffffffff816bb640 t nft_payload_set_eval +ffffffff816bb9f0 t nft_lookup_dump +ffffffff816bbaa0 t nft_lookup_destroy +ffffffff816bbab0 t nft_lookup_init +ffffffff816bbc00 t nft_lookup_eval +ffffffff816bbcf0 t nft_dynset_eval +ffffffff816bbdd0 t nft_dynset_dump +ffffffff816bbf10 t nft_dynset_destroy +ffffffff816bbf40 t nft_dynset_init +ffffffff816bc310 t nft_dynset_new +ffffffff816bc400 t nft_do_chain_inet +ffffffff816bc4d0 T nft_meta_set_eval +ffffffff816bc560 t nft_meta_get_validate +ffffffff816bc570 t nft_meta_select_ops +ffffffff816bc5b0 T nft_meta_get_eval +ffffffff816bc9d0 T nft_meta_get_init +ffffffff816bcaa0 T nft_meta_get_dump +ffffffff816bcb00 T nft_meta_set_dump +ffffffff816bcb60 T nft_meta_set_destroy +ffffffff816bcb80 T nft_meta_set_validate +ffffffff816bcbc0 T nft_meta_set_init +ffffffff816bcc40 t nft_rt_get_dump +ffffffff816bcca0 t nft_rt_get_init +ffffffff816bcd20 t nft_rt_validate +ffffffff816bcd50 t nft_rt_get_eval +ffffffff816bcf80 t nft_ct_get_eval_counter +ffffffff816bcfc0 t nft_ct_set_eval +ffffffff816bcfe0 t nft_ct_select_ops +ffffffff816bd020 t nft_notrack_eval +ffffffff816bd050 t nft_ct_set_init +ffffffff816bd070 t nft_ct_get_dump +ffffffff816bd130 t nft_ct_get_destroy +ffffffff816bd140 t nft_ct_set_destroy +ffffffff816bd150 t nft_ct_get_init +ffffffff816bd2b0 t nft_ct_get_eval +ffffffff816bd660 t nft_ct_helper_obj_dump +ffffffff816bd720 t nft_ct_helper_obj_destroy +ffffffff816bd750 t nft_ct_helper_obj_init +ffffffff816bd8b0 t nft_ct_helper_obj_eval +ffffffff816bd940 t nft_ct_set_dump +ffffffff816bd9d0 t nft_limit_obj_select_ops +ffffffff816bda00 t nft_limit_select_ops +ffffffff816bda30 t nft_limit_dump +ffffffff816bdb50 t nft_limit_obj_bytes_dump +ffffffff816bdb60 t nft_limit_obj_pkts_dump +ffffffff816bdb70 t nft_limit_bytes_dump +ffffffff816bdb80 t nft_limit_pkts_dump +ffffffff816bdb90 t nft_limit_pkts_eval +ffffffff816bdc10 t nft_limit_bytes_eval +ffffffff816bdca0 t nft_limit_obj_pkts_eval +ffffffff816bdd20 t nft_limit_obj_bytes_eval +ffffffff816bddb0 t nft_limit_init +ffffffff816bde90 t nft_limit_obj_bytes_init +ffffffff816bdea0 t nft_limit_bytes_init +ffffffff816bdeb0 t nft_limit_obj_pkts_init +ffffffff816bdee0 t nft_limit_pkts_init +ffffffff816bdf10 T nft_reject_validate +ffffffff816bdf20 T nft_reject_init +ffffffff816bdf60 T nft_reject_dump +ffffffff816bdfd0 T nft_reject_icmp_code +ffffffff816bdff0 T nft_reject_icmpv6_code +ffffffff816be010 t nft_reject_inet_init +ffffffff816be060 t nft_reject_inet_eval +ffffffff816be130 t nft_reject_inet_dump +ffffffff816be1b0 t nft_rbtree_activate +ffffffff816be1d0 t nft_rbtree_flush +ffffffff816be1f0 t nft_rbtree_privsize +ffffffff816be200 t nft_rbtree_init +ffffffff816be230 t nft_rbtree_estimate +ffffffff816be260 t nft_rbtree_remove +ffffffff816be2b0 t nft_rbtree_destroy +ffffffff816be300 t nft_rbtree_deactivate +ffffffff816be3f0 t __nft_rbtree_lookup +ffffffff816be590 t nft_rbtree_walk +ffffffff816be630 t nft_rbtree_insert +ffffffff816be780 t nft_rbtree_lookup +ffffffff816be850 t __nft_rbtree_get.constprop.2 +ffffffff816be970 t nft_rbtree_get +ffffffff816bea50 t nft_counter_obj_eval +ffffffff816beaa0 t nft_counter_fetch +ffffffff816beb20 t nft_counter_do_dump +ffffffff816bebf0 t nft_counter_obj_dump +ffffffff816bec00 t nft_counter_dump +ffffffff816bec10 t nft_counter_eval +ffffffff816bec60 t nft_counter_obj_destroy +ffffffff816bec70 t nft_counter_destroy +ffffffff816bec80 t nft_counter_do_init +ffffffff816bed30 t nft_counter_obj_init +ffffffff816bed40 t nft_counter_init +ffffffff816bed50 t nft_counter_clone +ffffffff816bedd0 t nft_log_dump +ffffffff816bef10 t nft_log_destroy +ffffffff816bef40 t nft_log_init +ffffffff816bf0c0 t nft_log_eval +ffffffff816bf100 t nft_jhash_eval +ffffffff816bf2a0 t nft_hash_select_ops +ffffffff816bf2d0 t nft_symhash_dump +ffffffff816bf380 t nft_jhash_dump +ffffffff816bf4a0 t nft_symhash_init +ffffffff816bf530 t nft_symhash_eval +ffffffff816bf560 t nft_jhash_init +ffffffff816bf690 t dst_discard +ffffffff816bf6b0 t ipv4_cow_metrics +ffffffff816bf6c0 t rt_cache_seq_start +ffffffff816bf6d0 t rt_cache_seq_next +ffffffff816bf6e0 t rt_cache_seq_stop +ffffffff816bf6f0 t rt_cpu_seq_start +ffffffff816bf760 t rt_cpu_seq_next +ffffffff816bf7c0 t ipv4_dst_check +ffffffff816bf7f0 t ipv4_blackhole_dst_check +ffffffff816bf800 t ipv4_blackhole_mtu +ffffffff816bf820 t ipv4_rt_blackhole_update_pmtu +ffffffff816bf830 t ipv4_rt_blackhole_redirect +ffffffff816bf840 t ipv4_sysctl_rtcache_flush +ffffffff816bf860 t find_exception +ffffffff816bf940 t ipv4_link_failure +ffffffff816bf990 t fnhe_flush_routes +ffffffff816bf9e0 t rt_cache_route +ffffffff816bfa70 t ipv4_confirm_neigh +ffffffff816bfb20 t ipv4_neigh_lookup +ffffffff816bfc70 t ip_rt_bug +ffffffff816bfc80 t ip_error +ffffffff816bfe10 t ipv4_inetpeer_exit +ffffffff816bfe40 t ipv4_inetpeer_init +ffffffff816bfe80 t rt_genid_init +ffffffff816bfeb0 t sysctl_route_net_init +ffffffff816bff60 t ip_rt_do_proc_exit +ffffffff816bff90 t rt_cpu_seq_open +ffffffff816bffa0 t rt_cache_seq_open +ffffffff816bffb0 t rt_cpu_seq_show +ffffffff816c0070 t ipv4_negative_advice +ffffffff816c00a0 t ipv4_mtu +ffffffff816c0110 t ipv4_default_advmss +ffffffff816c0140 t ip_del_fnhe.isra.6 +ffffffff816c0270 t sysctl_route_net_exit +ffffffff816c02a0 t ip_rt_do_proc_init +ffffffff816c0320 t rt_cache_seq_show +ffffffff816c0340 t ipv4_dst_destroy +ffffffff816c03d0 t __build_flow_key.constprop.14 +ffffffff816c04b0 t ipv4_rt_blackhole_cow_metrics +ffffffff816c04c0 t rt_cpu_seq_stop +ffffffff816c04d0 t update_or_create_fnhe +ffffffff816c0840 t __ip_rt_update_pmtu +ffffffff816c0950 t ip_rt_update_pmtu +ffffffff816c0a90 t __ip_do_redirect +ffffffff816c0df0 t ip_do_redirect +ffffffff816c0e60 T rt_cache_flush +ffffffff816c0e70 T ip_idents_reserve +ffffffff816c0ef0 T __ip_select_ident +ffffffff816c0fc0 T ip_rt_send_redirect +ffffffff816c11a0 T ip_rt_get_source +ffffffff816c12e0 T rt_add_uncached_list +ffffffff816c1340 t rt_set_nexthop.constprop.15 +ffffffff816c1580 T rt_del_uncached_list +ffffffff816c15f0 T rt_flush_dev +ffffffff816c16a0 T rt_dst_alloc +ffffffff816c1760 T ip_mc_validate_source +ffffffff816c1810 T ip_route_input_rcu +ffffffff816c20f0 T ip_route_input_noref +ffffffff816c2140 T ip_route_output_key_hash_rcu +ffffffff816c2850 T ip_route_output_key_hash +ffffffff816c28d0 t __ipv4_sk_update_pmtu.isra.5 +ffffffff816c2950 T ipv4_update_pmtu +ffffffff816c2a50 T ipv4_redirect +ffffffff816c2b30 T ipv4_sk_redirect +ffffffff816c2ba0 T ipv4_sk_update_pmtu +ffffffff816c2dc0 t inet_rtm_getroute +ffffffff816c35f0 T ipv4_blackhole_route +ffffffff816c3700 T ip_route_output_flow +ffffffff816c3710 T ip_rt_multicast_event +ffffffff816c3730 t lookup +ffffffff816c3810 t inetpeer_free_rcu +ffffffff816c3820 T inet_peer_base_init +ffffffff816c3840 T inet_getpeer +ffffffff816c3ac0 T inet_putpeer +ffffffff816c3af0 T inet_peer_xrlim_allow +ffffffff816c3b40 T inetpeer_invalidate_tree +ffffffff816c3b90 T inet_add_protocol +ffffffff816c3bd0 T inet_add_offload +ffffffff816c3bf0 T inet_del_protocol +ffffffff816c3c20 T inet_del_offload +ffffffff816c3c50 t ip_local_deliver_finish +ffffffff816c3d60 t ip_rcv_finish +ffffffff816c40b0 T ip_call_ra_chain +ffffffff816c41e0 T ip_local_deliver +ffffffff816c42c0 T ip_rcv +ffffffff816c4630 t ip4_frag_match +ffffffff816c4680 t ipqhashfn +ffffffff816c4740 t ip4_hashfn +ffffffff816c4760 t ipq_put +ffffffff816c4780 t ip_expire +ffffffff816c48c0 t ip4_frag_free +ffffffff816c48e0 t ip4_frag_init +ffffffff816c49b0 t ipv4_frags_exit_net +ffffffff816c49f0 t ipv4_frags_init_net +ffffffff816c4ae0 T ip_frag_mem +ffffffff816c4af0 T ip_defrag +ffffffff816c55f0 T ip_check_defrag +ffffffff816c57d0 t ip_forward_finish +ffffffff816c5830 T ip_forward +ffffffff816c5be0 t ip_options_get_alloc +ffffffff816c5c00 T ip_options_build +ffffffff816c5e90 T __ip_options_echo +ffffffff816c63a0 T ip_options_fragment +ffffffff816c6470 T ip_options_compile +ffffffff816c6ab0 t ip_options_get_finish +ffffffff816c6b10 T ip_options_undo +ffffffff816c6bd0 T ip_options_get_from_user +ffffffff816c6c40 T ip_options_get +ffffffff816c6ca0 T ip_forward_options +ffffffff816c6e40 T ip_options_rcv_srr +ffffffff816c7090 t dst_output +ffffffff816c70b0 t ip_finish_output2 +ffffffff816c7400 t ip_mc_finish_output +ffffffff816c7490 t ip_copy_metadata +ffffffff816c75c0 t ip_setup_cork +ffffffff816c76f0 t ip_reply_glue_bits +ffffffff816c7730 t __ip_append_data.isra.0 +ffffffff816c7f80 t ip_append_data.part.3 +ffffffff816c8040 t __ip_flush_pending_frames.isra.1 +ffffffff816c80b0 T ip_send_check +ffffffff816c80f0 T __ip_local_out +ffffffff816c81e0 T ip_local_out +ffffffff816c8220 T ip_build_and_send_pkt +ffffffff816c83e0 T ip_queue_xmit +ffffffff816c87a0 T ip_do_fragment +ffffffff816c8fa0 t ip_fragment.constprop.4 +ffffffff816c9010 t ip_finish_output +ffffffff816c9250 T ip_mc_output +ffffffff816c94e0 T ip_output +ffffffff816c95c0 T ip_generic_getfrag +ffffffff816c9660 T ip_append_data +ffffffff816c9670 T ip_append_page +ffffffff816c9a50 T __ip_make_skb +ffffffff816c9e50 T ip_send_skb +ffffffff816c9e90 T ip_push_pending_frames +ffffffff816c9ec0 T ip_flush_pending_frames +ffffffff816c9ee0 T ip_make_skb +ffffffff816ca000 T ip_send_unicast_reply +ffffffff816ca270 t ip_ra_destroy_rcu +ffffffff816ca2a0 t do_ip_getsockopt.constprop.4 +ffffffff816ca8f0 T ip_cmsg_recv_offset +ffffffff816cabf0 T ip_cmsg_send +ffffffff816cae10 T ip_ra_control +ffffffff816caf50 t do_ip_setsockopt.isra.3 +ffffffff816cbf50 T ip_icmp_error +ffffffff816cc030 T ip_local_error +ffffffff816cc140 T ip_recv_error +ffffffff816cc3c0 T ipv4_pktinfo_prepare +ffffffff816cc470 T ip_setsockopt +ffffffff816cc4e0 T ip_getsockopt +ffffffff816cc550 t inet_ehashfn +ffffffff816cc620 t inet_lhash2_lookup +ffffffff816cc740 t __inet_check_established +ffffffff816cc980 t inet_lhash2_bucket_sk.isra.0 +ffffffff816ccb70 T inet_bind_bucket_create +ffffffff816ccbd0 T inet_bind_bucket_destroy +ffffffff816ccc00 T inet_bind_hash +ffffffff816ccc30 T inet_put_port +ffffffff816cccf0 T __inet_inherit_port +ffffffff816cce00 T __inet_lookup_listener +ffffffff816cd0e0 T sock_gen_put +ffffffff816cd170 T sock_edemux +ffffffff816cd180 T __inet_lookup_established +ffffffff816cd310 T inet_ehash_insert +ffffffff816cd410 T inet_ehash_nolisten +ffffffff816cd480 T __inet_hash +ffffffff816cd720 T inet_hash +ffffffff816cd760 T inet_unhash +ffffffff816cd8e0 T __inet_hash_connect +ffffffff816cdc80 T inet_hash_connect +ffffffff816cdcc0 T inet_hashinfo_init +ffffffff816cdd00 T inet_ehash_locks_alloc +ffffffff816cdda0 T inet_twsk_bind_unhash +ffffffff816cde00 T inet_twsk_free +ffffffff816cde40 T inet_twsk_put +ffffffff816cde60 t inet_twsk_kill +ffffffff816cdf20 t tw_timer_handler +ffffffff816cdf50 T inet_twsk_hashdance +ffffffff816ce060 T inet_twsk_alloc +ffffffff816ce190 T inet_twsk_deschedule_put +ffffffff816ce1c0 T __inet_twsk_schedule +ffffffff816ce220 T inet_twsk_purge +ffffffff816ce390 t ipv6_rcv_saddr_equal +ffffffff816ce4c0 t inet_csk_rebuild_route +ffffffff816ce620 T inet_rcv_saddr_equal +ffffffff816ce6a0 t inet_csk_bind_conflict +ffffffff816ce7e0 T inet_get_local_port_range +ffffffff816ce810 T inet_csk_get_port +ffffffff816ced80 T inet_csk_accept +ffffffff816cf0a0 T inet_csk_init_xmit_timers +ffffffff816cf100 T inet_csk_clear_xmit_timers +ffffffff816cf150 T inet_csk_delete_keepalive_timer +ffffffff816cf160 T inet_csk_reset_keepalive_timer +ffffffff816cf180 T inet_csk_route_req +ffffffff816cf290 T inet_csk_route_child_sock +ffffffff816cf3e0 T inet_rtx_syn_ack +ffffffff816cf410 T inet_csk_reqsk_queue_drop +ffffffff816cf5e0 T inet_csk_reqsk_queue_drop_and_put +ffffffff816cf660 t reqsk_timer_handler +ffffffff816cf810 T inet_csk_reqsk_queue_hash_add +ffffffff816cf8a0 T inet_csk_clone_lock +ffffffff816cf970 T inet_csk_destroy_sock +ffffffff816cf9d0 t inet_child_forget +ffffffff816cfa90 T inet_csk_prepare_forced_close +ffffffff816cfae0 T inet_csk_listen_start +ffffffff816cfbc0 T inet_csk_reqsk_queue_add +ffffffff816cfc50 T inet_csk_complete_hashdance +ffffffff816cfcd0 T inet_csk_listen_stop +ffffffff816cfef0 T inet_csk_addr2sockaddr +ffffffff816cff10 T inet_csk_update_pmtu +ffffffff816cff80 t tcp_get_info_chrono_stats +ffffffff816d0000 t tcp_splice_data_recv +ffffffff816d0040 t tcp_push +ffffffff816d0150 t skb_entail +ffffffff816d0260 t tcp_send_mss +ffffffff816d0330 t tcp_tx_timestamp +ffffffff816d03c0 t tcp_recv_skb +ffffffff816d04a0 t tcp_cleanup_rbuf +ffffffff816d0550 T tcp_enter_memory_pressure +ffffffff816d05a0 T tcp_leave_memory_pressure +ffffffff816d05f0 T tcp_init_sock +ffffffff816d0730 T tcp_init_transfer +ffffffff816d0800 T tcp_poll +ffffffff816d0a20 T tcp_ioctl +ffffffff816d0b80 T sk_stream_alloc_skb +ffffffff816d0d00 T do_tcp_sendpages +ffffffff816d1270 T tcp_sendpage_locked +ffffffff816d12f0 T tcp_sendpage +ffffffff816d1340 T tcp_free_fastopen_req +ffffffff816d1370 T tcp_read_sock +ffffffff816d1510 T tcp_splice_read +ffffffff816d17c0 T tcp_peek_len +ffffffff816d1820 T tcp_recvmsg +ffffffff816d22d0 T tcp_set_state +ffffffff816d2470 T tcp_sendmsg_locked +ffffffff816d3220 T tcp_sendmsg +ffffffff816d3260 T tcp_shutdown +ffffffff816d32b0 T tcp_check_oom +ffffffff816d33d0 T tcp_close +ffffffff816d37d0 T tcp_write_queue_purge +ffffffff816d39a0 T tcp_disconnect +ffffffff816d3d30 T tcp_setsockopt +ffffffff816d4670 T tcp_get_info +ffffffff816d49d0 t do_tcp_getsockopt.isra.5 +ffffffff816d5070 T tcp_get_timestamping_opt_stats +ffffffff816d5290 T tcp_getsockopt +ffffffff816d52c0 T tcp_done +ffffffff816d5350 T tcp_abort +ffffffff816d5480 t __tcp_ecn_check_ce +ffffffff816d55a0 t tcp_add_reno_sack +ffffffff816d5620 t tcp_sndbuf_expand +ffffffff816d56d0 t tcp_update_pacing_rate +ffffffff816d5750 t tcp_undo_cwnd_reduction +ffffffff816d5800 t tcp_drop +ffffffff816d5830 t __tcp_ack_snd_check +ffffffff816d58e0 t tcp_check_space +ffffffff816d59a0 t tcp_match_skb_to_sack +ffffffff816d5a60 t tcp_mark_head_lost +ffffffff816d5c20 t tcp_grow_window.isra.2 +ffffffff816d5d10 t tcp_check_sack_reordering +ffffffff816d5db0 t tcp_dsack_set.part.9 +ffffffff816d5e00 t tcp_send_dupack +ffffffff816d5ec0 t tcp_dsack_extend +ffffffff816d5f10 t tcp_any_retrans_done.part.13 +ffffffff816d5f30 t tcp_try_keep_open +ffffffff816d5fb0 t tcp_try_undo_recovery +ffffffff816d60d0 t tcp_process_tlp_ack +ffffffff816d6220 t tcp_ack_update_rtt.isra.15 +ffffffff816d64c0 t tcp_parse_fastopen_option +ffffffff816d6580 t tcp_send_challenge_ack.isra.19 +ffffffff816d6660 t tcp_collapse_one +ffffffff816d66f0 t tcp_prune_ofo_queue.part.21 +ffffffff816d67b0 t tcp_try_coalesce +ffffffff816d6860 t tcp_queue_rcv +ffffffff816d69a0 t tcp_event_data_recv +ffffffff816d6cf0 t tcp_sacktag_one +ffffffff816d6f00 t tcp_shifted_skb +ffffffff816d7170 t tcp_sacktag_walk +ffffffff816d75b0 t tcp_sacktag_write_queue +ffffffff816d7d80 t tcp_try_undo_loss +ffffffff816d7e70 t tcp_xmit_recovery.part.31 +ffffffff816d7eb0 t tcp_urg +ffffffff816d8080 t tcp_rearm_rto.part.35 +ffffffff816d8110 T tcp_init_buffer_space +ffffffff816d82c0 T tcp_initialize_rcv_mss +ffffffff816d8310 T tcp_rcv_space_adjust +ffffffff816d84a0 T tcp_init_cwnd +ffffffff816d84d0 T tcp_skb_mark_lost_uncond_verify +ffffffff816d8530 T tcp_clear_retrans +ffffffff816d8560 T tcp_enter_loss +ffffffff816d8840 T tcp_cwnd_reduction +ffffffff816d88e0 T tcp_enter_cwr +ffffffff816d89b0 T tcp_simple_retransmit +ffffffff816d8b10 T tcp_enter_recovery +ffffffff816d8c40 t tcp_fastretrans_alert +ffffffff816d9560 t tcp_ack +ffffffff816da620 T tcp_synack_rtt_meas +ffffffff816da6a0 T tcp_rearm_rto +ffffffff816da6d0 T tcp_oow_rate_limited +ffffffff816da730 T tcp_parse_options +ffffffff816daa50 T tcp_reset +ffffffff816daab0 t tcp_validate_incoming +ffffffff816dae90 T tcp_fin +ffffffff816daff0 T tcp_rbtree_insert +ffffffff816db040 t tcp_collapse +ffffffff816db380 t tcp_try_rmem_schedule +ffffffff816db6d0 T tcp_send_rcvq +ffffffff816db800 t tcp_data_queue +ffffffff816dc390 T tcp_rcv_established +ffffffff816dc8f0 T tcp_finish_connect +ffffffff816dc9b0 T tcp_rcv_state_process +ffffffff816dd7e0 T inet_reqsk_alloc +ffffffff816dd900 T tcp_conn_request +ffffffff816de230 t tcp_adjust_pcount +ffffffff816de2b0 t tcp_tso_segs +ffffffff816de320 t tcp_init_tso_segs +ffffffff816de370 t tcp_fragment_tstamp +ffffffff816de3e0 t __pskb_trim_head +ffffffff816de520 t tcp_options_write +ffffffff816de770 t tcp_event_new_data_sent +ffffffff816de800 T tcp_wfree +ffffffff816de8e0 t tcp_small_queue_check.isra.3 +ffffffff816de940 T tcp_cwnd_restart +ffffffff816dea20 T tcp_default_init_rwnd +ffffffff816dea50 T tcp_select_initial_window +ffffffff816deb90 T tcp_pace_kick +ffffffff816dec80 T tcp_fragment +ffffffff816defc0 T tcp_trim_head +ffffffff816df0b0 T tcp_mtu_to_mss +ffffffff816df120 T tcp_mss_to_mtu +ffffffff816df170 T tcp_mtup_init +ffffffff816df210 T tcp_sync_mss +ffffffff816df2a0 t tcp_connect_init +ffffffff816df6e0 T tcp_current_mss +ffffffff816df770 T tcp_tso_autosize +ffffffff816df7a0 T tcp_chrono_start +ffffffff816df7f0 T tcp_chrono_stop +ffffffff816df890 T tcp_schedule_loss_probe +ffffffff816df990 T __tcp_select_window +ffffffff816dfac0 t tcp_transmit_skb +ffffffff816e0450 t tcp_write_xmit +ffffffff816e1380 T __tcp_push_pending_frames +ffffffff816e1420 T tcp_push_one +ffffffff816e1460 t tcp_xmit_probe_skb +ffffffff816e1510 t tcp_send_ack.part.16 +ffffffff816e1630 T tcp_skb_collapse_tstamp +ffffffff816e1680 T __tcp_retransmit_skb +ffffffff816e1e00 T tcp_send_loss_probe +ffffffff816e1f90 T tcp_retransmit_skb +ffffffff816e2010 t tcp_xmit_retransmit_queue.part.14 +ffffffff816e2220 t tcp_tsq_handler.part.15 +ffffffff816e22c0 T tcp_release_cb +ffffffff816e2390 t tcp_tasklet_func +ffffffff816e2500 T tcp_xmit_retransmit_queue +ffffffff816e2520 T sk_forced_mem_schedule +ffffffff816e2560 T tcp_send_fin +ffffffff816e2720 T tcp_send_active_reset +ffffffff816e2830 T tcp_send_synack +ffffffff816e2b10 T tcp_make_synack +ffffffff816e2e40 T tcp_connect +ffffffff816e35f0 T tcp_send_delayed_ack +ffffffff816e3710 T tcp_send_ack +ffffffff816e3720 T tcp_send_window_probe +ffffffff816e3780 T tcp_write_wakeup +ffffffff816e38b0 T tcp_send_probe0 +ffffffff816e3990 T tcp_rtx_synack +ffffffff816e3a30 t tcp_write_err +ffffffff816e3a80 t tcp_keepalive_timer +ffffffff816e3d10 t tcp_out_of_resources +ffffffff816e3dd0 t retransmits_timed_out.part.1 +ffffffff816e3e90 T tcp_delack_timer_handler +ffffffff816e3fe0 t tcp_delack_timer +ffffffff816e4070 T tcp_retransmit_timer +ffffffff816e4840 T tcp_write_timer_handler +ffffffff816e4a70 t tcp_write_timer +ffffffff816e4af0 T tcp_syn_ack_timeout +ffffffff816e4b10 T tcp_set_keepalive +ffffffff816e4b50 T tcp_init_xmit_timers +ffffffff816e4ba0 t tcp_stream_memory_free +ffffffff816e4bd0 t tcp_seq_stop +ffffffff816e4c20 T inet_sk_rx_dst_set +ffffffff816e4c70 t tcp_v4_init_seq +ffffffff816e4ca0 t tcp_v4_init_ts_off +ffffffff816e4cc0 T tcp_v4_connect +ffffffff816e5170 t tcp_v4_reqsk_destructor +ffffffff816e5180 t tcp_v4_send_reset +ffffffff816e5410 t tcp_v4_route_req +ffffffff816e5420 t tcp_v4_init_req +ffffffff816e54e0 T tcp_v4_syn_recv_sock +ffffffff816e5790 T tcp_v4_do_rcv +ffffffff816e5910 T tcp_v4_destroy_sock +ffffffff816e59c0 T tcp_seq_open +ffffffff816e5a10 t tcp4_proc_exit_net +ffffffff816e5a30 t tcp4_seq_show +ffffffff816e5e30 t tcp_v4_init_sock +ffffffff816e5e50 t tcp_sk_exit_batch +ffffffff816e5e90 t tcp_sk_exit +ffffffff816e5ef0 T tcp_twsk_unique +ffffffff816e5f80 t tcp_v4_mtu_reduced.part.3 +ffffffff816e6030 T tcp_v4_mtu_reduced +ffffffff816e6050 T tcp_v4_conn_request +ffffffff816e60a0 t tcp_v4_fill_cb.isra.5 +ffffffff816e6150 t listening_get_next.isra.6 +ffffffff816e6230 t established_get_first.isra.7 +ffffffff816e62e0 t established_get_next +ffffffff816e6350 t tcp_get_idx +ffffffff816e63f0 t tcp_seq_next +ffffffff816e6460 t tcp_seq_start +ffffffff816e65b0 t tcp_sk_init +ffffffff816e6890 t tcp_v4_send_ack.constprop.9 +ffffffff816e6a80 t tcp_v4_reqsk_send_ack +ffffffff816e6b50 T tcp_req_err +ffffffff816e6c10 T tcp_v4_err +ffffffff816e71e0 T __tcp_v4_send_check +ffffffff816e72b0 T tcp_v4_send_check +ffffffff816e72d0 t tcp_v4_send_synack +ffffffff816e7370 T tcp_v4_early_demux +ffffffff816e74b0 T tcp_add_backlog +ffffffff816e75b0 T tcp_filter +ffffffff816e75e0 T tcp_v4_rcv +ffffffff816e7ff0 T tcp_proc_register +ffffffff816e8030 t tcp4_proc_init_net +ffffffff816e8040 T tcp_proc_unregister +ffffffff816e8060 T tcp4_proc_exit +ffffffff816e8070 T tcp_timewait_state_process +ffffffff816e83b0 T tcp_time_wait +ffffffff816e85c0 T tcp_twsk_destructor +ffffffff816e85d0 T tcp_openreq_init_rwin +ffffffff816e87b0 T tcp_ca_openreq_child +ffffffff816e8860 T tcp_create_openreq_child +ffffffff816e8c40 T tcp_check_req +ffffffff816e9140 T tcp_child_process +ffffffff816e9290 T tcp_reno_cong_avoid +ffffffff816e9330 T tcp_reno_ssthresh +ffffffff816e9350 T tcp_reno_undo_cwnd +ffffffff816e9370 T tcp_ca_find_key +ffffffff816e93a0 T tcp_register_congestion_control +ffffffff816e9560 T tcp_unregister_congestion_control +ffffffff816e95a0 T tcp_ca_get_key_by_name +ffffffff816e9610 T tcp_ca_get_name_by_key +ffffffff816e9670 T tcp_assign_congestion_control +ffffffff816e9750 T tcp_init_congestion_control +ffffffff816e9810 t tcp_reinit_congestion_control +ffffffff816e9890 T tcp_cleanup_congestion_control +ffffffff816e98b0 T tcp_set_default_congestion_control +ffffffff816e9930 T tcp_get_available_congestion_control +ffffffff816e99b0 T tcp_get_default_congestion_control +ffffffff816e99e0 T tcp_get_allowed_congestion_control +ffffffff816e9a70 T tcp_set_allowed_congestion_control +ffffffff816e9bb0 T tcp_set_congestion_control +ffffffff816e9cd0 T tcp_slow_start +ffffffff816e9d00 T tcp_cong_avoid_ai +ffffffff816e9d60 t tcpm_suck_dst +ffffffff816e9e30 t __tcp_get_metrics +ffffffff816e9ec0 t tcpm_check_stamp +ffffffff816e9ef0 t tcp_get_metrics +ffffffff816ea1b0 t tcp_metrics_flush_all +ffffffff816ea260 t tcp_net_metrics_exit_batch +ffffffff816ea270 t tcp_metrics_fill_info +ffffffff816ea600 t __parse_nl_addr.isra.1 +ffffffff816ea6d0 t tcp_metrics_nl_cmd_del +ffffffff816ea870 t tcp_metrics_nl_cmd_get +ffffffff816eaa70 t tcp_net_metrics_init +ffffffff816eab00 t tcp_metrics_nl_dump +ffffffff816eac70 T tcp_update_metrics +ffffffff816eae40 T tcp_init_metrics +ffffffff816eafe0 T tcp_peer_is_proven +ffffffff816eb160 T tcp_fastopen_cache_get +ffffffff816eb1f0 T tcp_fastopen_cache_set +ffffffff816eb310 t __tcp_fastopen_cookie_gen +ffffffff816eb370 t tcp_fastopen_ctx_free +ffffffff816eb390 t tcp_fastopen_add_skb.part.1 +ffffffff816eb530 T tcp_fastopen_destroy_cipher +ffffffff816eb550 T tcp_fastopen_ctx_destroy +ffffffff816eb5a0 T tcp_fastopen_reset_cipher +ffffffff816eb6c0 T tcp_fastopen_init_key_once +ffffffff816eb710 T tcp_fastopen_add_skb +ffffffff816eb730 T tcp_try_fastopen +ffffffff816ebc00 T tcp_fastopen_cookie_check +ffffffff816ebca0 T tcp_fastopen_defer_connect +ffffffff816ebd80 T tcp_fastopen_active_disable +ffffffff816ebdb0 T tcp_fastopen_active_should_disable +ffffffff816ebe00 T tcp_fastopen_active_disable_ofo_check +ffffffff816ebf20 T tcp_fastopen_active_detect_blackhole +ffffffff816ebf80 T tcp_rate_skb_sent +ffffffff816ebfe0 T tcp_rate_skb_delivered +ffffffff816ec050 T tcp_rate_gen +ffffffff816ec150 T tcp_rate_check_app_limited +ffffffff816ec1c0 t tcp_rack_detect_loss +ffffffff816ec360 T tcp_rack_mark_lost +ffffffff816ec3e0 T tcp_rack_advance +ffffffff816ec440 T tcp_rack_reo_timeout +ffffffff816ec4e0 T tcp_rack_update_reo_wnd +ffffffff816ec560 T tcp_register_ulp +ffffffff816ec5f0 T tcp_unregister_ulp +ffffffff816ec630 T tcp_get_available_ulp +ffffffff816ec6b0 T tcp_cleanup_ulp +ffffffff816ec6d0 T tcp_set_ulp +ffffffff816ec760 T tcp_set_ulp_id +ffffffff816ec7e0 T tcp_gso_segment +ffffffff816ecc90 t tcp4_gso_segment +ffffffff816ecd40 T tcp_gro_receive +ffffffff816ed010 t tcp4_gro_receive +ffffffff816ed1c0 T tcp_gro_complete +ffffffff816ed220 t tcp4_gro_complete +ffffffff816ed2a0 T __ip4_datagram_connect +ffffffff816ed550 T ip4_datagram_connect +ffffffff816ed590 T ip4_datagram_release_cb +ffffffff816ed720 t dst_output +ffffffff816ed740 T raw_seq_stop +ffffffff816ed750 T raw_hash_sk +ffffffff816ed7d0 T raw_unhash_sk +ffffffff816ed840 t raw_rcv_skb +ffffffff816ed880 T raw_abort +ffffffff816ed8c0 t raw_bind +ffffffff816ed950 t raw_recvmsg +ffffffff816edaf0 t raw_destroy +ffffffff816edb10 t raw_getfrag +ffffffff816edbf0 t raw_close +ffffffff816edc20 t raw_v4_seq_open +ffffffff816edc50 t raw_exit_net +ffffffff816edc70 t raw_init_net +ffffffff816edca0 t raw_seq_show +ffffffff816edd90 t raw_get_next.isra.1 +ffffffff816ede10 t raw_ioctl +ffffffff816edeb0 t raw_init +ffffffff816eded0 t raw_getsockopt +ffffffff816edf60 t raw_setsockopt +ffffffff816edfb0 t raw_get_first.isra.8 +ffffffff816ee010 T raw_seq_start +ffffffff816ee070 T raw_seq_next +ffffffff816ee0a0 t raw_sendmsg +ffffffff816eead0 T __raw_v4_lookup +ffffffff816eeb30 T raw_icmp_error +ffffffff816eedc0 T raw_rcv +ffffffff816eee20 T raw_local_deliver +ffffffff816ef050 T raw_seq_open +ffffffff816ef080 t xfrm4_udp_encap_rcv +ffffffff816ef090 t udp_lib_hash +ffffffff816ef0a0 t udp_lib_close +ffffffff816ef0b0 t udplite_getfrag +ffffffff816ef0d0 t compute_score +ffffffff816ef170 t udp_set_dev_scratch +ffffffff816ef1e0 T udp_init_sock +ffffffff816ef210 t udp_seq_stop +ffffffff816ef240 t udp_lib_lport_inuse2 +ffffffff816ef330 t udp_lib_lport_inuse +ffffffff816ef430 t udp_ehashfn +ffffffff816ef500 t udp_rmem_release +ffffffff816ef610 T udp_skb_destructor +ffffffff816ef630 t udp_skb_dtor_locked +ffffffff816ef650 T udp_destruct_sock +ffffffff816ef730 t __first_packet_length +ffffffff816ef890 t first_packet_length +ffffffff816ef9a0 T udp_seq_open +ffffffff816ef9f0 t udp4_proc_exit_net +ffffffff816efa10 T udp4_seq_show +ffffffff816efb30 T udp_ioctl +ffffffff816efb80 T udp_lib_unhash +ffffffff816efcc0 t udp_get_first.isra.5 +ffffffff816efd60 t udp_get_next +ffffffff816efde0 t udp_get_idx +ffffffff816efe20 t udp_seq_next +ffffffff816efe50 t udp_seq_start +ffffffff816efe80 t udp4_lib_lookup2.constprop.12 +ffffffff816eff60 T udp_destroy_sock +ffffffff816efff0 T udp_lib_get_port +ffffffff816f0490 T udp_v4_get_port +ffffffff816f0550 T __udp4_lib_lookup +ffffffff816f07d0 T udp4_lib_lookup_skb +ffffffff816f0830 T __udp4_lib_err +ffffffff816f0a00 T udp_err +ffffffff816f0a10 T udp_flush_pending_frames +ffffffff816f0a40 T udp4_hwcsum +ffffffff816f0b30 t udp_send_skb +ffffffff816f0d70 T udp_push_pending_frames +ffffffff816f0dc0 T udp_sendmsg +ffffffff816f1660 T udp_sendpage +ffffffff816f17b0 T udp_set_csum +ffffffff816f18d0 T __udp_enqueue_schedule_skb +ffffffff816f1a80 t udp_queue_rcv_skb +ffffffff816f1dc0 T skb_consume_udp +ffffffff816f1e80 T __skb_recv_udp +ffffffff816f20e0 T udp_recvmsg +ffffffff816f2520 T __udp_disconnect +ffffffff816f2600 T udp_disconnect +ffffffff816f2630 T udp_abort +ffffffff816f2670 T udp_lib_rehash +ffffffff816f27b0 t udp_v4_rehash +ffffffff816f2810 T udp_encap_enable +ffffffff816f2820 T udp_sk_rx_dst_set +ffffffff816f2870 T __udp4_lib_rcv +ffffffff816f31a0 T udp_v4_early_demux +ffffffff816f3580 T udp_rcv +ffffffff816f35a0 T udp_lib_setsockopt +ffffffff816f3760 T udp_setsockopt +ffffffff816f3780 T udp_lib_getsockopt +ffffffff816f3870 T udp_getsockopt +ffffffff816f3890 T udp_poll +ffffffff816f38f0 T udp_proc_register +ffffffff816f3930 t udp4_proc_init_net +ffffffff816f3940 T udp_proc_unregister +ffffffff816f3960 T udp4_proc_exit +ffffffff816f3970 T udp_flow_hashrnd +ffffffff816f39c0 t udp_lib_hash +ffffffff816f39d0 t udp_lib_close +ffffffff816f39e0 t udplite_sk_init +ffffffff816f3a00 t udplite_err +ffffffff816f3a10 t udplite_rcv +ffffffff816f3a30 t udplite4_proc_exit_net +ffffffff816f3a40 t udplite4_proc_init_net +ffffffff816f3a50 T skb_udp_tunnel_segment +ffffffff816f3fa0 t udp4_ufo_fragment +ffffffff816f40e0 T udp_gro_receive +ffffffff816f4240 t udp4_gro_receive +ffffffff816f44f0 T udp_gro_complete +ffffffff816f4590 t udp4_gro_complete +ffffffff816f4620 t arp_hash +ffffffff816f4630 t arp_key_eq +ffffffff816f4640 t arp_error_report +ffffffff816f4690 t arp_req_delete +ffffffff816f4830 t arp_req_set +ffffffff816f4a60 t arp_netdev_event +ffffffff816f4ab0 t arp_net_exit +ffffffff816f4ad0 t arp_net_init +ffffffff816f4b00 t arp_seq_open +ffffffff816f4b20 t arp_seq_show +ffffffff816f4cf0 t arp_seq_start +ffffffff816f4d10 T arp_mc_map +ffffffff816f4ea0 t arp_constructor +ffffffff816f5190 T arp_create +ffffffff816f5520 T arp_xmit +ffffffff816f5550 t arp_send_dst.part.3 +ffffffff816f55a0 t arp_solicit +ffffffff816f57f0 T arp_send +ffffffff816f5810 t arp_process.constprop.4 +ffffffff816f5fd0 t parp_redo +ffffffff816f5ff0 t arp_rcv +ffffffff816f6120 T arp_ioctl +ffffffff816f6410 T arp_ifdown +ffffffff816f641f t arp_ignore +ffffffff816f64a0 t icmp_discard +ffffffff816f64b0 t icmp_socket_deliver +ffffffff816f6550 t icmp_unreach +ffffffff816f6720 t icmp_push_reply +ffffffff816f6830 t icmp_glue_bits +ffffffff816f68a0 t icmp_sk_exit +ffffffff816f6910 t icmp_redirect +ffffffff816f6980 t icmpv4_xrlim_allow.isra.4 +ffffffff816f6a40 t icmp_sk_init +ffffffff816f6ba0 T icmp_global_allow +ffffffff816f6c40 t icmpv4_global_allow +ffffffff816f6c70 t icmp_reply.constprop.11 +ffffffff816f6e90 t icmp_echo.part.9 +ffffffff816f6ee0 t icmp_echo +ffffffff816f6f10 t icmp_timestamp +ffffffff816f6fc0 T icmp_out_count +ffffffff816f6ff0 T icmp_send +ffffffff816f7480 T icmp_rcv +ffffffff816f76a0 T icmp_err +ffffffff816f771f t icmp_timestamp.part.8 +ffffffff816f7730 t set_ifa_lifetime +ffffffff816f7770 t inet_get_link_af_size +ffffffff816f7790 t inet_netconf_fill_devconf +ffffffff816f79b0 t inet_netconf_dump_devconf +ffffffff816f7ba0 t inet_fill_ifaddr +ffffffff816f7e40 t rtmsg_ifa +ffffffff816f7f10 t __inet_del_ifa +ffffffff816f8240 t inet_dump_ifaddr +ffffffff816f8410 t __inet_insert_ifa +ffffffff816f8650 t check_lifetime +ffffffff816f8890 t inet_validate_link_af +ffffffff816f8960 t inet_set_link_af +ffffffff816f8a20 t inet_netconf_get_devconf +ffffffff816f8b60 t ip_mc_config +ffffffff816f8bd0 t inet_rtm_newaddr +ffffffff816f8f50 t inet_fill_link_af +ffffffff816f8fa0 t ipv4_doint_and_flush +ffffffff816f8ff0 t inet_gifconf +ffffffff816f90f0 t confirm_addr_indev.isra.1 +ffffffff816f9220 t inet_abc_len.part.2 +ffffffff816f9260 T inet_lookup_ifaddr_rcu +ffffffff816f92b0 T __ip_dev_find +ffffffff816f9390 T in_dev_finish_destroy +ffffffff816f93d0 t inet_rcu_free_ifa +ffffffff816f9410 t in_dev_rcu_put +ffffffff816f9430 T inet_addr_onlink +ffffffff816f94a0 T inetdev_by_index +ffffffff816f94e0 t inet_rtm_deladdr +ffffffff816f9620 T inet_ifa_byprefix +ffffffff816f9670 T devinet_ioctl +ffffffff816f9c90 T inet_select_addr +ffffffff816f9d90 T inet_confirm_addr +ffffffff816f9e30 T register_inetaddr_notifier +ffffffff816f9e40 T unregister_inetaddr_notifier +ffffffff816f9e50 T register_inetaddr_validator_notifier +ffffffff816f9e60 T unregister_inetaddr_validator_notifier +ffffffff816f9e70 T inet_netconf_notify_devconf +ffffffff816f9f70 t __devinet_sysctl_unregister.isra.7 +ffffffff816f9fc0 t devinet_sysctl_unregister +ffffffff816f9ff0 t devinet_exit_net +ffffffff816fa050 t __devinet_sysctl_register +ffffffff816fa130 t devinet_sysctl_register +ffffffff816fa1d0 t inetdev_init +ffffffff816fa2f0 t inetdev_event +ffffffff816fa720 t devinet_init_net +ffffffff816fa8e0 t devinet_conf_proc +ffffffff816faad0 t devinet_sysctl_forward +ffffffff816facb0 t inet_exit_net +ffffffff816facc0 T inet_sock_destruct +ffffffff816fae10 T inet_listen +ffffffff816faed0 T inet_shutdown +ffffffff816fafb0 T inet_release +ffffffff816fb010 t inet_autobind +ffffffff816fb070 T inet_dgram_connect +ffffffff816fb0f0 T inet_bind +ffffffff816fb2f0 T inet_recvmsg +ffffffff816fb3d0 T inet_accept +ffffffff816fb4d0 T inet_sendmsg +ffffffff816fb5c0 T inet_gro_complete +ffffffff816fb690 t ipip_gro_complete +ffffffff816fb6b0 T inet_getname +ffffffff816fb720 T inet_sendpage +ffffffff816fb860 T inet_ioctl +ffffffff816fb9d0 T inet_gso_segment +ffffffff816fbd80 T inet_gro_receive +ffffffff816fc030 t ipip_gro_receive +ffffffff816fc050 t inet_init_net +ffffffff816fc100 t ipv4_mib_exit_net +ffffffff816fc160 t ipv4_mib_init_net +ffffffff816fc2f0 t inet_create +ffffffff816fc610 T __inet_stream_connect +ffffffff816fc920 T inet_stream_connect +ffffffff816fc970 T inet_register_protosw +ffffffff816fca20 T inet_unregister_protosw +ffffffff816fca80 T inet_sk_rebuild_header +ffffffff816fcde0 T inet_sk_set_state +ffffffff816fcdf0 T inet_sk_state_store +ffffffff816fce00 T inet_current_timestamp +ffffffff816fce50 T inet_recv_error +ffffffff816fce80 T inet_ctl_sock_create +ffffffff816fcee0 T snmp_get_cpu_field +ffffffff816fcf00 T snmp_fold_field +ffffffff816fcf50 t ip_mc_validate_checksum +ffffffff816fd030 t igmp_mc_seq_next +ffffffff816fd100 t igmp_netdev_event +ffffffff816fd110 t igmp_mc_seq_start +ffffffff816fd200 t igmp_mc_seq_stop +ffffffff816fd220 t igmp_mcf_seq_stop +ffffffff816fd260 t ip_mc_find_dev +ffffffff816fd310 t igmp_net_exit +ffffffff816fd360 t igmp_mcf_seq_open +ffffffff816fd380 t igmp_mc_seq_open +ffffffff816fd3a0 t igmp_mcf_seq_show +ffffffff816fd3f0 t igmp_mc_seq_show +ffffffff816fd4a0 t igmp_mcf_get_next.isra.4 +ffffffff816fd550 t igmp_mcf_seq_start +ffffffff816fd650 t igmp_mcf_seq_next +ffffffff816fd720 t ip_mc_del1_src.isra.6 +ffffffff816fd7c0 t ip_mc_add_src +ffffffff816fd9f0 t ip_mc_del_src +ffffffff816fdb20 t ip_mc_filter_add.isra.7 +ffffffff816fdb50 t ip_mc_filter_del.isra.8 +ffffffff816fdb80 t ip_ma_put +ffffffff816fdbc0 t ip_mc_leave_src +ffffffff816fdc40 t igmp_net_init +ffffffff816fdd00 T ip_mc_inc_group +ffffffff816fde70 T ip_mc_check_igmp +ffffffff816fe180 T ip_mc_dec_group +ffffffff816fe2e0 T ip_mc_unmap +ffffffff816fe320 T ip_mc_remap +ffffffff816fe360 T ip_mc_down +ffffffff816fe3b0 T ip_mc_init_dev +ffffffff816fe3d0 T ip_mc_up +ffffffff816fe420 T ip_mc_destroy_dev +ffffffff816fe460 T ip_mc_join_group +ffffffff816fe550 T ip_mc_leave_group +ffffffff816fe650 T ip_mc_source +ffffffff816fe9d0 T ip_mc_msfilter +ffffffff816febf0 T ip_mc_msfget +ffffffff816fed30 T ip_mc_gsfget +ffffffff816feeb0 T ip_mc_sf_allow +ffffffff816fefc0 T ip_mc_drop_socket +ffffffff816ff060 T ip_check_mc_rcu +ffffffff816ff100 t fib_flush +ffffffff816ff180 t inet_dump_fib +ffffffff816ff2c0 t rtm_to_fib_config +ffffffff816ff4a0 t inet_rtm_delroute +ffffffff816ff520 t inet_rtm_newroute +ffffffff816ff5a0 t fib_disable_ip +ffffffff816ff5e0 t ip_fib_net_exit +ffffffff816ff6e0 t fib_net_exit +ffffffff816ff710 t nl_fib_input +ffffffff816ff880 t fib_magic.isra.3 +ffffffff816ff940 t fib_net_init +ffffffff816ffaa0 T fib_unmerge +ffffffff816ffb20 T inet_addr_type_table +ffffffff816ffbd0 T inet_addr_type +ffffffff816ffc70 T inet_dev_addr_type +ffffffff816ffd20 T inet_addr_type_dev_table +ffffffff816ffdc0 T fib_compute_spec_dst +ffffffff816fff40 T fib_validate_source +ffffffff817001c0 T ip_rt_ioctl +ffffffff817005c0 T fib_add_ifaddr +ffffffff81700740 t fib_netdev_event +ffffffff81700840 T fib_del_ifaddr +ffffffff81700cb0 t fib_inetaddr_event +ffffffff81700d50 t fib_info_hash_alloc +ffffffff81700d90 t fib_detect_death +ffffffff81700e50 t free_fib_info_rcu +ffffffff81700fa0 t fib_info_hash_free +ffffffff81700fd0 T free_fib_info +ffffffff81701000 T fib_release_info +ffffffff817010f0 T ip_fib_check_default +ffffffff81701170 T fib_nh_match +ffffffff817011c0 T fib_metrics_match +ffffffff817012b0 T fib_info_update_nh_saddr +ffffffff817012e0 T fib_create_info +ffffffff81701f60 T fib_dump_info +ffffffff817021f0 T rtmsg_fib +ffffffff81702300 T fib_sync_down_addr +ffffffff81702370 T fib_sync_down_dev +ffffffff81702520 T fib_sync_up +ffffffff817026c0 T fib_select_path +ffffffff81702970 t update_children +ffffffff817029b0 t update_suffix +ffffffff81702a20 t node_pull_suffix +ffffffff81702a60 t fib_find_alias +ffffffff81702aa0 t leaf_walk_rcu +ffffffff81702b80 t fib_trie_get_next +ffffffff81702c10 t fib_trie_seq_next +ffffffff81702cd0 t fib_route_seq_next +ffffffff81702d10 t __alias_free_mem +ffffffff81702d20 t put_child +ffffffff81702e00 t tnode_free +ffffffff81702e70 t __trie_free_rcu +ffffffff81702e80 t fib_route_seq_open +ffffffff81702ea0 t fib_trie_seq_open +ffffffff81702ec0 t fib_route_seq_show +ffffffff81703030 t fib_trie_seq_stop +ffffffff81703040 t fib_route_seq_start +ffffffff81703100 t fib_triestat_seq_open +ffffffff81703110 t __node_free_rcu +ffffffff81703130 t tnode_new +ffffffff817031f0 t resize +ffffffff81703770 t fib_insert_alias +ffffffff81703a10 t replace +ffffffff81703ab0 t fib_table_print.isra.8 +ffffffff81703af0 t fib_triestat_seq_show +ffffffff81703df0 t fib_trie_seq_show +ffffffff81704030 t fib_trie_seq_start +ffffffff817040f0 t fib_route_seq_stop +ffffffff81704100 T fib_table_insert +ffffffff81704630 T fib_table_lookup +ffffffff817048b0 T fib_table_delete +ffffffff81704c20 T fib_table_flush_external +ffffffff81704d60 T fib_table_flush +ffffffff81704f60 T fib_notify +ffffffff81705070 T fib_free_table +ffffffff81705080 T fib_table_dump +ffffffff81705200 T fib_trie_table +ffffffff81705270 T fib_trie_unmerge +ffffffff81705560 T fib_proc_init +ffffffff81705610 T fib_proc_exit +ffffffff81705650 t fib4_seq_read +ffffffff81705670 t fib4_dump +ffffffff81705680 T call_fib4_notifier +ffffffff81705690 T call_fib4_notifiers +ffffffff817056d0 T fib4_notifier_init +ffffffff81705700 T fib4_notifier_exit +ffffffff81705710 t get_frag_bucket_locked +ffffffff81705780 t inet_evict_bucket.isra.2 +ffffffff81705860 t inet_frag_worker +ffffffff81705a90 t inet_frag_schedule_worker.part.3 +ffffffff81705ab0 T inet_frags_init +ffffffff81705b50 T inet_frags_fini +ffffffff81705b70 T inet_frags_exit_net +ffffffff81705c10 T inet_frag_kill +ffffffff81705ca0 T inet_frag_destroy +ffffffff81705d20 T inet_frag_find +ffffffff81705fc0 T inet_frag_maybe_warn_overflow +ffffffff81705fd0 t ping_lookup +ffffffff817060d0 T ping_seq_stop +ffffffff817060e0 t ping_v4_seq_show +ffffffff81706200 T ping_get_port +ffffffff81706370 T ping_hash +ffffffff81706380 T ping_unhash +ffffffff81706400 T ping_init_sock +ffffffff817064e0 T ping_close +ffffffff817064f0 T ping_bind +ffffffff81706950 T ping_getfrag +ffffffff817069e0 T ping_recvmsg +ffffffff81706cf0 T ping_queue_rcv_skb +ffffffff81706d10 t ping_seq_open +ffffffff81706d40 t ping_v4_proc_init_net +ffffffff81706d70 t ping_v4_proc_exit_net +ffffffff81706d90 t ping_get_first.isra.0 +ffffffff81706df0 t ping_get_next.isra.1 +ffffffff81706e20 t ping_get_idx +ffffffff81706e60 T ping_seq_next +ffffffff81706e90 T ping_err +ffffffff81707120 T ping_common_sendmsg +ffffffff817071a0 t ping_v4_sendmsg +ffffffff81707720 T ping_rcv +ffffffff817077d0 T ping_seq_start +ffffffff81707820 t ping_v4_seq_start +ffffffff81707830 T ping_proc_register +ffffffff81707860 T ping_proc_unregister +ffffffff81707880 T ping_proc_exit +ffffffff81707890 T iptunnel_xmit +ffffffff81707a60 T __iptunnel_pull_header +ffffffff81707bc0 T iptunnel_metadata_reply +ffffffff81707c50 T iptunnel_handle_offloads +ffffffff81707d10 T ip_tunnel_get_stats64 +ffffffff81707d80 T ip_tunnel_need_metadata +ffffffff81707d90 T ip_tunnel_unneed_metadata +ffffffff81707da0 t gre_gro_complete +ffffffff81707e50 t gre_gro_receive +ffffffff81708260 t gre_gso_segment +ffffffff817085b0 t ipv4_sysctl_exit_net +ffffffff817085e0 t proc_tfo_blackhole_detect_timeout +ffffffff81708600 t ipv4_privileged_ports +ffffffff817086b0 t ipv4_sysctl_init_net +ffffffff817087b0 t proc_configure_early_demux +ffffffff81708800 t proc_tcp_fastopen_key +ffffffff81708950 t proc_tcp_congestion_control +ffffffff817089e0 t ipv4_local_port_range +ffffffff81708b00 t proc_tcp_available_ulp +ffffffff81708b90 t proc_allowed_congestion_control +ffffffff81708c40 t proc_tcp_available_congestion_control +ffffffff81708cd0 t proc_tcp_early_demux +ffffffff81708d10 t proc_udp_early_demux +ffffffff81708d50 t ipv4_ping_group_range +ffffffff81708ec0 t ip_proc_exit_net +ffffffff81708f00 t snmp_seq_open +ffffffff81708f10 t netstat_seq_open +ffffffff81708f20 t sockstat_seq_open +ffffffff81708f30 t netstat_seq_show +ffffffff817090a0 t sockstat_seq_show +ffffffff817091c0 t ip_proc_init_net +ffffffff81709270 t icmpmsg_put_line.part.1 +ffffffff81709350 t icmpmsg_put +ffffffff817093e0 t snmp_seq_show_ipstats.isra.2 +ffffffff81709530 t snmp_seq_show +ffffffff81709a90 T ip_route_me_harder +ffffffff81709c40 T nf_ip_reroute +ffffffff81709c90 T nf_ip_checksum +ffffffff81709d70 T nf_ip_checksum_partial +ffffffff81709df0 T nf_ip_route +ffffffff81709e10 t ipv4_invert_tuple +ffffffff81709e20 t ipv4_helper +ffffffff81709e90 t ipv4_confirm +ffffffff81709f50 t ipv4_conntrack_in +ffffffff81709f70 t ipv4_hooks_unregister +ffffffff81709fe0 t ipv4_hooks_register +ffffffff8170a070 t ipv4_pkt_to_tuple +ffffffff8170a0d0 t ipv4_get_l4proto +ffffffff8170a160 t getorigdst +ffffffff8170a2b0 t ipv4_net_exit +ffffffff8170a2d0 t ipv4_net_init +ffffffff8170a2f0 t ipv4_conntrack_local +ffffffff8170a350 t icmp_get_timeouts +ffffffff8170a360 t icmp_new +ffffffff8170a380 t icmp_get_net_proto +ffffffff8170a390 t icmp_init_net +ffffffff8170a3e0 t icmp_pkt_to_tuple +ffffffff8170a450 t icmp_packet +ffffffff8170a470 t icmp_invert_tuple +ffffffff8170a4b0 t icmp_error +ffffffff8170a6a0 t defrag4_net_exit +ffffffff8170a6d0 t ipv4_conntrack_defrag +ffffffff8170a7c0 T nf_defrag_ipv4_enable +ffffffff8170a820 T nf_reject_ip_tcphdr_get +ffffffff8170a8e0 T nf_reject_iphdr_put +ffffffff8170a960 T nf_reject_ip_tcphdr_put +ffffffff8170aab0 T nf_send_reset +ffffffff8170abf0 T nf_send_unreach +ffffffff8170ac90 t nft_do_chain_ipv4 +ffffffff8170acf0 t nf_route_table_hook +ffffffff8170ade0 t nft_reject_ipv4_eval +ffffffff8170ae30 t bbr_tso_segs_goal +ffffffff8170ae40 t bbr_sndbuf_expand +ffffffff8170ae50 t bbr_undo_cwnd +ffffffff8170aec0 t bbr_reset_probe_bw_mode +ffffffff8170af80 t bbr_init_pacing_rate_from_rtt +ffffffff8170b010 t bbr_init +ffffffff8170b170 t bbr_set_pacing_rate +ffffffff8170b200 t bbr_get_info +ffffffff8170b290 t bbr_lt_bw_sampling.isra.5 +ffffffff8170b5c0 t bbr_set_state +ffffffff8170b630 t bbr_main +ffffffff8170be60 t bbr_cwnd_event +ffffffff8170beb0 t bbr_ssthresh +ffffffff8170bf00 t __unix_remove_socket +ffffffff8170bf40 t __unix_insert_socket +ffffffff8170bf70 t unix_dgram_peer_wake_disconnect +ffffffff8170bfe0 t unix_dgram_peer_wake_me +ffffffff8170c090 t unix_seq_stop +ffffffff8170c0a0 t unix_net_exit +ffffffff8170c0c0 t unix_net_init +ffffffff8170c120 t unix_seq_open +ffffffff8170c140 t unix_seq_show +ffffffff8170c2a0 t unix_set_peek_off +ffffffff8170c2f0 t maybe_init_creds +ffffffff8170c380 t unix_state_double_unlock +ffffffff8170c3b0 t unix_stream_read_actor +ffffffff8170c3d0 t __unix_find_socket_byname +ffffffff8170c460 t unix_dgram_peer_wake_relay +ffffffff8170c4b0 t unix_wait_for_peer +ffffffff8170c560 t unix_find_other +ffffffff8170c750 t unix_shutdown +ffffffff8170c900 t init_peercred +ffffffff8170c970 t unix_socketpair +ffffffff8170c9f0 t unix_listen +ffffffff8170caa0 t unix_accept +ffffffff8170cbc0 t unix_release_sock +ffffffff8170ce30 t unix_release +ffffffff8170ce60 t unix_stream_splice_actor +ffffffff8170ce80 t unix_create1 +ffffffff8170d040 t unix_create +ffffffff8170d0b0 t unix_sock_destructor +ffffffff8170d140 t unix_dgram_poll +ffffffff8170d2b0 t maybe_add_creds +ffffffff8170d320 t unix_next_socket +ffffffff8170d400 t unix_seq_next +ffffffff8170d410 t unix_seq_start +ffffffff8170d450 t unix_state_double_lock +ffffffff8170d4a0 t unix_detach_fds.isra.7 +ffffffff8170d4f0 t unix_dgram_recvmsg +ffffffff8170d920 t unix_seqpacket_recvmsg +ffffffff8170d940 t unix_destruct_scm +ffffffff8170d9c0 t unix_stream_read_generic +ffffffff8170e180 t unix_stream_splice_read +ffffffff8170e1f0 t unix_stream_recvmsg +ffffffff8170e240 t unix_mkname +ffffffff8170e2b0 t unix_autobind.isra.9 +ffffffff8170e470 t unix_bind +ffffffff8170e780 t unix_stream_connect +ffffffff8170ec20 t unix_scm_to_skb +ffffffff8170ed10 t unix_stream_sendpage +ffffffff8170f0e0 t unix_stream_sendmsg +ffffffff8170f440 t unix_dgram_disconnected +ffffffff8170f4b0 t unix_write_space +ffffffff8170f540 t unix_poll +ffffffff8170f5f0 t unix_dgram_connect +ffffffff8170f840 T unix_peer_get +ffffffff8170f880 t unix_dgram_sendmsg +ffffffff8170ff30 t unix_seqpacket_sendmsg +ffffffff8170ff70 t unix_getname +ffffffff81710050 T unix_inq_len +ffffffff817100d0 t unix_ioctl +ffffffff81710250 T unix_outq_len +ffffffff81710260 t scan_inflight +ffffffff817103b0 t dec_inflight +ffffffff817103c0 t inc_inflight +ffffffff817103d0 t inc_inflight_move_tail +ffffffff81710430 t scan_children +ffffffff81710550 T unix_get_socket +ffffffff81710590 T unix_inflight +ffffffff81710650 T unix_notinflight +ffffffff81710710 T unix_gc +ffffffff81710a80 T wait_for_unix_gc +ffffffff81710b00 T unix_sysctl_register +ffffffff81710b80 T unix_sysctl_unregister +ffffffff81710ba0 T inet6_getname +ffffffff81710cc0 T inet6_bind +ffffffff817110f0 T inet6_release +ffffffff81711120 T inet6_ioctl +ffffffff81711190 t ipv6_cleanup_mibs +ffffffff817111e0 t inet6_net_exit +ffffffff81711200 t inet6_net_init +ffffffff817113d0 t inet6_create +ffffffff81711780 T ipv6_mod_enabled +ffffffff81711790 T inet6_destroy_sock +ffffffff81711810 T inet6_register_protosw +ffffffff817118c0 T inet6_unregister_protosw +ffffffff81711920 T inet6_sk_rebuild_header +ffffffff81711ae0 T ipv6_opt_accepted +ffffffff81711b70 t ipv6_chk_acast_dev +ffffffff81711c00 t ac6_seq_stop +ffffffff81711c30 t ac6_seq_open +ffffffff81711c50 t ac6_seq_show +ffffffff81711c80 t ac6_get_next.isra.0 +ffffffff81711d10 t ac6_seq_next +ffffffff81711d30 t ac6_seq_start +ffffffff81711df0 t aca_put +ffffffff81711e30 T __ipv6_dev_ac_inc +ffffffff81711fd0 T ipv6_sock_ac_join +ffffffff817121c0 T __ipv6_dev_ac_dec +ffffffff817122d0 T ipv6_sock_ac_drop +ffffffff817123b0 T ipv6_sock_ac_close +ffffffff81712470 T ipv6_ac_destroy_dev +ffffffff81712500 T ipv6_chk_acast_addr +ffffffff81712590 T ipv6_chk_acast_addr_src +ffffffff817125d0 T ac6_proc_init +ffffffff81712600 T ac6_proc_exit +ffffffff81712620 t dst_output +ffffffff81712640 t ip6_finish_output2 +ffffffff81712b10 t ip6_copy_metadata +ffffffff81712c30 t ip6_dst_lookup_tail +ffffffff81712e60 t ip6_setup_cork +ffffffff817131c0 t __ip6_append_data.isra.1 +ffffffff81713ce0 t ip6_cork_release.isra.2 +ffffffff81713d80 t __ip6_flush_pending_frames +ffffffff81713e20 t ip6_autoflowlabel.part.3 +ffffffff81713e40 t ip6_forward_finish +ffffffff81713e60 T ip6_autoflowlabel +ffffffff81713e80 T ip6_xmit +ffffffff817143d0 T ip6_dst_mtu_forward +ffffffff81714420 T ip6_forward +ffffffff81714b50 T ip6_fragment +ffffffff817154d0 t ip6_finish_output +ffffffff81715660 T ip6_output +ffffffff81715770 T ip6_dst_lookup +ffffffff81715780 T ip6_dst_lookup_flow +ffffffff817157f0 T ip6_sk_dst_lookup_flow +ffffffff817158e0 T ip6_append_data +ffffffff81715a10 T __ip6_make_skb +ffffffff81715fc0 T ip6_send_skb +ffffffff81716020 T ip6_push_pending_frames +ffffffff81716070 T ip6_flush_pending_frames +ffffffff817160b0 T ip6_make_skb +ffffffff81716240 T ip6_rcv_finish +ffffffff817162f0 t ip6_input_finish +ffffffff81716670 T ipv6_rcv +ffffffff81716b60 T ip6_input +ffffffff81716c10 T ip6_mc_input +ffffffff81716cb0 t __ipv6_isatap_ifid +ffffffff81716d70 t inet6_get_link_af_size +ffffffff81716d90 t put_cacheinfo +ffffffff81716e10 t inet6_netconf_fill_devconf +ffffffff81716fa0 t inet6_fill_ifaddr +ffffffff81717180 t check_cleanup_prefix_route +ffffffff817172c0 t if6_seq_stop +ffffffff817172d0 t inet6_netconf_dump_devconf +ffffffff817174c0 t ipv6_generate_stable_address +ffffffff817176f0 t ipv6_regen_rndid +ffffffff817177a0 t addrconf_join_anycast +ffffffff817178a0 t addrconf_prefix_route +ffffffff81717950 t addrconf_add_mroute +ffffffff817179d0 t addrconf_leave_anycast +ffffffff81717ad0 t addrconf_get_prefix_route +ffffffff81717ba0 t cleanup_prefix_route +ffffffff81717c00 t addrconf_mod_rs_timer +ffffffff81717c30 t ipv6_add_addr +ffffffff81718170 t addrconf_disable_policy_idev +ffffffff81718290 t addrconf_sysctl_mtu +ffffffff81718310 t addrconf_sysctl_stable_secret +ffffffff81718550 t ipv6_mc_config +ffffffff817185a0 t if6_proc_net_exit +ffffffff817185c0 t if6_proc_net_init +ffffffff817185f0 t if6_seq_open +ffffffff81718610 t if6_seq_show +ffffffff81718650 t inet6_validate_link_af +ffffffff817186a0 t inet6_netconf_get_devconf +ffffffff817188a0 t extract_addr +ffffffff81718900 t snmp6_fill_stats.isra.7.part.8 +ffffffff817189f0 t addrconf_del_dad_work +ffffffff81718a20 t ipv6_get_saddr_eval +ffffffff81718c30 t __ipv6_dev_get_saddr +ffffffff81718d40 t ipv6_generate_eui64 +ffffffff81718f20 t addrconf_sysctl_disable_policy +ffffffff81719070 t if6_seq_next +ffffffff81719120 t if6_seq_start +ffffffff817191d0 t addrconf_join_solict.part.23 +ffffffff81719220 t addrconf_leave_solict.part.24 +ffffffff81719270 t __ipv6_ifa_notify +ffffffff817194f0 t ipv6_ifa_notify +ffffffff81719530 t inet6_dump_addr +ffffffff817199f0 t inet6_dump_ifacaddr +ffffffff81719a00 t inet6_dump_ifmcaddr +ffffffff81719a10 t inet6_dump_ifaddr +ffffffff81719a20 t inet6_fill_ifla6_attrs +ffffffff81719e40 t inet6_fill_ifinfo +ffffffff8171a070 t inet6_dump_ifinfo +ffffffff8171a170 t inet6_fill_link_af +ffffffff8171a190 T inet6_netconf_notify_devconf +ffffffff8171a270 t __addrconf_sysctl_unregister.isra.18 +ffffffff8171a2c0 t addrconf_sysctl_unregister +ffffffff8171a2f0 t addrconf_exit_net +ffffffff8171a340 t __addrconf_sysctl_register +ffffffff8171a480 t addrconf_sysctl_register +ffffffff8171a520 t ipv6_add_dev.part.20 +ffffffff8171a910 t ipv6_find_idev +ffffffff8171a980 t addrconf_add_dev +ffffffff8171a9f0 t addrconf_init_net +ffffffff8171aaf0 t addrconf_sysctl_ignore_routes_with_linkdown +ffffffff8171acf0 t addrconf_sysctl_proxy_ndp +ffffffff8171add0 t dev_forward_change +ffffffff8171af00 t addrconf_sysctl_forward +ffffffff8171b130 T inet6_ifa_finish_destroy +ffffffff8171b1b0 t addrconf_mod_dad_work +ffffffff8171b200 t addrconf_dad_start +ffffffff8171b240 t addrconf_dad_kick +ffffffff8171b2e0 t ipv6_create_tempaddr +ffffffff8171b740 t manage_tempaddrs +ffffffff8171b8c0 t ipv6_del_addr +ffffffff8171baa0 t addrconf_dad_stop +ffffffff8171bbc0 t addrconf_verify_rtnl +ffffffff8171bf70 t addrconf_verify_work +ffffffff8171bf80 t inet6_addr_del +ffffffff8171c0d0 t inet6_rtm_deladdr +ffffffff8171c160 t inet6_addr_add +ffffffff8171c370 t addrconf_ifdown +ffffffff8171c8e0 T ipv6_dev_get_saddr +ffffffff8171cae0 T __ipv6_get_lladdr +ffffffff8171cb60 T ipv6_get_lladdr +ffffffff8171cc30 t addrconf_rs_timer +ffffffff8171cdd0 t addrconf_dad_completed +ffffffff8171d110 t addrconf_dad_work +ffffffff8171d520 T ipv6_chk_addr_and_flags +ffffffff8171d600 T ipv6_chk_addr +ffffffff8171d610 T ipv6_chk_custom_prefix +ffffffff8171d6e0 T ipv6_chk_prefix +ffffffff8171d7a0 T ipv6_get_ifaddr +ffffffff8171d870 t inet6_rtm_getaddr +ffffffff8171d9f0 t inet6_rtm_newaddr +ffffffff8171dd70 T addrconf_dad_failure +ffffffff8171e060 T addrconf_join_solict +ffffffff8171e070 T addrconf_leave_solict +ffffffff8171e090 T addrconf_prefix_rcv_add_addr +ffffffff8171e2f0 T addrconf_prefix_rcv +ffffffff8171e8a0 T addrconf_set_dstaddr +ffffffff8171e910 T addrconf_add_ifaddr +ffffffff8171e9b0 T addrconf_del_ifaddr +ffffffff8171ea40 T addrconf_add_linklocal +ffffffff8171eab0 t addrconf_dev_config +ffffffff8171ec10 t addrconf_sysctl_addr_gen_mode +ffffffff8171ecf0 T if6_proc_exit +ffffffff8171ed00 T inet6_ifinfo_notify +ffffffff8171eda0 t addrconf_notify +ffffffff8171f530 t dev_disable_change +ffffffff8171f580 t addrconf_sysctl_disable +ffffffff8171f700 t inet6_set_link_af +ffffffff8171f9c0 T addrconf_cleanup +ffffffff8171fa90 t __ipv6_addr_label +ffffffff8171fb40 t ip6addrlbl_net_exit +ffffffff8171fbe0 t ip6addrlbl_add +ffffffff8171fef0 t ip6addrlbl_net_init +ffffffff8171ff70 t ip6addrlbl_newdel +ffffffff81720210 t ip6addrlbl_fill.constprop.1 +ffffffff81720300 t ip6addrlbl_get +ffffffff81720470 t ip6addrlbl_dump +ffffffff81720510 T ipv6_addr_label +ffffffff81720560 T ipv6_addr_label_cleanup +ffffffff81720570 t dst_discard +ffffffff81720590 t ip6_blackhole_mtu +ffffffff817205b0 t ip6_rt_blackhole_update_pmtu +ffffffff817205c0 t ip6_rt_blackhole_redirect +ffffffff817205d0 t rt6_do_update_pmtu +ffffffff81720670 t ip6_default_advmss +ffffffff817206b0 t __ip6_dst_alloc +ffffffff81720740 t ip6_route_redirect +ffffffff817207d0 t ip6_confirm_neigh +ffffffff817208e0 t rt6_score_route +ffffffff81720a90 t ip6_mtu +ffffffff81720b10 t __ip6_ins_rt +ffffffff81720b70 t ip6_rt_get_dev_rcu +ffffffff81720bd0 t ip6_rt_copy_init +ffffffff81720d10 t ip6_neigh_lookup +ffffffff81720e90 t ip6_dst_ifdown +ffffffff81720f10 t ip6_route_dev_notify +ffffffff81720fc0 t ip6_pkt_drop +ffffffff817210a0 t ip6_pkt_discard +ffffffff817210b0 t ip6_pkt_discard_out +ffffffff817210d0 t ip6_pkt_prohibit +ffffffff817210e0 t ip6_pkt_prohibit_out +ffffffff81721110 t ip6_convert_metrics +ffffffff81721270 t __ip6_del_rt +ffffffff817212d0 t rt6_nexthop_info +ffffffff817213c0 t rt6_add_nexthop +ffffffff81721450 t ipv6_sysctl_rtcache_flush +ffffffff81721490 t ip6_dst_gc +ffffffff81721560 t rtm_to_fib6_config +ffffffff81721860 t ip6_route_net_exit_late +ffffffff81721890 t ip6_route_net_init_late +ffffffff817218e0 t rt6_stats_seq_open +ffffffff817218f0 t rt6_stats_seq_show +ffffffff81721960 t ipv6_inetpeer_exit +ffffffff81721990 t ipv6_inetpeer_init +ffffffff817219d0 t ip6_route_net_exit +ffffffff817219f0 t ip6_route_net_init +ffffffff81721b10 t rt6_check_expired +ffffffff81721b50 t find_match +ffffffff81721be0 t ip6_hold_safe +ffffffff81721c50 t rt6_check +ffffffff81721ca0 t ip6_dst_check +ffffffff81721d40 t rt6_exception_hash.isra.14 +ffffffff81721e70 t __rt6_find_exception_rcu.isra.15 +ffffffff81721ee0 t rt6_find_cached_rt.isra.16 +ffffffff81721f20 t __ip6_route_redirect +ffffffff81722090 t rt6_remove_exception.part.17 +ffffffff81722130 t fib6_clean_tohost +ffffffff81722220 t __rt6_find_exception_spinlock.isra.18 +ffffffff81722290 t rt6_insert_exception +ffffffff817224a0 t ip6_rt_cache_alloc.isra.20 +ffffffff81722590 t rt6_do_redirect +ffffffff817228c0 t ipv6_cow_metrics +ffffffff81722910 t __ip6_rt_update_pmtu.part.22 +ffffffff81722a40 t rt6_fill_node.isra.23 +ffffffff81722f70 t ip6_route_del +ffffffff817232c0 t ip6_route_multipath_del +ffffffff817233b0 t inet6_rtm_delroute +ffffffff81723400 t fib6_remove_prefsrc +ffffffff817234a0 t rt6_mtu_change_route +ffffffff81723610 t rt6_uncached_list_del.part.28 +ffffffff81723680 t ip6_dst_destroy +ffffffff81723730 t rt6_multipath_hash.part.29 +ffffffff81723750 t rt6_multipath_select +ffffffff81723800 t ip6_pol_route_lookup +ffffffff81723a60 t rt6_multipath_rebalance.part.31 +ffffffff81723c40 t fib6_ifdown +ffffffff81723e10 t fib6_ifup +ffffffff81723e70 t ip6_rt_update_pmtu +ffffffff81723eb0 T rt6_uncached_list_add +ffffffff81723f10 T rt6_uncached_list_del +ffffffff81723f30 T ip6_dst_alloc +ffffffff81723f70 T ip6_route_lookup +ffffffff81723f80 T rt6_lookup +ffffffff81724010 T ip6_ins_rt +ffffffff81724080 T rt6_flush_exceptions +ffffffff81724100 T rt6_remove_exception_rt +ffffffff81724190 T rt6_age_exceptions +ffffffff81724360 T ip6_pol_route +ffffffff81724a70 t ip6_pol_route_input +ffffffff81724a90 t ip6_pol_route_output +ffffffff81724aa0 t ip6_route_info_create +ffffffff817253d0 T ip6_route_input_lookup +ffffffff81725420 T rt6_multipath_hash +ffffffff81725540 T ip6_route_input +ffffffff81725660 T ip6_route_output_flags +ffffffff81725710 t inet6_rtm_getroute +ffffffff81725b10 T ip6_blackhole_route +ffffffff81725d20 T ip6_update_pmtu +ffffffff81725e10 T ip6_sk_update_pmtu +ffffffff81725eb0 T ip6_redirect +ffffffff81725f70 T ip6_redirect_no_header +ffffffff81726040 T ip6_sk_redirect +ffffffff81726060 T icmp6_dst_alloc +ffffffff817261b0 T ip6_route_add +ffffffff81726250 T ip6_del_rt +ffffffff81726290 t ip6_link_failure +ffffffff81726330 t ip6_negative_advice +ffffffff81726370 T rt6_get_dflt_router +ffffffff81726410 T rt6_add_dflt_router +ffffffff817264e0 T rt6_purge_dflt_routers +ffffffff817265a0 T ipv6_route_ioctl +ffffffff81726720 T addrconf_dst_alloc +ffffffff81726810 T rt6_remove_prefsrc +ffffffff81726850 T rt6_clean_tohost +ffffffff81726860 T rt6_multipath_rebalance +ffffffff81726880 T rt6_sync_up +ffffffff817268d0 T rt6_sync_down_dev +ffffffff81726900 T rt6_disable_ip +ffffffff81726a80 T rt6_mtu_change +ffffffff81726ab0 T rt6_dump_route +ffffffff81726b10 T inet6_rt_notify +ffffffff81726c30 t ip6_route_mpath_notify +ffffffff81726c70 t ip6_route_multipath_add +ffffffff817272e0 t inet6_rtm_newroute +ffffffff81727330 T ipv6_route_sysctl_init +ffffffff817273f0 T ip6_route_cleanup +ffffffff8172743d t ip6_nh_lookup_table +ffffffff817274f0 t fib6_walker_unlink +ffffffff81727540 t fib6_walk_continue +ffffffff81727640 t fib6_walk +ffffffff817276d0 t fib6_clean_tree +ffffffff81727710 t ipv6_route_yield +ffffffff81727750 t __fib6_clean_all +ffffffff817277c0 t fib6_flush_trees +ffffffff81727800 t fib6_dump_end +ffffffff81727860 t fib6_dump_done +ffffffff81727880 t fib6_node_dump +ffffffff817278f0 t node_free_rcu +ffffffff81727900 t call_fib6_entry_notifiers +ffffffff81727940 t fib6_age +ffffffff81727970 t fib6_dump_node +ffffffff817279d0 t fib6_net_exit +ffffffff81727ac0 t ipv6_route_seq_show +ffffffff81727b70 t ipv6_route_seq_setup_walk +ffffffff81727c20 t ipv6_route_seq_next +ffffffff81727d20 t ipv6_route_seq_start +ffffffff81727d80 t ipv6_route_seq_stop +ffffffff81727dc0 t node_alloc.isra.0 +ffffffff81727df0 t inet6_dump_fib +ffffffff81728030 t fib6_commit_metrics +ffffffff817280b0 t fib6_net_init +ffffffff81728200 T fib6_update_sernum +ffffffff81728250 T rt6_free_pcpu +ffffffff817282d0 t fib6_purge_rt.part.11 +ffffffff81728380 t fib6_repair_tree.isra.13.part.14 +ffffffff81728550 T fib6_new_table +ffffffff81728560 T fib6_get_table +ffffffff81728570 T fib6_rule_lookup +ffffffff817285d0 T fib6_tables_seq_read +ffffffff81728610 T fib6_tables_dump +ffffffff817286b0 T fib6_force_start_gc +ffffffff817286e0 T fib6_update_sernum_upto_root +ffffffff81728730 T fib6_add +ffffffff817294a0 T fib6_lookup +ffffffff817295b0 T fib6_locate +ffffffff817296d0 T fib6_del +ffffffff81729970 t fib6_clean_node +ffffffff81729a30 T fib6_clean_all +ffffffff81729a40 T fib6_run_gc +ffffffff81729b20 t fib6_gc_timer_cb +ffffffff81729b40 T fib6_gc_cleanup +ffffffff81729b60 T ipv6_route_open +ffffffff81729b80 t do_ipv6_getsockopt.isra.1.constprop.3 +ffffffff8172a610 T ip6_ra_control +ffffffff8172a780 T ipv6_update_options +ffffffff8172a820 t do_ipv6_setsockopt.isra.2 +ffffffff8172bcf0 T ipv6_setsockopt +ffffffff8172bd70 T ipv6_getsockopt +ffffffff8172be20 t dst_output +ffffffff8172be40 t ndisc_hash +ffffffff8172be80 t ndisc_key_eq +ffffffff8172beb0 t ndisc_error_report +ffffffff8172bf00 t pndisc_destructor +ffffffff8172bf60 t pndisc_constructor +ffffffff8172bfd0 t ndisc_send_skb +ffffffff8172c300 t ndisc_net_exit +ffffffff8172c320 t ndisc_net_init +ffffffff8172c3b0 t ndisc_alloc_skb +ffffffff8172c470 T ndisc_ifinfo_sysctl_change +ffffffff8172c700 T __ndisc_fill_addr_option +ffffffff8172c790 T ndisc_parse_options +ffffffff8172c920 t ndisc_redirect_rcv +ffffffff8172ca20 T ndisc_mc_map +ffffffff8172cbb0 t ndisc_constructor +ffffffff8172cef0 T ndisc_send_na +ffffffff8172d180 t ndisc_send_unsol_na +ffffffff8172d280 t ndisc_netdev_event +ffffffff8172d390 T ndisc_send_ns +ffffffff8172d560 t ndisc_solicit +ffffffff8172d660 T ndisc_send_rs +ffffffff8172d790 T ndisc_update +ffffffff8172d800 t ndisc_recv_ns +ffffffff8172ddc0 t pndisc_redo +ffffffff8172dde0 t ndisc_recv_na +ffffffff8172e0c0 t ndisc_recv_rs +ffffffff8172e250 t ndisc_router_discovery +ffffffff8172ecd0 T ndisc_send_redirect +ffffffff8172f200 T ndisc_rcv +ffffffff8172f2f0 T ndisc_late_cleanup +ffffffff8172f300 T ndisc_cleanup +ffffffff8172f330 t udp_lib_hash +ffffffff8172f340 t udp_lib_close +ffffffff8172f350 t udplite_getfrag +ffffffff8172f370 t compute_score +ffffffff8172f430 t udpv6_err +ffffffff8172f450 t udpv6_rcv +ffffffff8172f470 T udp_v6_get_port +ffffffff8172f770 t udp6_ehashfn +ffffffff8172f8f0 T udpv6_recvmsg +ffffffff8172ff00 t udpv6_queue_rcv_skb +ffffffff81730240 T udpv6_getsockopt +ffffffff81730260 T udp6_seq_show +ffffffff817302a0 t udp_v6_rehash +ffffffff81730410 t udp_v6_send_skb +ffffffff81730740 t udp_v6_push_pending_frames +ffffffff81730850 t udp_v6_flush_pending_frames +ffffffff81730880 T udpv6_sendmsg +ffffffff817314d0 T udpv6_destroy_sock +ffffffff81731520 T udpv6_setsockopt +ffffffff81731540 t udp_v6_early_demux +ffffffff817318a0 t udp6_lib_lookup2.constprop.7 +ffffffff81731980 T __udp6_lib_lookup +ffffffff81731e20 T udp6_lib_lookup_skb +ffffffff81731e70 T __udp6_lib_err +ffffffff81732060 T udpv6_encap_enable +ffffffff81732070 T __udp6_lib_rcv +ffffffff81732a50 T udp6_proc_init +ffffffff81732a60 T udp6_proc_exit +ffffffff81732a70 T udpv6_exit +ffffffff81732a90 t udp_lib_hash +ffffffff81732aa0 t udp_lib_close +ffffffff81732ab0 t udplite_sk_init +ffffffff81732ad0 t udplitev6_err +ffffffff81732af0 t udplitev6_rcv +ffffffff81732b10 t udplite6_proc_exit_net +ffffffff81732b20 t udplite6_proc_init_net +ffffffff81732b30 T udplitev6_exit +ffffffff81732b50 T udplite6_proc_exit +ffffffff81732b60 t dst_output +ffffffff81732b80 t rawv6_rcv_skb +ffffffff81732c40 t rawv6_init_sk +ffffffff81732c80 t rawv6_bind +ffffffff81732e20 t rawv6_recvmsg +ffffffff817330d0 t raw6_getfrag +ffffffff817331b0 t raw6_destroy +ffffffff817331e0 t rawv6_close +ffffffff81733210 t raw6_exit_net +ffffffff81733230 t raw6_init_net +ffffffff81733260 t raw6_seq_open +ffffffff81733280 t raw6_seq_show +ffffffff817332b0 t rawv6_ioctl +ffffffff81733350 t rawv6_getsockopt +ffffffff817334a0 t rawv6_setsockopt +ffffffff81733590 t rawv6_sendmsg +ffffffff81734280 T __raw_v6_lookup +ffffffff81734370 T raw6_icmp_error +ffffffff81734560 T rawv6_rcv +ffffffff81734830 T raw6_local_deliver +ffffffff81734a30 T raw6_proc_exit +ffffffff81734a40 T rawv6_exit +ffffffff81734a50 t icmpv6_getfrag +ffffffff81734ab0 t icmpv6_err +ffffffff81734b70 t icmpv6_sk_exit +ffffffff81734bd0 t icmpv6_sk_init +ffffffff81734ce0 T icmpv6_push_pending_frames +ffffffff81734de0 t icmp6_send +ffffffff817357b0 t icmpv6_echo_reply +ffffffff81735b80 T icmpv6_param_prob +ffffffff81735bb0 T ip6_err_gen_icmpv6_unreach +ffffffff81735dd0 T icmpv6_notify +ffffffff81735f30 t icmpv6_rcv +ffffffff81736240 T icmpv6_flow_init +ffffffff817362b0 T icmpv6_cleanup +ffffffff817362e0 T icmpv6_err_convert +ffffffff81736340 T ipv6_icmp_sysctl_init +ffffffff81736370 t dst_output +ffffffff81736390 t is_in +ffffffff81736460 t igmp6_mcf_seq_stop +ffffffff817364b0 t igmp6_mc_seq_stop +ffffffff817364e0 t ip6_mc_clear_src +ffffffff81736550 t mld_clear_zeros +ffffffff817365a0 t sf_setstate +ffffffff81736750 t ip6_mc_find_dev_rcu +ffffffff817367c0 t mld_sendpack +ffffffff81736a30 t mld_del_delrec +ffffffff81736b60 t mld_clear_delrec +ffffffff81736c50 t igmp6_mcf_seq_open +ffffffff81736c70 t igmp6_mc_seq_open +ffffffff81736c90 t igmp6_mcf_seq_show +ffffffff81736ce0 t igmp6_mc_seq_show +ffffffff81736d50 t mld_in_v1_mode +ffffffff81736da0 t ipv6_mc_reset +ffffffff81736df0 t ip6_mc_del1_src +ffffffff81736ed0 t igmp6_mcf_get_next.isra.6 +ffffffff81736fb0 t igmp6_mcf_seq_next +ffffffff817370a0 t igmp6_mcf_seq_start +ffffffff817371d0 t igmp6_mc_get_next.isra.7 +ffffffff81737260 t igmp6_mc_seq_next +ffffffff81737280 t igmp6_mc_seq_start +ffffffff81737340 t ma_put +ffffffff81737380 t mld_dad_start_timer.part.12 +ffffffff81737380 t mld_ifc_start_timer.part.9 +ffffffff81737390 t mld_ifc_start_timer +ffffffff817373d0 t mld_ifc_event +ffffffff817373f0 t ip6_mc_del_src +ffffffff817375f0 t ip6_mc_add_src +ffffffff81737900 t ip6_mc_leave_src +ffffffff81737970 t mld_dad_start_timer +ffffffff817379b0 t mld_gq_stop_timer.part.16 +ffffffff817379b0 t mld_ifc_stop_timer.part.17 +ffffffff817379d0 t mld_gq_stop_timer +ffffffff817379f0 t mld_ifc_stop_timer +ffffffff81737a10 t igmp6_group_queried +ffffffff81737ac0 t igmp6_net_exit +ffffffff81737b20 t igmp6_net_init +ffffffff81737c70 t ip6_mc_hdr.constprop.22 +ffffffff81737d40 t mld_newpack +ffffffff81737ed0 t add_grhead.isra.13 +ffffffff81737f70 t add_grec +ffffffff817383d0 t mld_send_report +ffffffff817384c0 t mld_gq_timer_expire +ffffffff81738500 t mld_send_initial_cr.part.14 +ffffffff817385a0 t mld_ifc_timer_expire +ffffffff81738860 t igmp6_send +ffffffff81738c30 t igmp6_group_dropped +ffffffff81738e00 t igmp6_timer_handler +ffffffff81738e70 t igmp6_join_group.part.15 +ffffffff81738f40 t igmp6_group_added +ffffffff81738ff0 t ipv6_mc_netdev_event +ffffffff81739060 t mld_dad_timer_expire +ffffffff817390c0 T ip6_mc_msfget +ffffffff817392e0 T inet6_mc_check +ffffffff81739430 T ipv6_dev_mc_inc +ffffffff817396a0 T ipv6_sock_mc_join +ffffffff81739870 T __ipv6_dev_mc_dec +ffffffff81739960 T ipv6_sock_mc_drop +ffffffff81739a70 T ip6_mc_source +ffffffff81739f70 T ip6_mc_msfilter +ffffffff8173a250 T __ipv6_sock_mc_close +ffffffff8173a310 T ipv6_sock_mc_close +ffffffff8173a350 T ipv6_dev_mc_dec +ffffffff8173a380 T ipv6_chk_mcast_addr +ffffffff8173a4a0 T igmp6_event_query +ffffffff8173ab30 T igmp6_event_report +ffffffff8173ac60 T ipv6_mc_dad_complete +ffffffff8173aca0 T ipv6_mc_unmap +ffffffff8173ace0 T ipv6_mc_down +ffffffff8173ad50 T ipv6_mc_up +ffffffff8173ada0 T ipv6_mc_remap +ffffffff8173adb0 T ipv6_mc_init_dev +ffffffff8173ae40 T ipv6_mc_destroy_dev +ffffffff8173aec0 T igmp6_cleanup +ffffffff8173aed0 T igmp6_late_cleanup +ffffffff8173aee0 T ip6_frag_init +ffffffff8173af40 T ip6_frag_match +ffffffff8173afb0 t inet6_hash_frag +ffffffff8173b090 t ip6_hashfn +ffffffff8173b0b0 t ipv6_frags_exit_net +ffffffff8173b0f0 t ipv6_frags_init_net +ffffffff8173b1e0 t ipv6_frag_rcv +ffffffff8173be70 T ip6_expire_frag_queue +ffffffff8173bf70 t ip6_frag_expire +ffffffff8173bf90 T ipv6_frag_exit +ffffffff8173bfd0 t tcp_stream_memory_free +ffffffff8173c000 t tcp_v6_send_check +ffffffff8173c0c0 t tcp_v6_reqsk_destructor +ffffffff8173c0e0 t tcp_v6_fill_cb +ffffffff8173c190 t tcp6_seq_show +ffffffff8173c5b0 t tcp_v6_init_req +ffffffff8173c6a0 t tcp_v6_destroy_sock +ffffffff8173c6c0 t tcp_v6_init_sock +ffffffff8173c6e0 t tcp_v6_route_req +ffffffff8173c6f0 t inet6_sk_rx_dst_set +ffffffff8173c7b0 t tcp_v6_syn_recv_sock +ffffffff8173ceb0 t tcp_v6_send_synack +ffffffff8173d0c0 t tcp_v6_init_ts_off +ffffffff8173d0e0 t tcp_v6_init_seq +ffffffff8173d110 t tcp_v6_connect +ffffffff8173d710 t tcpv6_net_exit_batch +ffffffff8173d730 t tcpv6_net_exit +ffffffff8173d750 t tcpv6_net_init +ffffffff8173d770 t tcp_v6_mtu_reduced.part.3 +ffffffff8173d7e0 t tcp_v6_mtu_reduced +ffffffff8173d800 t tcp_v6_err +ffffffff8173dbe0 t tcp_v6_conn_request +ffffffff8173dc40 t tcp_v6_early_demux +ffffffff8173dd90 t tcp_v6_send_response.constprop.6 +ffffffff8173e1b0 t tcp_v6_reqsk_send_ack +ffffffff8173e250 t tcp_v6_send_reset +ffffffff8173e2f0 t tcp_v6_do_rcv +ffffffff8173e670 t tcp_v6_rcv +ffffffff8173f000 T tcp6_proc_init +ffffffff8173f010 T tcp6_proc_exit +ffffffff8173f020 T tcpv6_exit +ffffffff8173f050 t dummy_ipv6_recv_error +ffffffff8173f060 t dummy_ip6_datagram_recv_ctl +ffffffff8173f070 t dummy_icmpv6_err_convert +ffffffff8173f080 t dummy_ipv6_icmp_error +ffffffff8173f090 t dummy_ipv6_chk_addr +ffffffff8173f0a0 t ping_v6_proc_exit_net +ffffffff8173f0b0 t ping_v6_seq_show +ffffffff8173f0f0 t ping_v6_seq_start +ffffffff8173f100 t ping_v6_proc_init_net +ffffffff8173f110 t ping_v6_sendmsg +ffffffff8173f5c0 T pingv6_exit +ffffffff8173f620 t dst_discard +ffffffff8173f640 t ipv6_hop_calipso +ffffffff8173f680 t ipv6_hop_ra +ffffffff8173f6c0 t ip6_parse_tlv +ffffffff8173f900 t ipv6_destopt_rcv +ffffffff8173fab0 t ipv6_rthdr_rcv +ffffffff81740230 t ipv6_hop_jumbo +ffffffff81740430 t ipv6_push_exthdr +ffffffff817404a0 t ipv6_renew_option +ffffffff81740570 T ipv6_exthdrs_exit +ffffffff817405b0 T ipv6_parse_hopopts +ffffffff817406b0 T ipv6_push_nfrag_opts +ffffffff817408e0 T ipv6_push_frag_opts +ffffffff81740900 T ipv6_dup_options +ffffffff81740980 T ipv6_renew_options +ffffffff81740ca0 T ipv6_renew_options_kern +ffffffff81740ce0 T ipv6_fixup_options +ffffffff81740d60 T fl6_update_dst +ffffffff81740de0 T ip6_datagram_dst_update +ffffffff817410d0 T ip6_datagram_release_cb +ffffffff81741150 T __ip6_datagram_connect +ffffffff81741480 T ip6_datagram_connect +ffffffff817414c0 T ip6_datagram_connect_v6_only +ffffffff817414d0 T ipv6_icmp_error +ffffffff81741600 T ipv6_local_error +ffffffff81741750 T ipv6_local_rxpmtu +ffffffff81741870 T ipv6_recv_rxpmtu +ffffffff81741a20 T ip6_datagram_recv_common_ctl +ffffffff81741ad0 T ip6_datagram_recv_specific_ctl +ffffffff81741fe0 T ipv6_recv_error +ffffffff81742390 T ip6_datagram_recv_ctl +ffffffff817423c0 T ip6_datagram_send_ctl +ffffffff81742810 T ip6_dgram_sock_seq_show +ffffffff817428f0 t ip6fl_seq_start +ffffffff817429e0 t ip6fl_seq_next +ffffffff81742aa0 t ip6fl_seq_stop +ffffffff81742ac0 t fl_release +ffffffff81742b60 t fl_free +ffffffff81742ba0 t ip6_fl_gc +ffffffff81742c80 t fl_lookup +ffffffff81742d00 t ip6_flowlabel_net_exit +ffffffff81742d90 t ip6_flowlabel_proc_init +ffffffff81742dc0 t ip6fl_seq_release +ffffffff81742df0 t ip6fl_seq_show +ffffffff81742f10 t ip6fl_seq_open +ffffffff81742f70 t fl6_renew +ffffffff81743060 t fl_create +ffffffff817432a0 T fl6_sock_lookup +ffffffff81743330 T fl6_free_socklist +ffffffff817433c0 T fl6_merge_options +ffffffff81743440 T ipv6_flowlabel_opt_get +ffffffff817435c0 T ipv6_flowlabel_opt +ffffffff81743cd0 T ip6_flowlabel_init +ffffffff81743ce0 T ip6_flowlabel_cleanup +ffffffff81743d00 t inet6_csk_route_socket +ffffffff81743ee0 T inet6_csk_route_req +ffffffff81744000 T inet6_csk_addr2sockaddr +ffffffff81744060 T inet6_csk_xmit +ffffffff81744130 T inet6_csk_update_pmtu +ffffffff81744190 t udp6_gro_complete +ffffffff81744210 t udp6_gro_receive +ffffffff81744490 t udp6_ufo_fragment +ffffffff817446c0 T udpv6_offload_init +ffffffff817446e0 T udpv6_offload_exit +ffffffff81744700 t seg6_genl_sethmac +ffffffff81744710 t seg6_genl_dumphmac_start +ffffffff81744720 t seg6_net_exit +ffffffff81744740 t seg6_net_init +ffffffff817447b0 t seg6_genl_get_tunsrc +ffffffff817448b0 t seg6_genl_set_tunsrc +ffffffff81744930 t seg6_genl_dumphmac +ffffffff81744940 t seg6_genl_dumphmac_done +ffffffff81744950 T seg6_validate_srh +ffffffff817449c0 T seg6_exit +ffffffff817449e0 t fib6_dump +ffffffff817449f0 t fib6_seq_read +ffffffff81744a00 T call_fib6_notifier +ffffffff81744a10 T call_fib6_notifiers +ffffffff81744a20 T fib6_notifier_init +ffffffff81744a50 T fib6_notifier_exit +ffffffff81744a60 t ipv6_sysctl_net_exit +ffffffff81744ad0 t ipv6_sysctl_net_init +ffffffff81744c80 T ipv6_sysctl_register +ffffffff81744ce0 T ipv6_sysctl_unregister +ffffffff81744d00 t nf_ip6_route +ffffffff81744d40 T nf_ip6_checksum +ffffffff81744e40 t nf_ip6_checksum_partial +ffffffff81744f00 T ip6_route_me_harder +ffffffff817450d0 t nf_ip6_reroute +ffffffff81745130 T ipv6_netfilter_fini +ffffffff81745140 t snmp6_dev_seq_open +ffffffff81745160 t snmp6_seq_show_item +ffffffff817452a0 t snmp6_seq_show_icmpv6msg +ffffffff81745390 t ipv6_proc_exit_net +ffffffff817453d0 t snmp6_seq_open +ffffffff817453e0 t sockstat6_seq_open +ffffffff817453f0 t sockstat6_seq_show +ffffffff817454b0 t ipv6_proc_init_net +ffffffff81745560 t snmp6_seq_show_item64.isra.0.constprop.2 +ffffffff81745640 t snmp6_seq_show +ffffffff817456c0 t snmp6_dev_seq_show +ffffffff81745730 T snmp6_register_dev +ffffffff817457a0 T snmp6_unregister_dev +ffffffff817457f0 T ipv6_misc_proc_exit +ffffffff81745800 t ipv6_invert_tuple +ffffffff81745830 t ipv6_helper +ffffffff817458e0 t ipv6_confirm +ffffffff817459f0 t ipv6_conntrack_in +ffffffff81745a10 t ipv6_conntrack_local +ffffffff81745a20 t ipv6_hooks_unregister +ffffffff81745a90 t ipv6_hooks_register +ffffffff81745b10 t ipv6_pkt_to_tuple +ffffffff81745b90 t ipv6_get_l4proto +ffffffff81745c10 t ipv6_getorigdst +ffffffff81745dd0 t ipv6_net_exit +ffffffff81745df0 t ipv6_net_init +ffffffff81745e10 t icmpv6_invert_tuple +ffffffff81745e50 t icmpv6_get_timeouts +ffffffff81745e60 t icmpv6_new +ffffffff81745e80 t icmpv6_get_net_proto +ffffffff81745e90 t icmpv6_init_net +ffffffff81745ee0 t icmpv6_pkt_to_tuple +ffffffff81745f50 t icmpv6_packet +ffffffff81745f70 t icmpv6_error +ffffffff81746150 t defrag6_net_exit +ffffffff81746180 t ipv6_defrag +ffffffff817461e0 T nf_defrag_ipv6_enable +ffffffff81746240 t nf_hash_frag +ffffffff81746320 t nf_hashfn +ffffffff81746340 t nf_ct_net_exit +ffffffff81746380 t nf_ct_net_init +ffffffff81746470 t nf_ct_frag6_expire +ffffffff81746490 T nf_ct_frag6_gather +ffffffff81746ea0 T nf_ct_frag6_init +ffffffff81746f30 T nf_ct_frag6_cleanup +ffffffff81746f50 T nf_reject_ip6_tcphdr_get +ffffffff81747030 T nf_reject_ip6hdr_put +ffffffff817470d0 T nf_reject_ip6_tcphdr_put +ffffffff817471e0 T nf_send_reset6 +ffffffff817473b0 T nf_send_unreach6 +ffffffff81747490 t nft_do_chain_ipv6 +ffffffff81747520 t nf_route_table_hook +ffffffff817476a0 t nft_reject_ipv6_eval +ffffffff817476f0 t eafnosupport_ipv6_dst_lookup +ffffffff81747700 t in6_dev_finish_destroy_rcu +ffffffff81747730 T __ipv6_addr_type +ffffffff81747800 T register_inet6addr_notifier +ffffffff81747810 T unregister_inet6addr_notifier +ffffffff81747820 T inet6addr_notifier_call_chain +ffffffff81747840 T register_inet6addr_validator_notifier +ffffffff81747850 T unregister_inet6addr_validator_notifier +ffffffff81747860 T inet6addr_validator_notifier_call_chain +ffffffff81747880 T in6_dev_finish_destroy +ffffffff817478c0 T ipv6_ext_hdr +ffffffff817478e0 T ipv6_skip_exthdr +ffffffff81747a20 T ipv6_find_tlv +ffffffff81747aa0 T ipv6_find_hdr +ffffffff81747e30 T udp6_csum_init +ffffffff81748040 T udp6_set_csum +ffffffff81748140 T inet6_register_icmp_sender +ffffffff81748160 T inet6_unregister_icmp_sender +ffffffff81748190 T icmpv6_send +ffffffff817481e0 t dst_output +ffffffff81748200 t __ipv6_select_ident +ffffffff817482e0 T ipv6_proxy_select_ident +ffffffff817483e0 T ipv6_select_ident +ffffffff81748460 T ip6_find_1stfragopt +ffffffff817484f0 T ip6_dst_hoplimit +ffffffff81748550 T __ip6_local_out +ffffffff81748640 T ip6_local_out +ffffffff81748680 T inet6_add_protocol +ffffffff817486a0 T inet6_del_protocol +ffffffff817486d0 T inet6_add_offload +ffffffff817486f0 T inet6_del_offload +ffffffff81748720 t ip4ip6_gro_complete +ffffffff81748740 t ip4ip6_gro_receive +ffffffff81748760 t ipv6_gro_complete +ffffffff81748830 t ip6ip6_gro_complete +ffffffff81748850 t sit_gro_complete +ffffffff81748870 t ipv6_gso_pull_exthdrs +ffffffff81748950 t ipv6_gro_receive +ffffffff81748c90 t sit_ip6ip6_gro_receive +ffffffff81748cb0 t ipv6_gso_segment +ffffffff81748f90 t tcp6_gro_complete +ffffffff81748ff0 t tcp6_gro_receive +ffffffff817491a0 t tcp6_gso_segment +ffffffff81749290 T inet6_ehashfn +ffffffff81749410 t inet6_lhash2_lookup +ffffffff81749540 t __inet6_check_established +ffffffff817497b0 T __inet6_lookup_established +ffffffff81749980 T inet6_lookup_listener +ffffffff81749e70 T inet6_lookup +ffffffff81749f70 T inet6_hash_connect +ffffffff81749fb0 T inet6_hash +ffffffff81749ff0 t ipv6_mc_validate_checksum +ffffffff8174a110 T ipv6_mc_check_mld +ffffffff8174a3e0 t __packet_pick_tx_queue +ffffffff8174a400 t match_fanout_group +ffffffff8174a420 t packet_mm_open +ffffffff8174a440 t packet_mm_close +ffffffff8174a460 t packet_net_exit +ffffffff8174a480 t packet_net_init +ffffffff8174a4d0 t packet_seq_open +ffffffff8174a4f0 t packet_seq_show +ffffffff8174a5a0 t packet_seq_next +ffffffff8174a5c0 t packet_seq_stop +ffffffff8174a5d0 t packet_seq_start +ffffffff8174a600 t __unregister_prot_hook +ffffffff8174a6f0 t __fanout_link +ffffffff8174a750 t packet_rcv_spkt +ffffffff8174a880 t run_filter +ffffffff8174a8f0 t packet_rcv +ffffffff8174acc0 t packet_sock_destruct +ffffffff8174ad00 t tpacket_get_timestamp +ffffffff8174ad80 t prb_retire_current_block +ffffffff8174ae40 t prb_open_block +ffffffff8174af00 t prb_retire_rx_blk_timer_expired +ffffffff8174aff0 t packet_sendmsg_spkt +ffffffff8174b4a0 t packet_ioctl +ffffffff8174b5c0 t packet_getname_spkt +ffffffff8174b640 t packet_getname +ffffffff8174b750 t free_pg_vec +ffffffff8174b7d0 t __fanout_set_data_bpf +ffffffff8174b820 t packet_mmap +ffffffff8174b9f0 t packet_direct_xmit +ffffffff8174bc10 t packet_getsockopt +ffffffff8174bec0 t prb_fill_curr_block.isra.21 +ffffffff8174bf70 t packet_dev_mc +ffffffff8174bfe0 t packet_lookup_frame.isra.24 +ffffffff8174c040 t __tpacket_has_room +ffffffff8174c0a0 t __packet_rcv_has_room +ffffffff8174c170 t packet_rcv_has_room +ffffffff8174c1d0 t packet_recvmsg +ffffffff8174c630 t fanout_demux_rollover +ffffffff8174c7b0 t packet_rcv_fanout +ffffffff8174c950 t __packet_set_status.part.26 +ffffffff8174c960 t tpacket_destruct_skb +ffffffff8174ca70 t register_prot_hook.part.27 +ffffffff8174cab0 t packet_notifier +ffffffff8174cc90 t packet_do_bind +ffffffff8174cf00 t packet_bind_spkt +ffffffff8174cf50 t packet_bind +ffffffff8174cf90 t packet_create +ffffffff8174d220 t packet_read_pending.isra.30.part.31 +ffffffff8174d270 t packet_set_ring +ffffffff8174d900 t packet_release +ffffffff8174dc40 t packet_setsockopt +ffffffff8174e8f0 t packet_poll +ffffffff8174ea20 t packet_sendmsg +ffffffff817500c0 t tpacket_rcv +ffffffff81750aa7 t __packet_get_status.part.23 +ffffffff81750ab0 t bt_seq_stop +ffffffff81750ac0 t bt_seq_open +ffffffff81750b00 t bt_seq_show +ffffffff81750c10 t bt_seq_next +ffffffff81750c30 t bt_seq_start +ffffffff81750c60 T bt_sock_reclassify_lock +ffffffff81750cb0 t bt_sock_create +ffffffff81750d40 T bt_sock_register +ffffffff81750d90 T bt_sock_unregister +ffffffff81750dd0 T bt_sock_link +ffffffff81750e20 T bt_sock_unlink +ffffffff81750e80 T bt_accept_enqueue +ffffffff81750ef0 T bt_accept_unlink +ffffffff81750f50 T bt_accept_dequeue +ffffffff817510e0 T bt_sock_recvmsg +ffffffff81751230 T bt_sock_stream_recvmsg +ffffffff817516f0 T bt_sock_poll +ffffffff81751880 T bt_sock_ioctl +ffffffff81751970 T bt_sock_wait_state +ffffffff81751ab0 T bt_sock_wait_ready +ffffffff81751c10 T bt_procfs_init +ffffffff81751c40 T bt_procfs_cleanup +ffffffff81751c60 t hci_inq_req +ffffffff81751cb0 t hci_reset_req +ffffffff81751cd0 t hci_init4_req +ffffffff81751ef0 t hci_linkpol_req +ffffffff81751f20 t hci_scan_req +ffffffff81751f50 t hci_encrypt_req +ffffffff81751f80 t hci_auth_req +ffffffff81751fb0 t hci_dev_do_open +ffffffff81752480 t hci_init3_req +ffffffff817528c0 t hci_init2_req +ffffffff81752c00 t hci_init1_req +ffffffff81752d00 t hci_cmd_timeout +ffffffff81752d60 t hci_conn_params_free +ffffffff81752e60 t hci_chan_sent +ffffffff81753050 t hci_prio_recalculate +ffffffff81753150 t hci_low_sent +ffffffff81753290 t hci_link_tx_to +ffffffff81753320 t hci_send_frame +ffffffff817533c0 t hci_cmd_work +ffffffff817534a0 t hci_rx_work +ffffffff81753700 t hci_add_acl_hdr +ffffffff81753760 t hci_init0_req +ffffffff817537b0 t __check_timeout.part.2 +ffffffff817537e0 t hci_tx_work +ffffffff81753e00 T hci_dev_get +ffffffff81753e70 T hci_discovery_active +ffffffff81753e80 T hci_discovery_set_state +ffffffff81753ee0 T hci_inquiry_cache_flush +ffffffff81753f80 T hci_inquiry_cache_lookup +ffffffff81753fc0 T hci_inquiry_cache_lookup_unknown +ffffffff81754000 T hci_inquiry_cache_lookup_resolve +ffffffff81754080 T hci_inquiry_cache_update_resolve +ffffffff81754130 T hci_inquiry +ffffffff817543f0 T hci_dev_open +ffffffff81754490 T hci_dev_do_close +ffffffff817548d0 t hci_power_off +ffffffff817548e0 t hci_error_reset +ffffffff81754940 t hci_power_on +ffffffff81754b00 T hci_dev_close +ffffffff81754b70 T hci_dev_reset +ffffffff81754c90 T hci_dev_reset_stat +ffffffff81754d20 T hci_dev_cmd +ffffffff81754fb0 T hci_get_dev_list +ffffffff817550e0 T hci_get_dev_info +ffffffff81755280 T hci_uuids_clear +ffffffff817552f0 T hci_link_keys_clear +ffffffff81755340 T hci_smp_ltks_clear +ffffffff81755390 T hci_smp_irks_clear +ffffffff817553e0 T hci_find_link_key +ffffffff81755440 T hci_find_ltk +ffffffff817554d0 T hci_find_irk_by_rpa +ffffffff81755570 T hci_find_irk_by_addr +ffffffff81755600 T hci_add_link_key +ffffffff81755830 T hci_add_ltk +ffffffff81755930 T hci_add_irk +ffffffff817559e0 T hci_remove_link_key +ffffffff81755a20 T hci_remove_ltk +ffffffff81755ad0 T hci_remove_irk +ffffffff81755b60 T hci_bdaddr_is_paired +ffffffff81755c10 T hci_find_remote_oob_data +ffffffff81755c50 T hci_remove_remote_oob_data +ffffffff81755ca0 T hci_inquiry_cache_update +ffffffff81755e60 T hci_remote_oob_data_clear +ffffffff81755ed0 T hci_add_remote_oob_data +ffffffff81756070 T hci_find_adv_instance +ffffffff817560a0 T hci_get_next_instance +ffffffff817560f0 T hci_remove_adv_instance +ffffffff817561a0 T hci_adv_instances_clear +ffffffff81756240 T hci_add_adv_instance +ffffffff81756460 T hci_bdaddr_list_lookup +ffffffff817564a0 T hci_bdaddr_list_clear +ffffffff81756500 T hci_bdaddr_list_add +ffffffff817565a0 T hci_bdaddr_list_del +ffffffff81756620 T hci_conn_params_lookup +ffffffff81756660 T hci_pend_le_action_lookup +ffffffff817566a0 T hci_conn_params_add +ffffffff81756780 T hci_conn_params_del +ffffffff817567c0 T hci_conn_params_clear_disabled +ffffffff81756850 T hci_copy_identity_address +ffffffff817568f0 T hci_alloc_dev +ffffffff81756d70 T hci_free_dev +ffffffff81756d80 T hci_register_dev +ffffffff81756fe0 T hci_unregister_dev +ffffffff81757200 T hci_suspend_dev +ffffffff81757210 T hci_resume_dev +ffffffff81757220 T hci_recv_frame +ffffffff817572b0 T hci_reset_dev +ffffffff81757320 T hci_recv_diag +ffffffff81757370 T hci_set_hw_info +ffffffff817573e0 T hci_set_fw_info +ffffffff81757450 T hci_register_cb +ffffffff81757490 T hci_unregister_cb +ffffffff817574e0 T hci_send_cmd +ffffffff81757540 T hci_sent_cmd_data +ffffffff81757570 T hci_cmd_sync +ffffffff817575e0 T hci_send_acl +ffffffff81757740 T hci_send_sco +ffffffff817577d0 T hci_req_cmd_complete +ffffffff81757980 t get_link_mode +ffffffff817579e0 t hci_conn_idle +ffffffff81757ac0 t hci_conn_auto_accept +ffffffff81757ae0 t hci_connect_le_scan_cleanup +ffffffff81757c10 t hci_conn_timeout +ffffffff81757cd0 t hci_acl_create_connection +ffffffff81757de0 T hci_disconnect +ffffffff81757e50 T hci_setup_sync +ffffffff81757f50 T hci_le_conn_update +ffffffff81758070 T hci_le_start_enc +ffffffff81758140 T hci_conn_add +ffffffff817584d0 T hci_get_route +ffffffff81758650 T hci_connect_le_scan +ffffffff81758890 T hci_connect_acl +ffffffff81758990 T hci_conn_check_link_mode +ffffffff81758a10 T hci_conn_security +ffffffff81758bf0 T hci_conn_check_secure +ffffffff81758c10 T hci_conn_switch_role +ffffffff81758c80 T hci_conn_enter_active_mode +ffffffff81758d10 T hci_conn_check_pending +ffffffff81758d90 T hci_get_conn_list +ffffffff81758f30 T hci_get_conn_info +ffffffff81759070 T hci_get_auth_info +ffffffff81759150 T hci_chan_create +ffffffff817591e0 T hci_chan_del +ffffffff81759240 t hci_conn_cleanup +ffffffff81759360 t le_scan_cleanup +ffffffff81759400 T hci_conn_del +ffffffff81759570 T hci_sco_setup +ffffffff81759670 T hci_connect_sco +ffffffff81759850 T hci_le_conn_failed +ffffffff81759a40 t le_conn_timeout +ffffffff81759aa0 t create_le_conn_complete +ffffffff81759ba0 T hci_connect_le +ffffffff8175a0e0 T hci_conn_hash_flush +ffffffff8175a1a0 T hci_chan_list_flush +ffffffff8175a1e0 T hci_chan_lookup_handle +ffffffff8175a240 t hci_resolve_name +ffffffff8175a290 t has_pending_adv_report +ffffffff8175a2c0 t hci_check_pending_name +ffffffff8175a420 t process_adv_report +ffffffff8175aa80 t hci_outgoing_auth_needed.isra.26.part.27 +ffffffff8175aad0 t hci_cmd_status_evt +ffffffff8175bc10 t conn_set_key.part.29 +ffffffff8175bc50 t hci_conn_complete_evt.isra.51 +ffffffff8175c000 t hci_conn_request_evt.isra.56 +ffffffff8175c340 t read_enc_key_size_complete +ffffffff8175c5a0 t hci_auth_complete_evt.isra.60 +ffffffff8175ca50 t hci_key_refresh_complete_evt.isra.65 +ffffffff8175cdd0 t hci_encrypt_change_evt.isra.66 +ffffffff8175d240 t hci_cmd_complete_evt +ffffffff8175f2f0 t hci_remote_oob_data_request_evt.isra.104 +ffffffff8175f4a0 t hci_le_meta_evt +ffffffff817602c0 T hci_event_packet +ffffffff81763150 t get_supported_settings +ffffffff817631d0 t enable_advertising_instance +ffffffff817631e0 t get_missing_options +ffffffff81763230 t new_options +ffffffff81763270 t get_current_settings +ffffffff817633f0 t new_settings +ffffffff81763430 t eir_has_uuids +ffffffff81763670 t cmd_status_rsp +ffffffff817636a0 t cmd_complete_rsp +ffffffff817636c0 t unpair_device_rsp +ffffffff81763730 t disconnect_rsp +ffffffff81763770 t pairing_complete_cb +ffffffff817637e0 t send_settings_rsp +ffffffff81763820 t sc_enable_complete +ffffffff81763920 t set_bredr_complete +ffffffff817639c0 t fast_connectable_complete +ffffffff81763a80 t generic_cmd_complete +ffffffff81763aa0 t remove_advertising_complete +ffffffff81763b10 t service_discovery_cmd_complete +ffffffff81763b40 t addr_cmd_complete +ffffffff81763b70 t cancel_pair_device +ffffffff81763c60 t mgmt_class_complete +ffffffff81763ce0 t remove_uuid_complete +ffffffff81763cf0 t add_uuid_complete +ffffffff81763d00 t set_class_complete +ffffffff81763d10 t read_version +ffffffff81763d50 t settings_rsp +ffffffff81763dc0 t read_config_info +ffffffff81763e50 t read_local_oob_data_complete +ffffffff81763fe0 t append_eir_data_to_buf +ffffffff81764200 t ext_info_changed +ffffffff81764270 t read_controller_info +ffffffff81764370 t clear_eir +ffffffff81764410 t mgmt_init_hdev +ffffffff817644d0 t rpa_expired +ffffffff81764520 t service_cache_off +ffffffff81764580 t adv_expire +ffffffff81764610 t set_name_complete +ffffffff817646c0 t read_ext_controller_info +ffffffff817647a0 t set_secure_conn +ffffffff81764a30 t set_discoverable +ffffffff81764d70 t stop_discovery +ffffffff81764e60 t set_le +ffffffff81765140 t remove_advertising +ffffffff81765330 t add_advertising_complete +ffffffff817654a0 t read_local_oob_ext_data_complete +ffffffff81765820 t read_ext_index_list +ffffffff817659c0 t read_unconf_index_list +ffffffff81765b20 t add_uuid +ffffffff81765ce0 t read_index_list +ffffffff81765e40 t read_local_oob_data +ffffffff81765f90 t set_advertising_complete +ffffffff81766120 t load_conn_param +ffffffff81766340 t remove_device +ffffffff817666c0 t add_device +ffffffff81766a30 t get_clock_info_complete +ffffffff81766b10 t conn_info_refresh_complete +ffffffff81766c30 t conn_info_cmd_complete +ffffffff81766d50 t clock_info_cmd_complete +ffffffff81766ef0 t get_clock_info +ffffffff817671b0 t get_conn_info +ffffffff81767570 t load_irks +ffffffff81767710 t pin_code_reply +ffffffff81767940 t set_scan_params +ffffffff81767a60 t le_enable_complete +ffffffff81767b80 t confirm_name +ffffffff81767c90 t user_pairing_resp +ffffffff81767f00 t user_passkey_neg_reply +ffffffff81767f20 t user_passkey_reply +ffffffff81767f40 t user_confirm_neg_reply +ffffffff81767f60 t pin_code_neg_reply +ffffffff81767f80 t unpair_device +ffffffff817682d0 t pair_device +ffffffff817686f0 t disconnect +ffffffff81768940 t load_long_term_keys +ffffffff81768b30 t load_link_keys +ffffffff81768d00 t remove_uuid +ffffffff81768f80 t set_local_name +ffffffff817691d0 t read_commands +ffffffff81769340 t is_configured +ffffffff81769390 t mgmt_bredr_support.part.1 +ffffffff817693b0 t mgmt_le_support.part.2 +ffffffff817693d0 t link_to_bdaddr.part.3 +ffffffff817693e0 t pairing_complete +ffffffff817694f0 t get_connections +ffffffff81769680 t discovery_type_is_valid +ffffffff817696f0 t start_discovery_internal +ffffffff817698c0 t start_limited_discovery +ffffffff817698e0 t start_discovery +ffffffff81769900 t start_service_discovery +ffffffff81769bb0 t sk_lookup +ffffffff81769bd0 t set_static_address +ffffffff81769cf0 t set_hs +ffffffff81769e50 t set_bondable +ffffffff81769f40 t set_io_capability +ffffffff81769fb0 t le_pairing_complete_cb +ffffffff8176a020 t set_privacy +ffffffff8176a190 t clean_up_hci_complete +ffffffff8176a1e0 t set_device_id +ffffffff8176a2b0 t set_appearance +ffffffff8176a350 t set_connectable +ffffffff8176a560 t tlv_data_max_len.part.20 +ffffffff8176a5a0 t get_adv_size_info +ffffffff8176a670 t add_advertising +ffffffff8176aa30 t read_adv_features +ffffffff8176ab30 t unblock_device +ffffffff8176abe0 t block_device +ffffffff8176ac90 t set_debug_keys +ffffffff8176adc0 t set_ssp +ffffffff8176afd0 t set_link_security +ffffffff8176b190 t set_fast_connectable +ffffffff8176b360 t set_bredr +ffffffff8176b5f0 t set_advertising +ffffffff8176b8c0 t remove_remote_oob_data +ffffffff8176b980 t add_remote_oob_data +ffffffff8176bb90 t user_confirm_reply +ffffffff8176bbc0 t set_dev_class +ffffffff8176bd90 t set_powered +ffffffff8176bfe0 t user_pairing_resp_complete.constprop.38 +ffffffff8176c040 T mgmt_fill_version_info +ffffffff8176c050 T mgmt_get_adv_discov_flags +ffffffff8176c0b0 t read_local_oob_ext_data +ffffffff8176c630 T mgmt_get_connectable +ffffffff8176c670 T mgmt_advertising_added +ffffffff8176c6a0 T mgmt_advertising_removed +ffffffff8176c6d0 T mgmt_new_settings +ffffffff8176c6e0 T mgmt_set_discoverable_complete +ffffffff8176c7d0 T mgmt_set_connectable_complete +ffffffff8176c860 T mgmt_smp_complete +ffffffff8176c8c0 T mgmt_start_discovery_complete +ffffffff8176c970 T mgmt_stop_discovery_complete +ffffffff8176c9e0 T mgmt_index_added +ffffffff8176caa0 T mgmt_index_removed +ffffffff8176cb70 t set_public_address +ffffffff8176cd30 t set_external_config +ffffffff8176cef0 T mgmt_power_on +ffffffff8176d030 T __mgmt_power_off +ffffffff8176d130 T mgmt_set_powered_failed +ffffffff8176d190 T mgmt_new_link_key +ffffffff8176d200 T mgmt_new_ltk +ffffffff8176d450 T mgmt_new_irk +ffffffff8176d4c0 T mgmt_new_csrk +ffffffff8176d540 T mgmt_new_conn_param +ffffffff8176d5d0 T mgmt_device_connected +ffffffff8176d7e0 T mgmt_powering_down +ffffffff8176d810 T mgmt_device_disconnected +ffffffff8176d960 T mgmt_disconnect_failed +ffffffff8176da10 T mgmt_connect_failed +ffffffff8176daf0 T mgmt_pin_code_request +ffffffff8176db40 T mgmt_pin_code_reply_complete +ffffffff8176db90 T mgmt_pin_code_neg_reply_complete +ffffffff8176dbe0 T mgmt_user_confirm_request +ffffffff8176dc40 T mgmt_user_passkey_request +ffffffff8176dc90 T mgmt_user_confirm_reply_complete +ffffffff8176dca0 T mgmt_user_confirm_neg_reply_complete +ffffffff8176dcb0 T mgmt_user_passkey_reply_complete +ffffffff8176dcc0 T mgmt_user_passkey_neg_reply_complete +ffffffff8176dcd0 T mgmt_user_passkey_notify +ffffffff8176dd30 T mgmt_auth_failed +ffffffff8176de20 T mgmt_auth_enable_complete +ffffffff8176df00 T mgmt_ssp_enable_complete +ffffffff8176e0c0 T mgmt_set_class_of_dev_complete +ffffffff8176e1f0 T mgmt_set_local_name_complete +ffffffff8176e360 T mgmt_device_found +ffffffff8176e8c0 T mgmt_remote_name +ffffffff8176e9c0 T mgmt_discovering +ffffffff8176ea00 T mgmt_init +ffffffff8176ea10 T mgmt_exit +ffffffff8176ea1c t tlv_data_is_valid +ffffffff8176eae0 t __hci_send_to_channel +ffffffff8176eb80 t create_monitor_event +ffffffff8176ed60 t hci_mgmt_chan_find +ffffffff8176edc0 t hci_sock_create +ffffffff8176ee50 t hci_sock_recvmsg +ffffffff8176f050 t hci_sock_getname +ffffffff8176f0c0 t hci_sock_getsockopt +ffffffff8176f1e0 t hci_sock_setsockopt +ffffffff8176f390 t create_monitor_ctrl_open +ffffffff8176f550 t send_monitor_note +ffffffff8176f670 t create_monitor_ctrl_close +ffffffff8176f740 t hci_sock_gen_cookie.part.1 +ffffffff8176f790 T hci_sock_set_flag +ffffffff8176f7a0 T hci_sock_clear_flag +ffffffff8176f7b0 T hci_sock_test_flag +ffffffff8176f7d0 T hci_sock_get_channel +ffffffff8176f7e0 T hci_sock_get_cookie +ffffffff8176f7f0 T hci_send_to_sock +ffffffff8176f9a0 T hci_send_to_channel +ffffffff8176f9e0 t hci_sock_sendmsg +ffffffff81770340 t hci_sock_ioctl +ffffffff817706e0 t hci_sock_bind +ffffffff81770ce0 t hci_sock_release +ffffffff81770e40 T hci_send_to_monitor +ffffffff81770f30 T hci_send_monitor_ctrl_event +ffffffff817710e0 T hci_sock_dev_event +ffffffff81771260 T hci_mgmt_chan_register +ffffffff817712f0 T hci_mgmt_chan_unregister +ffffffff81771340 T hci_sock_cleanup +ffffffff81771370 t bt_link_release +ffffffff81771380 t bt_host_release +ffffffff81771390 t __match_tty +ffffffff817713c0 T hci_conn_init_sysfs +ffffffff81771400 T hci_conn_add_sysfs +ffffffff81771460 T hci_conn_del_sysfs +ffffffff817714d0 T hci_init_sysfs +ffffffff81771500 T bt_sysfs_cleanup +ffffffff81771510 t __pack_extended_control +ffffffff81771570 t __pack_enhanced_control +ffffffff817715c0 t l2cap_classify_txseq +ffffffff81771760 t __l2cap_global_chan_by_addr +ffffffff817717b0 t l2cap_get_ident +ffffffff81771810 t l2cap_get_chan_by_scid +ffffffff817718a0 t l2cap_get_chan_by_dcid +ffffffff81771930 t l2cap_seq_list_init +ffffffff817719b0 t l2cap_do_send +ffffffff81771a40 t l2cap_send_cmd +ffffffff81771c20 t l2cap_send_efs_conf_rsp +ffffffff81771c60 t l2cap_send_move_chan_cfm_icid +ffffffff81771ca0 t l2cap_request_info +ffffffff81771d10 t l2cap_add_conf_opt +ffffffff81771de0 t l2cap_add_opt_efs +ffffffff81771e70 t l2cap_build_conf_req +ffffffff817722d0 t l2cap_conn_update_id_addr +ffffffff81772370 t l2cap_le_flowctl_send +ffffffff817723c0 t l2cap_reassemble_sdu +ffffffff817725f0 t l2cap_seq_list_clear.part.1 +ffffffff81772620 t l2cap_conn_add.part.15 +ffffffff81772860 t l2cap_conn_unreliable.constprop.34 +ffffffff817728e0 T l2cap_add_psm +ffffffff817729a0 T l2cap_add_scid +ffffffff817729e0 T l2cap_chan_create +ffffffff81772ad0 T l2cap_chan_hold +ffffffff81772ae0 t __set_retrans_timer.part.0 +ffffffff81772b40 t l2cap_ertm_send +ffffffff81772d50 t l2cap_do_move_cancel +ffffffff81772db0 t l2cap_send_move_chan_cfm +ffffffff81772e30 t l2cap_send_move_chan_req +ffffffff81772eb0 t l2cap_global_chan_by_psm +ffffffff81773060 t l2cap_global_fixed_chan +ffffffff81773180 T l2cap_chan_put +ffffffff817731f0 t __set_monitor_timer +ffffffff81773270 t l2cap_chan_ready.part.4 +ffffffff817732f0 t l2cap_le_start +ffffffff817733a0 t l2cap_move_setup.part.8 +ffffffff817734b0 t l2cap_send_disconn_req +ffffffff817735b0 t l2cap_ertm_resend +ffffffff817737d0 t l2cap_retransmit_all +ffffffff817738e0 t l2cap_retransmit.isra.19 +ffffffff81773950 t l2cap_send_sframe +ffffffff81773b20 t l2cap_send_rr_or_rnr +ffffffff81773b80 t l2cap_send_srej +ffffffff81773cc0 t l2cap_send_srej_tail +ffffffff81773d10 t l2cap_send_i_or_rr_or_rnr +ffffffff81773dd0 t l2cap_send_ack +ffffffff81773f30 t l2cap_process_reqseq +ffffffff81774010 t l2cap_tx +ffffffff81774320 t l2cap_move_done +ffffffff81774370 t l2cap_handle_rej +ffffffff81774430 t l2cap_handle_srej +ffffffff81774530 t l2cap_rx_state_recv +ffffffff817747d0 t l2cap_rx +ffffffff81774ed0 t l2cap_ack_timeout +ffffffff81774f40 t l2cap_monitor_timeout +ffffffff81774f90 t l2cap_retrans_timeout +ffffffff81774fe0 T l2cap_chan_set_defaults +ffffffff81775050 T __l2cap_chan_add +ffffffff817751c0 T l2cap_chan_add +ffffffff817751f0 T l2cap_chan_del +ffffffff81775430 T l2cap_chan_close +ffffffff81775610 t l2cap_chan_timeout +ffffffff817756b0 T l2cap_chan_check_security +ffffffff81775790 t l2cap_connect +ffffffff81775c50 T l2cap_send_conn_req +ffffffff81775cb0 t l2cap_do_create +ffffffff81775e20 t l2cap_start_connection +ffffffff81775ec0 t l2cap_conn_start +ffffffff81776130 t l2cap_info_timeout +ffffffff81776150 t l2cap_do_start +ffffffff817761b0 t l2cap_security_cfm +ffffffff81776590 T l2cap_register_user +ffffffff81776620 T l2cap_unregister_user +ffffffff81776680 T l2cap_conn_get +ffffffff817766a0 T l2cap_conn_put +ffffffff817766d0 t l2cap_conn_del.isra.24 +ffffffff817768a0 t l2cap_disconn_cfm +ffffffff817768d0 t l2cap_connect_cfm +ffffffff81776c40 T l2cap_chan_send +ffffffff81777b40 T l2cap_ertm_init +ffffffff81777d00 t l2cap_recv_frame +ffffffff8177b080 t process_pending_rx +ffffffff8177b0b0 T __l2cap_le_connect_rsp_defer +ffffffff8177b110 T __l2cap_connect_rsp_defer +ffffffff8177b1c0 T l2cap_logical_cfm +ffffffff8177b3f0 T l2cap_move_start +ffffffff8177b450 T __l2cap_physical_cfm +ffffffff8177b530 T l2cap_chan_busy +ffffffff8177b550 T l2cap_chan_connect +ffffffff8177bc80 T l2cap_connect_ind +ffffffff8177bd90 T l2cap_disconn_ind +ffffffff8177bdb0 T l2cap_recv_acldata +ffffffff8177c000 T l2cap_exit +ffffffff8177c011 t l2cap_parse_conf_rsp.constprop.30 +ffffffff8177c310 t l2cap_sock_state_change_cb +ffffffff8177c330 t l2cap_sock_resume_cb +ffffffff8177c370 t l2cap_sock_get_sndtimeo_cb +ffffffff8177c380 t l2cap_sock_suspend_cb +ffffffff8177c3a0 t l2cap_sock_listen +ffffffff8177c450 t l2cap_sock_set_shutdown_cb +ffffffff8177c480 t l2cap_sock_defer_cb +ffffffff8177c4c0 t l2cap_sock_ready_cb +ffffffff8177c510 t l2cap_sock_recvmsg +ffffffff8177c660 t l2cap_sock_sendmsg +ffffffff8177c710 t l2cap_sock_getname +ffffffff8177c7e0 t l2cap_skb_msg_name +ffffffff8177c820 t l2cap_sock_accept +ffffffff8177c990 t l2cap_sock_connect +ffffffff8177cbb0 t l2cap_sock_bind +ffffffff8177ce50 t l2cap_sock_destruct +ffffffff8177cea0 t l2cap_sock_init +ffffffff8177d020 t l2cap_sock_alloc_skb_cb +ffffffff8177d120 t l2cap_sock_recv_cb +ffffffff8177d1c0 t l2cap_sock_setsockopt +ffffffff8177d710 t l2cap_sock_getsockopt +ffffffff8177dac0 t l2cap_sock_kill.part.2 +ffffffff8177daf0 t l2cap_sock_close_cb +ffffffff8177db10 t l2cap_sock_teardown_cb +ffffffff8177dc50 t l2cap_sock_shutdown +ffffffff8177df70 t l2cap_sock_release +ffffffff8177e000 t l2cap_sock_alloc.constprop.4 +ffffffff8177e0b0 t l2cap_sock_new_connection_cb +ffffffff8177e130 t l2cap_sock_create +ffffffff8177e1d0 T l2cap_is_socket +ffffffff8177e1f0 T l2cap_cleanup_sockets +ffffffff8177e220 t l2cap_chan_no_new_connection +ffffffff8177e230 t l2cap_chan_no_recv +ffffffff8177e240 t l2cap_chan_no_alloc_skb +ffffffff8177e250 t l2cap_chan_no_teardown +ffffffff8177e260 t l2cap_chan_no_close +ffffffff8177e270 t l2cap_chan_no_state_change +ffffffff8177e280 t l2cap_chan_no_get_sndtimeo +ffffffff8177e290 t smp_new_conn_cb +ffffffff8177e2e0 t aes_cmac +ffffffff8177e430 t smp_f4 +ffffffff8177e4a0 t sc_mackey_and_ltk +ffffffff8177e630 t smp_f6 +ffffffff8177e6e0 t smp_g2 +ffffffff8177e780 t smp_send_cmd +ffffffff8177e870 t sc_passkey_send_confirm +ffffffff8177e920 t sc_dhkey_check +ffffffff8177ea50 t sc_passkey_round +ffffffff8177ec00 t sc_send_public_key +ffffffff8177edd0 t sc_add_ltk +ffffffff8177ee30 t smp_ltk_encrypt +ffffffff8177eed0 t smp_timeout +ffffffff8177eef0 t smp_chan_create +ffffffff8177f050 t build_pairing_cmd +ffffffff8177f270 t smp_add_cid +ffffffff8177f4a0 t smp_alloc_skb_cb +ffffffff8177f4f0 t smp_del_chan +ffffffff8177f550 t smp_allow_key_dist +ffffffff8177f580 t build_bredr_pairing_cmd.isra.3 +ffffffff8177f620 t smp_e +ffffffff8177f710 t smp_ah +ffffffff8177f780 t smp_c1 +ffffffff8177f890 t smp_confirm +ffffffff8177f950 t smp_chan_destroy.isra.6 +ffffffff8177fbd0 t smp_distribute_keys +ffffffff81780360 t smp_teardown_cb +ffffffff817803a0 t smp_failure +ffffffff81780410 t bredr_pairing.isra.9 +ffffffff81780520 t smp_resume_cb +ffffffff81780570 t smp_ready_cb +ffffffff817805a0 t smp_sufficient_security.part.17 +ffffffff817805f0 t l2cap_chan_no_resume +ffffffff81780600 t l2cap_chan_no_set_shutdown +ffffffff81780610 t l2cap_chan_no_ready +ffffffff81780620 t l2cap_chan_no_defer +ffffffff81780630 t l2cap_chan_no_suspend +ffffffff81780640 t tk_request.constprop.21 +ffffffff81780830 t smp_recv_cb +ffffffff81782020 T smp_irk_matches +ffffffff81782080 T smp_generate_rpa +ffffffff81782100 T smp_generate_oob +ffffffff81782250 T smp_user_confirm_reply +ffffffff81782450 T smp_sufficient_security +ffffffff81782470 T smp_conn_security +ffffffff81782650 T smp_cancel_pairing +ffffffff817826d0 T smp_register +ffffffff817827a0 T smp_unregister +ffffffff817827e0 T baswap +ffffffff81782800 T bt_to_errno +ffffffff81782820 T bt_info +ffffffff81782880 T bt_warn +ffffffff817828e0 T bt_err +ffffffff81782940 T bt_err_ratelimited +ffffffff817829c0 t ecdh_complete +ffffffff817829e0 T compute_ecdh_secret +ffffffff81782bb0 T set_ecdh_privkey +ffffffff81782cc0 T generate_ecdh_public_key +ffffffff81782e30 T generate_ecdh_keys +ffffffff81782e60 t adv_enable_complete +ffffffff81782e70 t req_run +ffffffff81782f60 t hci_req_sync_complete +ffffffff81782fc0 t get_adv_instance_flags +ffffffff81783020 t append_local_name.part.6 +ffffffff81783240 t abort_conn_complete +ffffffff81783250 T hci_req_init +ffffffff81783270 T hci_req_purge +ffffffff81783280 T hci_req_run +ffffffff81783290 T hci_req_run_skb +ffffffff817832a0 T hci_req_sync_cancel +ffffffff817832e0 T __hci_req_sync +ffffffff817834e0 T hci_req_sync +ffffffff81783550 t le_scan_restart_work +ffffffff81783620 t le_scan_disable_work +ffffffff81783730 t discov_off +ffffffff81783790 t discoverable_update_work +ffffffff817837d0 t connectable_update_work +ffffffff81783810 t scan_update_work +ffffffff81783830 t bg_scan_update +ffffffff817838e0 t discov_update +ffffffff81783ac0 T hci_prepare_cmd +ffffffff81783b40 T hci_req_add_ev +ffffffff81783bb0 T __hci_cmd_sync_ev +ffffffff81783d90 T __hci_cmd_sync +ffffffff81783da0 t set_random_addr +ffffffff81783e50 t bredr_inquiry +ffffffff81783ee0 T hci_req_add +ffffffff81783ef0 T __hci_req_write_fast_connectable +ffffffff81783fb0 T __hci_req_update_name +ffffffff81783ff0 T __hci_req_update_eir +ffffffff81784430 T hci_req_add_le_scan_disable +ffffffff81784460 t le_scan_restart +ffffffff817844b0 t le_scan_disable +ffffffff817844c0 T __hci_req_disable_advertising +ffffffff817844f0 T append_local_name +ffffffff81784510 T __hci_req_update_scan_rsp_data +ffffffff817846e0 T __hci_req_update_adv_data +ffffffff817848f0 T hci_req_update_adv_data +ffffffff81784940 T hci_update_random_address +ffffffff81784b10 T hci_req_add_le_passive_scan +ffffffff81784e30 t __hci_update_background_scan +ffffffff81784fe0 t update_bg_scan +ffffffff81785010 T __hci_req_enable_advertising +ffffffff817852d0 T __hci_req_schedule_adv_instance +ffffffff81785400 T hci_req_clear_adv_instance +ffffffff81785600 t adv_timeout_expire +ffffffff817856c0 T hci_req_reenable_advertising +ffffffff81785760 t active_scan +ffffffff81785920 t interleaved_discov +ffffffff81785940 T __hci_req_update_scan +ffffffff81785ab0 t connectable_update +ffffffff81785b30 t update_scan +ffffffff81785b60 T __hci_req_update_class +ffffffff81785c30 t powered_update_hci +ffffffff81785e60 t discoverable_update +ffffffff81785f60 T __hci_abort_conn +ffffffff817860d0 T hci_abort_conn +ffffffff81786160 T hci_req_stop_discovery +ffffffff81786260 t stop_discovery +ffffffff81786290 T __hci_req_hci_power_on +ffffffff817862c0 T hci_request_setup +ffffffff817864a0 T hci_request_cancel_all +ffffffff81786560 t create_monitor_ctrl_event +ffffffff81786630 T mgmt_send_event +ffffffff81786740 T mgmt_cmd_status +ffffffff81786860 T mgmt_cmd_complete +ffffffff817869c0 T mgmt_pending_find +ffffffff81786a10 T mgmt_pending_find_data +ffffffff81786a40 T mgmt_pending_foreach +ffffffff81786aa0 T mgmt_pending_add +ffffffff81786b50 T mgmt_pending_free +ffffffff81786b80 T mgmt_pending_remove +ffffffff81786bb0 t sco_chan_del +ffffffff81786ca0 t sco_conn_add +ffffffff81786d00 t sco_sock_destruct +ffffffff81786d20 t sco_sock_getname +ffffffff81786d70 t sco_sock_bind +ffffffff81786df0 t sco_sock_listen +ffffffff81786ee0 t sco_sock_recvmsg +ffffffff81787030 t sco_sock_sendmsg +ffffffff817871c0 t sco_sock_setsockopt +ffffffff817872c0 t sco_sock_accept +ffffffff81787430 t sco_sock_connect +ffffffff81787750 t sco_sock_kill.part.0 +ffffffff81787790 t sco_sock_timeout +ffffffff81787810 t sco_conn_del.isra.1 +ffffffff817878e0 t sco_disconn_cfm +ffffffff81787910 t sco_sock_getsockopt +ffffffff81787b00 t sco_sock_close +ffffffff81787b50 t __sco_sock_close +ffffffff81787ce0 t sco_sock_shutdown +ffffffff81787d90 t sco_sock_release +ffffffff81787e60 t sco_sock_alloc.constprop.7 +ffffffff81787f10 t sco_connect_cfm +ffffffff81788160 t sco_sock_create +ffffffff81788190 T sco_connect_ind +ffffffff81788250 T sco_recv_scodata +ffffffff817882b0 T sco_exit +ffffffff817882f0 t l2cap_chan_no_new_connection +ffffffff81788300 t l2cap_chan_no_teardown +ffffffff81788310 t l2cap_chan_no_ready +ffffffff81788320 t l2cap_chan_no_get_sndtimeo +ffffffff81788330 t amp_mgr_create +ffffffff817884d0 t a2mp_chan_alloc_skb_cb +ffffffff81788510 t a2mp_chan_close_cb +ffffffff81788520 t a2mp_send +ffffffff817885e0 t l2cap_chan_no_resume +ffffffff817885f0 t l2cap_chan_no_set_shutdown +ffffffff81788600 t l2cap_chan_no_defer +ffffffff81788610 T amp_mgr_get +ffffffff81788620 t amp_mgr_lookup_by_state +ffffffff81788690 T amp_mgr_put +ffffffff81788700 t a2mp_chan_state_change_cb +ffffffff81788720 T a2mp_channel_create +ffffffff81788750 T a2mp_send_getinfo_rsp +ffffffff817887f0 t a2mp_chan_recv_cb +ffffffff81789250 t read_local_amp_info_complete +ffffffff81789260 T a2mp_send_getampassoc_rsp +ffffffff81789330 T a2mp_send_create_phy_link_req +ffffffff81789410 T a2mp_send_create_phy_link_rsp +ffffffff817894c0 T a2mp_discover_amp +ffffffff81789520 t hmac_sha256.constprop.3 +ffffffff817895d0 T amp_ctrl_get +ffffffff817895e0 T amp_ctrl_put +ffffffff81789610 T amp_ctrl_add +ffffffff81789680 T amp_ctrl_list_flush +ffffffff81789700 T amp_ctrl_lookup +ffffffff81789780 t amp_write_rem_assoc_frag +ffffffff81789960 T phylink_add +ffffffff817899e0 T phylink_gen_key +ffffffff81789af0 T amp_read_loc_assoc_frag +ffffffff81789b70 t read_local_amp_assoc_complete +ffffffff81789c10 T amp_read_loc_assoc +ffffffff81789cc0 T amp_read_loc_assoc_final_data +ffffffff81789d50 T amp_write_rem_assoc_continue +ffffffff81789dc0 t write_remote_amp_assoc_complete +ffffffff81789de0 T amp_write_remote_assoc +ffffffff81789e50 t create_phylink_complete +ffffffff81789f00 t accept_phylink_complete +ffffffff81789f30 T amp_create_phylink +ffffffff81789fb0 T amp_accept_phylink +ffffffff8178a030 T amp_physical_cfm +ffffffff8178a0e0 T amp_create_logical_link +ffffffff8178a1f0 T amp_disconnect_logical_link +ffffffff8178a230 T amp_destroy_logical_link +ffffffff8178a240 t rfcomm_apply_pn +ffffffff8178a2c0 t rfcomm_l2state_change +ffffffff8178a2e0 t rfcomm_l2data_ready +ffffffff8178a2f0 t rfcomm_session_timeout +ffffffff8178a310 t rfcomm_session_add +ffffffff8178a3a0 t rfcomm_session_get +ffffffff8178a440 t rfcomm_session_del +ffffffff8178a490 t rfcomm_dlc_link +ffffffff8178a4d0 t rfcomm_make_uih +ffffffff8178a550 t rfcomm_l2sock_create +ffffffff8178a5a0 t rfcomm_check_security.isra.1 +ffffffff8178a5f0 t rfcomm_send_frame.isra.2 +ffffffff8178a630 t rfcomm_send_disc +ffffffff8178a6a0 t rfcomm_send_ua +ffffffff8178a710 t rfcomm_send_sabm +ffffffff8178a780 t rfcomm_send_dm +ffffffff8178a7f0 t rfcomm_send_msc +ffffffff8178a860 t rfcomm_send_pn.isra.3 +ffffffff8178a920 t rfcomm_dlc_set_timer +ffffffff8178a950 t __rfcomm_dlc_disconn +ffffffff8178aa40 t rfcomm_process_connect +ffffffff8178aaf0 t rfcomm_send_test.isra.6.constprop.18 +ffffffff8178abf0 T rfcomm_dlc_alloc +ffffffff8178acc0 T rfcomm_dlc_free +ffffffff8178ace0 t rfcomm_dlc_timeout +ffffffff8178ad20 t rfcomm_dlc_clear_timer +ffffffff8178ad50 t __rfcomm_dlc_close +ffffffff8178aeb0 t rfcomm_session_close +ffffffff8178af10 t rfcomm_security_cfm +ffffffff8178b060 T rfcomm_dlc_open +ffffffff8178b370 T rfcomm_dlc_close +ffffffff8178b400 T rfcomm_dlc_exists +ffffffff8178b4a0 T rfcomm_dlc_send +ffffffff8178b520 T rfcomm_dlc_send_noerror +ffffffff8178b570 T __rfcomm_dlc_throttle +ffffffff8178b5a0 T __rfcomm_dlc_unthrottle +ffffffff8178b5d0 T rfcomm_dlc_set_modem_status +ffffffff8178b610 T rfcomm_dlc_get_modem_status +ffffffff8178b620 T rfcomm_session_getaddr +ffffffff8178b660 T rfcomm_send_rpn +ffffffff8178b720 T rfcomm_dlc_accept +ffffffff8178b7c0 t rfcomm_check_accept +ffffffff8178b850 t rfcomm_run +ffffffff8178ca70 t __rfcomm_get_listen_sock_by_addr +ffffffff8178cae0 t rfcomm_sock_destruct +ffffffff8178cb60 t rfcomm_sock_listen +ffffffff8178cc30 t rfcomm_sock_recvmsg +ffffffff8178ccc0 t rfcomm_sock_sendmsg +ffffffff8178ce40 t rfcomm_sock_getname +ffffffff8178cee0 t rfcomm_sock_bind +ffffffff8178d060 t rfcomm_sock_ioctl +ffffffff8178d080 t rfcomm_sock_accept +ffffffff8178d200 t rfcomm_sock_connect +ffffffff8178d300 t rfcomm_sock_kill.part.0 +ffffffff8178d340 t rfcomm_sk_state_change +ffffffff8178d440 t __rfcomm_sock_close +ffffffff8178d4d0 t rfcomm_sock_shutdown +ffffffff8178d550 t rfcomm_sock_release +ffffffff8178d5d0 t rfcomm_sk_data_ready +ffffffff8178d630 t rfcomm_sock_setsockopt +ffffffff8178d780 t rfcomm_sock_getsockopt +ffffffff8178d960 t rfcomm_sock_alloc.constprop.4 +ffffffff8178da40 t rfcomm_sock_create +ffffffff8178dac0 T rfcomm_connect_ind +ffffffff8178dcf0 t hidp_open +ffffffff8178dd00 t hidp_close +ffffffff8178dd10 t hidp_session_get +ffffffff8178dd20 t hidp_session_terminate +ffffffff8178dd40 t hidp_session_wake_function +ffffffff8178dd60 t hidp_idle_timeout +ffffffff8178dde0 t hidp_send_message +ffffffff8178dea0 t hidp_output_report +ffffffff8178ded0 t hidp_input_event +ffffffff8178df90 t hidp_raw_request +ffffffff8178e370 t hidp_parse +ffffffff8178e390 t hidp_stop +ffffffff8178e3d0 t __hidp_session_find +ffffffff8178e410 t hidp_session_find +ffffffff8178e450 t hidp_send_frame +ffffffff8178e4a0 t hidp_process_transmit +ffffffff8178e550 t hidp_session_put +ffffffff8178e600 t hidp_session_dev_add.isra.0 +ffffffff8178e670 t hidp_session_dev_work +ffffffff8178e6a0 t hidp_session_probe +ffffffff8178e880 t hidp_input_report.isra.5 +ffffffff8178eaf0 t hidp_copy_session +ffffffff8178ebf0 t hidp_start +ffffffff8178ec00 t hidp_session_run +ffffffff8178f230 t hidp_session_thread +ffffffff8178f3b0 t hidp_session_remove +ffffffff8178f450 T hidp_connection_add +ffffffff8178fa00 T hidp_connection_del +ffffffff8178fa70 T hidp_get_connlist +ffffffff8178fb10 T hidp_get_conninfo +ffffffff8178fb40 t hidp_sock_create +ffffffff8178fbd0 t hidp_sock_ioctl +ffffffff8178fdd0 t hidp_sock_release +ffffffff8178fe50 t cfg80211_rfkill_poll +ffffffff8178fe70 t cfg80211_rfkill_sync_work +ffffffff8178fe80 t cfg80211_event_work +ffffffff8178fea0 t cfg80211_propagate_cac_done_wk +ffffffff8178fed0 t cfg80211_propagate_radar_detect_wk +ffffffff8178ff00 t cfg80211_sched_scan_stop_wk +ffffffff8178ff80 t cfg80211_dev_check_name.isra.0 +ffffffff81790090 T cfg80211_rdev_by_wiphy_idx +ffffffff817900d0 T get_wiphy_idx +ffffffff817900f0 T wiphy_idx_to_wiphy +ffffffff81790140 T cfg80211_dev_rename +ffffffff817901c0 T cfg80211_switch_netns +ffffffff817902e0 t cfg80211_pernet_exit +ffffffff81790350 T cfg80211_stop_p2p_device +ffffffff817903d0 T cfg80211_stop_nan +ffffffff81790430 T cfg80211_shutdown_all_interfaces +ffffffff817904c0 t cfg80211_rfkill_set_block +ffffffff817904f0 T cfg80211_destroy_ifaces +ffffffff81790560 t cfg80211_destroy_iface_wk +ffffffff81790580 T wiphy_new_nm +ffffffff81790970 T wiphy_rfkill_start_polling +ffffffff817909a0 T wiphy_rfkill_stop_polling +ffffffff817909b0 T wiphy_unregister +ffffffff81790bf0 T wiphy_register +ffffffff817910e0 T cfg80211_dev_free +ffffffff81791190 T wiphy_free +ffffffff817911a0 T wiphy_rfkill_set_hw_state +ffffffff817911d0 T cfg80211_cqm_config_free +ffffffff817911f0 T cfg80211_unregister_wdev +ffffffff817912a0 T cfg80211_update_iface_num +ffffffff817912d0 T __cfg80211_leave +ffffffff817913d0 T cfg80211_leave +ffffffff81791400 t cfg80211_netdev_notifier_call +ffffffff81791840 T cfg80211_stop_iface +ffffffff817918eb t cfg80211_shutdown_all_interfaces.part.3 +ffffffff817918eb t get_wiphy_idx.part.2 +ffffffff817918f0 t wiphy_uevent +ffffffff81791900 t wiphy_namespace +ffffffff81791910 t wiphy_resume +ffffffff81791980 t wiphy_suspend +ffffffff81791aa0 t wiphy_dev_release +ffffffff81791ab0 t name_show +ffffffff81791ae0 t address_mask_show +ffffffff81791b00 t macaddress_show +ffffffff81791b20 t index_show +ffffffff81791b40 t addresses_show +ffffffff81791be0 T wiphy_sysfs_init +ffffffff81791c00 T wiphy_sysfs_exit +ffffffff81791c10 T ieee80211_radiotap_iterator_init +ffffffff81791cb0 T ieee80211_radiotap_iterator_next +ffffffff81791fb0 t cfg80211_iter_sum_ifcombs +ffffffff81791fc0 t __frame_add_frag +ffffffff81792010 t ieee80211_id_in_list.part.1 +ffffffff81792060 T ieee80211_get_response_rate +ffffffff817920a0 T ieee80211_mandatory_rates +ffffffff81792110 T ieee80211_channel_to_frequency +ffffffff81792170 T ieee80211_frequency_to_channel +ffffffff81792210 T ieee80211_get_channel +ffffffff81792270 T ieee80211_set_bitrate_flags +ffffffff81792360 T cfg80211_supported_cipher_suite +ffffffff817923a0 T cfg80211_validate_key_settings +ffffffff817924e0 T ieee80211_hdrlen +ffffffff81792560 T ieee80211_get_hdrlen_from_skb +ffffffff81792590 T ieee80211_get_mesh_hdrlen +ffffffff817925c0 T ieee80211_data_to_8023_exthdr +ffffffff81792980 T ieee80211_amsdu_to_8023s +ffffffff81792e10 T cfg80211_classify8021d +ffffffff81792fa0 T ieee80211_bss_get_ie +ffffffff81792fd0 T cfg80211_upload_connect_keys +ffffffff817930e0 T cfg80211_process_wdev_events +ffffffff81793260 T cfg80211_process_rdev_events +ffffffff817932a0 T cfg80211_change_iface +ffffffff81793530 T cfg80211_calculate_bitrate +ffffffff81793660 T cfg80211_get_p2p_attr +ffffffff81793920 T ieee80211_ie_split_ric +ffffffff81793ac0 T ieee80211_operating_class_to_band +ffffffff81793b10 T ieee80211_chandef_to_operating_class +ffffffff81793d50 T cfg80211_validate_beacon_int +ffffffff81793d70 T cfg80211_iter_combinations +ffffffff81794030 T cfg80211_check_combinations +ffffffff81794070 T ieee80211_get_ratemask +ffffffff81794100 T ieee80211_get_num_supported_channels +ffffffff81794130 T cfg80211_get_station +ffffffff81794170 T cfg80211_free_nan_func +ffffffff81794210 T cfg80211_does_bw_fit_range +ffffffff81794230 t map_regdom_flags +ffffffff817942b0 t is_valid_rd +ffffffff81794310 t reg_update_last_request +ffffffff81794350 t reset_regdomains +ffffffff817943f0 t reg_copy_regd +ffffffff81794490 t reg_check_chans_work +ffffffff81794690 t queue_regulatory_request +ffffffff81794720 t regulatory_hint_core +ffffffff81794770 t rule_contains +ffffffff817947b0 t valid_regdb +ffffffff81794930 t freq_reg_info_regd.part.7 +ffffffff81794a40 t reg_set_request_processed +ffffffff81794ab0 t reg_process_ht_flags.part.11 +ffffffff81794c50 t handle_reg_beacon.isra.14 +ffffffff81794d50 t __freq_reg_info.constprop.25 +ffffffff81794d90 t query_regdb +ffffffff81794fe0 t reg_query_database +ffffffff817950f0 t regdom_changes +ffffffff81795120 T get_wiphy_regdom +ffffffff81795130 T reg_get_dfs_region +ffffffff81795140 T is_world_regdom +ffffffff81795160 T reg_reload_regdb +ffffffff81795210 T reg_is_valid_request +ffffffff81795240 T reg_get_max_bandwidth +ffffffff817953c0 t reg_rule_to_chan_bw_flags.isra.15 +ffffffff81795480 t handle_channel_custom.isra.16 +ffffffff817955b0 t reg_process_self_managed_hints +ffffffff81795720 t wiphy_update_regulatory +ffffffff81795b50 t print_rd_rules +ffffffff81795c60 t __regulatory_set_wiphy_regd +ffffffff81795cf0 t reg_rules_intersect +ffffffff81795e30 t regdom_intersect.part.20 +ffffffff81796070 T freq_reg_info +ffffffff81796080 T reg_initiator_name +ffffffff817960a0 T reg_last_request_cell_base +ffffffff817960c0 T wiphy_apply_custom_regulatory +ffffffff81796130 T reg_dfs_domain_same +ffffffff81796180 t wiphy_all_share_dfs_chan_state +ffffffff81796290 t reg_process_hint +ffffffff817965a0 t reg_todo +ffffffff81796800 T regulatory_hint_user +ffffffff81796870 t restore_regulatory_settings +ffffffff81796c50 t regdb_fw_cb +ffffffff81796d50 t crda_timeout_work +ffffffff81796d70 T regulatory_hint_indoor +ffffffff81796df0 T regulatory_netlink_notify +ffffffff81796e50 T regulatory_hint +ffffffff81796ed0 T regulatory_hint_country_ie +ffffffff81796fa0 T regulatory_hint_disconnect +ffffffff81796fb0 T regulatory_hint_found_beacon +ffffffff81797140 T reg_supported_dfs_region +ffffffff81797150 T set_regdom +ffffffff81797580 t reg_regdb_apply +ffffffff81797610 T regulatory_set_wiphy_regd +ffffffff81797640 T regulatory_set_wiphy_regd_sync_rtnl +ffffffff81797680 T wiphy_regulatory_register +ffffffff817976b0 T wiphy_regulatory_deregister +ffffffff81797710 T cfg80211_get_unii +ffffffff81797770 T regulatory_indoor_allowed +ffffffff81797780 T regulatory_pre_cac_allowed +ffffffff817977d0 T regulatory_propagate_dfs_state +ffffffff81797890 T regulatory_exit +ffffffff81797a20 t bss_free +ffffffff81797ab0 t __cfg80211_unlink_bss +ffffffff81797b80 t __cfg80211_bss_expire +ffffffff81797bf0 T ___cfg80211_scan_done +ffffffff81797ce0 T __cfg80211_scan_done +ffffffff81797d00 T cfg80211_scan_done +ffffffff81797d40 T cfg80211_add_sched_scan_req +ffffffff81797d80 T cfg80211_sched_scan_req_possible +ffffffff81797df0 T cfg80211_sched_scan_results_wk +ffffffff81797ec0 T cfg80211_sched_scan_results +ffffffff81797f40 T cfg80211_stop_sched_scan_req +ffffffff81797fd0 T __cfg80211_stop_sched_scan +ffffffff81798050 T cfg80211_sched_scan_stopped_rtnl +ffffffff81798080 T cfg80211_sched_scan_stopped +ffffffff817980a0 T cfg80211_bss_age +ffffffff817980f0 T cfg80211_bss_expire +ffffffff81798110 T cfg80211_find_ie_match +ffffffff817981f0 t cmp_bss.part.1 +ffffffff817984a0 t rb_find_bss.isra.2 +ffffffff81798510 t cfg80211_get_bss_channel +ffffffff817985a0 t cfg80211_bss_update +ffffffff81798bf0 T cfg80211_find_vendor_ie +ffffffff81798c70 T cfg80211_get_bss +ffffffff81798e80 T cfg80211_inform_bss_data +ffffffff81799090 T cfg80211_inform_bss_frame_data +ffffffff817992d0 T cfg80211_ref_bss +ffffffff81799310 T cfg80211_put_bss +ffffffff81799380 T cfg80211_unlink_bss +ffffffff817993e0 t nl80211_set_wds_peer +ffffffff81799440 t nl80211_del_interface +ffffffff81799490 t nl80211_set_noack_map +ffffffff817994e0 t nl80211_set_mpath +ffffffff81799550 t nl80211_new_mpath +ffffffff817995c0 t nl80211_del_mpath +ffffffff81799610 t validate_scan_freqs +ffffffff81799700 t nl80211_abort_scan +ffffffff81799760 t nl80211_parse_mcast_rate +ffffffff817997e0 t nl80211_flush_pmksa +ffffffff81799820 t nl80211_tdls_mgmt +ffffffff81799910 t nl80211_tdls_oper +ffffffff81799970 t nl80211_set_power_save +ffffffff817999f0 t cfg80211_cqm_rssi_update +ffffffff81799b60 t nl80211_register_unexpected_frame +ffffffff81799ba0 t nl80211_start_p2p_device +ffffffff81799c10 t nl80211_start_nan +ffffffff81799ce0 t nl80211_nan_change_config +ffffffff81799dd0 t nl80211_crit_protocol_stop +ffffffff81799e20 t nl80211_set_multicast_to_unicast +ffffffff81799e80 t nl80211_crit_protocol_start +ffffffff81799f30 t nl80211_update_connect_params +ffffffff8179a070 t nl80211_add_tx_ts +ffffffff8179a1c0 t nl80211_del_tx_ts +ffffffff8179a250 t nl80211_tdls_cancel_channel_switch +ffffffff8179a2f0 t nl80211_del_pmk +ffffffff8179a390 t nl80211_set_pmk +ffffffff8179a4f0 t nl80211_get_valid_chan +ffffffff8179a510 t nl80211_dump_wiphy_done +ffffffff8179a520 t validate_beacon_tx_rate +ffffffff8179a640 t nl80211_set_qos_map +ffffffff8179a880 t nl80211_register_beacons +ffffffff8179a950 t nl80211_set_rekey_data +ffffffff8179aa70 t nl80211_cancel_remain_on_channel +ffffffff8179aae0 t nl80211_tx_mgmt_cancel_wait +ffffffff8179ab70 t nl80211_nan_del_func +ffffffff8179ac00 t __cfg80211_wdev_from_attrs +ffffffff8179ad40 t nl80211_vendor_cmd +ffffffff8179aea0 t __cfg80211_rdev_from_attrs +ffffffff8179b020 t nl80211_pre_doit +ffffffff8179b180 t nl80211_check_scan_flags +ffffffff8179b2f0 t nl80211_parse_beacon +ffffffff8179b570 t nl80211_set_beacon +ffffffff8179b610 t nl80211_update_ft_ies +ffffffff8179b700 t nl80211_set_mcast_rate +ffffffff8179b7b0 t nl80211_setdel_pmksa +ffffffff8179b8e0 t nl80211_set_bss +ffffffff8179baa0 t nl80211_del_station +ffffffff8179bb80 t handle_nan_filter +ffffffff8179bcf0 t nl80211_put_iftypes +ffffffff8179bd80 t nl80211_send_chandef +ffffffff8179beb0 t get_key_callback +ffffffff8179c030 t nl80211_get_mesh_config +ffffffff8179c6d0 t nl80211_get_power_save +ffffffff8179c7e0 t nl80211_get_protocol_features +ffffffff8179c8c0 t nl80211_get_key +ffffffff8179cb40 t __nl80211_unexpected_frame +ffffffff8179ccc0 t nl80211_stop_nan +ffffffff8179cce0 t nl80211_stop_p2p_device +ffffffff8179cd10 t nl80211_leave_ocb +ffffffff8179cd20 t nl80211_leave_mesh +ffffffff8179cd30 t nl80211_register_mgmt +ffffffff8179cdb0 t nl80211_wiphy_netns +ffffffff8179ce40 t nl80211_disconnect +ffffffff8179ced0 t nl80211_leave_ibss +ffffffff8179cf00 t nl80211_disassociate +ffffffff8179d060 t nl80211_deauthenticate +ffffffff8179d1c0 t nl80211_stop_sched_scan +ffffffff8179d270 t nl80211_reload_regdb +ffffffff8179d280 t nl80211_req_set_reg +ffffffff8179d300 t nl80211_set_reg +ffffffff8179d5a0 t nl80211_put_regdom +ffffffff8179d840 t nl80211_get_reg_do +ffffffff8179da80 t get_vlan +ffffffff8179db10 t nl80211_stop_ap +ffffffff8179db30 t nl80211_probe_client +ffffffff8179dca0 t __cfg80211_alloc_vendor_skb +ffffffff8179de60 t nl80211_nan_add_func +ffffffff8179e430 t nl80211_send_iface +ffffffff8179e770 t nl80211_get_interface +ffffffff8179e800 t cfg80211_send_cqm +ffffffff8179e8a0 t nl80211_msg_put_channel +ffffffff8179ebb0 t nl80211_parse_key_new.isra.1 +ffffffff8179ece0 t nl80211_parse_connkeys +ffffffff8179ef70 t nl80211_parse_mon_options.isra.4 +ffffffff8179f0b0 t nl80211_valid_4addr.part.5 +ffffffff8179f0f0 t nl80211_set_interface +ffffffff8179f350 t nl80211_check_ap_rate_selectors.isra.6.part.7 +ffffffff8179f390 t parse_station_flags.isra.9 +ffffffff8179f470 t nl80211_parse_sta_wme.isra.11 +ffffffff8179f500 t nl80211_parse_sta_channel_info.isra.13 +ffffffff8179f570 t nl80211_set_station +ffffffff8179f850 t nl80211_new_station +ffffffff8179fbf0 t nl80211_send_remain_on_chan_event.isra.15 +ffffffff8179fe20 t nl80211_parse_chandef.isra.17 +ffffffff8179ff70 t nl80211_tdls_channel_switch +ffffffff817a00d0 t nl80211_channel_switch +ffffffff817a0470 t nl80211_start_radar_detection +ffffffff817a05c0 t nl80211_join_ocb +ffffffff817a0610 t __nl80211_set_channel +ffffffff817a0790 t nl80211_set_channel +ffffffff817a07a0 t nl80211_set_wiphy +ffffffff817a0d20 t nl80211_join_ibss +ffffffff817a10d0 t parse_acl_data.isra.19 +ffffffff817a1250 t nl80211_set_mac_acl +ffffffff817a12e0 t nl80211_vendor_cmd_dump +ffffffff817a17e0 t nl80211_parse_tx_bitrate_mask +ffffffff817a1c70 t nl80211_set_tx_bitrate_mask +ffffffff817a1cd0 t nl80211_parse_key +ffffffff817a1f50 t nl80211_del_key +ffffffff817a20d0 t nl80211_set_key +ffffffff817a2260 t nl80211_new_key +ffffffff817a23e0 t nl80211_post_doit +ffffffff817a2460 t nl80211_get_coalesce +ffffffff817a27f0 t nl80211_get_wowlan +ffffffff817a3220 t nl80211_send_mpath.isra.28 +ffffffff817a3530 t nl80211_get_mpp +ffffffff817a3690 t nl80211_get_mpath +ffffffff817a37f0 t nl80211_send_wiphy +ffffffff817a5880 t nl80211_get_wiphy +ffffffff817a5930 t nl80211_send_mlme_event.isra.32 +ffffffff817a5ae0 t nl80211_send_mlme_timeout.isra.33 +ffffffff817a5c50 t cfg80211_prepare_cqm.isra.34 +ffffffff817a5d90 t nl80211_parse_wowlan_tcp.isra.37 +ffffffff817a6140 t nl80211_parse_sched_scan +ffffffff817a6cd0 t nl80211_set_wowlan +ffffffff817a74b0 t nl80211_parse_mesh_config.isra.40 +ffffffff817a7920 t nl80211_update_mesh_config +ffffffff817a79e0 t nl80211_join_mesh +ffffffff817a7e20 t nl80211_set_cqm +ffffffff817a8140 t cfg80211_off_channel_oper_allowed +ffffffff817a8170 t nl80211_tx_mgmt +ffffffff817a84e0 t nl80211_remain_on_channel +ffffffff817a8730 t nl80211_prepare_wdev_dump.isra.43 +ffffffff817a88b0 t nl80211_dump_mpp +ffffffff817a89c0 t nl80211_dump_mpath +ffffffff817a8ad0 t nl80211_crypto_settings.isra.45 +ffffffff817a8c90 t nl80211_connect +ffffffff817a9480 t nl80211_associate +ffffffff817a9850 t nl80211_start_ap +ffffffff817a9ec0 t nl80211_send_station.isra.47 +ffffffff817aab40 t nl80211_dump_station +ffffffff817aac90 t nl80211_get_station +ffffffff817aadd0 t nl80211_netlink_notify +ffffffff817aafb0 t nl80211_ch_switch_notify.constprop.49 +ffffffff817ab0f0 t nl80211_send_survey.constprop.50 +ffffffff817ab3f0 t nl80211_dump_survey +ffffffff817ab530 t nl80211_prep_scan_msg.constprop.51 +ffffffff817ab800 t nl80211_send_regdom.constprop.52 +ffffffff817ab950 t nl80211_get_reg_dump +ffffffff817aba40 t nl80211_authenticate +ffffffff817abd70 t nl80211_dump_scan +ffffffff817ac430 t nl80211_dump_wiphy_parse.isra.22.constprop.55 +ffffffff817ac540 t nl80211_dump_wiphy +ffffffff817ac6e0 t nl80211_dump_interface +ffffffff817ac8c0 T cfg80211_check_station_change +ffffffff817aca40 T __cfg80211_alloc_event_skb +ffffffff817acab0 T __cfg80211_send_event_skb +ffffffff817acb60 T cfg80211_rdev_free_coalesce +ffffffff817acc00 t nl80211_set_coalesce +ffffffff817ad1f0 T cfg80211_nan_match +ffffffff817ad580 T cfg80211_nan_func_terminated +ffffffff817ad7e0 T __cfg80211_alloc_reply_skb +ffffffff817ad830 T cfg80211_vendor_cmd_reply +ffffffff817ad8e0 T nl80211_notify_wiphy +ffffffff817ad990 T nl80211_notify_iface +ffffffff817ada30 t nl80211_new_interface +ffffffff817ade40 T nl80211_send_scan_start +ffffffff817aded0 t nl80211_trigger_scan +ffffffff817ae5c0 T nl80211_build_scan_msg +ffffffff817ae620 T nl80211_send_scan_msg +ffffffff817ae660 T nl80211_send_sched_scan +ffffffff817ae7c0 t nl80211_start_sched_scan +ffffffff817ae930 T nl80211_common_reg_change_event +ffffffff817aeb30 T nl80211_send_rx_auth +ffffffff817aeb50 T nl80211_send_rx_assoc +ffffffff817aeb70 T nl80211_send_deauth +ffffffff817aeb90 T nl80211_send_disassoc +ffffffff817aebb0 T cfg80211_rx_unprot_mlme_mgmt +ffffffff817aec10 T nl80211_send_auth_timeout +ffffffff817aec30 T nl80211_send_assoc_timeout +ffffffff817aec50 T nl80211_send_connect_result +ffffffff817aef20 T nl80211_send_roamed +ffffffff817af0d0 T nl80211_send_port_authorized +ffffffff817af1c0 T nl80211_send_disconnected +ffffffff817af380 T nl80211_send_ibss_bssid +ffffffff817af4d0 T cfg80211_notify_new_peer_candidate +ffffffff817af680 T nl80211_michael_mic_failure +ffffffff817af850 T nl80211_send_beacon_hint_event +ffffffff817af9f0 T cfg80211_ready_on_channel +ffffffff817afa20 T cfg80211_remain_on_channel_expired +ffffffff817afa60 T cfg80211_new_sta +ffffffff817afb30 T cfg80211_del_sta_sinfo +ffffffff817afc10 T cfg80211_conn_failed +ffffffff817afd60 T cfg80211_rx_spurious_frame +ffffffff817afd90 T cfg80211_rx_unexpected_4addr_frame +ffffffff817afdc0 T nl80211_send_mgmt +ffffffff817b0020 T cfg80211_mgmt_tx_status +ffffffff817b0230 T cfg80211_cqm_rssi_notify +ffffffff817b0330 T cfg80211_cqm_txe_notify +ffffffff817b03f0 T cfg80211_cqm_pktloss_notify +ffffffff817b0470 T cfg80211_cqm_beacon_loss_notify +ffffffff817b04d0 T cfg80211_gtk_rekey_notify +ffffffff817b06a0 T cfg80211_pmksa_candidate_notify +ffffffff817b0890 T cfg80211_ch_switch_notify +ffffffff817b0900 T cfg80211_ch_switch_started_notify +ffffffff817b0930 T nl80211_radar_notify +ffffffff817b0b00 T cfg80211_probe_status +ffffffff817b0cb0 T cfg80211_report_obss_beacon +ffffffff817b0eb0 T cfg80211_report_wowlan_wakeup +ffffffff817b1530 T cfg80211_tdls_oper_request +ffffffff817b16f0 T cfg80211_ft_event +ffffffff817b1880 T cfg80211_crit_proto_stopped +ffffffff817b19d0 T nl80211_send_ap_stopped +ffffffff817b1b30 T nl80211_exit +ffffffff817b1b48 t nl80211_add_commands_unsplit +ffffffff817b226f t nl80211_put_sta_rate +ffffffff817b2418 t nl80211_put_signal.part.10 +ffffffff817b24b0 t cfg80211_process_deauth +ffffffff817b2590 t cfg80211_process_disassoc +ffffffff817b2640 t cfg80211_process_mlme_unregistrations +ffffffff817b2720 T cfg80211_rx_assoc_resp +ffffffff817b2810 T cfg80211_rx_mlme_mgmt +ffffffff817b28a0 T cfg80211_auth_timeout +ffffffff817b28e0 T cfg80211_assoc_timeout +ffffffff817b2940 T cfg80211_abandon_assoc +ffffffff817b2970 T cfg80211_tx_mlme_mgmt +ffffffff817b29a0 T cfg80211_michael_mic_failure +ffffffff817b29e0 T cfg80211_mlme_auth +ffffffff817b2b30 T cfg80211_oper_and_ht_capa +ffffffff817b2b70 T cfg80211_oper_and_vht_capa +ffffffff817b2ba0 T cfg80211_mlme_assoc +ffffffff817b2cc0 T cfg80211_mlme_deauth +ffffffff817b2d90 T cfg80211_mlme_disassoc +ffffffff817b2e20 T cfg80211_mlme_down +ffffffff817b2e80 T cfg80211_mlme_unreg_wk +ffffffff817b2ea0 T cfg80211_mlme_register_mgmt +ffffffff817b3090 T cfg80211_mlme_unregister_socket +ffffffff817b3200 T cfg80211_mlme_purge_registrations +ffffffff817b32a0 T cfg80211_mlme_mgmt_tx +ffffffff817b3500 T cfg80211_rx_mgmt +ffffffff817b3650 T cfg80211_sched_dfs_chan_update +ffffffff817b3680 T cfg80211_dfs_channels_update_work +ffffffff817b3850 T cfg80211_radar_event +ffffffff817b38d0 T cfg80211_cac_event +ffffffff817b39d0 t __cfg80211_clear_ibss.constprop.0 +ffffffff817b3ae0 T __cfg80211_ibss_joined +ffffffff817b3bb0 T cfg80211_ibss_joined +ffffffff817b3ca0 T cfg80211_join_ibss +ffffffff817b3f30 T cfg80211_clear_ibss +ffffffff817b3f60 T __cfg80211_leave_ibss +ffffffff817b3fc0 T cfg80211_leave_ibss +ffffffff817b4010 t cfg80211_conn_scan +ffffffff817b4250 t cfg80211_get_conn_bss +ffffffff817b4310 t disconnect_work +ffffffff817b43d0 t cfg80211_sme_free.isra.0 +ffffffff817b4400 t cfg80211_conn_do_work +ffffffff817b4730 T cfg80211_sme_scan_done +ffffffff817b47c0 T cfg80211_sme_rx_assoc_resp +ffffffff817b4850 T cfg80211_sme_deauth +ffffffff817b4860 T cfg80211_sme_auth_timeout +ffffffff817b48a0 T cfg80211_sme_disassoc +ffffffff817b48e0 T cfg80211_sme_assoc_timeout +ffffffff817b4920 T cfg80211_sme_abandon_assoc +ffffffff817b4960 T __cfg80211_connect_result +ffffffff817b4b60 T cfg80211_conn_work +ffffffff817b4c80 T cfg80211_sme_rx_auth +ffffffff817b4db0 T cfg80211_connect_done +ffffffff817b5010 T __cfg80211_roamed +ffffffff817b50b0 T cfg80211_roamed +ffffffff817b5200 T __cfg80211_port_authorized +ffffffff817b5250 T cfg80211_port_authorized +ffffffff817b5320 T __cfg80211_disconnected +ffffffff817b54c0 T cfg80211_disconnected +ffffffff817b55b0 T cfg80211_connect +ffffffff817b5be0 T cfg80211_disconnect +ffffffff817b5d00 T cfg80211_autodisconnect_wk +ffffffff817b5d90 t cfg80211_set_chans_dfs_state +ffffffff817b5de0 t cfg80211_get_chans_dfs_required +ffffffff817b5e60 t cfg80211_get_chans_dfs_usable +ffffffff817b5ed0 t cfg80211_get_chans_dfs_cac_time +ffffffff817b5f40 t cfg80211_secondary_chans_ok +ffffffff817b5fb0 t cfg80211_get_chans_dfs_available +ffffffff817b6030 t chandef_primary_freqs +ffffffff817b60d0 T cfg80211_chandef_create +ffffffff817b6140 T cfg80211_chandef_valid +ffffffff817b6230 T cfg80211_chandef_compatible +ffffffff817b62f0 T cfg80211_set_dfs_state +ffffffff817b6360 T cfg80211_chandef_dfs_required +ffffffff817b6410 T cfg80211_chandef_dfs_usable +ffffffff817b6490 T cfg80211_is_sub_chan +ffffffff817b6510 T cfg80211_beaconing_iface_active +ffffffff817b6560 T cfg80211_any_wiphy_oper_chan +ffffffff817b6650 T cfg80211_chandef_dfs_cac_time +ffffffff817b66c0 T cfg80211_chandef_usable +ffffffff817b6810 t _cfg80211_reg_can_beacon.constprop.4 +ffffffff817b6890 T cfg80211_reg_can_beacon +ffffffff817b68a0 T cfg80211_reg_can_beacon_relax +ffffffff817b68d0 T cfg80211_set_monitor_channel +ffffffff817b6930 T cfg80211_get_chan_state +ffffffff817b6a70 T cfg80211_get_drvinfo +ffffffff817b6b10 T __cfg80211_join_mesh +ffffffff817b6e20 T cfg80211_join_mesh +ffffffff817b6e70 T cfg80211_set_mesh_channel +ffffffff817b6f20 T __cfg80211_leave_mesh +ffffffff817b7010 T cfg80211_leave_mesh +ffffffff817b7050 T __cfg80211_stop_ap +ffffffff817b7160 T cfg80211_stop_ap +ffffffff817b71b0 T __cfg80211_join_ocb +ffffffff817b7220 T cfg80211_join_ocb +ffffffff817b7270 T __cfg80211_leave_ocb +ffffffff817b72d0 T cfg80211_leave_ocb +ffffffff817b7310 t ieee80211_ifa6_changed +ffffffff817b7380 t ieee80211_tasklet_handler +ffffffff817b7410 t ieee80211_restart_work +ffffffff817b74b0 t ieee80211_free_ack_frame +ffffffff817b74c0 T ieee80211_configure_filter +ffffffff817b7620 t ieee80211_reconfig_filter +ffffffff817b7630 T ieee80211_hw_config +ffffffff817b7880 T ieee80211_bss_info_change_notify +ffffffff817b7910 t ieee80211_ifa_changed +ffffffff817b79d0 T ieee80211_reset_erp_info +ffffffff817b79f0 T ieee80211_restart_hw +ffffffff817b7a40 T ieee80211_alloc_hw_nm +ffffffff817b8030 T ieee80211_register_hw +ffffffff817b8a50 T ieee80211_unregister_hw +ffffffff817b8b70 T ieee80211_free_hw +ffffffff817b8bc0 t ieee80211_report_used_skb +ffffffff817b8f10 t ieee80211_handle_filtered_frame +ffffffff817b90b0 t ieee80211_lost_packet +ffffffff817b9140 T ieee80211_tx_status_irqsafe +ffffffff817b9200 T ieee80211_tx_monitor +ffffffff817b95a0 t __ieee80211_tx_status +ffffffff817b9d40 T ieee80211_tx_status +ffffffff817b9dd0 T ieee80211_tx_status_ext +ffffffff817b9f10 T ieee80211_report_low_ack +ffffffff817b9f30 T ieee80211_free_txskb +ffffffff817b9f50 T ieee80211_purge_tx_queue +ffffffff817b9fc0 T drv_start +ffffffff817ba000 T drv_stop +ffffffff817ba050 T drv_add_interface +ffffffff817ba0b0 T drv_change_interface +ffffffff817ba0e0 T drv_remove_interface +ffffffff817ba110 T drv_sta_state +ffffffff817ba220 T drv_sta_rc_update +ffffffff817ba270 T drv_conf_tx +ffffffff817ba2c0 T drv_get_tsf +ffffffff817ba2f0 T drv_set_tsf +ffffffff817ba320 T drv_offset_tsf +ffffffff817ba350 T drv_reset_tsf +ffffffff817ba380 T drv_switch_vif_chanctx +ffffffff817ba3f0 T drv_ampdu_action +ffffffff817ba440 t __sta_info_recalc_tim +ffffffff817ba610 t sta_info_hash_del +ffffffff817ba810 t ieee80211_recalc_p2p_go_ps_allowed +ffffffff817ba8a0 t __cleanup_single_sta +ffffffff817baa10 t __sta_info_destroy_part1 +ffffffff817bab70 t ieee80211_send_null_response +ffffffff817bad70 t sta_get_last_rx_stats +ffffffff817bade0 t sta_info_cleanup +ffffffff817bb090 t sta_info_tx_streams.part.3 +ffffffff817bb0e0 t ieee80211_sta_ps_deliver_response +ffffffff817bb650 T sta_info_hash_lookup +ffffffff817bb770 T sta_info_get +ffffffff817bb7d0 T sta_info_get_bss +ffffffff817bb850 T sta_info_get_by_idx +ffffffff817bb890 T sta_info_free +ffffffff817bb900 T sta_info_alloc +ffffffff817bbce0 T sta_info_insert_rcu +ffffffff817bc370 T sta_info_insert +ffffffff817bc390 T sta_info_recalc_tim +ffffffff817bc3a0 T sta_info_init +ffffffff817bc420 T sta_info_stop +ffffffff817bc450 T ieee80211_find_sta_by_ifaddr +ffffffff817bc4b0 T ieee80211_find_sta +ffffffff817bc4e0 T ieee80211_sta_ps_deliver_wakeup +ffffffff817bc800 T ieee80211_sta_ps_deliver_poll_response +ffffffff817bc820 T ieee80211_sta_ps_deliver_uapsd +ffffffff817bc880 t sta_deliver_ps_frames +ffffffff817bc900 T ieee80211_sta_block_awake +ffffffff817bc990 T ieee80211_sta_eosp +ffffffff817bc9a0 T ieee80211_send_eosp_nullfunc +ffffffff817bca10 T ieee80211_sta_set_buffered +ffffffff817bca50 T sta_info_move_state +ffffffff817bcc80 T sta_info_tx_streams +ffffffff817bccb0 T sta_get_expected_throughput +ffffffff817bcd20 T sta_set_sinfo +ffffffff817bd3a0 t __sta_info_destroy_part2 +ffffffff817bd490 T __sta_info_destroy +ffffffff817bd4c0 T sta_info_destroy_addr +ffffffff817bd510 T sta_info_destroy_addr_bss +ffffffff817bd560 T ieee80211_sta_expire +ffffffff817bd610 T __sta_info_flush +ffffffff817bd730 T ieee80211_sta_last_active +ffffffff817bd750 T ieee80211_sta_set_expected_throughput +ffffffff817bd7c0 t ieee80211_wep_add_iv +ffffffff817bd8b0 T ieee80211_wep_init +ffffffff817bd950 T ieee80211_wep_free +ffffffff817bd990 T ieee80211_wep_encrypt_data +ffffffff817bda10 T ieee80211_wep_encrypt +ffffffff817bdae0 T ieee80211_wep_decrypt_data +ffffffff817bdb70 T ieee80211_crypto_wep_decrypt +ffffffff817bde30 T ieee80211_crypto_wep_encrypt +ffffffff817bded0 T aead_encrypt +ffffffff817be0e0 T aead_decrypt +ffffffff817be320 T aead_key_setup_encrypt +ffffffff817be390 T aead_key_free +ffffffff817be3a0 t ccmp_special_blocks.isra.1 +ffffffff817be4e0 t gcmp_special_blocks.isra.3 +ffffffff817be5c0 T ieee80211_tx_h_michael_mic_add +ffffffff817be730 T ieee80211_rx_h_michael_mic_verify +ffffffff817be920 T ieee80211_crypto_tkip_encrypt +ffffffff817bea90 T ieee80211_crypto_tkip_decrypt +ffffffff817bebc0 T ieee80211_crypto_ccmp_encrypt +ffffffff817bedf0 T ieee80211_crypto_ccmp_decrypt +ffffffff817bf0f0 T ieee80211_crypto_gcmp_encrypt +ffffffff817bf330 T ieee80211_crypto_gcmp_decrypt +ffffffff817bf630 T ieee80211_crypto_aes_cmac_encrypt +ffffffff817bf740 T ieee80211_crypto_aes_cmac_256_encrypt +ffffffff817bf850 T ieee80211_crypto_aes_cmac_decrypt +ffffffff817bf9b0 T ieee80211_crypto_aes_cmac_256_decrypt +ffffffff817bfb10 T ieee80211_crypto_aes_gmac_encrypt +ffffffff817bfc70 T ieee80211_crypto_aes_gmac_decrypt +ffffffff817bfe10 T ieee80211_crypto_hw_encrypt +ffffffff817bfee0 T ieee80211_crypto_hw_decrypt +ffffffff817c0170 t ieee80211_prepare_scan_chandef +ffffffff817c01b0 t ieee80211_prep_hw_scan +ffffffff817c03a0 t ieee80211_scan_state_send_probe +ffffffff817c0480 t __ieee80211_scan_completed +ffffffff817c06b0 t ieee80211_scan_accept_presp +ffffffff817c0700 t ieee80211_can_scan.isra.2 +ffffffff817c0750 t __ieee80211_start_scan +ffffffff817c0bf0 T ieee80211_rx_bss_put +ffffffff817c0c10 T ieee80211_bss_info_update +ffffffff817c11e0 T ieee80211_scan_rx +ffffffff817c1320 T ieee80211_scan_completed +ffffffff817c1370 T ieee80211_run_deferred_scan +ffffffff817c13d0 T ieee80211_scan_work +ffffffff817c1860 T ieee80211_request_scan +ffffffff817c18a0 T ieee80211_request_ibss_scan +ffffffff817c1a60 T ieee80211_scan_cancel +ffffffff817c1b40 T __ieee80211_request_sched_scan_start +ffffffff817c1d00 T ieee80211_request_sched_scan_start +ffffffff817c1d60 T ieee80211_request_sched_scan_stop +ffffffff817c1df0 T ieee80211_sched_scan_results +ffffffff817c1e00 T ieee80211_sched_scan_end +ffffffff817c1e60 T ieee80211_sched_scan_stopped_work +ffffffff817c1e70 T ieee80211_sched_scan_stopped +ffffffff817c1ea0 t ieee80211_handle_roc_started +ffffffff817c1f40 t ieee80211_hw_roc_start +ffffffff817c1fa0 t ieee80211_roc_notify_destroy +ffffffff817c2040 t ieee80211_end_finished_rocs +ffffffff817c20f0 t ieee80211_recalc_sw_work +ffffffff817c2130 t ieee80211_start_roc_work +ffffffff817c2480 T ieee80211_offchannel_stop_vifs +ffffffff817c2610 t _ieee80211_start_next_roc +ffffffff817c2840 T ieee80211_offchannel_return +ffffffff817c29e0 T ieee80211_ready_on_channel +ffffffff817c2a00 T ieee80211_start_next_roc +ffffffff817c2a70 t ieee80211_cancel_roc +ffffffff817c2be0 t __ieee80211_roc_work +ffffffff817c2c80 t ieee80211_roc_work +ffffffff817c2cb0 t ieee80211_hw_roc_done +ffffffff817c2cf0 T ieee80211_remain_on_channel_expired +ffffffff817c2d00 T ieee80211_remain_on_channel +ffffffff817c2d70 T ieee80211_cancel_remain_on_channel +ffffffff817c2d90 T ieee80211_mgmt_tx +ffffffff817c3210 T ieee80211_mgmt_tx_cancel_wait +ffffffff817c3230 T ieee80211_roc_setup +ffffffff817c32e0 T ieee80211_roc_purge +ffffffff817c33c0 t ieee80211_apply_htcap_overrides.part.1 +ffffffff817c3520 T ieee80211_apply_htcap_overrides +ffffffff817c3530 T ieee80211_ht_cap_ie_to_sta_ht_cap +ffffffff817c3810 T ieee80211_sta_tear_down_BA_sessions +ffffffff817c38e0 T ieee80211_ba_session_work +ffffffff817c3b10 T ieee80211_send_delba +ffffffff817c3ce0 T ieee80211_process_delba +ffffffff817c3d20 T ieee80211_send_smps_action +ffffffff817c3e40 T ieee80211_request_smps_mgd_work +ffffffff817c3e80 T ieee80211_request_smps_ap_work +ffffffff817c3ec0 T ieee80211_request_smps +ffffffff817c3f20 t ieee80211_agg_splice_packets +ffffffff817c4010 t ieee80211_wake_queue_agg +ffffffff817c4060 t ieee80211_agg_start_txq +ffffffff817c40f0 t ieee80211_agg_tx_operational +ffffffff817c41c0 T ieee80211_send_bar +ffffffff817c42e0 T ieee80211_assign_tid_tx +ffffffff817c42f0 T ___ieee80211_stop_tx_ba_session +ffffffff817c44a0 T ieee80211_tx_ba_session_handle_start +ffffffff817c4800 T ieee80211_start_tx_ba_session +ffffffff817c4a00 T ieee80211_start_tx_ba_cb +ffffffff817c4a40 T ieee80211_start_tx_ba_cb_irqsafe +ffffffff817c4ac0 T __ieee80211_stop_tx_ba_session +ffffffff817c4b00 T ieee80211_stop_tx_ba_session +ffffffff817c4b90 t sta_tx_agg_session_timer_expired +ffffffff817c4c00 t sta_addba_resp_timer_expired +ffffffff817c4c20 T ieee80211_stop_tx_ba_cb +ffffffff817c4d40 T ieee80211_stop_tx_ba_cb_irqsafe +ffffffff817c4dc0 T ieee80211_process_addba_resp +ffffffff817c4f30 t ieee80211_free_tid_rx +ffffffff817c4fd0 t sta_rx_agg_reorder_timer_expired +ffffffff817c4ff0 t sta_rx_agg_session_timer_expired +ffffffff817c5050 T ___ieee80211_stop_rx_ba_session +ffffffff817c51a0 T __ieee80211_stop_rx_ba_session +ffffffff817c51f0 T ieee80211_stop_rx_ba_session +ffffffff817c5250 T ___ieee80211_start_rx_ba_session +ffffffff817c5820 T ieee80211_process_addba_request +ffffffff817c58b0 T ieee80211_manage_rx_ba_offl +ffffffff817c5910 T ieee80211_rx_ba_timer_expired +ffffffff817c5970 t ieee80211_apply_vhtcap_overrides.part.2 +ffffffff817c5be0 T ieee80211_apply_vhtcap_overrides +ffffffff817c5c00 T ieee80211_sta_cap_rx_bw +ffffffff817c5c30 T ieee80211_sta_cap_chan_bw +ffffffff817c5c80 T ieee80211_chan_width_to_rx_bw +ffffffff817c5ca0 T ieee80211_sta_cur_vht_bw +ffffffff817c5d20 T ieee80211_vht_cap_ie_to_sta_vht_cap +ffffffff817c6060 t __ieee80211_vht_handle_opmode.part.4 +ffffffff817c60e0 T ieee80211_sta_set_rx_nss +ffffffff817c61a0 T __ieee80211_vht_handle_opmode +ffffffff817c61c0 T ieee80211_process_mu_groups +ffffffff817c6230 T ieee80211_update_mu_groups +ffffffff817c6260 T ieee80211_vht_handle_opmode +ffffffff817c62d0 T ieee80211_get_vht_mask_from_cap +ffffffff817c6330 t ieee80211_ibss_build_presp +ffffffff817c6920 t ieee80211_ibss_timer +ffffffff817c6940 t ieee80211_ibss_csa_mark_radar +ffffffff817c6990 t __ieee80211_sta_join_ibss +ffffffff817c6f20 t ieee80211_ibss_finish_sta +ffffffff817c6fc0 t ieee80211_ibss_add_sta +ffffffff817c70d0 t ieee80211_sta_active_ibss +ffffffff817c7140 t ieee80211_sta_create_ibss +ffffffff817c7200 t ieee80211_ibss_disconnect +ffffffff817c7400 t ieee80211_csa_connection_drop_work +ffffffff817c7460 t ieee80211_ibss_process_chanswitch.constprop.4 +ffffffff817c76e0 t ieee80211_rx_mgmt_probe_beacon +ffffffff817c7dc0 T ieee80211_ibss_csa_beacon +ffffffff817c7ec0 T ieee80211_ibss_finish_csa +ffffffff817c7f80 T ieee80211_ibss_stop +ffffffff817c7f90 T ieee80211_ibss_rx_no_sta +ffffffff817c8100 T ieee80211_ibss_rx_queued_mgmt +ffffffff817c8410 T ieee80211_ibss_work +ffffffff817c8980 T ieee80211_ibss_setup_sdata +ffffffff817c89f0 T ieee80211_ibss_notify_scan_completed +ffffffff817c8a50 T ieee80211_ibss_join +ffffffff817c8dc0 T ieee80211_ibss_leave +ffffffff817c8e69 t ibss_setup_channels +ffffffff817c8ecc t ieee80211_sta_join_ibss +ffffffff817c90b0 t netdev_notify +ffffffff817c9110 t ieee80211_check_queues +ffffffff817c91a0 t ieee80211_iface_work +ffffffff817c9440 t ieee80211_check_concurrent_iface +ffffffff817c95e0 t ieee80211_teardown_sdata +ffffffff817c9650 t ieee80211_uninit +ffffffff817c9660 t ieee80211_setup_sdata +ffffffff817c9940 t ieee80211_get_stats64 +ffffffff817c99a0 t ieee80211_change_mac +ffffffff817c9c00 t ieee80211_set_multicast_list +ffffffff817c9c90 t ieee80211_monitor_select_queue +ffffffff817c9cd0 t ieee80211_recalc_smps_work +ffffffff817c9ce0 t ieee80211_netdev_select_queue +ffffffff817c9cf0 t ieee80211_if_setup +ffffffff817c9d30 t ieee80211_if_setup_no_queue +ffffffff817c9d70 t ieee80211_if_free +ffffffff817c9d80 t ieee80211_assign_perm_addr +ffffffff817ca140 t __ieee80211_recalc_idle +ffffffff817ca1f0 t ieee80211_del_virtual_monitor.part.3 +ffffffff817ca280 T __ieee80211_recalc_txpower +ffffffff817ca320 T ieee80211_recalc_txpower +ffffffff817ca360 T ieee80211_idle_off +ffffffff817ca370 T ieee80211_recalc_idle +ffffffff817ca390 T ieee80211_adjust_monitor_flags +ffffffff817ca3e0 T ieee80211_add_virtual_monitor +ffffffff817ca610 t ieee80211_do_stop +ffffffff817cad70 t ieee80211_stop +ffffffff817cad90 T ieee80211_del_virtual_monitor +ffffffff817cada0 T ieee80211_do_open +ffffffff817cb520 t ieee80211_open +ffffffff817cb570 T ieee80211_if_change_type +ffffffff817cb740 T ieee80211_if_add +ffffffff817cbd40 T ieee80211_if_remove +ffffffff817cbdc0 T ieee80211_sdata_stop +ffffffff817cbde0 T ieee80211_remove_interfaces +ffffffff817cbf30 T ieee80211_iface_init +ffffffff817cbf40 T ieee80211_iface_exit +ffffffff817cbf50 T ieee80211_vif_inc_num_mcast +ffffffff817cbf80 T ieee80211_vif_dec_num_mcast +ffffffff817cbfb0 t __rate_control_send_low +ffffffff817cc060 t rate_idx_match_mcs_mask +ffffffff817cc140 t ieee80211_try_rate_control_ops_get +ffffffff817cc1b0 t rate_control_cap_mask +ffffffff817cc350 t rate_idx_match_mask.isra.2 +ffffffff817cc620 T rate_control_rate_init +ffffffff817cc6e0 T rate_control_tx_status +ffffffff817cc780 T rate_control_rate_update +ffffffff817cc860 T ieee80211_rate_control_register +ffffffff817cc930 T ieee80211_rate_control_unregister +ffffffff817cc9b0 T ieee80211_check_rate_mask +ffffffff817cca20 T rate_control_send_low +ffffffff817ccb20 T ieee80211_get_tx_rates +ffffffff817cd020 T rate_control_get_rate +ffffffff817cd160 T rate_control_set_rates +ffffffff817cd2f0 T ieee80211_init_rate_ctrl_alg +ffffffff817cd430 T rate_control_deinitialize +ffffffff817cd470 t michael_block +ffffffff817cd4c0 T michael_mic +ffffffff817cd610 t tkip_mixing_phase1 +ffffffff817cd760 t ieee80211_compute_tkip_p1k +ffffffff817cd790 t tkip_mixing_phase2 +ffffffff817cd930 T ieee80211_tkip_add_iv +ffffffff817cd960 T ieee80211_get_tkip_p1k_iv +ffffffff817cd9c0 T ieee80211_get_tkip_rx_p1k +ffffffff817cda00 T ieee80211_get_tkip_p2k +ffffffff817cda80 T ieee80211_tkip_encrypt_data +ffffffff817cdad0 T ieee80211_tkip_decrypt_data +ffffffff817cdd50 T ieee80211_aes_cmac +ffffffff817cde00 T ieee80211_aes_cmac_256 +ffffffff817cdea0 T ieee80211_aes_cmac_key_setup +ffffffff817cdee0 T ieee80211_aes_cmac_key_free +ffffffff817cdef0 T ieee80211_aes_gmac +ffffffff817ce1d0 T ieee80211_aes_gmac_key_setup +ffffffff817ce250 T ieee80211_aes_gmac_key_free +ffffffff817ce260 t aes_s2v.constprop.2 +ffffffff817ce410 t aes_siv_encrypt.constprop.1 +ffffffff817ce680 t aes_siv_decrypt.constprop.0 +ffffffff817ce940 T fils_encrypt_assoc_req +ffffffff817cea70 T fils_decrypt_assoc_resp +ffffffff817ceb90 t ieee80211_nan_change_conf +ffffffff817cec30 t ieee80211_add_tx_ts +ffffffff817ceca0 t ieee80211_set_multicast_to_unicast +ffffffff817cecb0 t ieee80211_set_cqm_rssi_range_config +ffffffff817ced20 t ieee80211_set_cqm_rssi_config +ffffffff817ced90 t ieee80211_set_wds_peer +ffffffff817cedb0 t ieee80211_set_mcast_rate +ffffffff817cedd0 t ieee80211_cfg_get_channel +ffffffff817ceed0 t ieee80211_set_bitrate_mask +ffffffff817cf050 t ieee80211_assign_beacon +ffffffff817cf270 t __ieee80211_csa_finalize +ffffffff817cf3b0 t ieee80211_change_beacon +ffffffff817cf400 t ieee80211_set_qos_map +ffffffff817cf4a0 t ieee80211_add_nan_func +ffffffff817cf590 t ieee80211_del_nan_func +ffffffff817cf650 t ieee80211_stop_nan +ffffffff817cf680 t ieee80211_stop_p2p_device +ffffffff817cf690 t ieee80211_start_nan +ffffffff817cf740 t ieee80211_set_ap_chanwidth +ffffffff817cf790 t ieee80211_start_radar_detection +ffffffff817cf850 t ieee80211_set_noack_map +ffffffff817cf870 t ieee80211_get_key +ffffffff817cfb60 t ieee80211_sched_scan_start +ffffffff817cfb90 t ieee80211_mgmt_frame_register +ffffffff817cfc70 t ieee80211_set_tx_power +ffffffff817cfea0 t ieee80211_set_wiphy_params +ffffffff817cffd0 t ieee80211_leave_ibss +ffffffff817cffe0 t ieee80211_join_ibss +ffffffff817cfff0 t ieee80211_disassoc +ffffffff817d0000 t ieee80211_deauth +ffffffff817d0010 t ieee80211_assoc +ffffffff817d0020 t ieee80211_auth +ffffffff817d0030 t ieee80211_scan +ffffffff817d00b0 t ieee80211_set_monitor_channel +ffffffff817d01d0 t ieee80211_set_txq_params +ffffffff817d02d0 t ieee80211_change_bss +ffffffff817d0490 t ieee80211_leave_ocb +ffffffff817d04a0 t ieee80211_join_ocb +ffffffff817d04b0 t ieee80211_dump_station +ffffffff817d0530 t ieee80211_get_station +ffffffff817d0590 t ieee80211_send_layer2_update +ffffffff817d0650 t ieee80211_del_station +ffffffff817d0670 t ieee80211_stop_ap +ffffffff817d08c0 t ieee80211_start_ap +ffffffff817d0c50 t ieee80211_config_default_mgmt_key +ffffffff817d0c70 t ieee80211_config_default_key +ffffffff817d0ca0 t ieee80211_del_key +ffffffff817d0d50 t ieee80211_add_key +ffffffff817d0f50 t ieee80211_del_iface +ffffffff817d0f60 t ieee80211_dump_survey +ffffffff817d0fb0 t ieee80211_resume +ffffffff817d0fe0 t ieee80211_get_tx_power +ffffffff817d1030 t ieee80211_rfkill_poll +ffffffff817d1060 t ieee80211_set_antenna +ffffffff817d10a0 t ieee80211_get_antenna +ffffffff817d10d0 t ieee80211_set_rekey_data +ffffffff817d1120 t ieee80211_set_wakeup +ffffffff817d1150 T ieee80211_channel_switch +ffffffff817d1810 t ieee80211_start_p2p_device +ffffffff817d1870 t ieee80211_del_tx_ts +ffffffff817d1940 t ieee80211_sched_scan_stop +ffffffff817d1970 t ieee80211_abort_scan +ffffffff817d1990 t sta_apply_auth_flags.isra.15 +ffffffff817d1ae0 t sta_apply_parameters +ffffffff817d1e60 t ieee80211_change_station +ffffffff817d2120 t ieee80211_add_station +ffffffff817d2260 t ieee80211_set_mon_options +ffffffff817d23c0 t ieee80211_change_iface +ffffffff817d2470 t ieee80211_add_iface +ffffffff817d24f0 t ieee80211_suspend +ffffffff817d2510 T sta_set_rate_info_tx +ffffffff817d2680 T __ieee80211_request_smps_ap +ffffffff817d27c0 T __ieee80211_request_smps_mgd +ffffffff817d2910 t ieee80211_set_power_mgmt +ffffffff817d29f0 T ieee80211_csa_finish +ffffffff817d2a10 T ieee80211_csa_finalize_work +ffffffff817d2aa0 T ieee80211_mgmt_tx_cookie +ffffffff817d2ad0 T ieee80211_attach_ack_skb +ffffffff817d2bb0 t ieee80211_probe_client +ffffffff817d2da0 T ieee80211_nan_func_terminated +ffffffff817d2e60 T ieee80211_nan_func_match +ffffffff817d2ed4 t ieee80211_abort_scan.part.14 +ffffffff817d2ed4 t ieee80211_add_iface.part.17 +ffffffff817d2ed4 t ieee80211_del_tx_ts.part.12 +ffffffff817d2ed4 t ieee80211_get_antenna.part.6 +ffffffff817d2ed4 t ieee80211_get_tx_power.part.3 +ffffffff817d2ed4 t ieee80211_resume.part.2 +ffffffff817d2ed4 t ieee80211_rfkill_poll.part.4 +ffffffff817d2ed4 t ieee80211_sched_scan_stop.part.13 +ffffffff817d2ed4 t ieee80211_set_antenna.part.5 +ffffffff817d2ed4 t ieee80211_set_rekey_data.part.7 +ffffffff817d2ed4 t ieee80211_set_wakeup.part.8 +ffffffff817d2ed4 t ieee80211_suspend.part.18 +ffffffff817d2ed6 t ieee80211_csa_finalize.part.9 +ffffffff817d2f10 t ieee80211_get_sset_count +ffffffff817d2f70 t ieee80211_get_strings +ffffffff817d2ff0 t ieee80211_get_regs_len +ffffffff817d3000 t ieee80211_get_regs +ffffffff817d3020 t ieee80211_get_stats +ffffffff817d3480 t ieee80211_set_ringparam +ffffffff817d34e0 t ieee80211_get_ringparam +ffffffff817d354b t ieee80211_get_ringparam.part.1 +ffffffff817d354b t ieee80211_set_ringparam.part.0 +ffffffff817d3550 t ieee80211_frame_allowed +ffffffff817d3600 t sta_ps_start +ffffffff817d36f0 t ieee80211_get_cs_keyid +ffffffff817d3750 t ieee80211_deliver_skb +ffffffff817d3910 t ieee80211_add_rx_radiotap_header +ffffffff817d3f20 t remove_monitor_info +ffffffff817d3f90 t ieee80211_get_bssid +ffffffff817d4000 t ieee80211_get_mmie_keyidx.isra.4 +ffffffff817d4090 t ieee80211_release_reorder_frame.isra.6 +ffffffff817d41d0 t ieee80211_rx_radiotap_hdrlen.isra.9 +ffffffff817d4300 t sta_ps_end +ffffffff817d4330 t ieee80211_sta_reorder_release.isra.11 +ffffffff817d4650 t ieee80211_rx_handlers_result +ffffffff817d4820 T ieee80211_sta_ps_transition +ffffffff817d4870 T ieee80211_sta_pspoll +ffffffff817d48a0 T ieee80211_sta_uapsd_trigger +ffffffff817d48f0 t ieee80211_rx_handlers +ffffffff817d6a50 t ieee80211_prepare_and_rx_handle +ffffffff817d7a60 T ieee80211_release_reorder_timeout +ffffffff817d7b70 T ieee80211_mark_rx_ba_filtered_frames +ffffffff817d7dd0 T ieee80211_check_fast_rx +ffffffff817d8050 T ieee80211_clear_fast_rx +ffffffff817d80a0 T __ieee80211_check_fast_rx_iface +ffffffff817d8100 T ieee80211_check_fast_rx_iface +ffffffff817d8130 T ieee80211_rx_napi +ffffffff817d8930 T ieee80211_rx_irqsafe +ffffffff817d8970 T ieee80211_parse_ch_switch_ie +ffffffff817d8ce0 T ieee80211_process_measurement_req +ffffffff817d8e30 t codel_skb_len_func +ffffffff817d8e40 t codel_skb_time_func +ffffffff817d8e50 t fq_flow_get_default_func +ffffffff817d8e60 t fq_vlan_filter_func +ffffffff817d8e70 t ieee80211_xmit_fast_finish +ffffffff817d9000 t ieee80211_tx_h_select_key +ffffffff817d9300 t fq_skb_free_func +ffffffff817d9310 t ieee80211_tx_frags +ffffffff817d9510 t ieee80211_tx_h_rate_ctrl +ffffffff817d9880 t invoke_tx_handlers_early +ffffffff817d9e40 t ieee80211_set_csa +ffffffff817d9ef0 t invoke_tx_handlers_late +ffffffff817da720 t ieee80211_skb_resize +ffffffff817da820 t ieee80211_build_hdr +ffffffff817daff0 t __ieee80211_beacon_add_tim +ffffffff817db210 t __ieee80211_beacon_get +ffffffff817db590 t fq_rejigger_backlog +ffffffff817db600 t fq_flow_dequeue +ffffffff817db670 t codel_dequeue_func +ffffffff817db6c0 t ieee80211_lookup_ra_sta.isra.11 +ffffffff817db800 t fq_recalc_backlog.isra.13 +ffffffff817db880 t __ieee80211_tx.constprop.27 +ffffffff817db940 t fq_flow_classify.constprop.26 +ffffffff817db9a0 t fq_flow_filter.constprop.21 +ffffffff817dba40 t codel_should_drop.isra.5.constprop.24 +ffffffff817dbaa0 t ieee80211_queue_skb +ffffffff817dbd50 t fq_flow_reset.constprop.19 +ffffffff817dbde0 t fq_reset.constprop.17 +ffffffff817dbe30 T ieee80211_txq_remove_vlan +ffffffff817dbf00 T ieee80211_txq_init +ffffffff817dbff0 T ieee80211_txq_purge +ffffffff817dc050 T ieee80211_txq_setup_flows +ffffffff817dc2a0 T ieee80211_txq_teardown_flows +ffffffff817dc300 T ieee80211_check_fast_xmit +ffffffff817dc710 t ieee80211_tx_prepare +ffffffff817dcb10 T ieee80211_tx_prepare_skb +ffffffff817dcc20 t ieee80211_tx +ffffffff817dcd30 T ieee80211_xmit +ffffffff817dcdd0 T ieee80211_monitor_start_xmit +ffffffff817dd340 T ieee80211_check_fast_xmit_all +ffffffff817dd380 T ieee80211_check_fast_xmit_iface +ffffffff817dd3f0 T ieee80211_clear_fast_xmit +ffffffff817dd440 T ieee80211_tx_dequeue +ffffffff817ddf70 T __ieee80211_subif_start_xmit +ffffffff817de940 T ieee80211_subif_start_xmit +ffffffff817debf0 T ieee80211_build_data_template +ffffffff817decd0 T ieee80211_clear_tx_pending +ffffffff817ded20 T ieee80211_tx_pending +ffffffff817deef0 T ieee80211_csa_update_counter +ffffffff817def40 T ieee80211_csa_is_complete +ffffffff817defd0 T ieee80211_beacon_get_template +ffffffff817defe0 T ieee80211_beacon_get_tim +ffffffff817df100 T ieee80211_proberesp_get +ffffffff817df180 T ieee80211_pspoll_get +ffffffff817df240 T ieee80211_nullfunc_get +ffffffff817df390 T ieee80211_probereq_get +ffffffff817df480 T ieee80211_rts_get +ffffffff817df4c0 T ieee80211_ctstoself_get +ffffffff817df500 T ieee80211_get_buffered_bc +ffffffff817df620 T ieee80211_reserve_tid +ffffffff817df730 T ieee80211_unreserve_tid +ffffffff817df770 T __ieee80211_tx_skb_tid_band +ffffffff817df7d1 t purge_old_ps_buffers +ffffffff817df886 t ieee80211_amsdu_realloc_pad.isra.12 +ffffffff817df930 t _ieee80211_iter_keys_rcu +ffffffff817df9c0 t __ieee80211_set_default_key +ffffffff817dfa50 t ieee80211_key_free_common +ffffffff817dfab0 t ieee80211_key_replace +ffffffff817dfd30 t update_vlan_tailroom_need_count.part.2 +ffffffff817dfd80 t increment_tailroom_need_count +ffffffff817dfdc0 t __ieee80211_key_destroy +ffffffff817dff40 t ieee80211_key_enable_hw_accel +ffffffff817e0190 t ieee80211_free_keys_iface +ffffffff817e0240 T ieee80211_set_default_key +ffffffff817e0290 T ieee80211_set_default_mgmt_key +ffffffff817e02e0 T ieee80211_key_alloc +ffffffff817e0690 T ieee80211_key_free_unused +ffffffff817e06a0 T ieee80211_key_free +ffffffff817e06f0 T ieee80211_key_link +ffffffff817e0920 T ieee80211_enable_keys +ffffffff817e09e0 T ieee80211_reset_crypto_tx_tailroom +ffffffff817e0a60 T ieee80211_iter_keys +ffffffff817e0ba0 T ieee80211_iter_keys_rcu +ffffffff817e0c00 T ieee80211_free_keys +ffffffff817e0d30 T ieee80211_free_sta_keys +ffffffff817e0df0 T ieee80211_delayed_tailroom_dec +ffffffff817e0e40 T ieee80211_gtk_rekey_notify +ffffffff817e0e50 T ieee80211_get_key_rx_seq +ffffffff817e0ee0 T ieee80211_set_key_rx_seq +ffffffff817e0f70 T ieee80211_remove_key +ffffffff817e0fc0 T ieee80211_gtk_rekey_add +ffffffff817e1050 t __iterate_interfaces +ffffffff817e1160 t ieee80211_extend_noa_desc +ffffffff817e11e0 t ieee80211_extend_absent_time +ffffffff817e1260 t ieee80211_iter_max_chans +ffffffff817e1270 t ieee80211_get_vif_queues +ffffffff817e12d0 t __ieee80211_stop_queue +ffffffff817e13c0 t ieee80211_assign_chanctx.part.3 +ffffffff817e1420 t ieee80211_chanctx_radar_detect.isra.4 +ffffffff817e14d0 t ieee80211_propagate_queue_wake.part.6 +ffffffff817e15b0 t __ieee80211_wake_queue +ffffffff817e1680 T wiphy_to_ieee80211_hw +ffffffff817e1690 T ieee80211_tx_set_protected +ffffffff817e16c0 T ieee80211_frame_duration +ffffffff817e1710 T ieee80211_generic_frame_duration +ffffffff817e17a0 T ieee80211_rts_duration +ffffffff817e18a0 T ieee80211_ctstoself_duration +ffffffff817e19b0 T ieee80211_propagate_queue_wake +ffffffff817e19d0 T ieee80211_wake_queue_by_reason +ffffffff817e1a20 T ieee80211_wake_queue +ffffffff817e1a30 T ieee80211_stop_queue_by_reason +ffffffff817e1a80 T ieee80211_stop_queue +ffffffff817e1a90 T ieee80211_add_pending_skb +ffffffff817e1b40 T ieee80211_add_pending_skbs +ffffffff817e1c30 T ieee80211_stop_queues_by_reason +ffffffff817e1cc0 T ieee80211_stop_queues +ffffffff817e1cd0 T ieee80211_queue_stopped +ffffffff817e1d20 T ieee80211_wake_queues_by_reason +ffffffff817e1db0 T ieee80211_wake_queues +ffffffff817e1dc0 T __ieee80211_flush_queues +ffffffff817e1e80 T ieee80211_flush_queues +ffffffff817e1e90 T ieee80211_stop_vif_queues +ffffffff817e1eb0 T ieee80211_wake_vif_queues +ffffffff817e1ed0 T ieee80211_iterate_interfaces +ffffffff817e1f20 T ieee80211_iterate_active_interfaces_atomic +ffffffff817e1f60 T ieee80211_iterate_active_interfaces_rtnl +ffffffff817e1f90 T ieee80211_iterate_stations_atomic +ffffffff817e1fe0 T wdev_to_ieee80211_vif +ffffffff817e2010 T ieee80211_vif_to_wdev +ffffffff817e2040 T ieee80211_queue_work +ffffffff817e2080 T ieee80211_queue_delayed_work +ffffffff817e20d0 t ieee80211_flush_completed_scan.part.8 +ffffffff817e2100 t ieee80211_handle_reconfig_failure +ffffffff817e21a0 T ieee802_11_parse_elems_crc +ffffffff817e2700 T ieee80211_set_wmm_default +ffffffff817e29d0 T ieee80211_send_auth +ffffffff817e2bc0 T ieee80211_send_deauth_disassoc +ffffffff817e2cf0 T ieee80211_build_preq_ies +ffffffff817e33f0 T ieee80211_build_probe_req +ffffffff817e3530 T ieee80211_send_probe_req +ffffffff817e35e0 T ieee80211_sta_get_rates +ffffffff817e37b0 T ieee80211_stop_device +ffffffff817e37e0 T ieee80211_reconfig +ffffffff817e4250 T ieee80211_resume_disconnect +ffffffff817e42c0 T ieee80211_recalc_smps +ffffffff817e4310 T ieee80211_recalc_min_chandef +ffffffff817e4360 T ieee80211_ie_split_vendor +ffffffff817e4390 T ieee80211_enable_rssi_reports +ffffffff817e43b0 T ieee80211_disable_rssi_reports +ffffffff817e43d0 T ieee80211_ie_build_ht_cap +ffffffff817e4420 T ieee80211_ie_build_vht_cap +ffffffff817e4440 T ieee80211_ie_build_ht_oper +ffffffff817e4500 T ieee80211_ie_build_wide_bw_cs +ffffffff817e4560 T ieee80211_ie_build_vht_oper +ffffffff817e4620 T ieee80211_chandef_ht_oper +ffffffff817e4670 T ieee80211_chandef_vht_oper +ffffffff817e4780 T ieee80211_parse_bitrates +ffffffff817e4880 T ieee80211_add_srates_ie +ffffffff817e4a10 T ieee80211_add_ext_srates_ie +ffffffff817e4bb0 T ieee80211_ave_rssi +ffffffff817e4bd0 T ieee80211_mcs_to_chains +ffffffff817e4c00 T ieee80211_calculate_rx_timestamp +ffffffff817e4da0 T ieee80211_dfs_cac_cancel +ffffffff817e4e50 T ieee80211_dfs_radar_detected_work +ffffffff817e4f40 T ieee80211_radar_detected +ffffffff817e4f60 T ieee80211_chandef_downgrade +ffffffff817e5050 T ieee80211_smps_is_restrictive +ffffffff817e5080 T ieee80211_send_action_csa +ffffffff817e5270 T ieee80211_cs_valid +ffffffff817e52b0 T ieee80211_cs_list_valid +ffffffff817e5340 T ieee80211_cs_get +ffffffff817e53a0 T ieee80211_cs_headroom +ffffffff817e54b0 T ieee80211_update_p2p_noa +ffffffff817e5580 T ieee80211_parse_p2p_noa +ffffffff817e5640 T ieee80211_recalc_dtim +ffffffff817e56c0 T ieee80211_check_combinations +ffffffff817e5890 T ieee80211_max_num_channels +ffffffff817e5940 T ieee80211_add_wmm_info_ie +ffffffff817e5960 T ieee80211_txq_get_depth +ffffffff817e59b0 t ieee80211_downgrade_queue +ffffffff817e5aa0 T ieee80211_select_queue_80211 +ffffffff817e5b20 T ieee80211_select_queue +ffffffff817e5c70 T ieee80211_set_qos_hdr +ffffffff817e5ce0 t ieee80211_get_max_required_bw +ffffffff817e5d80 t ieee80211_del_chanctx +ffffffff817e5e10 t ieee80211_free_chanctx +ffffffff817e5ea0 t ieee80211_chanctx_non_reserved_chandef.isra.3 +ffffffff817e5f00 t ieee80211_chanctx_reserved_chandef.isra.4 +ffffffff817e5f50 t ieee80211_add_chanctx +ffffffff817e6020 t ieee80211_vif_chanctx_reservation_complete +ffffffff817e6070 t ieee80211_vif_update_chandef.part.9 +ffffffff817e60c0 t ieee80211_recalc_radar_chanctx +ffffffff817e6190 T ieee80211_chanctx_refcount +ffffffff817e61f0 T ieee80211_get_sta_bw +ffffffff817e6220 T ieee80211_recalc_chanctx_min_def +ffffffff817e6400 t ieee80211_change_chanctx +ffffffff817e64e0 t ieee80211_alloc_chanctx +ffffffff817e6570 t ieee80211_new_chanctx +ffffffff817e65f0 T ieee80211_is_radar_required +ffffffff817e6640 T ieee80211_recalc_chanctx_chantype +ffffffff817e6790 T ieee80211_recalc_smps_chanctx +ffffffff817e6970 t ieee80211_vif_use_reserved_reassign +ffffffff817e6d80 t ieee80211_assign_vif_chanctx +ffffffff817e6fb0 t ieee80211_vif_use_reserved_assign +ffffffff817e7130 T ieee80211_vif_copy_chanctx_to_vlans +ffffffff817e71b0 T ieee80211_vif_unreserve_chanctx +ffffffff817e72f0 t ieee80211_vif_use_reserved_switch +ffffffff817e7bc0 t __ieee80211_vif_release_channel +ffffffff817e7d00 T ieee80211_vif_reserve_chanctx +ffffffff817e7fe0 T ieee80211_vif_use_channel +ffffffff817e8260 T ieee80211_vif_use_reserved_context +ffffffff817e8330 T ieee80211_vif_change_bandwidth +ffffffff817e84b0 T ieee80211_vif_release_channel +ffffffff817e8500 T ieee80211_vif_vlan_copy_chanctx +ffffffff817e8560 T ieee80211_iter_chan_contexts_atomic +ffffffff817e85c0 t ieee80211_handle_bss_capability +ffffffff817e86c0 t ieee80211_chswitch_timer +ffffffff817e86d0 t ieee80211_sta_conn_mon_timer +ffffffff817e8700 t ieee80211_sta_timer +ffffffff817e8720 t ieee80211_stop_poll +ffffffff817e8760 t ieee80211_determine_chantype +ffffffff817e8a40 t ieee80211_report_disconnect +ffffffff817e8ad0 t ieee80211_destroy_auth_data +ffffffff817e8b80 t ieee80211_auth_challenge +ffffffff817e8c60 t ieee80211_destroy_assoc_data +ffffffff817e8d30 t ieee80211_auth +ffffffff817e8ee0 t ieee80211_prep_connection +ffffffff817e9630 t ieee80211_powersave_allowed +ffffffff817e96a0 t ieee80211_sta_wmm_params +ffffffff817e99d0 t ieee80211_rx_bss_info.isra.5 +ffffffff817e9a50 t ieee80211_sta_bcn_mon_timer +ffffffff817e9a80 t ieee80211_sta_process_chanswitch.constprop.15 +ffffffff817e9e50 T ieee80211_sta_reset_beacon_monitor +ffffffff817e9ea0 T ieee80211_sta_reset_conn_monitor +ffffffff817e9f00 t ieee80211_chswitch_work +ffffffff817ea040 T ieee80211_send_pspoll +ffffffff817ea0b0 T ieee80211_send_nullfunc +ffffffff817ea180 t ieee80211_recalc_ps.part.11 +ffffffff817ea2d0 t ieee80211_reset_ap_probe +ffffffff817ea3a0 t ieee80211_rx_mgmt_probe_resp +ffffffff817ea450 t ieee80211_mgd_probe_ap_send +ffffffff817ea5a0 t ieee80211_mgd_probe_ap.part.12 +ffffffff817ea6c0 t ieee80211_sta_monitor_work +ffffffff817ea6e0 T ieee80211_chswitch_done +ffffffff817ea730 T ieee80211_recalc_ps +ffffffff817ea750 T ieee80211_recalc_ps_vif +ffffffff817ea780 t ieee80211_set_disassoc +ffffffff817eab20 t __ieee80211_disconnect +ffffffff817eabf0 t ieee80211_csa_connection_drop_work +ffffffff817eac00 t ieee80211_beacon_connection_loss_work +ffffffff817eac60 t ieee80211_sta_connection_lost.constprop.13 +ffffffff817eacb0 t ieee80211_rx_mgmt_assoc_resp +ffffffff817eafc0 t ieee80211_rx_mgmt_beacon +ffffffff817ec000 T ieee80211_dynamic_ps_disable_work +ffffffff817ec040 T ieee80211_dynamic_ps_enable_work +ffffffff817ec1f0 T ieee80211_dynamic_ps_timer +ffffffff817ec210 T ieee80211_dfs_cac_timer_work +ffffffff817ec2a0 T ieee80211_sta_handle_tspec_ac_params +ffffffff817ec4e0 t ieee80211_sta_handle_tspec_ac_params_wk +ffffffff817ec4f0 T ieee80211_sta_rx_notify +ffffffff817ec500 T ieee80211_sta_tx_notify +ffffffff817ec690 T ieee80211_ap_probereq_get +ffffffff817ec740 T ieee80211_beacon_loss +ffffffff817ec760 T ieee80211_connection_loss +ffffffff817ec780 T ieee80211_sta_rx_queued_mgmt +ffffffff817ecd80 T ieee80211_mgd_conn_tx_status +ffffffff817ecdb0 T ieee80211_sta_work +ffffffff817edeb0 T ieee80211_sta_restart +ffffffff817edf10 T ieee80211_sta_setup_sdata +ffffffff817ee150 T ieee80211_mlme_notify_scan_completed +ffffffff817ee1d0 T ieee80211_mgd_auth +ffffffff817ee540 T ieee80211_mgd_assoc +ffffffff817eeec0 T ieee80211_mgd_deauth +ffffffff817ef100 T ieee80211_mgd_quiesce +ffffffff817ef220 T ieee80211_mgd_disassoc +ffffffff817ef2c0 T ieee80211_mgd_stop +ffffffff817ef3b0 T ieee80211_cqm_rssi_notify +ffffffff817ef3c0 T ieee80211_cqm_beacon_loss_notify +ffffffff817ef3cc t ieee80211_assoc_success +ffffffff817efcc0 t ieee80211_tdls_add_link_ie +ffffffff817efd30 t ieee80211_tdls_add_subband +ffffffff817efea0 t ieee80211_tdls_find_sw_timing_ie +ffffffff817efee0 t ieee80211_get_tdls_sta_capab.part.0 +ffffffff817eff40 t ieee80211_tdls_chandef_vht_upgrade.isra.1 +ffffffff817f00d0 t iee80211_tdls_recalc_ht_protection.part.2 +ffffffff817f01a0 t iee80211_tdls_recalc_chanctx.isra.3 +ffffffff817f0270 t ieee80211_tdls_build_mgmt_packet_data +ffffffff817f1180 t ieee80211_tdls_ch_sw_resp_tmpl_get +ffffffff817f1230 t ieee80211_process_tdls_channel_switch_req +ffffffff817f14d0 t ieee80211_process_tdls_channel_switch_resp +ffffffff817f1680 t ieee80211_tdls_prep_mgmt_packet.constprop.4 +ffffffff817f1a00 T ieee80211_tdls_peer_del_work +ffffffff817f1a60 T ieee80211_tdls_mgmt +ffffffff817f1d90 T ieee80211_tdls_oper +ffffffff817f1fb0 T ieee80211_tdls_oper_request +ffffffff817f1fe0 T ieee80211_tdls_channel_switch +ffffffff817f21d0 T ieee80211_tdls_cancel_channel_switch +ffffffff817f2270 T ieee80211_teardown_tdls_peers +ffffffff817f2310 T ieee80211_tdls_chsw_work +ffffffff817f2430 t ieee80211_ocb_housekeeping_timer +ffffffff817f2450 T ieee80211_ocb_rx_no_sta +ffffffff817f2570 T ieee80211_ocb_work +ffffffff817f26f0 T ieee80211_ocb_setup_sdata +ffffffff817f2730 T ieee80211_ocb_join +ffffffff817f27f0 T ieee80211_ocb_leave +ffffffff817f2920 T __ieee80211_suspend +ffffffff817f2c70 T ieee80211_report_wowlan_wakeup +ffffffff817f2c80 t minstrel_get_expected_throughput +ffffffff817f2cf0 t minstrel_get_rate +ffffffff817f2f20 t minstrel_free_sta +ffffffff817f2f40 t minstrel_alloc_sta +ffffffff817f3020 t minstrel_free +ffffffff817f3030 t minstrel_update_rates.isra.1 +ffffffff817f3150 t minstrel_rate_init +ffffffff817f35b0 t minstrel_alloc +ffffffff817f36c0 T minstrel_get_tp_avg +ffffffff817f3710 T minstrel_calc_rate_stats +ffffffff817f37b0 t minstrel_tx_status +ffffffff817f3b90 T rc80211_minstrel_exit +ffffffff817f3ba0 t minstrel_ht_txstat_valid +ffffffff817f3bf0 t minstrel_ht_set_rate +ffffffff817f3ee0 t minstrel_ht_alloc +ffffffff817f3ef0 t minstrel_ht_free +ffffffff817f3f00 t minstrel_ht_update_rates +ffffffff817f4070 t minstrel_ht_free_sta +ffffffff817f40a0 t minstrel_ht_alloc_sta +ffffffff817f4180 t minstrel_ht_get_rate +ffffffff817f4540 t minstrel_ht_get_tp_avg.part.3 +ffffffff817f45a0 t minstrel_ht_get_expected_throughput +ffffffff817f4610 t minstrel_ht_sort_best_tp_rates +ffffffff817f4730 t minstrel_ht_update_stats.isra.4 +ffffffff817f4be0 t minstrel_ht_tx_status +ffffffff817f5020 t minstrel_ht_update_caps +ffffffff817f53f0 t minstrel_ht_rate_update +ffffffff817f5400 t minstrel_ht_rate_init +ffffffff817f5410 T minstrel_ht_get_tp_avg +ffffffff817f5420 T rc80211_minstrel_ht_exit +ffffffff817f5430 t net_ctl_header_lookup +ffffffff817f5450 t is_seen +ffffffff817f5480 t sysctl_net_exit +ffffffff817f5490 t sysctl_net_init +ffffffff817f54b0 t net_ctl_set_ownership +ffffffff817f54f0 t net_ctl_permissions +ffffffff817f5530 T register_net_sysctl +ffffffff817f5540 T unregister_net_sysctl_table +ffffffff817f5550 T argv_free +ffffffff817f5570 T argv_split +ffffffff817f5690 T chacha20_block +ffffffff817f5920 T get_option +ffffffff817f5980 T get_options +ffffffff817f5a40 T memparse +ffffffff817f5ab0 T parse_option_str +ffffffff817f5b30 T next_arg +ffffffff817f5c30 T cpumask_next +ffffffff817f5c50 T cpumask_next_and +ffffffff817f5c70 T cpumask_any_but +ffffffff817f5cb0 T cpumask_next_wrap +ffffffff817f5d20 T cpumask_local_spread +ffffffff817f5e00 T _atomic_dec_and_lock +ffffffff817f5e3b T dump_stack +ffffffff817f5ea0 t swap_ex +ffffffff817f5ee0 t cmp_ex_sort +ffffffff817f5f10 t cmp_ex_search +ffffffff817f5f30 T sort_extable +ffffffff817f5f60 T search_extable +ffffffff817f5f90 t fprop_reflect_period_single.isra.0 +ffffffff817f5fe0 t fprop_reflect_period_percpu.isra.1 +ffffffff817f6090 T fprop_global_init +ffffffff817f60c0 T fprop_global_destroy +ffffffff817f60d0 T fprop_new_period +ffffffff817f6140 T fprop_local_init_single +ffffffff817f6160 T fprop_local_destroy_single +ffffffff817f6170 T __fprop_inc_single +ffffffff817f61a0 T fprop_fraction_single +ffffffff817f6210 T fprop_local_init_percpu +ffffffff817f6240 T fprop_local_destroy_percpu +ffffffff817f6250 T __fprop_inc_percpu +ffffffff817f62a0 T fprop_fraction_percpu +ffffffff817f6310 T __fprop_inc_percpu_max +ffffffff817f6390 T idr_alloc_u32 +ffffffff817f6440 T idr_alloc +ffffffff817f6480 T idr_alloc_cyclic +ffffffff817f6520 T idr_remove +ffffffff817f6530 T idr_find +ffffffff817f6540 T idr_for_each +ffffffff817f6610 T idr_get_next +ffffffff817f6670 T idr_get_next_ul +ffffffff817f66d0 T idr_replace +ffffffff817f6770 T ida_get_new_above +ffffffff817f6a30 T ida_remove +ffffffff817f6b00 T ida_destroy +ffffffff817f6bb0 T ida_simple_get +ffffffff817f6c80 T ida_simple_remove +ffffffff817f6cc0 T int_sqrt +ffffffff817f6d10 T ioremap_page_range +ffffffff817f7150 T current_is_single_threaded +ffffffff817f7230 t klist_dec_and_del +ffffffff817f7300 t klist_put +ffffffff817f7370 T klist_init +ffffffff817f7390 T klist_add_head +ffffffff817f73f0 T klist_add_tail +ffffffff817f7450 T klist_add_behind +ffffffff817f74c0 T klist_add_before +ffffffff817f7530 T klist_del +ffffffff817f7540 T klist_remove +ffffffff817f7630 T klist_node_attached +ffffffff817f7640 T klist_iter_init_node +ffffffff817f76b0 T klist_iter_init +ffffffff817f76c0 T klist_iter_exit +ffffffff817f76f0 T klist_prev +ffffffff817f77c0 T klist_next +ffffffff817f7890 t kobj_attr_show +ffffffff817f78b0 t kobj_attr_store +ffffffff817f78d0 t dynamic_kobj_release +ffffffff817f78e0 t kset_release +ffffffff817f78f0 T kobject_namespace +ffffffff817f7940 T kobject_get_path +ffffffff817f79e0 T kobject_set_name_vargs +ffffffff817f7a70 T kobject_set_name +ffffffff817f7ac0 T kobject_init +ffffffff817f7b40 T kobject_get +ffffffff817f7b60 T kobject_get_unless_zero +ffffffff817f7bc0 T kobject_put +ffffffff817f7c40 t kobj_kset_leave +ffffffff817f7c90 t kobject_del.part.0 +ffffffff817f7cd0 T kobject_del +ffffffff817f7ce0 T kobject_rename +ffffffff817f7e00 T kobject_move +ffffffff817f7f30 T kobject_create +ffffffff817f7f60 T kset_init +ffffffff817f7fa0 T kset_unregister +ffffffff817f7fc0 T kset_find_obj +ffffffff817f8030 T kobj_ns_type_register +ffffffff817f8080 T kobj_ns_type_registered +ffffffff817f80c0 t kobject_add_internal +ffffffff817f8290 T kobject_add +ffffffff817f8340 T kobject_create_and_add +ffffffff817f83a0 T kset_register +ffffffff817f8400 T kset_create_and_add +ffffffff817f8480 T kobject_init_and_add +ffffffff817f8510 T kobj_child_ns_ops +ffffffff817f8530 T kobj_ns_ops +ffffffff817f8560 T kobj_ns_current_may_mount +ffffffff817f85b0 T kobj_ns_grab_current +ffffffff817f8600 T kobj_ns_netlink +ffffffff817f8650 T kobj_ns_initial +ffffffff817f86a0 T kobj_ns_drop +ffffffff817f8700 t kobj_bcast_filter +ffffffff817f8780 t uevent_net_exit +ffffffff817f8820 t uevent_net_init +ffffffff817f8900 T add_uevent_var +ffffffff817f89c0 T kobject_uevent_env +ffffffff817f8f30 T kobject_synth_uevent +ffffffff817f92a0 T kobject_uevent +ffffffff817f92b0 T nmi_cpu_backtrace +ffffffff817f9370 T nmi_trigger_cpumask_backtrace +ffffffff817f9440 T plist_add +ffffffff817f94d0 T plist_del +ffffffff817f9540 T plist_requeue +ffffffff817f95c0 t replace_slot +ffffffff817f9690 t __radix_tree_preload +ffffffff817f9740 t radix_tree_node_ctor +ffffffff817f9780 t radix_tree_node_rcu_free +ffffffff817f97f0 t radix_tree_free_nodes +ffffffff817f9880 t delete_node +ffffffff817f9a50 t radix_tree_cpu_dead +ffffffff817f9ac0 t node_tag_set.isra.4 +ffffffff817f9b10 t node_tag_clear.isra.6 +ffffffff817f9b70 t __radix_tree_delete +ffffffff817f9c00 t radix_tree_node_alloc.constprop.9 +ffffffff817f9cc0 t radix_tree_extend +ffffffff817f9e30 t node_tag_get.isra.2.constprop.10 +ffffffff817f9e50 T radix_tree_preload +ffffffff817f9e60 T radix_tree_maybe_preload +ffffffff817f9e80 T radix_tree_split_preload +ffffffff817f9ee0 T radix_tree_maybe_preload_order +ffffffff817f9f40 T __radix_tree_create +ffffffff817fa100 T __radix_tree_insert +ffffffff817fa2f0 T __radix_tree_lookup +ffffffff817fa3e0 T radix_tree_lookup_slot +ffffffff817fa400 T radix_tree_lookup +ffffffff817fa410 T __radix_tree_replace +ffffffff817fa4b0 T radix_tree_replace_slot +ffffffff817fa4c0 T radix_tree_iter_replace +ffffffff817fa4d0 T radix_tree_join +ffffffff817fa760 T radix_tree_split +ffffffff817fae80 T radix_tree_tag_set +ffffffff817faf70 T radix_tree_iter_tag_set +ffffffff817faf90 T radix_tree_tag_clear +ffffffff817fb060 T radix_tree_iter_tag_clear +ffffffff817fb080 T radix_tree_tag_get +ffffffff817fb150 T __radix_tree_next_slot +ffffffff817fb2e0 T radix_tree_iter_resume +ffffffff817fb360 T radix_tree_next_chunk +ffffffff817fb680 T radix_tree_gang_lookup +ffffffff817fb770 T radix_tree_gang_lookup_slot +ffffffff817fb850 T radix_tree_gang_lookup_tag +ffffffff817fb980 T radix_tree_gang_lookup_tag_slot +ffffffff817fbaa0 T __radix_tree_delete_node +ffffffff817fbab0 T radix_tree_iter_delete +ffffffff817fbad0 T radix_tree_delete_item +ffffffff817fbb60 T radix_tree_delete +ffffffff817fbb70 T radix_tree_clear_tags +ffffffff817fbbc0 T radix_tree_tagged +ffffffff817fbbd0 T idr_preload +ffffffff817fbbf0 T ida_pre_get +ffffffff817fbc70 T idr_get_free +ffffffff817fbf50 T idr_destroy +ffffffff817fbf90 T ___ratelimit +ffffffff817fc060 T __rb_erase_color +ffffffff817fc2c0 T rb_insert_color +ffffffff817fc450 T rb_erase +ffffffff817fc7d0 T rb_insert_color_cached +ffffffff817fc970 T __rb_insert_augmented +ffffffff817fcba0 T rb_first +ffffffff817fcbc0 T rb_last +ffffffff817fcbe0 T rb_next +ffffffff817fcc30 T rb_erase_cached +ffffffff817fcfd0 T rb_prev +ffffffff817fd020 T rb_replace_node +ffffffff817fd080 T rb_replace_node_cached +ffffffff817fd0a0 T rb_replace_node_rcu +ffffffff817fd100 T rb_next_postorder +ffffffff817fd140 T rb_first_postorder +ffffffff817fd170 T sha_transform +ffffffff817fe200 T sha_init +ffffffff817fe230 T show_mem +ffffffff817fe2c0 T __siphash_aligned +ffffffff817fe520 T siphash_1u64 +ffffffff817fe710 T siphash_2u64 +ffffffff817fe960 T siphash_3u64 +ffffffff817fec20 T siphash_4u64 +ffffffff817fef50 T siphash_1u32 +ffffffff817ff0d0 T siphash_3u32 +ffffffff817ff2c0 T __hsiphash_aligned +ffffffff817ff470 T hsiphash_1u32 +ffffffff817ff590 T hsiphash_2u32 +ffffffff817ff6f0 T hsiphash_3u32 +ffffffff817ff850 T hsiphash_4u32 +ffffffff817ffa00 T strncasecmp +ffffffff817ffa90 T strcasecmp +ffffffff817ffae0 T strcpy +ffffffff817ffb00 T strncpy +ffffffff817ffb30 T strlcpy +ffffffff817ffb70 T strscpy +ffffffff817ffcd0 T strcat +ffffffff817ffd00 T strncat +ffffffff817ffd50 T strlcat +ffffffff817ffdc0 T strcmp +ffffffff817ffde0 T strncmp +ffffffff817ffe30 T strchr +ffffffff817ffe60 T strchrnul +ffffffff817ffe90 T strrchr +ffffffff817ffeb0 T strnchr +ffffffff817ffef0 T skip_spaces +ffffffff817fff20 T strim +ffffffff817fffa0 T strlen +ffffffff817fffc0 T strnlen +ffffffff817ffff0 T strspn +ffffffff81800040 T strcspn +ffffffff81800090 T strpbrk +ffffffff818000e0 T strsep +ffffffff81800140 T sysfs_streq +ffffffff81800190 T match_string +ffffffff818001e0 T __sysfs_match_string +ffffffff81800230 T memzero_explicit +ffffffff81800240 T memcmp +ffffffff81800280 T memscan +ffffffff818002b0 T strstr +ffffffff81800320 T strnstr +ffffffff81800370 T memchr +ffffffff81800390 T memchr_inv +ffffffff81800490 T strreplace +ffffffff818004ae T fortify_panic +ffffffff818004c0 T timerqueue_add +ffffffff81800530 T timerqueue_del +ffffffff81800570 T timerqueue_iterate_next +ffffffff81800580 t skip_atoi +ffffffff818005b0 t put_dec_trunc8 +ffffffff81800650 t put_dec_full8 +ffffffff818006c0 t put_dec +ffffffff81800750 t number +ffffffff81800a70 t ip4_string +ffffffff81800b50 t ip6_string +ffffffff81800be0 t pointer_string +ffffffff81800c60 t fill_random_ptr_key +ffffffff81800c80 t format_decode +ffffffff81801020 t widen_string +ffffffff818010c0 t string +ffffffff81801140 t hex_string +ffffffff81801220 t mac_address_string +ffffffff818012f0 t ip4_addr_string +ffffffff81801330 t uuid_string +ffffffff81801440 t flags_string +ffffffff81801520 t resource_string +ffffffff81801840 t ip6_compressed_string +ffffffff81801ad0 t ip6_addr_string +ffffffff81801b30 t ip4_addr_string_sa +ffffffff81801c30 t ip6_addr_string_sa +ffffffff81801dd0 t escaped_string +ffffffff81801ea0 t restricted_pointer +ffffffff81802030 t clock +ffffffff81802080 t dentry_name +ffffffff818021d0 t device_node_string.isra.1 +ffffffff818021e0 t bitmap_list_string.isra.3 +ffffffff818022f0 t bitmap_string.isra.4 +ffffffff818023d0 t bdev_name.isra.5 +ffffffff81802470 t special_hex_number.constprop.8 +ffffffff81802480 t address_val +ffffffff81802490 t netdev_bits +ffffffff818024a0 t symbol_string.isra.2 +ffffffff818024b0 T simple_strtoull +ffffffff81802500 T simple_strtoul +ffffffff81802510 T simple_strtol +ffffffff81802530 T simple_strtoll +ffffffff81802550 T num_to_str +ffffffff818025d0 T vsnprintf +ffffffff81802ad0 t pointer +ffffffff81802e70 T vscnprintf +ffffffff81802ea0 T snprintf +ffffffff81802ee0 T scnprintf +ffffffff81802f50 T vsprintf +ffffffff81802f60 T sprintf +ffffffff81802fb0 T vsscanf +ffffffff81803840 T sscanf +ffffffff81803890 t minmax_subwin_update +ffffffff81803900 T minmax_running_max +ffffffff81803960 T minmax_running_min +ffffffff818039c0 T clear_page_rep +ffffffff818039d0 T clear_page_orig +ffffffff81803a10 T clear_page_erms +ffffffff81803a20 T cmdline_find_option_bool +ffffffff81803b30 T cmdline_find_option +ffffffff81803d10 T this_cpu_cmpxchg16b_emu +ffffffff81803d30 T copy_page +ffffffff81803d40 T copy_page_regs +ffffffff81803e20 T copy_user_generic_unrolled +ffffffff81803ee0 T copy_user_generic_string +ffffffff81803f20 T copy_user_enhanced_fast_string +ffffffff81803f40 T __copy_user_nocache +ffffffff81804030 T x86_family +ffffffff81804050 T x86_model +ffffffff81804080 T x86_stepping +ffffffff81804090 t do_csum +ffffffff818041e0 T csum_partial +ffffffff818041f0 T ip_compute_csum +ffffffff81804220 T csum_partial_copy_from_user +ffffffff818042f0 T csum_partial_copy_to_user +ffffffff81804380 T csum_partial_copy_nocheck +ffffffff81804390 T csum_ipv6_magic +ffffffff818043f0 t delay_loop +ffffffff81804420 t delay_tsc +ffffffff818044a0 t delay_mwaitx +ffffffff81804520 T use_tsc_delay +ffffffff81804540 T use_mwaitx_delay +ffffffff81804550 T read_current_timer +ffffffff81804580 T __delay +ffffffff81804590 T __const_udelay +ffffffff818045d0 T __udelay +ffffffff81804610 T __ndelay +ffffffff81804650 T __get_user_1 +ffffffff81804680 T __get_user_2 +ffffffff818046b0 T __get_user_4 +ffffffff818046e0 T __get_user_8 +ffffffff8180470b t bad_get_user +ffffffff81804720 t get_segment_selector.isra.0 +ffffffff81804760 t get_reg_offset.isra.1 +ffffffff818047f0 t get_eff_addr_reg +ffffffff81804890 t get_eff_addr_modrm +ffffffff81804960 t get_eff_addr_sib +ffffffff81804aa0 t resolve_default_seg.isra.3.part.4 +ffffffff81804ae0 T insn_get_seg_base +ffffffff81804ba0 t get_seg_base_limit +ffffffff81804eb0 T insn_get_code_seg_params +ffffffff81804f40 T insn_get_modrm_rm_off +ffffffff81804f60 T insn_get_addr_ref +ffffffff818051c0 t insn_get_prefixes.part.0 +ffffffff81805430 t insn_get_opcode.part.1 +ffffffff818055b0 t insn_get_modrm.part.2 +ffffffff818056a0 t insn_get_sib.part.3 +ffffffff81805700 t insn_get_displacement.part.4 +ffffffff818057d0 t insn_get_immediate.part.5 +ffffffff81805ad0 T insn_init +ffffffff81805b40 T insn_get_prefixes +ffffffff81805b50 T insn_get_opcode +ffffffff81805b60 T insn_get_modrm +ffffffff81805b70 T insn_rip_relative +ffffffff81805bb0 T insn_get_sib +ffffffff81805bc0 T insn_get_displacement +ffffffff81805bd0 T insn_get_immediate +ffffffff81805be0 T insn_get_length +ffffffff81805c20 T kaslr_get_random_long +ffffffff81805cb0 T __memcpy +ffffffff81805cb0 W memcpy +ffffffff81805cd0 T memcpy_erms +ffffffff81805ce0 T memcpy_orig +ffffffff81805df0 T memcpy_mcsafe_unrolled +ffffffff81805eb0 T __memmove +ffffffff81805eb0 W memmove +ffffffff81806050 T __memset +ffffffff81806050 W memset +ffffffff81806080 T memset_erms +ffffffff81806090 T memset_orig +ffffffff81806140 T num_digits +ffffffff81806170 T __put_user_1 +ffffffff818061a0 T __put_user_2 +ffffffff818061d0 T __put_user_4 +ffffffff81806200 T __put_user_8 +ffffffff81806225 t bad_put_user +ffffffff81806230 T call_rwsem_down_read_failed +ffffffff81806260 T call_rwsem_down_read_failed_killable +ffffffff81806290 T call_rwsem_down_write_failed +ffffffff818062b0 T call_rwsem_down_write_failed_killable +ffffffff818062d0 T call_rwsem_wake +ffffffff81806300 T call_rwsem_downgrade_wake +ffffffff81806330 T copy_from_user_nmi +ffffffff818063a0 t clean_cache_range +ffffffff818063d0 T __clear_user +ffffffff81806410 T clear_user +ffffffff81806440 T copy_user_handle_tail +ffffffff81806480 T arch_wb_cache_pmem +ffffffff81806490 T __copy_user_flushcache +ffffffff81806540 T memcpy_flushcache +ffffffff818066a0 T memcpy_page_flushcache +ffffffff81806700 T csum_partial_copy_generic +ffffffff81806870 T inat_get_opcode_attribute +ffffffff81806880 T inat_get_last_prefix_id +ffffffff818068a0 T inat_get_escape_attribute +ffffffff818068f0 T inat_get_group_attribute +ffffffff81806950 T inat_get_avx_attribute +ffffffff81808630 t rest_init +ffffffff818086f0 t kernel_init +ffffffff818087e0 T check_enable_amd_mmconf_dmi +ffffffff818087f0 t adjust_range_page_size_mask +ffffffff81808890 T alloc_low_pages +ffffffff818089c0 T init_memory_mapping +ffffffff81808cb0 T free_initmem +ffffffff81808cd0 t spp_getpage +ffffffff81808d30 t _cpu_down +ffffffff81808f30 T __irq_alloc_descs +ffffffff81809120 T build_all_zonelists +ffffffff818091c8 t sparse_index_alloc +ffffffff818091fa t __earlyonly_bootmem_alloc +ffffffff81809210 T acpi_os_map_iomem +ffffffff81809380 T acpi_os_unmap_iomem +ffffffff81809440 T acpi_os_map_memory +ffffffff81809450 T acpi_os_unmap_memory +ffffffff81809460 t vclkdev_alloc +ffffffff818094e0 T clkdev_alloc +ffffffff81809540 t dmar_validate_one_drhd +ffffffff818095d0 t is_mmconf_reserved +ffffffff81809760 t pci_mmcfg_check_reserved +ffffffff818097f0 T __sched_text_start +ffffffff818097f0 t __schedule +ffffffff81809d50 t preempt_schedule_common +ffffffff81809d80 T schedule +ffffffff81809e00 T schedule_idle +ffffffff81809e30 T schedule_preempt_disabled +ffffffff81809e50 T preempt_schedule +ffffffff81809e70 T preempt_schedule_notrace +ffffffff81809ec0 T preempt_schedule_irq +ffffffff81809f10 T __cond_resched_softirq +ffffffff81809f60 T yield +ffffffff81809f90 T yield_to +ffffffff8180a1b0 T io_schedule_timeout +ffffffff8180a1f0 T __wait_on_bit +ffffffff8180a270 T out_of_line_wait_on_bit +ffffffff8180a300 T out_of_line_wait_on_bit_timeout +ffffffff8180a390 T __wait_on_bit_lock +ffffffff8180a440 T out_of_line_wait_on_bit_lock +ffffffff8180a4d0 T out_of_line_wait_on_atomic_t +ffffffff8180a5c0 T atomic_t_wait +ffffffff8180a610 T bit_wait +ffffffff8180a660 T bit_wait_io +ffffffff8180a6b0 T bit_wait_timeout +ffffffff8180a720 T bit_wait_io_timeout +ffffffff8180a790 t wait_for_common +ffffffff8180a8e0 t wait_for_common_io.constprop.0 +ffffffff8180a9f0 T wait_for_completion +ffffffff8180aa10 T wait_for_completion_timeout +ffffffff8180aa20 T wait_for_completion_io +ffffffff8180aa30 T wait_for_completion_io_timeout +ffffffff8180aa40 T wait_for_completion_interruptible +ffffffff8180aa70 T wait_for_completion_interruptible_timeout +ffffffff8180aa80 T wait_for_completion_killable +ffffffff8180aab0 T wait_for_completion_killable_timeout +ffffffff8180aac0 t __ww_mutex_wakeup_for_backoff +ffffffff8180ab10 t __mutex_lock.isra.0 +ffffffff8180aff0 t __mutex_lock_slowpath +ffffffff8180b000 t __mutex_lock_interruptible_slowpath +ffffffff8180b010 t __mutex_lock_killable_slowpath +ffffffff8180b020 t __ww_mutex_lock.isra.1 +ffffffff8180b6a0 t __ww_mutex_lock_slowpath +ffffffff8180b6b0 t __ww_mutex_lock_interruptible_slowpath +ffffffff8180b6c0 t __mutex_unlock_slowpath.isra.2 +ffffffff8180b7b0 T mutex_lock +ffffffff8180b7d0 T mutex_unlock +ffffffff8180b7f0 T ww_mutex_unlock +ffffffff8180b820 T mutex_lock_interruptible +ffffffff8180b840 T mutex_lock_killable +ffffffff8180b860 T mutex_lock_io +ffffffff8180b880 T mutex_trylock +ffffffff8180b8e0 T ww_mutex_lock +ffffffff8180b950 T ww_mutex_lock_interruptible +ffffffff8180b9c0 t __down +ffffffff8180ba70 t __down_interruptible +ffffffff8180bb60 t __down_killable +ffffffff8180bc50 t __down_timeout +ffffffff8180bd10 t __up.isra.0 +ffffffff8180bd50 T down_read +ffffffff8180bd70 T down_read_killable +ffffffff8180bda0 T down_write +ffffffff8180bdd0 T down_write_killable +ffffffff8180be10 t __rt_mutex_slowlock +ffffffff8180bee0 t rt_mutex_slowlock.constprop.6 +ffffffff8180c070 T rt_mutex_lock +ffffffff8180c0a0 T rt_mutex_lock_interruptible +ffffffff8180c0d0 T rt_mutex_futex_trylock +ffffffff8180c140 T __rt_mutex_futex_trylock +ffffffff8180c180 T rt_mutex_trylock +ffffffff8180c230 T rt_mutex_unlock +ffffffff8180c310 T __rt_mutex_futex_unlock +ffffffff8180c340 T rt_mutex_futex_unlock +ffffffff8180c3c0 T rwsem_down_read_failed +ffffffff8180c4e0 T rwsem_down_read_failed_killable +ffffffff8180c6d0 T rwsem_down_write_failed +ffffffff8180c8f0 T rwsem_down_write_failed_killable +ffffffff8180cbb0 T console_conditional_schedule +ffffffff8180cbc0 T schedule_timeout +ffffffff8180ce50 T schedule_timeout_interruptible +ffffffff8180ce70 T schedule_timeout_killable +ffffffff8180ce90 T schedule_timeout_uninterruptible +ffffffff8180ceb0 T schedule_timeout_idle +ffffffff8180ced0 T usleep_range +ffffffff8180cf30 t do_nanosleep +ffffffff8180d090 t hrtimer_nanosleep_restart +ffffffff8180d0d0 T schedule_hrtimeout_range_clock +ffffffff8180d1c0 T schedule_hrtimeout_range +ffffffff8180d1d0 T schedule_hrtimeout +ffffffff8180d1e0 t alarm_timer_nsleep_restart +ffffffff8180d240 T ldsem_down_read +ffffffff8180d400 T ldsem_down_write +ffffffff8180d5f1 T __sched_text_end +ffffffff8180d5f8 T __cpuidle_text_start +ffffffff8180d600 T default_idle +ffffffff8180d610 t mwait_idle +ffffffff8180d680 T acpi_processor_ffh_cstate_enter +ffffffff8180d730 t cpu_idle_poll +ffffffff8180d780 T default_idle_call +ffffffff8180d7a0 t intel_idle +ffffffff8180d8b0 t acpi_idle_do_entry +ffffffff8180d8f0 t poll_idle +ffffffff8180d94d T __cpuidle_text_end +ffffffff8180d950 T __lock_text_start +ffffffff8180d950 T _raw_spin_lock +ffffffff8180d970 T _raw_spin_lock_bh +ffffffff8180d9a0 T _raw_spin_lock_irq +ffffffff8180d9c0 T _raw_spin_lock_irqsave +ffffffff8180d9f0 T _raw_spin_trylock +ffffffff8180da30 T _raw_spin_trylock_bh +ffffffff8180da70 T _raw_spin_unlock +ffffffff8180da90 T _raw_spin_unlock_bh +ffffffff8180dab0 T _raw_spin_unlock_irq +ffffffff8180dad0 T _raw_spin_unlock_irqrestore +ffffffff8180daf0 T _raw_read_lock +ffffffff8180db10 T _raw_write_lock +ffffffff8180db30 T _raw_read_lock_bh +ffffffff8180db60 T _raw_write_lock_bh +ffffffff8180db90 T _raw_read_lock_irq +ffffffff8180dbb0 T _raw_write_lock_irq +ffffffff8180dbd0 T _raw_read_lock_irqsave +ffffffff8180dc10 T _raw_write_lock_irqsave +ffffffff8180dc40 T _raw_read_trylock +ffffffff8180dc90 T _raw_write_trylock +ffffffff8180dcd0 T _raw_read_unlock +ffffffff8180dcf0 T _raw_write_unlock +ffffffff8180dd10 T _raw_read_unlock_bh +ffffffff8180dd30 T _raw_write_unlock_bh +ffffffff8180dd50 T _raw_read_unlock_irq +ffffffff8180dd70 T _raw_write_unlock_irq +ffffffff8180dd90 T _raw_read_unlock_irqrestore +ffffffff8180ddb0 T _raw_write_unlock_irqrestore +ffffffff8180ddc6 T __lock_text_end +ffffffff8180ddc8 T __kprobes_text_end +ffffffff8180ddc8 T __kprobes_text_start +ffffffff81a00000 T __entry_text_start +ffffffff81a00000 T entry_SYSCALL_64_stage2 +ffffffff81a00010 T entry_SYSCALL_64 +ffffffff81a00034 T entry_SYSCALL_64_after_hwframe +ffffffff81a000d6 t syscall_return_via_sysret +ffffffff81a00110 T __switch_to_asm +ffffffff81a00170 T ret_from_fork +ffffffff81a001b0 T irq_entries_start +ffffffff81a00820 T interrupt_entry +ffffffff81a008c0 t common_interrupt +ffffffff81a008cf t ret_from_intr +ffffffff81a008e3 T retint_user +ffffffff81a008eb T swapgs_restore_regs_and_return_to_usermode +ffffffff81a00924 t retint_kernel +ffffffff81a00941 T restore_regs_and_return_to_kernel +ffffffff81a00960 T native_iret +ffffffff81a00960 T native_irq_return_iret +ffffffff81a00970 T irq_move_cleanup_interrupt +ffffffff81a00990 T reboot_interrupt +ffffffff81a009b0 T kvm_posted_intr_ipi +ffffffff81a009d0 T kvm_posted_intr_wakeup_ipi +ffffffff81a009f0 T kvm_posted_intr_nested_ipi +ffffffff81a00a10 T divide_error +ffffffff81a00a50 T overflow +ffffffff81a00a90 T bounds +ffffffff81a00ad0 T invalid_op +ffffffff81a00b10 T device_not_available +ffffffff81a00b50 T double_fault +ffffffff81a00b80 T coprocessor_segment_overrun +ffffffff81a00bc0 T invalid_TSS +ffffffff81a00c10 T segment_not_present +ffffffff81a00c60 T spurious_interrupt_bug +ffffffff81a00ca0 T coprocessor_error +ffffffff81a00ce0 T alignment_check +ffffffff81a00d30 T simd_coprocessor_error +ffffffff81a00d70 T native_load_gs_index +ffffffff81a00d80 T do_softirq_own_stack +ffffffff81a00dc0 T debug +ffffffff81a00e10 T int3 +ffffffff81a00e50 T stack_segment +ffffffff81a00ea0 T general_protection +ffffffff81a00ef0 T page_fault +ffffffff81a00f40 T machine_check +ffffffff81a00f80 T paranoid_entry +ffffffff81a00fe0 T paranoid_exit +ffffffff81a00ff0 T error_entry +ffffffff81a010a0 T error_exit +ffffffff81a010b0 T nmi +ffffffff81a01168 t nested_nmi +ffffffff81a01180 t nested_nmi_out +ffffffff81a01183 t first_nmi +ffffffff81a011a1 t repeat_nmi +ffffffff81a011c6 t end_repeat_nmi +ffffffff81a011e0 t nmi_swapgs +ffffffff81a011e3 t nmi_restore +ffffffff81a01210 T ignore_sysret +ffffffff81a01220 T rewind_stack_do_exit +ffffffff81a01237 T __entry_text_end +ffffffff81a01238 T __irqentry_text_start +ffffffff81a01240 T apic_timer_interrupt +ffffffff81a01260 T x86_platform_ipi +ffffffff81a01280 T threshold_interrupt +ffffffff81a012a0 T thermal_interrupt +ffffffff81a012c0 T call_function_single_interrupt +ffffffff81a012e0 T call_function_interrupt +ffffffff81a01300 T reschedule_interrupt +ffffffff81a01320 T error_interrupt +ffffffff81a01340 T spurious_interrupt +ffffffff81a01360 T irq_work_interrupt +ffffffff81a01380 T do_IRQ +ffffffff81a01440 T smp_x86_platform_ipi +ffffffff81a014a0 T smp_irq_work_interrupt +ffffffff81a014d0 T smp_threshold_interrupt +ffffffff81a01510 T smp_thermal_interrupt +ffffffff81a01550 T smp_reschedule_interrupt +ffffffff81a01580 T smp_call_function_interrupt +ffffffff81a015b0 T smp_call_function_single_interrupt +ffffffff81a015c0 T smp_apic_timer_interrupt +ffffffff81a01650 T smp_spurious_interrupt +ffffffff81a016c0 T smp_error_interrupt +ffffffff81a017c0 T smp_irq_move_cleanup_interrupt +ffffffff81a01879 T __irqentry_text_end +ffffffff81c00000 T __do_softirq +ffffffff81c00000 T __softirqentry_text_start +ffffffff81c001d9 T __softirqentry_text_end +ffffffff81c001d9 t bad_gs +ffffffff81c01000 T __entry_trampoline_start +ffffffff81c01000 T _entry_trampoline +ffffffff81c01000 T entry_SYSCALL_64_trampoline +ffffffff81c02000 T __entry_trampoline_end +ffffffff81c02000 T __indirect_thunk_start +ffffffff81c02000 T __x86_indirect_thunk_rax +ffffffff81c02020 T __x86_indirect_thunk_rbx +ffffffff81c02040 T __x86_indirect_thunk_rcx +ffffffff81c02060 T __x86_indirect_thunk_rdx +ffffffff81c02080 T __x86_indirect_thunk_rsi +ffffffff81c020a0 T __x86_indirect_thunk_rdi +ffffffff81c020c0 T __x86_indirect_thunk_rbp +ffffffff81c020e0 T __x86_indirect_thunk_r8 +ffffffff81c02100 T __x86_indirect_thunk_r9 +ffffffff81c02120 T __x86_indirect_thunk_r10 +ffffffff81c02140 T __x86_indirect_thunk_r11 +ffffffff81c02160 T __x86_indirect_thunk_r12 +ffffffff81c02180 T __x86_indirect_thunk_r13 +ffffffff81c021a0 T __x86_indirect_thunk_r14 +ffffffff81c021c0 T __x86_indirect_thunk_r15 +ffffffff81c021d1 T __indirect_thunk_end +ffffffff81c021d1 T _etext +ffffffff81c021d4 R __start_notes +ffffffff81c02214 R __stop_notes +ffffffff81c02220 R __start___ex_table +ffffffff81c07740 R __stop___ex_table +ffffffff81e00000 r __param_str_initcall_debug +ffffffff81e00000 R __start_rodata +ffffffff81e00020 R linux_proc_banner +ffffffff81e00060 R linux_banner +ffffffff81e000e0 R sys_call_table +ffffffff81e00b60 r vvar_mapping +ffffffff81e00b80 r vdso_mapping +ffffffff81e00ba0 R vdso_image_64 +ffffffff81e01040 r nhm_magic.36563 +ffffffff81e01060 r knc_perfmon_event_map +ffffffff81e010a0 r hsw_lbr_sel_map +ffffffff81e01100 r snb_lbr_sel_map +ffffffff81e01160 r nhm_lbr_sel_map +ffffffff81e011c0 r branch_map +ffffffff81e01200 r lbr_desc +ffffffff81e01220 r p4_escr_table +ffffffff81e01340 r p4_general_events +ffffffff81e013a0 r p4_pebs_bind_map +ffffffff81e01400 r p6_perfmon_event_map +ffffffff81e01440 r __func__.36264 +ffffffff81e01460 r pt_address_ranges +ffffffff81e014c0 r pt_caps +ffffffff81e01628 r __func__.34871 +ffffffff81e01640 r __func__.35949 +ffffffff81e01658 r str.35899 +ffffffff81e01668 r __func__.35854 +ffffffff81e01670 R debug_idt_descr +ffffffff81e01680 r __func__.35235 +ffffffff81e01688 r __func__.35000 +ffffffff81e016a0 r exception_stack_sizes +ffffffff81e016c0 r exception_stack_names +ffffffff81e016e0 r __func__.32680 +ffffffff81e01700 r setup_data_attr_group +ffffffff81e01740 r boot_params_attr_group +ffffffff81e01780 r CSWTCH.194 +ffffffff81e01800 r __func__.29957 +ffffffff81e01820 r __func__.29851 +ffffffff81e01830 r __func__.29883 +ffffffff81e01860 r p6_nops +ffffffff81e018c0 r p6nops +ffffffff81e01900 r k8_nops +ffffffff81e01960 r k8nops +ffffffff81e019a0 R nommu_dma_ops +ffffffff81e01a40 r freq_desc_tables +ffffffff81e01b30 r __func__.40339 +ffffffff81e01b60 r xfeature_names +ffffffff81e02140 r user_x86_64_view +ffffffff81e02160 r regoffset_table +ffffffff81e022c0 r cache_type_map +ffffffff81e022d0 r types +ffffffff81e022d4 r levels +ffffffff81e022e0 r assocs +ffffffff81e02300 r cache_table +ffffffff81e02440 r cpuid_bits +ffffffff81e02520 r exception_stack_sizes +ffffffff81e02540 r cpuid_dependent_features +ffffffff81e02560 r default_cpu +ffffffff81e02600 r mitigation_options +ffffffff81e02660 r spectre_v2_strings +ffffffff81e026a0 r cpuid_deps +ffffffff81e027e0 R cpuinfo_op +ffffffff81e02800 R x86_bug_flags +ffffffff81e02900 R x86_cap_flags +ffffffff81e03c00 R x86_power_flags +ffffffff81e03f20 r intel_cpu_dev +ffffffff81e03f80 r intel_tlb_table +ffffffff81e051a0 r spectre_bad_microcodes +ffffffff81e05240 r __func__.34121 +ffffffff81e05250 r __func__.33351 +ffffffff81e05260 r mce_device_attrs +ffffffff81e052a0 r __func__.26563 +ffffffff81e052c0 r thermal_attr_group +ffffffff81e05300 r mtrr_fops +ffffffff81e05400 r mtrr_strings +ffffffff81e05440 R generic_mtrr_ops +ffffffff81e05480 r fixed_range_blocks +ffffffff81e054a0 r cpu_root_microcode_group +ffffffff81e054e0 r mc_attr_group +ffffffff81e05520 r microcode_fops +ffffffff81e05620 r ucode_path +ffffffff81e056e8 r __func__.34652 +ffffffff81e05700 r CSWTCH.260 +ffffffff81e05720 r error_interrupt_reason.45762 +ffffffff81e05760 r multi_dmi_table +ffffffff81e05a20 r deadline_match +ffffffff81e05b00 r x86_vector_domain_ops +ffffffff81e05b60 R mp_ioapic_irqdomain_ops +ffffffff81e05bc0 r hpet_msi_domain_info +ffffffff81e05c00 r __func__.30339 +ffffffff81e05c20 r __func__.23498 +ffffffff81e05c40 r __func__.23674 +ffffffff81e05c50 r __func__.23340 +ffffffff81e05c68 r __func__.23354 +ffffffff81e05c78 r __func__.23666 +ffffffff81e05ca0 r x86_swiotlb_dma_ops +ffffffff81e05d40 r pt_regs_offset +ffffffff81e05da0 r CSWTCH.18 +ffffffff81e05db8 r __func__.29017 +ffffffff81e05de0 R umip_insns +ffffffff81e05e60 r __func__.38764 +ffffffff81e05e80 r smep_warning +ffffffff81e05ec0 r nx_warning +ffffffff81e05f20 r CSWTCH.141 +ffffffff81e05f60 r CSWTCH.140 +ffffffff81e05f80 r CSWTCH.138 +ffffffff81e05fa0 r CSWTCH.134 +ffffffff81e05fd0 r __func__.34162 +ffffffff81e05fe0 r CSWTCH.23 +ffffffff81e07010 r __param_str_force +ffffffff81e07030 r SHIFT_MASK +ffffffff81e07080 r aesni_cpu_id +ffffffff81e070a0 r aesni_dec_xts +ffffffff81e070c8 r aesni_enc_xts +ffffffff81e070f0 r SHIFT_MASK +ffffffff81e07120 r aad_shift_arr +ffffffff81e07230 r byteswap_const +ffffffff81e07240 r ddq_low_msk +ffffffff81e07250 r ddq_high_add_1 +ffffffff81e07260 r ddq_add_1 +ffffffff81e07270 r ddq_add_2 +ffffffff81e07280 r ddq_add_3 +ffffffff81e07290 r ddq_add_4 +ffffffff81e072a0 r ddq_add_5 +ffffffff81e072b0 r ddq_add_6 +ffffffff81e072c0 r ddq_add_7 +ffffffff81e072d0 r ddq_add_8 +ffffffff81e072d0 r var_ddq_add +ffffffff81e072e0 r crc32c_cpu_id +ffffffff81e07300 r jump_table +ffffffff81e07408 r K_table +ffffffff81e07810 r K_XMM_AR +ffffffff81e07850 r BSWAP_SHUFB_CTL +ffffffff81e07880 r K_XMM_AR +ffffffff81e07900 r BSWAP_SHUFB_CTL +ffffffff81e07920 r sgi_uv1_dmi +ffffffff81e07c40 r execdomains_proc_fops +ffffffff81e07d40 r __func__.31982 +ffffffff81e07d60 r __param_str_crash_kexec_post_notifiers +ffffffff81e07d80 r __param_str_panic_on_warn +ffffffff81e07d90 r __param_str_pause_on_oops +ffffffff81e07d9e r __param_str_panic +ffffffff81e07dc0 R taint_flags +ffffffff81e07e00 R cpu_all_bits +ffffffff81e07e20 R cpu_bit_bitmap +ffffffff81e08040 r cpuhp_cpu_root_attr_group +ffffffff81e08080 r cpuhp_cpu_attr_group +ffffffff81e080c0 R softirq_to_name +ffffffff81e08120 r proc_iomem_operations +ffffffff81e08220 r proc_ioports_operations +ffffffff81e08320 r resource_op +ffffffff81e08340 r proc_wspace_sep +ffffffff81e08344 r cap_last_cap +ffffffff81e08350 r __func__.49995 +ffffffff81e08370 R __cap_empty_set +ffffffff81e083c0 r filter.47307 +ffffffff81e08400 r __func__.46320 +ffffffff81e085d0 r offsets.43462 +ffffffff81e085e0 r wq_sysfs_group +ffffffff81e08610 r __param_str_debug_force_rr_cpu +ffffffff81e08630 r __param_str_power_efficient +ffffffff81e08650 r __param_str_disable_numa +ffffffff81e08680 r module_uevent_ops +ffffffff81e086a0 r module_sysfs_ops +ffffffff81e086c0 R param_ops_string +ffffffff81e086e0 R param_array_ops +ffffffff81e08700 R param_ops_bint +ffffffff81e08720 R param_ops_invbool +ffffffff81e08740 R param_ops_bool_enable_only +ffffffff81e08760 R param_ops_bool +ffffffff81e08780 R param_ops_charp +ffffffff81e087a0 R param_ops_ullong +ffffffff81e087c0 R param_ops_ulong +ffffffff81e087e0 R param_ops_long +ffffffff81e08800 R param_ops_uint +ffffffff81e08820 R param_ops_int +ffffffff81e08840 R param_ops_ushort +ffffffff81e08860 R param_ops_short +ffffffff81e08880 R param_ops_byte +ffffffff81e088a0 r param.32255 +ffffffff81e088c0 r kernel_attr_group +ffffffff81e089a0 r reboot_cmd +ffffffff81e089b0 r __func__.3166 +ffffffff81e089c0 r state_char.13427 +ffffffff81e089d0 r __func__.56095 +ffffffff81e08a00 R sched_prio_to_wmult +ffffffff81e08aa0 R sched_prio_to_weight +ffffffff81e08b40 R min_cfs_quota_period +ffffffff81e08b48 R max_cfs_quota_period +ffffffff81e08b60 r fake_sched_class +ffffffff81e08c20 R sysctl_sched_time_avg +ffffffff81e08c24 R sysctl_sched_nr_migrate +ffffffff81e08c40 R idle_sched_class +ffffffff81e08d00 r degrade_factor +ffffffff81e08d28 r degrade_zero_ticks +ffffffff81e08d40 r runnable_avg_yN_inv +ffffffff81e08dc0 R fair_sched_class +ffffffff81e08e80 R sysctl_sched_migration_cost +ffffffff81e08ea0 R rt_sched_class +ffffffff81e08f60 R dl_sched_class +ffffffff81e09020 R stop_sched_class +ffffffff81e090e0 r __func__.36717 +ffffffff81e09300 r __func__.37693 +ffffffff81e09320 r pm_qos_power_fops +ffffffff81e09420 r pm_qos_array +ffffffff81e09460 r attr_group +ffffffff81e094a0 r mem_sleep_labels +ffffffff81e094c0 R pm_labels +ffffffff81e09540 r __param_str_always_kmsg_dump +ffffffff81e09560 r __param_str_console_suspend +ffffffff81e09578 r __param_str_time +ffffffff81e09590 r __param_str_ignore_loglevel +ffffffff81e095c0 R kmsg_fops +ffffffff81e096b8 r trunc_msg +ffffffff81e096c4 r newline.10144 +ffffffff81e096c8 r __func__.20229 +ffffffff81e096e0 r __param_str_irqfixup +ffffffff81e09700 r __param_str_noirqdebug +ffffffff81e09718 r __func__.19826 +ffffffff81e09740 R irq_domain_simple_ops +ffffffff81e097a0 r irq_spurious_proc_fops +ffffffff81e098a0 r irq_node_proc_fops +ffffffff81e099a0 r default_affinity_proc_fops +ffffffff81e09aa0 r irq_effective_aff_list_proc_fops +ffffffff81e09ba0 r irq_effective_aff_proc_fops +ffffffff81e09ca0 r irq_affinity_list_proc_fops +ffffffff81e09da0 r irq_affinity_hint_proc_fops +ffffffff81e09ea0 r irq_affinity_proc_fops +ffffffff81e09fa0 r __func__.20278 +ffffffff81e09fb0 r __func__.20287 +ffffffff81e09fe0 r msi_domain_ops +ffffffff81e0a040 r __param_str_rcu_task_stall_timeout +ffffffff81e0a060 r __param_str_rcu_cpu_stall_timeout +ffffffff81e0a080 r __param_str_rcu_cpu_stall_suppress +ffffffff81e0a0a0 r __param_str_rcu_normal_after_boot +ffffffff81e0a0c0 r __param_str_rcu_normal +ffffffff81e0a0e0 r __param_str_rcu_expedited +ffffffff81e0a100 r gp_ops +ffffffff81e0a150 r __param_str_counter_wrap_check +ffffffff81e0a170 r __param_str_exp_holdoff +ffffffff81e0a220 r __param_str_jiffies_till_sched_qs +ffffffff81e0a240 r __param_str_rcu_kick_kthreads +ffffffff81e0a260 r __param_str_jiffies_till_next_fqs +ffffffff81e0a280 r __param_str_jiffies_till_first_fqs +ffffffff81e0a2a0 r __param_str_qlowmark +ffffffff81e0a2c0 r __param_str_qhimark +ffffffff81e0a2d0 r __param_str_blimit +ffffffff81e0a2e0 r __param_str_gp_cleanup_delay +ffffffff81e0a300 r __param_str_gp_init_delay +ffffffff81e0a320 r __param_str_gp_preinit_delay +ffffffff81e0a340 r __param_str_kthread_prio +ffffffff81e0a360 r __param_str_rcu_fanout_leaf +ffffffff81e0a380 r __param_str_rcu_fanout_exact +ffffffff81e0a3a0 r __param_str_dump_tree +ffffffff81e0a3c0 r gp_state_names +ffffffff81e0a440 r hrtimer_clock_to_base_table +ffffffff81e0a480 r offsets +ffffffff81e0a4c0 r timer_list_fops +ffffffff81e0a5c0 r timer_list_sops +ffffffff81e0a5e0 r __mon_yday +ffffffff81e0a620 r alarmtimer_pm_ops +ffffffff81e0a6e0 R alarm_clock +ffffffff81e0a760 r posix_clocks +ffffffff81e0a7c0 r clock_boottime +ffffffff81e0a840 r clock_tai +ffffffff81e0a8c0 r clock_monotonic_coarse +ffffffff81e0a940 r clock_realtime_coarse +ffffffff81e0a9c0 r clock_monotonic_raw +ffffffff81e0aa40 r clock_monotonic +ffffffff81e0aac0 r clock_realtime +ffffffff81e0ab40 R clock_thread +ffffffff81e0abc0 R clock_process +ffffffff81e0ac40 R clock_posix_cpu +ffffffff81e0acc0 R clock_posix_dynamic +ffffffff81e0ad40 r posix_clock_file_operations +ffffffff81e0af20 r __func__.38878 +ffffffff81e0af40 r __func__.56133 +ffffffff81e0af60 r cgroup_sysfs_attr_group +ffffffff81e0af90 r cgroup_subsys_on_dfl_key +ffffffff81e0afa0 r cgroup_subsys_enabled_key +ffffffff81e0afc0 R cgroupns_operations +ffffffff81e0b000 R proc_cgroupstats_operations +ffffffff81e0b100 R utsns_operations +ffffffff81e0b140 R userns_operations +ffffffff81e0b180 R proc_projid_seq_operations +ffffffff81e0b1a0 R proc_gid_seq_operations +ffffffff81e0b1c0 R proc_uid_seq_operations +ffffffff81e0b1e0 R pidns_for_children_operations +ffffffff81e0b220 R pidns_operations +ffffffff81e0b7e0 r seccomp_log_names +ffffffff81e0b860 r seccomp_actions_avail +ffffffff81e0b8a0 r mode1_syscalls +ffffffff81e0b8c0 r taskstats_ops +ffffffff81e0b920 r cgroupstats_cmd_get_policy +ffffffff81e0b980 r taskstats_cmd_get_policy +ffffffff81e0b9e0 r jumptable.48101 +ffffffff81e0c1e0 r public_insntable.48094 +ffffffff81e0c2e0 R bpf_tail_call_proto +ffffffff81e0c320 r interpreters_args +ffffffff81e0c3a0 r interpreters +ffffffff81e0c520 R bpf_prog_fops +ffffffff81e0c620 r bpf_prog_types +ffffffff81e0c6a0 R bpf_map_fops +ffffffff81e0c7a0 R bpf_map_offload_ops +ffffffff81e0c800 r bpf_map_types +ffffffff81e0c9a0 r caller_saved +ffffffff81e0c9c0 r reg_type_str +ffffffff81e0ca20 r bpf_verifier_ops +ffffffff81e0cac0 r bpf_rfiles.49058 +ffffffff81e0cae0 r bpf_mount_tokens +ffffffff81e0cb00 r bpf_super_ops +ffffffff81e0cbc0 r bpf_map_iops +ffffffff81e0cc80 r bpf_prog_iops +ffffffff81e0cd40 r bpf_dir_iops +ffffffff81e0ce00 R bpf_get_current_comm_proto +ffffffff81e0ce40 R bpf_get_current_uid_gid_proto +ffffffff81e0ce80 R bpf_get_current_pid_tgid_proto +ffffffff81e0cec0 R bpf_ktime_get_ns_proto +ffffffff81e0cf00 R bpf_get_numa_node_id_proto +ffffffff81e0cf40 R bpf_get_smp_processor_id_proto +ffffffff81e0cf80 R bpf_get_prandom_u32_proto +ffffffff81e0cfc0 R bpf_map_delete_elem_proto +ffffffff81e0d000 R bpf_map_update_elem_proto +ffffffff81e0d040 R bpf_map_lookup_elem_proto +ffffffff81e0d070 R tnum_unknown +ffffffff81e0d3c0 R htab_of_maps_map_ops +ffffffff81e0d420 R htab_lru_percpu_map_ops +ffffffff81e0d480 R htab_percpu_map_ops +ffffffff81e0d4e0 R htab_lru_map_ops +ffffffff81e0d540 R htab_map_ops +ffffffff81e0d5a0 R array_of_maps_map_ops +ffffffff81e0d600 R cgroup_array_map_ops +ffffffff81e0d660 R perf_event_array_map_ops +ffffffff81e0d6c0 R prog_array_map_ops +ffffffff81e0d720 R percpu_array_map_ops +ffffffff81e0d780 R array_map_ops +ffffffff81e0d7e0 R trie_map_ops +ffffffff81e0d840 r bpf_jmp_string +ffffffff81e0d8c0 r bpf_ldst_string +ffffffff81e0d8e0 R bpf_alu_string +ffffffff81e0d960 R bpf_class_string +ffffffff81e0d9a0 r func_id_str +ffffffff81e0db80 R dev_map_ops +ffffffff81e0dbe0 R cpu_map_ops +ffffffff81e0dc40 R bpf_offload_prog_ops +ffffffff81e0dc60 R stack_map_ops +ffffffff81e0dcc0 R bpf_get_stackid_proto +ffffffff81e0dd80 R cg_dev_verifier_ops +ffffffff81e0dda0 R cg_dev_prog_ops +ffffffff81e0de90 r __func__.55277 +ffffffff81e0dec0 r pmu_dev_group +ffffffff81e0df00 r if_tokens +ffffffff81e0df80 r perf_mmap_vmops +ffffffff81e0dfe0 r perf_fops +ffffffff81e0e0e0 R generic_file_vm_ops +ffffffff81e0e140 r __func__.39192 +ffffffff81e0e160 r types.43544 +ffffffff81e0e170 r __func__.43236 +ffffffff81e0e188 r __func__.43246 +ffffffff81e0e1a0 r fallbacks +ffffffff81e0e1e0 R compound_page_dtors +ffffffff81e0e200 R migratetype_names +ffffffff81e0e220 r zone_names +ffffffff81e0e240 r __func__.41940 +ffffffff81e0e258 r __func__.41740 +ffffffff81e0e280 r CSWTCH.606 +ffffffff81e0e2c0 r anon_ops +ffffffff81e0e340 r shmem_export_ops +ffffffff81e0e3a0 r shmem_trusted_xattr_handler +ffffffff81e0e3e0 r shmem_security_xattr_handler +ffffffff81e0e440 r shmem_short_symlink_operations +ffffffff81e0e500 r shmem_symlink_inode_operations +ffffffff81e0e5c0 r shmem_vm_ops +ffffffff81e0e640 r shmem_special_inode_operations +ffffffff81e0e700 r shmem_dir_inode_operations +ffffffff81e0e7c0 r shmem_inode_operations +ffffffff81e0e880 r shmem_file_operations +ffffffff81e0e980 r shmem_aops +ffffffff81e0ea40 r shmem_ops +ffffffff81e0eb00 r __func__.36492 +ffffffff81e0eb20 r vmstat_file_operations +ffffffff81e0ec20 r vmstat_op +ffffffff81e0ec40 r zoneinfo_file_operations +ffffffff81e0ed40 r zoneinfo_op +ffffffff81e0ed60 r pagetypeinfo_file_operations +ffffffff81e0ee60 r pagetypeinfo_op +ffffffff81e0ee80 r buddyinfo_file_operations +ffffffff81e0ef80 r fragmentation_op +ffffffff81e0efa0 R vmstat_text +ffffffff81e0f100 r bdi_dev_group +ffffffff81e0f130 r size_index +ffffffff81e0f180 R vmaflag_names +ffffffff81e0f380 R gfpflag_names +ffffffff81e0f5c0 R pageflag_names +ffffffff81e0f740 r legacy_special_mapping_vmops +ffffffff81e0f7a0 r special_mapping_vmops +ffffffff81e0f800 r __param_str_ignore_rlimit_data +ffffffff81e0f814 R mmap_rnd_bits_max +ffffffff81e0f818 R mmap_rnd_bits_min +ffffffff81e0f820 r __func__.31830 +ffffffff81e0f840 r proc_vmalloc_operations +ffffffff81e0f940 r vmalloc_op +ffffffff81e0fa40 r __func__.29845 +ffffffff81e0fa60 r __func__.29838 +ffffffff81e0fa80 r __func__.29833 +ffffffff81e0faa0 r __func__.29824 +ffffffff81e0fae0 r __func__.29815 +ffffffff81e0fb00 r __func__.27843 +ffffffff81e0fb20 r __func__.27611 +ffffffff81e0fb40 r __func__.27525 +ffffffff81e0fb60 r slab_uevent_ops +ffffffff81e0fb80 r slab_sysfs_ops +ffffffff81e0fba0 r slab_attr_group +ffffffff81e0fbe0 r hugepage_attr_group +ffffffff81e0fc20 r empty_fops.45190 +ffffffff81e0fd20 R generic_ro_fops +ffffffff81e0fe20 R def_chr_fops +ffffffff81e0ff40 r pipefs_ops +ffffffff81e10000 R pipefifo_fops +ffffffff81e10100 r pipefs_dentry_operations +ffffffff81e10180 r packet_pipe_buf_ops +ffffffff81e101c0 r anon_pipe_buf_ops +ffffffff81e10200 R page_symlink_inode_operations +ffffffff81e102c0 r band_table +ffffffff81e102e0 r __func__.42059 +ffffffff81e102f0 R slash_name +ffffffff81e10300 R empty_name +ffffffff81e10320 r no_open_fops.40761 +ffffffff81e10420 R empty_aops +ffffffff81e10500 r bad_inode_ops +ffffffff81e105c0 r bad_file_ops +ffffffff81e106c0 r filesystems_proc_fops +ffffffff81e107c0 r __func__.41161 +ffffffff81e107e0 R mntns_operations +ffffffff81e10820 R mounts_op +ffffffff81e10840 r anon_aops.34708 +ffffffff81e108f0 r __func__.34520 +ffffffff81e10920 r empty_dir_operations +ffffffff81e10a40 r empty_dir_inode_operations +ffffffff81e10b00 R simple_symlink_inode_operations +ffffffff81e10bc0 r simple_super_operations +ffffffff81e10c80 R simple_dir_inode_operations +ffffffff81e10d40 R simple_dir_operations +ffffffff81e10e40 R simple_dentry_operations +ffffffff81e10ec0 R nosteal_pipe_buf_ops +ffffffff81e10f00 R default_pipe_buf_ops +ffffffff81e10f40 r user_page_pipe_buf_ops +ffffffff81e10f80 R page_cache_pipe_buf_ops +ffffffff81e10fc0 r nsfs_ops +ffffffff81e11080 R ns_dentry_operations +ffffffff81e11100 r ns_file_operations +ffffffff81e11200 r __func__.44111 +ffffffff81e11220 r __func__.38508 +ffffffff81e11240 R def_blk_fops +ffffffff81e11340 r bdev_sops +ffffffff81e11400 r def_blk_aops +ffffffff81e114b0 r __func__.34185 +ffffffff81e114e0 r mnt_info.28154 +ffffffff81e11560 r fs_info.28145 +ffffffff81e115c0 R proc_mountstats_operations +ffffffff81e116c0 R proc_mountinfo_operations +ffffffff81e117c0 R proc_mounts_operations +ffffffff81e118c0 R inotify_fsnotify_ops +ffffffff81e11900 r __func__.37831 +ffffffff81e11920 r inotify_fops +ffffffff81e11a20 R fanotify_fsnotify_ops +ffffffff81e11a60 r fanotify_fops +ffffffff81e11b60 r path_limits +ffffffff81e11b80 r eventpoll_fops +ffffffff81e11c80 r anon_inodefs_dentry_operations +ffffffff81e11d40 r signalfd_fops +ffffffff81e11e40 r timerfd_fops +ffffffff81e11f40 r eventfd_fops +ffffffff81e12040 r ops.45407 +ffffffff81e120c0 r aio_ring_vm_ops +ffffffff81e12120 r aio_ctx_aops +ffffffff81e121e0 r aio_ring_fops +ffffffff81e122e0 r CSWTCH.140 +ffffffff81e12300 r proc_locks_operations +ffffffff81e12400 r locks_seq_operations +ffffffff81e12420 r lease_manager_ops +ffffffff81e129c0 R posix_acl_default_xattr_handler +ffffffff81e12a00 R posix_acl_access_xattr_handler +ffffffff81e12a40 R proc_tid_maps_operations +ffffffff81e12b40 R proc_pid_maps_operations +ffffffff81e12c40 r proc_tid_maps_op +ffffffff81e12c60 r proc_pid_maps_op +ffffffff81e12c80 R proc_link_inode_operations +ffffffff81e12d40 r proc_reg_file_ops +ffffffff81e12e40 r proc_sops +ffffffff81e12f00 r proc_root_inode_operations +ffffffff81e12fc0 r proc_root_operations +ffffffff81e130c0 r tokens +ffffffff81e13100 r nstr.38509 +ffffffff81e13140 r proc_tid_base_inode_operations +ffffffff81e13200 r proc_tid_base_operations +ffffffff81e13300 r tid_base_stuff +ffffffff81e13800 r proc_tid_comm_inode_operations +ffffffff81e138c0 r proc_tgid_base_inode_operations +ffffffff81e13980 r proc_tgid_base_operations +ffffffff81e13a80 r tgid_base_stuff +ffffffff81e14040 r proc_task_inode_operations +ffffffff81e14100 r proc_task_operations +ffffffff81e14200 r proc_setgroups_operations +ffffffff81e14300 r proc_projid_map_operations +ffffffff81e14400 r proc_gid_map_operations +ffffffff81e14500 r proc_uid_map_operations +ffffffff81e14600 r proc_pid_set_timerslack_ns_operations +ffffffff81e14700 r proc_timers_operations +ffffffff81e14800 r proc_timers_seq_ops +ffffffff81e14820 r proc_map_files_operations +ffffffff81e14940 r proc_map_files_inode_operations +ffffffff81e14a00 r proc_map_files_link_inode_operations +ffffffff81e14ac0 r tid_map_files_dentry_operations +ffffffff81e14b40 R pid_dentry_operations +ffffffff81e14bc0 R proc_pid_link_inode_operations +ffffffff81e14c80 r proc_pid_set_comm_operations +ffffffff81e14d80 r proc_pid_sched_autogroup_operations +ffffffff81e14e80 r proc_oom_score_adj_operations +ffffffff81e14f80 r proc_oom_adj_operations +ffffffff81e15080 r proc_auxv_operations +ffffffff81e15180 r proc_environ_operations +ffffffff81e15280 r proc_mem_operations +ffffffff81e15380 r proc_single_file_operations +ffffffff81e15480 r proc_def_inode_operations +ffffffff81e15540 r lnames +ffffffff81e15640 r proc_pid_cmdline_ops +ffffffff81e15740 r proc_dir_inode_operations +ffffffff81e15800 r proc_dir_operations +ffffffff81e15900 r proc_file_inode_operations +ffffffff81e159c0 R proc_tid_children_operations +ffffffff81e15ac0 r children_seq_ops +ffffffff81e15ae0 r task_state_array +ffffffff81e15b40 R proc_fdinfo_operations +ffffffff81e15c40 R proc_fdinfo_inode_operations +ffffffff81e15d00 R proc_fd_inode_operations +ffffffff81e15dc0 R proc_fd_operations +ffffffff81e15ec0 r tid_fd_dentry_operations +ffffffff81e15f40 r proc_fdinfo_file_operations +ffffffff81e16040 r proc_tty_drivers_operations +ffffffff81e16140 r tty_drivers_op +ffffffff81e16160 r cmdline_proc_fops +ffffffff81e16260 r con_flags.24437 +ffffffff81e16280 r proc_consoles_operations +ffffffff81e16380 r consoles_op +ffffffff81e163a0 r proc_cpuinfo_operations +ffffffff81e164a0 r proc_devinfo_operations +ffffffff81e165a0 r devinfo_ops +ffffffff81e165c0 r proc_interrupts_operations +ffffffff81e166c0 r int_seq_ops +ffffffff81e166e0 r loadavg_proc_fops +ffffffff81e167e0 r blanks.33026 +ffffffff81e16800 r meminfo_proc_fops +ffffffff81e16900 r proc_stat_operations +ffffffff81e16a00 r uptime_proc_fops +ffffffff81e16b00 r version_proc_fops +ffffffff81e16c00 r proc_softirqs_operations +ffffffff81e16d00 R proc_ns_dir_inode_operations +ffffffff81e16dc0 R proc_ns_dir_operations +ffffffff81e16ec0 r proc_ns_link_inode_operations +ffffffff81e16f80 r proc_self_inode_operations +ffffffff81e17040 r proc_thread_self_inode_operations +ffffffff81e17100 r null_path.29820 +ffffffff81e17140 r proc_sys_dir_operations +ffffffff81e17200 r proc_sys_dir_file_operations +ffffffff81e17300 r proc_sys_inode_operations +ffffffff81e173c0 r proc_sys_file_operations +ffffffff81e174c0 r proc_sys_dentry_operations +ffffffff81e17540 R proc_net_operations +ffffffff81e17640 R proc_net_inode_operations +ffffffff81e17700 r proc_kmsg_operations +ffffffff81e17800 r kernfs_export_ops +ffffffff81e17860 R kernfs_sops +ffffffff81e17940 r kernfs_security_xattr_handler +ffffffff81e17980 r kernfs_trusted_xattr_handler +ffffffff81e179c0 r kernfs_iops +ffffffff81e17a80 r kernfs_aops +ffffffff81e17b40 R kernfs_dir_fops +ffffffff81e17c40 R kernfs_dir_iops +ffffffff81e17d00 R kernfs_dops +ffffffff81e17d80 R kernfs_file_fops +ffffffff81e17e80 r kernfs_vm_ops +ffffffff81e17ee0 r kernfs_seq_ops +ffffffff81e17f00 R kernfs_symlink_iops +ffffffff81e17fc0 r sysfs_bin_kfops_mmap +ffffffff81e18020 r sysfs_bin_kfops_rw +ffffffff81e18080 r sysfs_bin_kfops_wo +ffffffff81e180e0 r sysfs_bin_kfops_ro +ffffffff81e18140 r sysfs_prealloc_kfops_rw +ffffffff81e181a0 r sysfs_prealloc_kfops_wo +ffffffff81e18200 r sysfs_prealloc_kfops_ro +ffffffff81e18260 r sysfs_file_kfops_rw +ffffffff81e182c0 r sysfs_file_kfops_wo +ffffffff81e18320 r sysfs_file_kfops_ro +ffffffff81e18380 r sysfs_file_kfops_empty +ffffffff81e18420 r devpts_sops +ffffffff81e184e0 r tokens +ffffffff81e18550 r __func__.46210 +ffffffff81e18570 r __func__.46192 +ffffffff81e18590 r __func__.46201 +ffffffff81e185b0 r __func__.46171 +ffffffff81e185e0 r __func__.38756 +ffffffff81e185f0 r __func__.38640 +ffffffff81e18600 r __func__.38802 +ffffffff81e18620 R ext4_dir_operations +ffffffff81e18718 r ext4_filetype_table +ffffffff81e18720 r __func__.42350 +ffffffff81e18740 r __func__.42340 +ffffffff81e18760 r __func__.42329 +ffffffff81e18788 r __func__.42321 +ffffffff81e187a0 r __func__.42310 +ffffffff81e187c0 r __func__.42267 +ffffffff81e187e0 r __func__.46423 +ffffffff81e18800 r __func__.46378 +ffffffff81e18820 r __func__.46223 +ffffffff81e18840 r __func__.46243 +ffffffff81e18860 r __func__.46308 +ffffffff81e18880 r __func__.45612 +ffffffff81e188a0 r __func__.46153 +ffffffff81e188c0 r __func__.46065 +ffffffff81e188e0 r __func__.46113 +ffffffff81e188f0 r __func__.45424 +ffffffff81e18920 r __func__.45853 +ffffffff81e18940 r __func__.45886 +ffffffff81e18970 r __func__.45818 +ffffffff81e18990 r __func__.45940 +ffffffff81e189b0 r __func__.46008 +ffffffff81e189d0 r __func__.45648 +ffffffff81e189e0 r __func__.45685 +ffffffff81e18a00 r __func__.45709 +ffffffff81e18a20 r __func__.45442 +ffffffff81e18a40 r __func__.45797 +ffffffff81e18a60 r __func__.45739 +ffffffff81e18a80 r __func__.45479 +ffffffff81e18aa0 r __func__.45509 +ffffffff81e18ac0 r __func__.45071 +ffffffff81e18ae0 r __func__.45381 +ffffffff81e18b00 r __func__.45326 +ffffffff81e18b18 r __func__.45351 +ffffffff81e18b30 r __func__.45560 +ffffffff81e18b50 r __func__.45311 +ffffffff81e18b70 r __func__.45250 +ffffffff81e18b90 r __func__.45212 +ffffffff81e18bb0 r __func__.42871 +ffffffff81e18bd0 r __func__.42594 +ffffffff81e18c00 r __func__.39611 +ffffffff81e18c40 R ext4_file_inode_operations +ffffffff81e18d00 R ext4_file_operations +ffffffff81e18e00 r ext4_file_vm_ops +ffffffff81e18e90 r __func__.43395 +ffffffff81e18eb0 r __func__.43344 +ffffffff81e18ec0 r __func__.43312 +ffffffff81e18ee0 r __func__.43071 +ffffffff81e18f00 r __func__.43081 +ffffffff81e18f20 r __func__.43103 +ffffffff81e18f30 r __func__.42838 +ffffffff81e18f50 r __func__.42803 +ffffffff81e18f68 r __func__.42821 +ffffffff81e18f80 r __func__.42699 +ffffffff81e18fa0 r __func__.42680 +ffffffff81e18fc0 r __func__.42627 +ffffffff81e18fd0 r __func__.42607 +ffffffff81e18ff0 r __func__.42738 +ffffffff81e19020 r __func__.39324 +ffffffff81e19040 r __func__.39311 +ffffffff81e19060 r __func__.39249 +ffffffff81e19080 r __func__.39229 +ffffffff81e190a0 r __func__.39185 +ffffffff81e190c0 r __func__.39157 +ffffffff81e190e0 r __func__.39122 +ffffffff81e19100 r __func__.39064 +ffffffff81e19120 r __func__.39042 +ffffffff81e19140 r __func__.39009 +ffffffff81e19170 r __func__.38995 +ffffffff81e191a0 r __func__.38925 +ffffffff81e191c0 r __func__.38966 +ffffffff81e191f0 r __func__.38894 +ffffffff81e19210 r __func__.38906 +ffffffff81e19230 r __func__.38981 +ffffffff81e19250 r __func__.38852 +ffffffff81e19270 r ext4_filetype_table +ffffffff81e19280 r __func__.45227 +ffffffff81e192a0 r __func__.45195 +ffffffff81e192c0 r __func__.45168 +ffffffff81e192e0 r __func__.45147 +ffffffff81e19300 r __func__.45095 +ffffffff81e19320 r __func__.44952 +ffffffff81e19338 r __func__.44994 +ffffffff81e19350 r __func__.44961 +ffffffff81e19368 r __func__.44807 +ffffffff81e19380 r __func__.44737 +ffffffff81e19398 r __func__.44708 +ffffffff81e193b0 r __func__.44647 +ffffffff81e193c0 r __func__.44624 +ffffffff81e193f0 r __func__.44572 +ffffffff81e19410 r __func__.43923 +ffffffff81e19430 r __func__.44316 +ffffffff81e19450 r __func__.44352 +ffffffff81e19470 r __func__.43954 +ffffffff81e19488 r __func__.43858 +ffffffff81e194a0 r __func__.44097 +ffffffff81e194c0 r __func__.44224 +ffffffff81e194e0 r __func__.44282 +ffffffff81e194f0 r __func__.43851 +ffffffff81e19508 r __func__.43875 +ffffffff81e19520 r __func__.44505 +ffffffff81e19540 r __func__.44447 +ffffffff81e19558 r __func__.44472 +ffffffff81e19570 r __func__.44057 +ffffffff81e19590 r __func__.43830 +ffffffff81e195b0 r __func__.43769 +ffffffff81e195c0 r __func__.43719 +ffffffff81e195e0 r __func__.43635 +ffffffff81e195f0 r __func__.43595 +ffffffff81e19610 r __func__.43562 +ffffffff81e19640 r ext4_da_aops +ffffffff81e19700 r ext4_journalled_aops +ffffffff81e197c0 r ext4_aops +ffffffff81e19870 R ext4_iomap_ops +ffffffff81e19880 r __func__.42937 +ffffffff81e198a0 r __func__.42911 +ffffffff81e198b8 r __func__.43041 +ffffffff81e198e0 r __func__.48036 +ffffffff81e19900 r __func__.48008 +ffffffff81e19920 r __func__.47938 +ffffffff81e19940 r __func__.47974 +ffffffff81e19960 r __func__.47810 +ffffffff81e199a0 r __func__.47603 +ffffffff81e199d0 r __func__.47173 +ffffffff81e199f0 r __func__.46828 +ffffffff81e19a10 r __func__.46740 +ffffffff81e19a20 r __func__.47580 +ffffffff81e19a40 r __func__.47699 +ffffffff81e19a60 r __func__.46723 +ffffffff81e19a70 r __func__.46550 +ffffffff81e19aa0 R ext4_seq_mb_groups_fops +ffffffff81e19ba0 r ext4_mb_seq_groups_ops +ffffffff81e19bc0 r ext4_groupinfo_slab_names +ffffffff81e19c00 r __func__.38673 +ffffffff81e19c20 r __func__.38649 +ffffffff81e19c40 r __func__.40579 +ffffffff81e19c4f r __func__.40605 +ffffffff81e19c60 r __func__.40639 +ffffffff81e19c80 r __func__.38762 +ffffffff81e19cc0 r __func__.43423 +ffffffff81e19cd0 r __func__.43665 +ffffffff81e19ce0 r __func__.43914 +ffffffff81e19cf0 r __func__.43859 +ffffffff81e19d00 r __func__.43871 +ffffffff81e19d10 r __func__.43725 +ffffffff81e19d20 r __func__.43848 +ffffffff81e19d30 r __func__.43678 +ffffffff81e19d40 r __func__.43637 +ffffffff81e19d60 r __func__.43971 +ffffffff81e19d80 r __func__.43526 +ffffffff81e19d98 r __func__.42902 +ffffffff81e19db0 r __func__.43550 +ffffffff81e19dc8 r __func__.43481 +ffffffff81e19de0 r __func__.43593 +ffffffff81e19df8 r __func__.43573 +ffffffff81e19e10 r __func__.43985 +ffffffff81e19e30 r __func__.44014 +ffffffff81e19e40 r __func__.43120 +ffffffff81e19e60 r __func__.43126 +ffffffff81e19e80 r __func__.43948 +ffffffff81e19e98 r __func__.43956 +ffffffff81e19eb0 r __func__.43923 +ffffffff81e19ed0 r __func__.43941 +ffffffff81e19ef0 r __func__.44052 +ffffffff81e19f08 r __func__.43690 +ffffffff81e19f20 r __func__.43816 +ffffffff81e19f30 r __func__.43759 +ffffffff81e19f40 r __func__.43736 +ffffffff81e19f50 r __func__.43624 +ffffffff81e19f70 r __func__.43502 +ffffffff81e19f90 r __func__.43408 +ffffffff81e19fb0 r __func__.43385 +ffffffff81e19fc0 r __func__.43431 +ffffffff81e19fd0 r dotdot.43428 +ffffffff81e19fe0 r __func__.43336 +ffffffff81e19ff0 r __func__.43219 +ffffffff81e1a010 r __func__.43238 +ffffffff81e1a030 r __func__.43110 +ffffffff81e1a048 r __func__.43185 +ffffffff81e1a060 r __func__.43067 +ffffffff81e1a080 r __func__.43073 +ffffffff81e1a0a0 r __func__.43061 +ffffffff81e1a0c0 R ext4_special_inode_operations +ffffffff81e1a180 R ext4_dir_inode_operations +ffffffff81e1a240 r ext4_type_by_mode +ffffffff81e1a250 r __func__.41989 +ffffffff81e1a260 r __func__.42048 +ffffffff81e1a280 r __func__.41868 +ffffffff81e1a290 r __func__.38898 +ffffffff81e1a2a8 r __func__.38926 +ffffffff81e1a2c0 r __func__.38865 +ffffffff81e1a2e0 r __func__.38880 +ffffffff81e1a2f8 r __func__.38718 +ffffffff81e1a310 r __func__.38768 +ffffffff81e1a328 r __func__.38645 +ffffffff81e1a340 r __func__.38660 +ffffffff81e1a360 r __func__.38623 +ffffffff81e1a380 r __func__.38680 +ffffffff81e1a3a0 r __func__.38737 +ffffffff81e1a3c0 r __func__.38550 +ffffffff81e1a3d8 r __func__.38528 +ffffffff81e1a3e0 r __func__.38583 +ffffffff81e1a400 r __func__.38811 +ffffffff81e1a420 r __func__.38466 +ffffffff81e1a438 r __func__.38854 +ffffffff81e1a450 r __func__.38433 +ffffffff81e1a620 r __func__.48466 +ffffffff81e1a638 r __func__.48087 +ffffffff81e1a650 r __func__.48874 +ffffffff81e1a668 r __func__.48920 +ffffffff81e1a680 r __func__.48745 +ffffffff81e1a690 r __func__.48664 +ffffffff81e1a6a0 r __func__.48037 +ffffffff81e1a6c0 r ext4_mount_opts +ffffffff81e1a9c0 r deprecated_msg +ffffffff81e1aa40 r tokens +ffffffff81e1afc0 r ext4_export_ops +ffffffff81e1b020 r ext4_sops +ffffffff81e1b100 R ext4_fast_symlink_inode_operations +ffffffff81e1b1c0 R ext4_symlink_inode_operations +ffffffff81e1b280 R ext4_encrypted_symlink_inode_operations +ffffffff81e1b390 r __func__.38766 +ffffffff81e1b3c0 r proc_files +ffffffff81e1b400 r ext4_seq_options_fops +ffffffff81e1b500 r ext4_seq_es_shrinker_info_fops +ffffffff81e1b600 r ext4_attr_ops +ffffffff81e1b610 r proc_dirname +ffffffff81e1b620 r __func__.39851 +ffffffff81e1b640 r __func__.39830 +ffffffff81e1b660 r __func__.39757 +ffffffff81e1b670 r __func__.39361 +ffffffff81e1b690 r __func__.39421 +ffffffff81e1b6b0 r __func__.39492 +ffffffff81e1b6d0 r __func__.39507 +ffffffff81e1b6f0 r __func__.39467 +ffffffff81e1b710 r __func__.39893 +ffffffff81e1b730 r __func__.39655 +ffffffff81e1b750 r __func__.39637 +ffffffff81e1b770 r __func__.39541 +ffffffff81e1b790 r __func__.39445 +ffffffff81e1b7b0 r __func__.39609 +ffffffff81e1b7d0 r __func__.39686 +ffffffff81e1b7f0 r __func__.39375 +ffffffff81e1b810 r __func__.39335 +ffffffff81e1b830 r __func__.39347 +ffffffff81e1b850 r __func__.39284 +ffffffff81e1b870 r __func__.39246 +ffffffff81e1b890 r __func__.39267 +ffffffff81e1b8b0 r __func__.39299 +ffffffff81e1b8e0 r ext4_xattr_handler_map +ffffffff81e1b920 R ext4_xattr_trusted_handler +ffffffff81e1b960 R ext4_xattr_user_handler +ffffffff81e1b990 r __func__.39097 +ffffffff81e1b9d0 r __func__.39408 +ffffffff81e1b9f0 r __func__.39308 +ffffffff81e1ba10 r __func__.34530 +ffffffff81e1ba30 r __func__.30145 +ffffffff81e1ba60 r __func__.39791 +ffffffff81e1ba80 r __func__.39773 +ffffffff81e1baa0 r __func__.39590 +ffffffff81e1bac0 r __func__.39575 +ffffffff81e1bae0 r __func__.39468 +ffffffff81e1bb00 r jbd2_slab_names +ffffffff81e1bb40 r jbd2_seq_info_fops +ffffffff81e1bc40 r jbd2_seq_info_ops +ffffffff81e1bc80 r tokens +ffffffff81e1bca0 r ramfs_aops +ffffffff81e1bd80 r ramfs_dir_inode_operations +ffffffff81e1be40 r ramfs_ops +ffffffff81e1bf00 R ramfs_file_inode_operations +ffffffff81e1bfc0 R ramfs_file_operations +ffffffff81e1c0c0 r __func__.28317 +ffffffff81e1c0e0 r __func__.28304 +ffffffff81e1c100 r __func__.28260 +ffffffff81e1c120 R fat_dir_operations +ffffffff81e1c220 r __func__.32972 +ffffffff81e1c240 r fat32_ops +ffffffff81e1c280 r fat16_ops +ffffffff81e1c2c0 r fat12_ops +ffffffff81e1c300 r __func__.39888 +ffffffff81e1c340 R fat_file_inode_operations +ffffffff81e1c400 R fat_file_operations +ffffffff81e1c660 r vfat_tokens +ffffffff81e1c820 r msdos_tokens +ffffffff81e1c880 r fat_tokens +ffffffff81e1cb20 r fat_sops +ffffffff81e1cbe0 r fat_aops +ffffffff81e1cca0 r days_in_year +ffffffff81e1cd20 R fat_export_ops_nostale +ffffffff81e1cd80 R fat_export_ops +ffffffff81e1ce00 r __func__.30299 +ffffffff81e1ce40 r vfat_dir_inode_operations +ffffffff81e1cf00 r vfat_dentry_ops +ffffffff81e1cf80 r vfat_ci_dentry_ops +ffffffff81e1d000 r charset2upper +ffffffff81e1d100 r charset2lower +ffffffff81e1d200 r page_uni2charset +ffffffff81e1da00 r page00 +ffffffff81e1db00 r charset2uni +ffffffff81e1dd00 r utf8_table +ffffffff81e1dde0 r charset2upper +ffffffff81e1dee0 r charset2lower +ffffffff81e1dfe0 r page_uni2charset +ffffffff81e1e7e0 r page25 +ffffffff81e1e8e0 r page23 +ffffffff81e1e9e0 r page22 +ffffffff81e1eae0 r page20 +ffffffff81e1ebe0 r page03 +ffffffff81e1ece0 r page01 +ffffffff81e1ede0 r page00 +ffffffff81e1eee0 r charset2uni +ffffffff81e1f0e0 r charset2upper +ffffffff81e1f1e0 r charset2lower +ffffffff81e1f2e0 r page_uni2charset +ffffffff81e1fae0 r u2c_FF +ffffffff81e1fce0 r u2c_FA +ffffffff81e1fee0 r u2c_F9 +ffffffff81e200e0 r u2c_DC +ffffffff81e202e0 r u2c_9F +ffffffff81e204e0 r u2c_9E +ffffffff81e206e0 r u2c_9D +ffffffff81e208e0 r u2c_9C +ffffffff81e20ae0 r u2c_9B +ffffffff81e20ce0 r u2c_9A +ffffffff81e20ee0 r u2c_99 +ffffffff81e210e0 r u2c_98 +ffffffff81e212e0 r u2c_97 +ffffffff81e214e0 r u2c_96 +ffffffff81e216e0 r u2c_95 +ffffffff81e218e0 r u2c_94 +ffffffff81e21ae0 r u2c_93 +ffffffff81e21ce0 r u2c_92 +ffffffff81e21ee0 r u2c_91 +ffffffff81e220e0 r u2c_90 +ffffffff81e222e0 r u2c_8F +ffffffff81e224e0 r u2c_8E +ffffffff81e226e0 r u2c_8D +ffffffff81e228e0 r u2c_8C +ffffffff81e22ae0 r u2c_8B +ffffffff81e22ce0 r u2c_8A +ffffffff81e22ee0 r u2c_89 +ffffffff81e230e0 r u2c_88 +ffffffff81e232e0 r u2c_87 +ffffffff81e234e0 r u2c_86 +ffffffff81e236e0 r u2c_85 +ffffffff81e238e0 r u2c_84 +ffffffff81e23ae0 r u2c_83 +ffffffff81e23ce0 r u2c_82 +ffffffff81e23ee0 r u2c_81 +ffffffff81e240e0 r u2c_80 +ffffffff81e242e0 r u2c_7F +ffffffff81e244e0 r u2c_7E +ffffffff81e246e0 r u2c_7D +ffffffff81e248e0 r u2c_7C +ffffffff81e24ae0 r u2c_7B +ffffffff81e24ce0 r u2c_7A +ffffffff81e24ee0 r u2c_79 +ffffffff81e250e0 r u2c_78 +ffffffff81e252e0 r u2c_77 +ffffffff81e254e0 r u2c_76 +ffffffff81e256e0 r u2c_75 +ffffffff81e258e0 r u2c_74 +ffffffff81e25ae0 r u2c_73 +ffffffff81e25ce0 r u2c_72 +ffffffff81e25ee0 r u2c_71 +ffffffff81e260e0 r u2c_70 +ffffffff81e262e0 r u2c_6F +ffffffff81e264e0 r u2c_6E +ffffffff81e266e0 r u2c_6D +ffffffff81e268e0 r u2c_6C +ffffffff81e26ae0 r u2c_6B +ffffffff81e26ce0 r u2c_6A +ffffffff81e26ee0 r u2c_69 +ffffffff81e270e0 r u2c_68 +ffffffff81e272e0 r u2c_67 +ffffffff81e274e0 r u2c_66 +ffffffff81e276e0 r u2c_65 +ffffffff81e278e0 r u2c_64 +ffffffff81e27ae0 r u2c_63 +ffffffff81e27ce0 r u2c_62 +ffffffff81e27ee0 r u2c_61 +ffffffff81e280e0 r u2c_60 +ffffffff81e282e0 r u2c_5F +ffffffff81e284e0 r u2c_5E +ffffffff81e286e0 r u2c_5D +ffffffff81e288e0 r u2c_5C +ffffffff81e28ae0 r u2c_5B +ffffffff81e28ce0 r u2c_5A +ffffffff81e28ee0 r u2c_59 +ffffffff81e290e0 r u2c_58 +ffffffff81e292e0 r u2c_57 +ffffffff81e294e0 r u2c_56 +ffffffff81e296e0 r u2c_55 +ffffffff81e298e0 r u2c_54 +ffffffff81e29ae0 r u2c_53 +ffffffff81e29ce0 r u2c_52 +ffffffff81e29ee0 r u2c_51 +ffffffff81e2a0e0 r u2c_50 +ffffffff81e2a2e0 r u2c_4F +ffffffff81e2a4e0 r u2c_4E +ffffffff81e2a6e0 r u2c_33 +ffffffff81e2a8e0 r u2c_32 +ffffffff81e2aae0 r u2c_30 +ffffffff81e2ace0 r u2c_26 +ffffffff81e2aee0 r u2c_25 +ffffffff81e2b0e0 r u2c_24 +ffffffff81e2b2e0 r u2c_23 +ffffffff81e2b4e0 r u2c_22 +ffffffff81e2b6e0 r u2c_21 +ffffffff81e2b8e0 r u2c_20 +ffffffff81e2bae0 r u2c_04 +ffffffff81e2bce0 r u2c_03 +ffffffff81e2bee0 r u2c_00hi +ffffffff81e2bfa0 r page_charset2uni +ffffffff81e2c7a0 r c2u_FC +ffffffff81e2c9a0 r c2u_FB +ffffffff81e2cba0 r c2u_FA +ffffffff81e2cda0 r c2u_EE +ffffffff81e2cfa0 r c2u_ED +ffffffff81e2d1a0 r c2u_EA +ffffffff81e2d3a0 r c2u_E9 +ffffffff81e2d5a0 r c2u_E8 +ffffffff81e2d7a0 r c2u_E7 +ffffffff81e2d9a0 r c2u_E6 +ffffffff81e2dba0 r c2u_E5 +ffffffff81e2dda0 r c2u_E4 +ffffffff81e2dfa0 r c2u_E3 +ffffffff81e2e1a0 r c2u_E2 +ffffffff81e2e3a0 r c2u_E1 +ffffffff81e2e5a0 r c2u_E0 +ffffffff81e2e7a0 r c2u_9F +ffffffff81e2e9a0 r c2u_9E +ffffffff81e2eba0 r c2u_9D +ffffffff81e2eda0 r c2u_9C +ffffffff81e2efa0 r c2u_9B +ffffffff81e2f1a0 r c2u_9A +ffffffff81e2f3a0 r c2u_99 +ffffffff81e2f5a0 r c2u_98 +ffffffff81e2f7a0 r c2u_97 +ffffffff81e2f9a0 r c2u_96 +ffffffff81e2fba0 r c2u_95 +ffffffff81e2fda0 r c2u_94 +ffffffff81e2ffa0 r c2u_93 +ffffffff81e301a0 r c2u_92 +ffffffff81e303a0 r c2u_91 +ffffffff81e305a0 r c2u_90 +ffffffff81e307a0 r c2u_8F +ffffffff81e309a0 r c2u_8E +ffffffff81e30ba0 r c2u_8D +ffffffff81e30da0 r c2u_8C +ffffffff81e30fa0 r c2u_8B +ffffffff81e311a0 r c2u_8A +ffffffff81e313a0 r c2u_89 +ffffffff81e315a0 r c2u_88 +ffffffff81e317a0 r c2u_87 +ffffffff81e319a0 r c2u_84 +ffffffff81e31ba0 r c2u_83 +ffffffff81e31da0 r c2u_82 +ffffffff81e31fa0 r c2u_81 +ffffffff81e321a0 r euc2sjisibm_g3upper_map +ffffffff81e32280 r euc2sjisibm_jisx0212_map +ffffffff81e326e0 r sjisibm2euc_map +ffffffff81e32a00 r charset2upper +ffffffff81e32b00 r charset2lower +ffffffff81e32c00 r page_uni2charset +ffffffff81e33400 r u2c_FF +ffffffff81e33600 r u2c_FE +ffffffff81e33800 r u2c_FA +ffffffff81e33a00 r u2c_F9 +ffffffff81e33c00 r u2c_DC +ffffffff81e33e00 r u2c_9F +ffffffff81e34000 r u2c_9E +ffffffff81e34200 r u2c_9D +ffffffff81e34400 r u2c_9C +ffffffff81e34600 r u2c_9B +ffffffff81e34800 r u2c_9A +ffffffff81e34a00 r u2c_99 +ffffffff81e34c00 r u2c_98 +ffffffff81e34e00 r u2c_97 +ffffffff81e35000 r u2c_96 +ffffffff81e35200 r u2c_95 +ffffffff81e35400 r u2c_94 +ffffffff81e35600 r u2c_93 +ffffffff81e35800 r u2c_92 +ffffffff81e35a00 r u2c_91 +ffffffff81e35c00 r u2c_90 +ffffffff81e35e00 r u2c_8F +ffffffff81e36000 r u2c_8E +ffffffff81e36200 r u2c_8D +ffffffff81e36400 r u2c_8C +ffffffff81e36600 r u2c_8B +ffffffff81e36800 r u2c_8A +ffffffff81e36a00 r u2c_89 +ffffffff81e36c00 r u2c_88 +ffffffff81e36e00 r u2c_87 +ffffffff81e37000 r u2c_86 +ffffffff81e37200 r u2c_85 +ffffffff81e37400 r u2c_84 +ffffffff81e37600 r u2c_83 +ffffffff81e37800 r u2c_82 +ffffffff81e37a00 r u2c_81 +ffffffff81e37c00 r u2c_80 +ffffffff81e37e00 r u2c_7F +ffffffff81e38000 r u2c_7E +ffffffff81e38200 r u2c_7D +ffffffff81e38400 r u2c_7C +ffffffff81e38600 r u2c_7B +ffffffff81e38800 r u2c_7A +ffffffff81e38a00 r u2c_79 +ffffffff81e38c00 r u2c_78 +ffffffff81e38e00 r u2c_77 +ffffffff81e39000 r u2c_76 +ffffffff81e39200 r u2c_75 +ffffffff81e39400 r u2c_74 +ffffffff81e39600 r u2c_73 +ffffffff81e39800 r u2c_72 +ffffffff81e39a00 r u2c_71 +ffffffff81e39c00 r u2c_70 +ffffffff81e39e00 r u2c_6F +ffffffff81e3a000 r u2c_6E +ffffffff81e3a200 r u2c_6D +ffffffff81e3a400 r u2c_6C +ffffffff81e3a600 r u2c_6B +ffffffff81e3a800 r u2c_6A +ffffffff81e3aa00 r u2c_69 +ffffffff81e3ac00 r u2c_68 +ffffffff81e3ae00 r u2c_67 +ffffffff81e3b000 r u2c_66 +ffffffff81e3b200 r u2c_65 +ffffffff81e3b400 r u2c_64 +ffffffff81e3b600 r u2c_63 +ffffffff81e3b800 r u2c_62 +ffffffff81e3ba00 r u2c_61 +ffffffff81e3bc00 r u2c_60 +ffffffff81e3be00 r u2c_5F +ffffffff81e3c000 r u2c_5E +ffffffff81e3c200 r u2c_5D +ffffffff81e3c400 r u2c_5C +ffffffff81e3c600 r u2c_5B +ffffffff81e3c800 r u2c_5A +ffffffff81e3ca00 r u2c_59 +ffffffff81e3cc00 r u2c_58 +ffffffff81e3ce00 r u2c_57 +ffffffff81e3d000 r u2c_56 +ffffffff81e3d200 r u2c_55 +ffffffff81e3d400 r u2c_54 +ffffffff81e3d600 r u2c_53 +ffffffff81e3d800 r u2c_52 +ffffffff81e3da00 r u2c_51 +ffffffff81e3dc00 r u2c_50 +ffffffff81e3de00 r u2c_4F +ffffffff81e3e000 r u2c_4E +ffffffff81e3e200 r u2c_33 +ffffffff81e3e400 r u2c_32 +ffffffff81e3e600 r u2c_31 +ffffffff81e3e800 r u2c_30 +ffffffff81e3ea00 r u2c_26 +ffffffff81e3ec00 r u2c_25 +ffffffff81e3ee00 r u2c_24 +ffffffff81e3f000 r u2c_23 +ffffffff81e3f200 r u2c_22 +ffffffff81e3f400 r u2c_21 +ffffffff81e3f600 r u2c_20 +ffffffff81e3f800 r u2c_04 +ffffffff81e3fa00 r u2c_03 +ffffffff81e3fc00 r u2c_02 +ffffffff81e3fe00 r u2c_01 +ffffffff81e40000 r u2c_00 +ffffffff81e40200 r page_charset2uni +ffffffff81e40a00 r c2u_FE +ffffffff81e40c00 r c2u_FD +ffffffff81e40e00 r c2u_FC +ffffffff81e41000 r c2u_FB +ffffffff81e41200 r c2u_FA +ffffffff81e41400 r c2u_F9 +ffffffff81e41600 r c2u_F8 +ffffffff81e41800 r c2u_F7 +ffffffff81e41a00 r c2u_F6 +ffffffff81e41c00 r c2u_F5 +ffffffff81e41e00 r c2u_F4 +ffffffff81e42000 r c2u_F3 +ffffffff81e42200 r c2u_F2 +ffffffff81e42400 r c2u_F1 +ffffffff81e42600 r c2u_F0 +ffffffff81e42800 r c2u_EF +ffffffff81e42a00 r c2u_EE +ffffffff81e42c00 r c2u_ED +ffffffff81e42e00 r c2u_EC +ffffffff81e43000 r c2u_EB +ffffffff81e43200 r c2u_EA +ffffffff81e43400 r c2u_E9 +ffffffff81e43600 r c2u_E8 +ffffffff81e43800 r c2u_E7 +ffffffff81e43a00 r c2u_E6 +ffffffff81e43c00 r c2u_E5 +ffffffff81e43e00 r c2u_E4 +ffffffff81e44000 r c2u_E3 +ffffffff81e44200 r c2u_E2 +ffffffff81e44400 r c2u_E1 +ffffffff81e44600 r c2u_E0 +ffffffff81e44800 r c2u_DF +ffffffff81e44a00 r c2u_DE +ffffffff81e44c00 r c2u_DD +ffffffff81e44e00 r c2u_DC +ffffffff81e45000 r c2u_DB +ffffffff81e45200 r c2u_DA +ffffffff81e45400 r c2u_D9 +ffffffff81e45600 r c2u_D8 +ffffffff81e45800 r c2u_D7 +ffffffff81e45a00 r c2u_D6 +ffffffff81e45c00 r c2u_D5 +ffffffff81e45e00 r c2u_D4 +ffffffff81e46000 r c2u_D3 +ffffffff81e46200 r c2u_D2 +ffffffff81e46400 r c2u_D1 +ffffffff81e46600 r c2u_D0 +ffffffff81e46800 r c2u_CF +ffffffff81e46a00 r c2u_CE +ffffffff81e46c00 r c2u_CD +ffffffff81e46e00 r c2u_CC +ffffffff81e47000 r c2u_CB +ffffffff81e47200 r c2u_CA +ffffffff81e47400 r c2u_C9 +ffffffff81e47600 r c2u_C8 +ffffffff81e47800 r c2u_C7 +ffffffff81e47a00 r c2u_C6 +ffffffff81e47c00 r c2u_C5 +ffffffff81e47e00 r c2u_C4 +ffffffff81e48000 r c2u_C3 +ffffffff81e48200 r c2u_C2 +ffffffff81e48400 r c2u_C1 +ffffffff81e48600 r c2u_C0 +ffffffff81e48800 r c2u_BF +ffffffff81e48a00 r c2u_BE +ffffffff81e48c00 r c2u_BD +ffffffff81e48e00 r c2u_BC +ffffffff81e49000 r c2u_BB +ffffffff81e49200 r c2u_BA +ffffffff81e49400 r c2u_B9 +ffffffff81e49600 r c2u_B8 +ffffffff81e49800 r c2u_B7 +ffffffff81e49a00 r c2u_B6 +ffffffff81e49c00 r c2u_B5 +ffffffff81e49e00 r c2u_B4 +ffffffff81e4a000 r c2u_B3 +ffffffff81e4a200 r c2u_B2 +ffffffff81e4a400 r c2u_B1 +ffffffff81e4a600 r c2u_B0 +ffffffff81e4a800 r c2u_AF +ffffffff81e4aa00 r c2u_AE +ffffffff81e4ac00 r c2u_AD +ffffffff81e4ae00 r c2u_AC +ffffffff81e4b000 r c2u_AB +ffffffff81e4b200 r c2u_AA +ffffffff81e4b400 r c2u_A9 +ffffffff81e4b600 r c2u_A8 +ffffffff81e4b800 r c2u_A7 +ffffffff81e4ba00 r c2u_A6 +ffffffff81e4bc00 r c2u_A5 +ffffffff81e4be00 r c2u_A4 +ffffffff81e4c000 r c2u_A3 +ffffffff81e4c200 r c2u_A2 +ffffffff81e4c400 r c2u_A1 +ffffffff81e4c600 r c2u_A0 +ffffffff81e4c800 r c2u_9F +ffffffff81e4ca00 r c2u_9E +ffffffff81e4cc00 r c2u_9D +ffffffff81e4ce00 r c2u_9C +ffffffff81e4d000 r c2u_9B +ffffffff81e4d200 r c2u_9A +ffffffff81e4d400 r c2u_99 +ffffffff81e4d600 r c2u_98 +ffffffff81e4d800 r c2u_97 +ffffffff81e4da00 r c2u_96 +ffffffff81e4dc00 r c2u_95 +ffffffff81e4de00 r c2u_94 +ffffffff81e4e000 r c2u_93 +ffffffff81e4e200 r c2u_92 +ffffffff81e4e400 r c2u_91 +ffffffff81e4e600 r c2u_90 +ffffffff81e4e800 r c2u_8F +ffffffff81e4ea00 r c2u_8E +ffffffff81e4ec00 r c2u_8D +ffffffff81e4ee00 r c2u_8C +ffffffff81e4f000 r c2u_8B +ffffffff81e4f200 r c2u_8A +ffffffff81e4f400 r c2u_89 +ffffffff81e4f600 r c2u_88 +ffffffff81e4f800 r c2u_87 +ffffffff81e4fa00 r c2u_86 +ffffffff81e4fc00 r c2u_85 +ffffffff81e4fe00 r c2u_84 +ffffffff81e50000 r c2u_83 +ffffffff81e50200 r c2u_82 +ffffffff81e50400 r c2u_81 +ffffffff81e50600 r charset2upper +ffffffff81e50700 r charset2lower +ffffffff81e50800 r page_uni2charset +ffffffff81e51000 r u2c_FF +ffffffff81e51200 r u2c_FE +ffffffff81e51400 r u2c_FA +ffffffff81e51600 r u2c_F9 +ffffffff81e51800 r u2c_DC +ffffffff81e51a00 r u2c_9F +ffffffff81e51c00 r u2c_9E +ffffffff81e51e00 r u2c_9D +ffffffff81e52000 r u2c_9C +ffffffff81e52200 r u2c_9B +ffffffff81e52400 r u2c_9A +ffffffff81e52600 r u2c_99 +ffffffff81e52800 r u2c_98 +ffffffff81e52a00 r u2c_97 +ffffffff81e52c00 r u2c_96 +ffffffff81e52e00 r u2c_95 +ffffffff81e53000 r u2c_94 +ffffffff81e53200 r u2c_93 +ffffffff81e53400 r u2c_92 +ffffffff81e53600 r u2c_91 +ffffffff81e53800 r u2c_90 +ffffffff81e53a00 r u2c_8F +ffffffff81e53c00 r u2c_8E +ffffffff81e53e00 r u2c_8D +ffffffff81e54000 r u2c_8C +ffffffff81e54200 r u2c_8B +ffffffff81e54400 r u2c_8A +ffffffff81e54600 r u2c_89 +ffffffff81e54800 r u2c_88 +ffffffff81e54a00 r u2c_87 +ffffffff81e54c00 r u2c_86 +ffffffff81e54e00 r u2c_85 +ffffffff81e55000 r u2c_84 +ffffffff81e55200 r u2c_83 +ffffffff81e55400 r u2c_82 +ffffffff81e55600 r u2c_81 +ffffffff81e55800 r u2c_80 +ffffffff81e55a00 r u2c_7F +ffffffff81e55c00 r u2c_7E +ffffffff81e55e00 r u2c_7D +ffffffff81e56000 r u2c_7C +ffffffff81e56200 r u2c_7B +ffffffff81e56400 r u2c_7A +ffffffff81e56600 r u2c_79 +ffffffff81e56800 r u2c_78 +ffffffff81e56a00 r u2c_77 +ffffffff81e56c00 r u2c_76 +ffffffff81e56e00 r u2c_75 +ffffffff81e57000 r u2c_74 +ffffffff81e57200 r u2c_73 +ffffffff81e57400 r u2c_72 +ffffffff81e57600 r u2c_71 +ffffffff81e57800 r u2c_70 +ffffffff81e57a00 r u2c_6F +ffffffff81e57c00 r u2c_6E +ffffffff81e57e00 r u2c_6D +ffffffff81e58000 r u2c_6C +ffffffff81e58200 r u2c_6B +ffffffff81e58400 r u2c_6A +ffffffff81e58600 r u2c_69 +ffffffff81e58800 r u2c_68 +ffffffff81e58a00 r u2c_67 +ffffffff81e58c00 r u2c_66 +ffffffff81e58e00 r u2c_65 +ffffffff81e59000 r u2c_64 +ffffffff81e59200 r u2c_63 +ffffffff81e59400 r u2c_62 +ffffffff81e59600 r u2c_61 +ffffffff81e59800 r u2c_60 +ffffffff81e59a00 r u2c_5F +ffffffff81e59c00 r u2c_5E +ffffffff81e59e00 r u2c_5D +ffffffff81e5a000 r u2c_5C +ffffffff81e5a200 r u2c_5B +ffffffff81e5a400 r u2c_5A +ffffffff81e5a600 r u2c_59 +ffffffff81e5a800 r u2c_58 +ffffffff81e5aa00 r u2c_57 +ffffffff81e5ac00 r u2c_56 +ffffffff81e5ae00 r u2c_55 +ffffffff81e5b000 r u2c_54 +ffffffff81e5b200 r u2c_53 +ffffffff81e5b400 r u2c_52 +ffffffff81e5b600 r u2c_51 +ffffffff81e5b800 r u2c_50 +ffffffff81e5ba00 r u2c_4F +ffffffff81e5bc00 r u2c_4E +ffffffff81e5be00 r u2c_33 +ffffffff81e5c000 r u2c_32 +ffffffff81e5c200 r u2c_31 +ffffffff81e5c400 r u2c_30 +ffffffff81e5c600 r u2c_26 +ffffffff81e5c800 r u2c_25 +ffffffff81e5ca00 r u2c_23 +ffffffff81e5cc00 r u2c_22 +ffffffff81e5ce00 r u2c_21 +ffffffff81e5d000 r u2c_20 +ffffffff81e5d200 r u2c_03 +ffffffff81e5d400 r u2c_02 +ffffffff81e5d600 r page_charset2uni +ffffffff81e5de00 r c2u_F9 +ffffffff81e5e000 r c2u_F8 +ffffffff81e5e200 r c2u_F7 +ffffffff81e5e400 r c2u_F6 +ffffffff81e5e600 r c2u_F5 +ffffffff81e5e800 r c2u_F4 +ffffffff81e5ea00 r c2u_F3 +ffffffff81e5ec00 r c2u_F2 +ffffffff81e5ee00 r c2u_F1 +ffffffff81e5f000 r c2u_F0 +ffffffff81e5f200 r c2u_EF +ffffffff81e5f400 r c2u_EE +ffffffff81e5f600 r c2u_ED +ffffffff81e5f800 r c2u_EC +ffffffff81e5fa00 r c2u_EB +ffffffff81e5fc00 r c2u_EA +ffffffff81e5fe00 r c2u_E9 +ffffffff81e60000 r c2u_E8 +ffffffff81e60200 r c2u_E7 +ffffffff81e60400 r c2u_E6 +ffffffff81e60600 r c2u_E5 +ffffffff81e60800 r c2u_E4 +ffffffff81e60a00 r c2u_E3 +ffffffff81e60c00 r c2u_E2 +ffffffff81e60e00 r c2u_E1 +ffffffff81e61000 r c2u_E0 +ffffffff81e61200 r c2u_DF +ffffffff81e61400 r c2u_DE +ffffffff81e61600 r c2u_DD +ffffffff81e61800 r c2u_DC +ffffffff81e61a00 r c2u_DB +ffffffff81e61c00 r c2u_DA +ffffffff81e61e00 r c2u_D9 +ffffffff81e62000 r c2u_D8 +ffffffff81e62200 r c2u_D7 +ffffffff81e62400 r c2u_D6 +ffffffff81e62600 r c2u_D5 +ffffffff81e62800 r c2u_D4 +ffffffff81e62a00 r c2u_D3 +ffffffff81e62c00 r c2u_D2 +ffffffff81e62e00 r c2u_D1 +ffffffff81e63000 r c2u_D0 +ffffffff81e63200 r c2u_CF +ffffffff81e63400 r c2u_CE +ffffffff81e63600 r c2u_CD +ffffffff81e63800 r c2u_CC +ffffffff81e63a00 r c2u_CB +ffffffff81e63c00 r c2u_CA +ffffffff81e63e00 r c2u_C9 +ffffffff81e64000 r c2u_C6 +ffffffff81e64200 r c2u_C5 +ffffffff81e64400 r c2u_C4 +ffffffff81e64600 r c2u_C3 +ffffffff81e64800 r c2u_C2 +ffffffff81e64a00 r c2u_C1 +ffffffff81e64c00 r c2u_C0 +ffffffff81e64e00 r c2u_BF +ffffffff81e65000 r c2u_BE +ffffffff81e65200 r c2u_BD +ffffffff81e65400 r c2u_BC +ffffffff81e65600 r c2u_BB +ffffffff81e65800 r c2u_BA +ffffffff81e65a00 r c2u_B9 +ffffffff81e65c00 r c2u_B8 +ffffffff81e65e00 r c2u_B7 +ffffffff81e66000 r c2u_B6 +ffffffff81e66200 r c2u_B5 +ffffffff81e66400 r c2u_B4 +ffffffff81e66600 r c2u_B3 +ffffffff81e66800 r c2u_B2 +ffffffff81e66a00 r c2u_B1 +ffffffff81e66c00 r c2u_B0 +ffffffff81e66e00 r c2u_AF +ffffffff81e67000 r c2u_AE +ffffffff81e67200 r c2u_AD +ffffffff81e67400 r c2u_AC +ffffffff81e67600 r c2u_AB +ffffffff81e67800 r c2u_AA +ffffffff81e67a00 r c2u_A9 +ffffffff81e67c00 r c2u_A8 +ffffffff81e67e00 r c2u_A7 +ffffffff81e68000 r c2u_A6 +ffffffff81e68200 r c2u_A5 +ffffffff81e68400 r c2u_A4 +ffffffff81e68600 r c2u_A3 +ffffffff81e68800 r c2u_A2 +ffffffff81e68a00 r c2u_A1 +ffffffff81e68c00 r charset2upper +ffffffff81e68d00 r charset2lower +ffffffff81e68e00 r page_uni2charset +ffffffff81e69600 r page00 +ffffffff81e69700 r charset2uni +ffffffff81e69900 r charset2upper +ffffffff81e69a00 r charset2lower +ffffffff81e69b00 r page_uni2charset +ffffffff81e6a300 r page00 +ffffffff81e6a400 r charset2uni +ffffffff81e6a600 r __func__.36283 +ffffffff81e6a620 r __func__.36353 +ffffffff81e6a630 r __func__.36409 +ffffffff81e6a640 R ntfs_mst_aops +ffffffff81e6a700 R ntfs_compressed_aops +ffffffff81e6a7c0 R ntfs_normal_aops +ffffffff81e6a870 r __func__.35853 +ffffffff81e6a888 r __func__.35793 +ffffffff81e6a8a0 r __func__.35813 +ffffffff81e6a8c0 r __func__.35770 +ffffffff81e6a8e0 r __func__.35745 +ffffffff81e6a900 r ntfs_do_collate0x0 +ffffffff81e6a920 r __func__.35959 +ffffffff81e6a930 r __func__.36003 +ffffffff81e6a950 r __func__.18720 +ffffffff81e6a960 r __func__.18711 +ffffffff81e6a980 r __func__.31431 +ffffffff81e6a990 r __func__.31467 +ffffffff81e6a9a0 r __func__.31394 +ffffffff81e6a9c0 R ntfs_dir_ops +ffffffff81e6aac0 R ntfs_empty_inode_ops +ffffffff81e6ab80 R ntfs_empty_file_ops +ffffffff81e6ac80 R ntfs_file_inode_ops +ffffffff81e6ad40 R ntfs_file_ops +ffffffff81e6ae40 r __func__.30935 +ffffffff81e6ae60 r __func__.31794 +ffffffff81e6ae80 r __func__.31672 +ffffffff81e6aea0 r __func__.31651 +ffffffff81e6aec0 r __func__.31769 +ffffffff81e6aee0 r __func__.31747 +ffffffff81e6af00 r __func__.31703 +ffffffff81e6af20 r __func__.31721 +ffffffff81e6af40 r __func__.36321 +ffffffff81e6af60 r __func__.36287 +ffffffff81e6af78 r __func__.36294 +ffffffff81e6afc0 r __func__.32082 +ffffffff81e6afd0 r __func__.32048 +ffffffff81e6afe0 R ntfs_export_ops +ffffffff81e6b040 R ntfs_dir_inode_ops +ffffffff81e6b100 r __func__.30963 +ffffffff81e6b120 r __func__.30925 +ffffffff81e6b140 r __func__.38428 +ffffffff81e6b160 r __func__.38441 +ffffffff81e6b180 r __func__.38379 +ffffffff81e6b1a0 r __func__.38328 +ffffffff81e6b1c0 r __func__.38366 +ffffffff81e6b1d8 r __func__.38302 +ffffffff81e6b1f0 r __func__.38532 +ffffffff81e6b200 r ntfs_big_inode_cache_name +ffffffff81e6b220 r ntfs_inode_cache_name +ffffffff81e6b240 r ntfs_name_cache_name +ffffffff81e6b250 r ntfs_attr_ctx_cache_name +ffffffff81e6b270 r ntfs_index_ctx_cache_name +ffffffff81e6b2a0 r ntfs_sops +ffffffff81e6b360 R on_errors_arr +ffffffff81e6b3c0 r __func__.30010 +ffffffff81e6b3d0 r __func__.29988 +ffffffff81e6b3e0 r legal_ansi_char_array +ffffffff81e6b420 r uc_word_table.29877 +ffffffff81e6b520 r uc_dup_table.29876 +ffffffff81e6b600 r uc_run_table.29875 +ffffffff81e6b830 r __func__.30100 +ffffffff81e6b860 r tokens +ffffffff81e6b900 r autofs4_sops +ffffffff81e6b9c0 R autofs4_dentry_operations +ffffffff81e6ba40 R autofs4_dir_inode_operations +ffffffff81e6bb00 R autofs4_dir_operations +ffffffff81e6bc00 R autofs4_root_operations +ffffffff81e6bd00 R autofs4_symlink_inode_operations +ffffffff81e6bdc0 r __func__.22982 +ffffffff81e6bde0 r __func__.37974 +ffffffff81e6be00 r _ioctls.38028 +ffffffff81e6be70 r __func__.37869 +ffffffff81e6be90 r __func__.37883 +ffffffff81e6beb0 r __func__.38045 +ffffffff81e6bed0 r __func__.38061 +ffffffff81e6bf00 r _dev_ioctl_fops +ffffffff81e6c1c0 r CSWTCH.243 +ffffffff81e6c2a8 r __func__.52779 +ffffffff81e6c2c0 r btrfs_ctl_fops +ffffffff81e6c3c0 r tokens +ffffffff81e6c720 r logtypes +ffffffff81e6c760 r btrfs_super_ops +ffffffff81e6c840 r __func__.49863 +ffffffff81e6c850 r __func__.50141 +ffffffff81e6c868 r __func__.50122 +ffffffff81e6c878 r __func__.50204 +ffffffff81e6c890 r __func__.49817 +ffffffff81e6c8b0 r __func__.49597 +ffffffff81e6c8d0 r __func__.49624 +ffffffff81e6c940 r CSWTCH.599 +ffffffff81e6c980 r __func__.53182 +ffffffff81e6c9a8 r __func__.52789 +ffffffff81e6c9b8 r __func__.52774 +ffffffff81e6c9d0 r __func__.52844 +ffffffff81e6c9e8 r __func__.52667 +ffffffff81e6ca00 r __func__.52515 +ffffffff81e6ca20 r __func__.51330 +ffffffff81e6ca40 r __func__.51298 +ffffffff81e6ca60 r __func__.51242 +ffffffff81e6ca80 r __func__.52294 +ffffffff81e6caa0 r __func__.50868 +ffffffff81e6cac0 r __func__.51078 +ffffffff81e6cae0 r btrfs_raid_type_names +ffffffff81e6cb20 r __func__.49307 +ffffffff81e6cb40 r __func__.49249 +ffffffff81e6cb60 r __func__.49216 +ffffffff81e6cb80 r __func__.49905 +ffffffff81e6cb90 r __func__.49762 +ffffffff81e6cbb0 r __func__.49258 +ffffffff81e6cbd0 r __func__.49464 +ffffffff81e6cbf0 r pinned_free_ino_op +ffffffff81e6cc00 r free_ino_op +ffffffff81e6cc20 r __func__.52782 +ffffffff81e6cc40 r __func__.52923 +ffffffff81e6cc60 r __func__.52675 +ffffffff81e6cc80 r __func__.52065 +ffffffff81e6cc90 r __func__.52145 +ffffffff81e6ccb0 r __func__.52078 +ffffffff81e6cce0 r btree_aops +ffffffff81e6cda0 r btree_extent_io_ops +ffffffff81e6ce10 r __func__.50525 +ffffffff81e6ce30 r __func__.50346 +ffffffff81e6ce50 r __func__.50377 +ffffffff81e6ce70 r __func__.50600 +ffffffff81e6ce90 r btrfs_blocked_trans_types +ffffffff81e6cec0 r __func__.54820 +ffffffff81e6cee0 r __func__.53841 +ffffffff81e6cef0 r __func__.53546 +ffffffff81e6cf10 r __func__.50712 +ffffffff81e6cf30 r __func__.52207 +ffffffff81e6cf48 r __func__.54653 +ffffffff81e6cf60 r __func__.54606 +ffffffff81e6cf80 r __func__.52986 +ffffffff81e6cf98 r __func__.53470 +ffffffff81e6cfb0 r __func__.53423 +ffffffff81e6cfd0 r __func__.53380 +ffffffff81e6cff0 r __func__.53308 +ffffffff81e6d010 r __func__.53254 +ffffffff81e6d030 r __func__.53099 +ffffffff81e6d050 r __func__.53083 +ffffffff81e6d080 R btrfs_dentry_operations +ffffffff81e6d100 r btrfs_type_by_mode +ffffffff81e6d120 r btrfs_extent_io_ops +ffffffff81e6d1a0 r btrfs_dir_file_operations +ffffffff81e6d2a0 r btrfs_symlink_aops +ffffffff81e6d360 r btrfs_aops +ffffffff81e6d440 r btrfs_file_inode_operations +ffffffff81e6d500 r btrfs_special_inode_operations +ffffffff81e6d5c0 r btrfs_dir_ro_inode_operations +ffffffff81e6d680 r btrfs_symlink_inode_operations +ffffffff81e6d740 r btrfs_dir_inode_operations +ffffffff81e6d800 r __func__.51520 +ffffffff81e6d820 r __func__.51222 +ffffffff81e6d840 r __func__.51161 +ffffffff81e6d860 R btrfs_file_operations +ffffffff81e6d960 r btrfs_file_vm_ops +ffffffff81e6d9c0 R btrfs_feature_set_names +ffffffff81e6d9e0 r supported_feature_masks +ffffffff81e6da00 r btrfs_feature_attr_group +ffffffff81e6da40 r btrfs_btrfs_xattr_handler +ffffffff81e6da80 r btrfs_user_xattr_handler +ffffffff81e6dac0 r btrfs_trusted_xattr_handler +ffffffff81e6db00 r btrfs_security_xattr_handler +ffffffff81e6db30 r __func__.49354 +ffffffff81e6db50 r __func__.51062 +ffffffff81e6db70 r __func__.50594 +ffffffff81e6dba0 r __func__.52530 +ffffffff81e6dbc0 r __func__.52280 +ffffffff81e6dbe0 r __func__.51729 +ffffffff81e6dc00 r __func__.51613 +ffffffff81e6dc20 r __func__.51325 +ffffffff81e6dc40 r __func__.50939 +ffffffff81e6dc60 r __func__.51365 +ffffffff81e6dc80 r __func__.51389 +ffffffff81e6dca0 r __func__.51230 +ffffffff81e6dcc0 r __func__.51010 +ffffffff81e6dce0 R btrfs_raid_mindev_error +ffffffff81e6dd00 R btrfs_raid_group +ffffffff81e6dd40 R btrfs_raid_array +ffffffff81e6de20 r __func__.53972 +ffffffff81e6de40 r __func__.54040 +ffffffff81e6de80 r types.53690 +ffffffff81e6dea0 r __func__.53217 +ffffffff81e6dec0 r __func__.52791 +ffffffff81e6dee0 r features.54080 +ffffffff81e6df30 r __func__.53499 +ffffffff81e6df50 r __func__.53572 +ffffffff81e6df60 R btrfs_export_ops +ffffffff81e6dfb0 r __func__.51061 +ffffffff81e6dfd0 r __func__.50469 +ffffffff81e6dff0 r __func__.50453 +ffffffff81e6e010 r __func__.50419 +ffffffff81e6e020 r __func__.50397 +ffffffff81e6e040 r __func__.49864 +ffffffff81e6e060 r __func__.49882 +ffffffff81e6e080 r __func__.49808 +ffffffff81e6e0a0 r free_space_op +ffffffff81e6e0c0 R btrfs_zlib_compress +ffffffff81e6e100 R btrfs_lzo_compress +ffffffff81e6e140 R btrfs_zstd_compress +ffffffff81e6e180 r __func__.51285 +ffffffff81e6e1a0 r __func__.50227 +ffffffff81e6e1c0 r btrfs_compress_op +ffffffff81e6e1e0 r btrfs_compress_types +ffffffff81e6e200 r __func__.50616 +ffffffff81e6e220 r __func__.50800 +ffffffff81e6e240 r __func__.50072 +ffffffff81e6e260 r __func__.50474 +ffffffff81e6e280 r __func__.49646 +ffffffff81e6e2a0 r __func__.51517 +ffffffff81e6e2c0 r __func__.50793 +ffffffff81e6e2e0 r __func__.50590 +ffffffff81e6e310 r __func__.50387 +ffffffff81e6e330 r __func__.50426 +ffffffff81e6e350 r __func__.51320 +ffffffff81e6e360 r CSWTCH.416 +ffffffff81e6e380 r __func__.51153 +ffffffff81e6e3a0 r __func__.49738 +ffffffff81e6e3c0 r __func__.49712 +ffffffff81e6e3e0 r __func__.49693 +ffffffff81e6e400 r __func__.49670 +ffffffff81e6e420 r __func__.49631 +ffffffff81e6e440 r __func__.49587 +ffffffff81e6e460 r __func__.49479 +ffffffff81e6e480 r __func__.49435 +ffffffff81e6e4a0 r sysvipc_proc_seqops +ffffffff81e6e4c0 r sysvipc_proc_fops +ffffffff81e6e5c0 r ipc_kht_params +ffffffff81e6e690 r msg_ops.39105 +ffffffff81e6e750 r sem_ops.39076 +ffffffff81e6e800 r shm_ops.41459 +ffffffff81e6e820 r shm_file_operations_huge +ffffffff81e6e920 r shm_vm_ops +ffffffff81e6e980 r shm_file_operations +ffffffff81e6ea80 r oflag2acc.57353 +ffffffff81e6eaa0 r mqueue_super_ops +ffffffff81e6eb60 r mqueue_file_operations +ffffffff81e6ec80 r mqueue_dir_inode_operations +ffffffff81e6ed40 R ipcns_operations +ffffffff81e6ed80 r keyring_assoc_array_ops +ffffffff81e6ef20 r request_key.19266 +ffffffff81e6ef40 r proc_key_users_fops +ffffffff81e6f040 r proc_key_users_ops +ffffffff81e6f060 r proc_keys_fops +ffffffff81e6f160 r proc_keys_ops +ffffffff81e6f180 r max +ffffffff81e6f184 r one +ffffffff81e6f2e0 r proc_crypto_ops +ffffffff81e6f3e0 r crypto_seq_ops +ffffffff81e6f400 r crypto_aead_type +ffffffff81e6f460 R crypto_givcipher_type +ffffffff81e6f4c0 R crypto_ablkcipher_type +ffffffff81e6f520 R crypto_blkcipher_type +ffffffff81e6f580 r crypto_skcipher_type2 +ffffffff81e6f5e0 R crypto_ahash_type +ffffffff81e6f640 r crypto_shash_type +ffffffff81e6f6a0 r crypto_akcipher_type +ffffffff81e6f700 r crypto_kpp_type +ffffffff81e6f750 R rsapubkey_decoder +ffffffff81e6f768 r rsapubkey_machine +ffffffff81e6f780 r rsapubkey_action_table +ffffffff81e6f7a0 R rsaprivkey_decoder +ffffffff81e6f7c0 r rsaprivkey_machine +ffffffff81e6f7e0 r rsaprivkey_action_table +ffffffff81e6f820 r rsa_asn1_templates +ffffffff81e6f8e0 r rsa_digest_info_sha512 +ffffffff81e6f900 r rsa_digest_info_sha384 +ffffffff81e6f920 r rsa_digest_info_sha256 +ffffffff81e6f940 r rsa_digest_info_sha224 +ffffffff81e6f958 r rsa_digest_info_rmd160 +ffffffff81e6f968 r rsa_digest_info_sha1 +ffffffff81e6f980 r rsa_digest_info_md5 +ffffffff81e6f9a0 r crypto_acomp_type +ffffffff81e6fa00 r crypto_scomp_type +ffffffff81e6fa60 r guard.39165 +ffffffff81e6fa80 r alg_test_descs +ffffffff81e71f80 r IDX +ffffffff81e71fa0 r lz4hc_decomp_tv_template +ffffffff81e723c0 r lz4hc_comp_tv_template +ffffffff81e727e0 r lz4_decomp_tv_template +ffffffff81e72c00 r lz4_comp_tv_template +ffffffff81e73020 r bfin_crc_tv_template +ffffffff81e73920 r crc32c_tv_template +ffffffff81e73b80 r crc32_tv_template +ffffffff81e73dc0 r michael_mic_tv_template +ffffffff81e73ec0 r lzo_decomp_tv_template +ffffffff81e746e0 r lzo_comp_tv_template +ffffffff81e74f00 r zlib_deflate_decomp_tv_template +ffffffff81e75720 r zlib_deflate_comp_tv_template +ffffffff81e75f40 r deflate_decomp_tv_template +ffffffff81e76760 r deflate_comp_tv_template +ffffffff81e76fa0 r cts_mode_dec_tv_template +ffffffff81e77160 r cts_mode_enc_tv_template +ffffffff81e77f80 r chacha20_enc_tv_template +ffffffff81e7a240 r salsa20_stream_enc_tv_template +ffffffff81e7a3c0 r seed_dec_tv_template +ffffffff81e7a4e0 r seed_enc_tv_template +ffffffff81e7ac40 r camellia_xts_dec_tv_template +ffffffff81e7adc0 r camellia_xts_enc_tv_template +ffffffff81e7b180 r camellia_lrw_dec_tv_template +ffffffff81e7b3c0 r camellia_lrw_enc_tv_template +ffffffff81e7c9e0 r camellia_ctr_dec_tv_template +ffffffff81e7cac0 r camellia_ctr_enc_tv_template +ffffffff81e7cfc0 r camellia_cbc_dec_tv_template +ffffffff81e7d0a0 r camellia_cbc_enc_tv_template +ffffffff81e7d5c0 r camellia_dec_tv_template +ffffffff81e7d6e0 r camellia_enc_tv_template +ffffffff81e7d880 r fcrypt_pcbc_dec_tv_template +ffffffff81e7da00 r fcrypt_pcbc_enc_tv_template +ffffffff81e7db80 r xeta_dec_tv_template +ffffffff81e7dca0 r xeta_enc_tv_template +ffffffff81e7ddc0 r anubis_cbc_dec_tv_template +ffffffff81e7de60 r anubis_cbc_enc_tv_template +ffffffff81e7df00 r anubis_dec_tv_template +ffffffff81e7e080 r anubis_enc_tv_template +ffffffff81e7e200 r khazad_dec_tv_template +ffffffff81e7e380 r khazad_enc_tv_template +ffffffff81e7e500 r xtea_dec_tv_template +ffffffff81e7e620 r xtea_enc_tv_template +ffffffff81e7e740 r tea_dec_tv_template +ffffffff81e7e860 r tea_enc_tv_template +ffffffff81e7e9c0 r arc4_dec_tv_template +ffffffff81e7ebc0 r arc4_enc_tv_template +ffffffff81e7edc0 r cast5_ctr_dec_tv_template +ffffffff81e7ee60 r cast5_ctr_enc_tv_template +ffffffff81e7f100 r cast5_cbc_dec_tv_template +ffffffff81e7f160 r cast5_cbc_enc_tv_template +ffffffff81e7f3a0 r cast5_dec_tv_template +ffffffff81e7f4c0 r cast5_enc_tv_template +ffffffff81e7f5e0 r drbg_nopr_ctr_aes128_tv_template +ffffffff81e7f760 r drbg_nopr_ctr_aes256_tv_template +ffffffff81e7f800 r drbg_nopr_ctr_aes192_tv_template +ffffffff81e7f920 r drbg_nopr_hmac_sha256_tv_template +ffffffff81e7fb60 r drbg_nopr_sha256_tv_template +ffffffff81e7fd40 r drbg_pr_ctr_aes128_tv_template +ffffffff81e7ffc0 r drbg_pr_hmac_sha256_tv_template +ffffffff81e80200 r drbg_pr_sha256_tv_template +ffffffff81e803e0 r ansi_cprng_aes_tv_template +ffffffff81e80500 r aes_kw_dec_tv_template +ffffffff81e80560 r aes_kw_enc_tv_template +ffffffff81e80700 r rfc7539esp_dec_tv_template +ffffffff81e80760 r rfc7539esp_enc_tv_template +ffffffff81e807e0 r rfc7539_dec_tv_template +ffffffff81e80880 r rfc7539_enc_tv_template +ffffffff81e80fe0 r aes_ccm_rfc4309_dec_tv_template +ffffffff81e81720 r aes_ccm_rfc4309_enc_tv_template +ffffffff81e82040 r aes_ccm_dec_tv_template +ffffffff81e82640 r aes_ccm_enc_tv_template +ffffffff81e82b40 r aes_gcm_rfc4543_dec_tv_template +ffffffff81e82be0 r aes_gcm_rfc4543_enc_tv_template +ffffffff81e82d40 r aes_gcm_rfc4106_dec_tv_template +ffffffff81e83480 r aes_gcm_rfc4106_enc_tv_template +ffffffff81e83c80 r aes_gcm_dec_tv_template +ffffffff81e83f00 r aes_gcm_enc_tv_template +ffffffff81e841e0 r aes_ofb_dec_tv_template +ffffffff81e84240 r aes_ofb_enc_tv_template +ffffffff81e843a0 r aes_ctr_rfc3686_dec_tv_template +ffffffff81e85580 r aes_ctr_rfc3686_enc_tv_template +ffffffff81e85fa0 r aes_ctr_dec_tv_template +ffffffff81e86120 r aes_ctr_enc_tv_template +ffffffff81e866a0 r aes_xts_dec_tv_template +ffffffff81e86820 r aes_xts_enc_tv_template +ffffffff81e86bc0 r aes_lrw_dec_tv_template +ffffffff81e86e00 r aes_lrw_enc_tv_template +ffffffff81e87180 r hmac_sha512_des3_ede_cbc_enc_tv_temp +ffffffff81e872e0 r hmac_sha384_des3_ede_cbc_enc_tv_temp +ffffffff81e87420 r hmac_sha256_des3_ede_cbc_enc_tv_temp +ffffffff81e87560 r hmac_sha224_des3_ede_cbc_enc_tv_temp +ffffffff81e87680 r hmac_sha1_des3_ede_cbc_enc_tv_temp +ffffffff81e87740 r hmac_sha512_des_cbc_enc_tv_temp +ffffffff81e877e0 r hmac_sha384_des_cbc_enc_tv_temp +ffffffff81e87920 r hmac_sha256_des_cbc_enc_tv_temp +ffffffff81e879a0 r hmac_sha224_des_cbc_enc_tv_temp +ffffffff81e87a20 r hmac_sha1_des_cbc_enc_tv_temp +ffffffff81e87e40 r hmac_sha512_aes_cbc_enc_tv_temp +ffffffff81e882c0 r hmac_sha256_aes_cbc_enc_tv_temp +ffffffff81e88520 r hmac_sha1_ecb_cipher_null_dec_tv_temp +ffffffff81e885c0 r hmac_sha1_ecb_cipher_null_enc_tv_temp +ffffffff81e88840 r hmac_sha1_aes_cbc_enc_tv_temp +ffffffff81e88aa0 r hmac_md5_ecb_cipher_null_dec_tv_template +ffffffff81e88b40 r hmac_md5_ecb_cipher_null_enc_tv_template +ffffffff81e88be0 r aes_cbc_dec_tv_template +ffffffff81e88d60 r aes_cbc_enc_tv_template +ffffffff81e89100 r aes_dec_tv_template +ffffffff81e89220 r aes_enc_tv_template +ffffffff81e89560 r cast6_xts_dec_tv_template +ffffffff81e895c0 r cast6_xts_enc_tv_template +ffffffff81e89820 r cast6_lrw_dec_tv_template +ffffffff81e89880 r cast6_lrw_enc_tv_template +ffffffff81e89ac0 r cast6_ctr_dec_tv_template +ffffffff81e89b60 r cast6_ctr_enc_tv_template +ffffffff81e89e00 r cast6_cbc_dec_tv_template +ffffffff81e89e60 r cast6_cbc_enc_tv_template +ffffffff81e8a0a0 r cast6_dec_tv_template +ffffffff81e8a1c0 r cast6_enc_tv_template +ffffffff81e8a740 r serpent_xts_dec_tv_template +ffffffff81e8a8c0 r serpent_xts_enc_tv_template +ffffffff81e8ac40 r serpent_lrw_dec_tv_template +ffffffff81e8ae80 r serpent_lrw_enc_tv_template +ffffffff81e8b6c0 r serpent_ctr_dec_tv_template +ffffffff81e8b7a0 r serpent_ctr_enc_tv_template +ffffffff81e8ba80 r serpent_cbc_dec_tv_template +ffffffff81e8bae0 r serpent_cbc_enc_tv_template +ffffffff81e8bb40 r tnepres_dec_tv_template +ffffffff81e8be60 r serpent_dec_tv_template +ffffffff81e8c060 r tnepres_enc_tv_template +ffffffff81e8c180 r serpent_enc_tv_template +ffffffff81e8c540 r tf_xts_dec_tv_template +ffffffff81e8c6c0 r tf_xts_enc_tv_template +ffffffff81e8ca40 r tf_lrw_dec_tv_template +ffffffff81e8cc80 r tf_lrw_enc_tv_template +ffffffff81e8d4c0 r tf_ctr_dec_tv_template +ffffffff81e8d5a0 r tf_ctr_enc_tv_template +ffffffff81e8d880 r tf_cbc_dec_tv_template +ffffffff81e8da00 r tf_cbc_enc_tv_template +ffffffff81e8dd60 r tf_dec_tv_template +ffffffff81e8de80 r tf_enc_tv_template +ffffffff81e8e9a0 r bf_ctr_dec_tv_template +ffffffff81e8ea80 r bf_ctr_enc_tv_template +ffffffff81e8eb80 r bf_cbc_dec_tv_template +ffffffff81e8ec20 r bf_cbc_enc_tv_template +ffffffff81e8ef20 r bf_dec_tv_template +ffffffff81e8f120 r bf_enc_tv_template +ffffffff81e8fb20 r des3_ede_ctr_dec_tv_template +ffffffff81e8fbc0 r des3_ede_ctr_enc_tv_template +ffffffff81e8fee0 r des3_ede_cbc_dec_tv_template +ffffffff81e8ff80 r des3_ede_cbc_enc_tv_template +ffffffff81e90240 r des3_ede_dec_tv_template +ffffffff81e90360 r des3_ede_enc_tv_template +ffffffff81e90880 r des_ctr_dec_tv_template +ffffffff81e90920 r des_ctr_enc_tv_template +ffffffff81e90ac0 r des_cbc_dec_tv_template +ffffffff81e90c40 r des_cbc_enc_tv_template +ffffffff81e90f00 r des_dec_tv_template +ffffffff81e91080 r des_enc_tv_template +ffffffff81e919a0 r poly1305_tv_template +ffffffff81e91ba0 r hmac_sha3_512_tv_template +ffffffff81e91cc0 r hmac_sha3_384_tv_template +ffffffff81e91da0 r hmac_sha3_256_tv_template +ffffffff81e91e80 r hmac_sha3_224_tv_template +ffffffff81e91f20 r hmac_sha512_tv_template +ffffffff81e91fc0 r hmac_sha384_tv_template +ffffffff81e92080 r aes_vmac128_tv_template +ffffffff81e92240 r vmac_string6 +ffffffff81e922e0 r vmac_string5 +ffffffff81e92360 r vmac_string4 +ffffffff81e92380 r vmac_string3 +ffffffff81e92400 r vmac_string2 +ffffffff81e92480 r vmac_string1 +ffffffff81e92560 r aes_xcbc128_tv_template +ffffffff81e92660 r des3_ede_cmac64_tv_template +ffffffff81e92700 r aes_cbcmac_tv_template +ffffffff81e927a0 r aes_cmac128_tv_template +ffffffff81e928e0 r hmac_sha256_tv_template +ffffffff81e92aa0 r hmac_sha224_tv_template +ffffffff81e92b40 r hmac_sha1_tv_template +ffffffff81e92c60 r hmac_rmd160_tv_template +ffffffff81e92d80 r hmac_rmd128_tv_template +ffffffff81e92ec0 r hmac_md5_tv_template +ffffffff81e92fe0 r ghash_tv_template +ffffffff81e93100 r tgr128_tv_template +ffffffff81e93220 r tgr160_tv_template +ffffffff81e93340 r tgr192_tv_template +ffffffff81e93480 r wp256_tv_template +ffffffff81e93640 r wp384_tv_template +ffffffff81e93820 r wp512_tv_template +ffffffff81e93dc0 r sha512_tv_template +ffffffff81e93f00 r sha384_tv_template +ffffffff81e94020 r sha256_tv_template +ffffffff81e94100 r sha224_tv_template +ffffffff81e94280 r sha1_tv_template +ffffffff81e94380 r sm3_tv_template +ffffffff81e94480 r crct10dif_tv_template +ffffffff81e94560 r rmd320_tv_template +ffffffff81e946a0 r rmd256_tv_template +ffffffff81e947e0 r rmd160_tv_template +ffffffff81e94980 r rmd128_tv_template +ffffffff81e94b40 r md5_tv_template +ffffffff81e94ca0 r sha3_512_tv_template +ffffffff81e94d80 r sha3_384_tv_template +ffffffff81e94e20 r sha3_256_tv_template +ffffffff81e94ec0 r sha3_224_tv_template +ffffffff81e94f60 r md4_tv_template +ffffffff81e95120 r ecdh_tv_template +ffffffff81e95a20 r dh_tv_template +ffffffff81e95dc0 r pkcs1pad_rsa_tv_template +ffffffff81e96e20 r rsa_tv_template +ffffffff81e96ef0 r __param_str_notests +ffffffff81e96f10 R sha1_zero_message_hash +ffffffff81e96f40 R sha256_zero_message_hash +ffffffff81e96f60 R sha224_zero_message_hash +ffffffff81e96f80 r gf128mul_table_be +ffffffff81e97180 r gf128mul_table_le +ffffffff81e97380 r __param_str_cryptd_max_cpu_qlen +ffffffff81e973a0 r S8 +ffffffff81e974a0 r S7 +ffffffff81e975a0 r S6 +ffffffff81e976a0 r S5 +ffffffff81e977a0 r S4 +ffffffff81e978a0 r S3 +ffffffff81e979a0 r S2 +ffffffff81e97aa0 r S1 +ffffffff81e97ba0 r pc2 +ffffffff81e98ba0 r rs +ffffffff81e98ca0 r pc1 +ffffffff81e98da0 R crypto_il_tab +ffffffff81e99da0 R crypto_it_tab +ffffffff81e9ada0 R crypto_fl_tab +ffffffff81e9bda0 R crypto_ft_tab +ffffffff81e9cda0 r rco_tab +ffffffff81e9cde0 r crypto_rng_type +ffffffff81e9ce40 r CSWTCH.140 +ffffffff81e9ce80 r drbg_hmac_ops +ffffffff81e9cea0 r drbg_cores +ffffffff81e9d2c0 r alg_family +ffffffff81e9d2e0 r alg_proto_ops +ffffffff81e9d3a0 r algif_type_hash +ffffffff81e9d400 R key_being_used_for +ffffffff81e9d440 R x509_decoder +ffffffff81e9d460 r x509_machine +ffffffff81e9d4e0 r x509_action_table +ffffffff81e9d540 R x509_akid_decoder +ffffffff81e9d560 r x509_akid_machine +ffffffff81e9d5c0 r x509_akid_action_table +ffffffff81e9d618 r month_lengths.14466 +ffffffff81e9d640 R pkcs7_decoder +ffffffff81e9d660 r pkcs7_machine +ffffffff81e9d760 r pkcs7_action_table +ffffffff81e9d8c0 R hash_digest_size +ffffffff81e9d920 R hash_algo_name +ffffffff81e9d9f0 r __func__.40181 +ffffffff81e9da10 r elv_sysfs_ops +ffffffff81e9da60 r __func__.40763 +ffffffff81e9da70 r __func__.41646 +ffffffff81e9da90 r __func__.41408 +ffffffff81e9dab0 r __func__.41093 +ffffffff81e9dac0 r blk_errors +ffffffff81e9dba0 r __func__.34500 +ffffffff81e9dbc0 r __func__.34492 +ffffffff81e9dbd8 r __func__.34457 +ffffffff81e9dbf0 r queue_sysfs_ops +ffffffff81e9dc00 r __func__.35027 +ffffffff81e9dc20 r __func__.34833 +ffffffff81e9dc40 r __func__.34824 +ffffffff81e9dc60 r __func__.34794 +ffffffff81e9dc80 r blk_mq_hw_sysfs_ops +ffffffff81e9dc90 r blk_mq_sysfs_ops +ffffffff81e9dca0 r __param_str_events_dfl_poll_msecs +ffffffff81e9dcc0 r disk_events_dfl_poll_msecs_param_ops +ffffffff81e9dce0 r dev_attr_events_poll_msecs +ffffffff81e9dd00 r dev_attr_events_async +ffffffff81e9dd20 r dev_attr_events +ffffffff81e9dd40 r proc_diskstats_operations +ffffffff81e9de40 r diskstats_op +ffffffff81e9de60 r proc_partitions_operations +ffffffff81e9df60 r partitions_op +ffffffff81e9df80 r disk_type +ffffffff81e9dfb0 r check_part +ffffffff81e9dfe0 r subtypes +ffffffff81e9e060 R scsi_command_size_tbl +ffffffff81e9e080 r bsg_fops +ffffffff81e9e220 r si.6075 +ffffffff81e9e230 R uuid_index +ffffffff81e9e240 R guid_index +ffffffff81e9e380 r units_10.22369 +ffffffff81e9e3e0 r units_2.22370 +ffffffff81e9e430 r units_str.22371 +ffffffff81e9e440 r rounding.22373 +ffffffff81e9e450 r divisor.22372 +ffffffff81e9e460 R hex_asc_upper +ffffffff81e9e480 R hex_asc +ffffffff81e9e700 R byte_rev_table +ffffffff81e9e800 R crc16_table +ffffffff81e9ea00 r crc32ctable_le +ffffffff81ea0a00 r crc32table_be +ffffffff81ea2a00 r crc32table_le +ffffffff81ea4b00 r distfix.3265 +ffffffff81ea4b80 r lenfix.3264 +ffffffff81ea5380 r order.3296 +ffffffff81ea53c0 r dext.3212 +ffffffff81ea5400 r dbase.3211 +ffffffff81ea5440 r lext.3210 +ffffffff81ea5480 r lbase.3209 +ffffffff81ea54c0 r configuration_table +ffffffff81ea5560 r bl_order +ffffffff81ea5580 r extra_blbits +ffffffff81ea55e0 r extra_dbits +ffffffff81ea5660 r extra_lbits +ffffffff81ea56e0 r BIT_mask +ffffffff81ea57a0 r blockCompressor.18322 +ffffffff81ea5820 r ZSTD_defaultCParameters +ffffffff81ea6300 r OF_defaultNorm +ffffffff81ea65a0 r BIT_mask +ffffffff81ea69a0 r algoTime +ffffffff81ea6c10 r CSWTCH.290 +ffffffff81ea6c40 r dec32table.17102 +ffffffff81ea6c40 r dec32table.17187 +ffffffff81ea6c60 r dec64table.17103 +ffffffff81ea6c60 r dec64table.17188 +ffffffff81ea6e00 r OF_base.17078 +ffffffff81ea6e00 r OF_base.17157 +ffffffff81ea6e80 r OF_defaultDTable +ffffffff81ea72e0 r ZSTD_did_fieldSize +ffffffff81ea7300 r ZSTD_fcs_fieldSize +ffffffff81ea7320 r repStartValue +ffffffff81ea7340 R raid6_recov_algos +ffffffff81ea7380 R raid6_algos +ffffffff81ea7400 R raid6_recov_intx1 +ffffffff81ea7500 R raid6_gfexi +ffffffff81ea7600 R raid6_gfinv +ffffffff81ea7700 R raid6_gflog +ffffffff81ea7800 R raid6_gfexp +ffffffff81ea7900 R raid6_vgfmul +ffffffff81ea9900 R raid6_gfmul +ffffffff81eb9900 R raid6_intx1 +ffffffff81eb9940 R raid6_intx2 +ffffffff81eb9980 R raid6_intx4 +ffffffff81eb99c0 R raid6_intx8 +ffffffff81eb9a00 r x0f.31857 +ffffffff81eb9a10 r x0f.31871 +ffffffff81eb9a20 R raid6_recov_ssse3 +ffffffff81eb9a60 R raid6_recov_avx2 +ffffffff81eb9aa0 R raid6_sse2x4 +ffffffff81eb9ae0 R raid6_sse2x2 +ffffffff81eb9b20 R raid6_sse2x1 +ffffffff81eb9b50 r raid6_sse_constants +ffffffff81eb9b60 R raid6_avx2x4 +ffffffff81eb9ba0 R raid6_avx2x2 +ffffffff81eb9be0 R raid6_avx2x1 +ffffffff81eb9c20 r raid6_avx2_constants +ffffffff81eb9c40 R raid6_avx512x4 +ffffffff81eb9c80 R raid6_avx512x2 +ffffffff81eb9cc0 R raid6_avx512x1 +ffffffff81eb9d00 r raid6_avx512_constants +ffffffff81eb9d40 R raid6_recov_avx512 +ffffffff81eb9d70 r __func__.29810 +ffffffff81eb9d80 r __func__.29718 +ffffffff81eb9d90 r __func__.29769 +ffffffff81eb9db0 r __func__.29704 +ffffffff81eb9e30 r __func__.34486 +ffffffff81eb9e40 r __func__.34432 +ffffffff81eb9e50 r nla_attr_minlen +ffffffff81eb9e70 r nla_attr_len +ffffffff81eba280 r asn1_op_lengths +ffffffff81eba2c0 R font_vga_8x8 +ffffffff81eba300 r fontdata_8x8 +ffffffff81ebab00 R font_vga_8x16 +ffffffff81ebab40 r fontdata_8x16 +ffffffff81ebbb40 r oid_search_table +ffffffff81ebbc40 r oid_data +ffffffff81ebbdc0 r oid_index +ffffffff81ebbe38 r __func__.10230 +ffffffff81ebc000 r CSWTCH.148 +ffffffff81ebc030 r __func__.34555 +ffffffff81ebc050 r pci_vpd_f0_ops +ffffffff81ebc070 r pci_vpd_ops +ffffffff81ebc090 r agp_speeds +ffffffff81ebc0a0 R pcie_link_speed +ffffffff81ebc0b0 r pcix_bus_speed +ffffffff81ebc0c0 r CSWTCH.502 +ffffffff81ebc0f0 r __func__.40020 +ffffffff81ebc110 r __func__.40008 +ffffffff81ebc130 r __func__.39914 +ffffffff81ebc160 r __func__.39540 +ffffffff81ebc178 r __func__.39635 +ffffffff81ebc190 r __func__.39558 +ffffffff81ebc1b0 r __func__.39663 +ffffffff81ebc1e0 r pci_dev_pm_ops +ffffffff81ebc2a0 r pci_device_id_any +ffffffff81ebc2c0 r pci_drv_group +ffffffff81ebc300 r CSWTCH.227 +ffffffff81ebc320 r CSWTCH.223 +ffffffff81ebc340 R pci_dev_type +ffffffff81ebc380 r pcie_dev_attr_group +ffffffff81ebc3c0 r pci_bridge_attr_group +ffffffff81ebc400 r pci_dev_attr_group +ffffffff81ebc440 r pci_dev_hp_attr_group +ffffffff81ebc480 r pcie_dev_group +ffffffff81ebc4c0 r pci_bridge_group +ffffffff81ebc500 r pci_dev_group +ffffffff81ebc540 r pcie_config_attr +ffffffff81ebc580 r pci_config_attr +ffffffff81ebc5c0 r pcibus_group +ffffffff81ebc600 r pci_bus_group +ffffffff81ebc640 r __func__.33131 +ffffffff81ebc660 r vc_caps +ffffffff81ebc6a0 r pci_phys_vm_ops +ffffffff81ebc700 r proc_bus_pci_dev_operations +ffffffff81ebc800 r proc_bus_pci_devices_op +ffffffff81ebc820 r proc_bus_pci_operations +ffffffff81ebc920 r pci_bus_speed_strings +ffffffff81ebc9e0 r pci_slot_sysfs_ops +ffffffff81ebcaa0 r pci_dev_enable_acs +ffffffff81ebcae0 r pci_dev_acs_enabled +ffffffff81ebcf20 r pci_quirk_intel_pch_acs_ids +ffffffff81ebd020 r fixed_dma_alias_tbl +ffffffff81ebd080 r pci_dev_reset_methods +ffffffff81ebd0d0 r mellanox_broken_intx_devs +ffffffff81ebd100 r boot_interrupt_dmi_table +ffffffff81ebd3c0 r __func__.33542 +ffffffff81ebd3d0 r __param_str_policy +ffffffff81ebd400 r __param_ops_policy +ffffffff81ebd420 r policy_str +ffffffff81ebd440 r pcie_portdrv_err_handler +ffffffff81ebd480 r port_pci_ids +ffffffff81ebd4c0 r pcie_portdrv_pm_ops +ffffffff81ebd580 r aer_uncorrectable_error_string +ffffffff81ebd660 r aer_correctable_error_string +ffffffff81ebd6e0 r aer_error_severity_string +ffffffff81ebd700 r CSWTCH.64 +ffffffff81ebd714 r state_conv.39807 +ffffffff81ebd720 r state_conv.39827 +ffffffff81ebd740 r __func__.39690 +ffffffff81ebd760 r __func__.39676 +ffffffff81ebd780 r __func__.39662 +ffffffff81ebd798 r __func__.39708 +ffffffff81ebd7c0 r acpi_pci_platform_pm +ffffffff81ebd7f0 R pci_acpi_dsm_guid +ffffffff81ebd800 r acpi_attr_group +ffffffff81ebd840 r smbios_attr_group +ffffffff81ebd880 r CSWTCH.40 +ffffffff81ebd8e0 r CSWTCH.38 +ffffffff81ebd940 r CSWTCH.36 +ffffffff81ebd980 r CSWTCH.34 +ffffffff81ebd9a0 r CSWTCH.32 +ffffffff81ebda20 r CSWTCH.30 +ffffffff81ebdaa0 r CSWTCH.28 +ffffffff81ebdac0 r CSWTCH.25 +ffffffff81ebdae0 r CSWTCH.23 +ffffffff81ebdb00 r CSWTCH.21 +ffffffff81ebdb40 r CSWTCH.19 +ffffffff81ebdbc0 r CSWTCH.17 +ffffffff81ebdc00 r CSWTCH.15 +ffffffff81ebdc20 r CSWTCH.13 +ffffffff81ebdc40 r CSWTCH.11 +ffffffff81ebdc80 r CSWTCH.9 +ffffffff81ebdca0 R dummy_con +ffffffff81ebdd80 r bl_device_group +ffffffff81ebddc0 r backlight_class_dev_pm_ops +ffffffff81ebde80 r backlight_types +ffffffff81ebdea0 r __param_str_lockless_register_fb +ffffffff81ebdec0 r fb_fops +ffffffff81ebdfc0 r fb_proc_fops +ffffffff81ebe0c0 r proc_fb_seq_ops +ffffffff81ebe0e0 r default_16_colors +ffffffff81ebe120 r default_4_colors +ffffffff81ebe160 r default_8_colors +ffffffff81ebe1a0 r default_2_colors +ffffffff81ebe440 r modedb +ffffffff81ebf340 r fb_deferred_io_aops +ffffffff81ebf400 r fb_deferred_io_vm_ops +ffffffff81ebf540 r CSWTCH.729 +ffffffff81ebf580 r fb_con +ffffffff81ebf7a0 r cfb_tab32 +ffffffff81ebf7b0 r cfb_tab16_le +ffffffff81ebf7c0 r cfb_tab8_le +ffffffff81ebf920 r cfb_tab32 +ffffffff81ebf930 r cfb_tab16_le +ffffffff81ebf940 r cfb_tab8_le +ffffffff81ebf980 r __param_str_max_cstate +ffffffff81ebf9a0 r irtl_ns_units +ffffffff81ebf9c0 r idle_cpu_dnv +ffffffff81ebf9e0 r idle_cpu_bxt +ffffffff81ebfa00 r idle_cpu_knl +ffffffff81ebfa20 r idle_cpu_avn +ffffffff81ebfa40 r idle_cpu_skx +ffffffff81ebfa60 r idle_cpu_skl +ffffffff81ebfa80 r idle_cpu_bdw +ffffffff81ebfaa0 r idle_cpu_hsw +ffffffff81ebfac0 r idle_cpu_ivt +ffffffff81ebfae0 r idle_cpu_ivb +ffffffff81ebfb00 r idle_cpu_cht +ffffffff81ebfb20 r idle_cpu_byt +ffffffff81ebfb40 r idle_cpu_snb +ffffffff81ebfb60 r idle_cpu_lincroft +ffffffff81ebfb80 r idle_cpu_tangier +ffffffff81ebfba0 r idle_cpu_atom +ffffffff81ebfbc0 r idle_cpu_nehalem +ffffffff81ebfc60 r mps_inti_flags_trigger +ffffffff81ebfc80 r mps_inti_flags_polarity +ffffffff81ebfca0 r __func__.43903 +ffffffff81ebfcc0 r acpi_s2idle_ops +ffffffff81ebfd00 r lps0_device_ids +ffffffff81ebfd40 r acpi_suspend_ops_old +ffffffff81ebfda0 r acpi_suspend_ops +ffffffff81ebfdf0 r acpi_suspend_states +ffffffff81ebfe10 r acpi_data_node_sysfs_ops +ffffffff81ebfe20 r CSWTCH.99 +ffffffff81ebfe60 r acpi_system_wakeup_device_fops +ffffffff81ebffc0 r __func__.43573 +ffffffff81ebffca r _acpi_module_name +ffffffff81ec00a0 r button_device_ids.39771 +ffffffff81ec0120 r __func__.39891 +ffffffff81ec0140 r generic_device_ids +ffffffff81ec0180 r _acpi_module_name +ffffffff81ec0220 r processor_container_ids +ffffffff81ec0260 r processor_device_ids +ffffffff81ec02c0 r __param_str_ec_event_clearing +ffffffff81ec02e0 r __param_ops_ec_event_clearing +ffffffff81ec0300 r acpi_ec_pm +ffffffff81ec03c0 r ec_device_ids +ffffffff81ec0420 r __param_str_ec_no_wakeup +ffffffff81ec0440 r __param_str_ec_freeze_events +ffffffff81ec0460 r __param_str_ec_storm_threshold +ffffffff81ec0480 r __param_str_ec_polling_guard +ffffffff81ec04a0 r __param_str_ec_busy_polling +ffffffff81ec04c0 r __param_str_ec_max_queries +ffffffff81ec04d8 r __param_str_ec_delay +ffffffff81ec0500 r root_device_ids +ffffffff81ec0540 r link_device_ids +ffffffff81ec0580 r _acpi_module_name +ffffffff81ec05a0 r prt_quirks +ffffffff81ec0620 r hp_t5710 +ffffffff81ec08e0 r dell_optiplex +ffffffff81ec0ba0 r medion_md9580 +ffffffff81ec0e60 r acpi_lpss_device_ids +ffffffff81ec1220 r acpi_apd_device_ids +ffffffff81ec1240 r forbidden_id_list +ffffffff81ec1300 r ids.29223 +ffffffff81ec1380 r acpi_pnp_device_ids +ffffffff81ec34a0 r wakeup_attr_group +ffffffff81ec34e0 r attr_groups +ffffffff81ec3580 r acpi_event_mcgrps +ffffffff81ec35a0 r force_remove_attr +ffffffff81ec35c0 r pm_profile_attr +ffffffff81ec35e0 r __param_str_acpica_version +ffffffff81ec3600 r __param_ops_acpica_version +ffffffff81ec3620 r __param_str_aml_debug_output +ffffffff81ec3636 r _acpi_module_name +ffffffff81ec3640 R acpi_data_fwnode_ops +ffffffff81ec36c0 R acpi_device_fwnode_ops +ffffffff81ec3740 r ads_guid +ffffffff81ec3750 r prp_guid +ffffffff81ec3760 r acpi_cmos_rtc_ids +ffffffff81ec37e0 r apple_prp_guid +ffffffff81ec3800 r always_present_ids +ffffffff81ec4da8 r _acpi_module_name +ffffffff81ec4db0 r _acpi_module_name +ffffffff81ec4e10 r _acpi_module_name +ffffffff81ec4e18 r _acpi_module_name +ffffffff81ec4e20 r _acpi_module_name +ffffffff81ec4e30 r _acpi_module_name +ffffffff81ec4e40 r _acpi_module_name +ffffffff81ec4e50 r _acpi_module_name +ffffffff81ec4e60 r _acpi_module_name +ffffffff81ec4e70 r _acpi_module_name +ffffffff81ec4ee0 r acpi_gbl_op_type_dispatch +ffffffff81ec4f40 r _acpi_module_name +ffffffff81ec4f48 r _acpi_module_name +ffffffff81ec4fd0 r _acpi_module_name +ffffffff81ec4fe0 r _acpi_module_name +ffffffff81ec4ff0 r _acpi_module_name +ffffffff81ec5000 r _acpi_module_name +ffffffff81ec5008 r _acpi_module_name +ffffffff81ec5010 r _acpi_module_name +ffffffff81ec5020 r _acpi_module_name +ffffffff81ec5030 r _acpi_module_name +ffffffff81ec5040 r _acpi_module_name +ffffffff81ec5048 r _acpi_module_name +ffffffff81ec5052 r _acpi_module_name +ffffffff81ec5060 r _acpi_module_name +ffffffff81ec5070 r _acpi_module_name +ffffffff81ec5080 r _acpi_module_name +ffffffff81ec5088 r _acpi_module_name +ffffffff81ec5098 r _acpi_module_name +ffffffff81ec50a0 r _acpi_module_name +ffffffff81ec50e8 r _acpi_module_name +ffffffff81ec50f8 r _acpi_module_name +ffffffff81ec5178 r _acpi_module_name +ffffffff81ec5180 r _acpi_module_name +ffffffff81ec51f8 r _acpi_module_name +ffffffff81ec5200 r _acpi_module_name +ffffffff81ec5208 r _acpi_module_name +ffffffff81ec5260 r _acpi_module_name +ffffffff81ec5270 r _acpi_module_name +ffffffff81ec5280 r _acpi_module_name +ffffffff81ec52c0 r _acpi_module_name +ffffffff81ec5300 r _acpi_module_name +ffffffff81ec5308 r _acpi_module_name +ffffffff81ec53c0 r _acpi_module_name +ffffffff81ec54d0 r _acpi_module_name +ffffffff81ec5598 r _acpi_module_name +ffffffff81ec55d8 r _acpi_module_name +ffffffff81ec55e0 r _acpi_module_name +ffffffff81ec55f0 r _acpi_module_name +ffffffff81ec5600 r _acpi_module_name +ffffffff81ec5608 r _acpi_module_name +ffffffff81ec5610 r _acpi_module_name +ffffffff81ec5619 r _acpi_module_name +ffffffff81ec5690 r _acpi_module_name +ffffffff81ec56a0 r acpi_protected_ports +ffffffff81ec57b0 r _acpi_module_name +ffffffff81ec57b8 r _acpi_module_name +ffffffff81ec57c0 r CSWTCH.15 +ffffffff81ec57e0 r acpi_sleep_dispatch +ffffffff81ec5810 r _acpi_module_name +ffffffff81ec5820 r _acpi_module_name +ffffffff81ec5830 r _acpi_module_name +ffffffff81ec5838 r _acpi_module_name +ffffffff81ec5848 r _acpi_module_name +ffffffff81ec5852 r _acpi_module_name +ffffffff81ec5960 r _acpi_module_name +ffffffff81ec5968 r _acpi_module_name +ffffffff81ec5970 r _acpi_module_name +ffffffff81ec5980 r _acpi_module_name +ffffffff81ec59a0 r CSWTCH.2 +ffffffff81ec59b8 r _acpi_module_name +ffffffff81ec59e0 R acpi_gbl_predefined_methods +ffffffff81ec6338 r _acpi_module_name +ffffffff81ec6360 r acpi_object_repair_info +ffffffff81ec6408 r _acpi_module_name +ffffffff81ec6420 r acpi_ns_repairable_names +ffffffff81ec64c0 r _acpi_module_name +ffffffff81ec64d0 r _acpi_module_name +ffffffff81ec64e0 r _acpi_module_name +ffffffff81ec64e8 r _acpi_module_name +ffffffff81ec64f8 r _acpi_module_name +ffffffff81ec6678 r _acpi_module_name +ffffffff81ec667f r _acpi_module_name +ffffffff81ec6688 r _acpi_module_name +ffffffff81ec66a0 R acpi_gbl_aml_op_info +ffffffff81ec6ee0 R acpi_gbl_long_op_index +ffffffff81ec6f80 R acpi_gbl_short_op_index +ffffffff81ec7080 r acpi_gbl_argument_count +ffffffff81ec70d8 r _acpi_module_name +ffffffff81ec70e0 r _acpi_module_name +ffffffff81ec71b0 r _acpi_module_name +ffffffff81ec71c0 R acpi_gbl_resource_struct_serial_bus_sizes +ffffffff81ec71c4 R acpi_gbl_aml_resource_serial_bus_sizes +ffffffff81ec71e0 R acpi_gbl_resource_struct_sizes +ffffffff81ec7210 R acpi_gbl_aml_resource_sizes +ffffffff81ec7229 r _acpi_module_name +ffffffff81ec7430 r _acpi_module_name +ffffffff81ec7478 r _acpi_module_name +ffffffff81ec7480 r _acpi_module_name +ffffffff81ec74a0 r fadt_pm_info_table +ffffffff81ec74e0 r fadt_info_table +ffffffff81ec7560 r _acpi_module_name +ffffffff81ec7568 r _acpi_module_name +ffffffff81ec7578 r _acpi_module_name +ffffffff81ec7580 r _acpi_module_name +ffffffff81ec7588 r _acpi_module_name +ffffffff81ec7590 r _acpi_module_name +ffffffff81ec75a0 r _acpi_module_name +ffffffff81ec75b0 r _acpi_module_name +ffffffff81ec7658 r _acpi_module_name +ffffffff81ec7660 r _acpi_module_name +ffffffff81ec7680 r acpi_gbl_exception_names_ctrl +ffffffff81ec7700 r acpi_gbl_exception_names_aml +ffffffff81ec7820 r acpi_gbl_exception_names_tbl +ffffffff81ec7860 r acpi_gbl_exception_names_pgm +ffffffff81ec78c0 r acpi_gbl_exception_names_env +ffffffff81ec79e0 r acpi_gbl_mutex_names +ffffffff81ec7a20 r acpi_gbl_ref_class_names +ffffffff81ec7a60 r acpi_gbl_desc_type_names +ffffffff81ec7ae0 r acpi_gbl_ns_type_names +ffffffff81ec7bd8 r acpi_gbl_bad_type +ffffffff81ec7c00 r acpi_gbl_event_types +ffffffff81ec7c30 R acpi_gbl_ns_properties +ffffffff81ec7d60 r _acpi_module_name +ffffffff81ec7d69 r CSWTCH.91 +ffffffff81ec7d6d r _acpi_module_name +ffffffff81ec7d80 R acpi_gbl_pre_defined_names +ffffffff81ec7e70 R acpi_gbl_upper_hex_digits +ffffffff81ec7e90 R acpi_gbl_lower_hex_digits +ffffffff81ec7eb0 r acpi_gbl_hex_to_ascii +ffffffff81ec7ec0 r _acpi_module_name +ffffffff81ec7ec7 r _acpi_module_name +ffffffff81ec7ed0 r _acpi_module_name +ffffffff81ec7ed8 r _acpi_module_name +ffffffff81ec7ee1 r _acpi_module_name +ffffffff81ec7ee8 r _acpi_module_name +ffffffff81ec7f00 r ut_rtype_names +ffffffff81ec7f40 r acpi_gbl_resource_types +ffffffff81ec7f63 R acpi_gbl_resource_aml_serial_bus_sizes +ffffffff81ec7f80 R acpi_gbl_resource_aml_sizes +ffffffff81ec7fa8 r _acpi_module_name +ffffffff81ec7fb0 r _acpi_module_name +ffffffff81ec7fb8 r _acpi_module_name +ffffffff81ec7fc8 r _acpi_module_name +ffffffff81ec7fe0 r __param_str_lid_init_state +ffffffff81ec8000 r __param_ops_lid_init_state +ffffffff81ec8020 r acpi_button_state_fops +ffffffff81ec8120 r __param_str_lid_report_interval +ffffffff81ec8140 r acpi_button_pm +ffffffff81ec8200 r lid_blacklst +ffffffff81ec84c0 r button_device_ids +ffffffff81ec8600 r video_dmi_table +ffffffff81ec9620 r video_cooling_ops +ffffffff81ec9660 r acpi_backlight_ops +ffffffff81ec9680 r video_device_ids +ffffffff81ec96c0 r __param_str_only_lcd +ffffffff81ec96d0 r __param_str_device_id_scheme +ffffffff81ec96f0 r __param_str_report_key_events +ffffffff81ec9720 r __param_str_disable_backlight_sysfs_if +ffffffff81ec9750 r __param_str_allow_duplicates +ffffffff81ec9780 r __param_str_brightness_switch_enabled +ffffffff81ec97a0 r _acpi_module_name +ffffffff81ec97c0 r video_ids.39837 +ffffffff81ec9800 r video_detect_dmi_table +ffffffff81ecb840 r processor_device_ids +ffffffff81ecb8a0 r processor_power_dmi_table +ffffffff81ecbe00 r __param_str_latency_factor +ffffffff81ecbe20 r __param_str_bm_check_disable +ffffffff81ecbe40 r __param_str_nocst +ffffffff81ecbe50 r __param_str_max_cstate +ffffffff81ecbe68 r _acpi_module_name +ffffffff81ecbe80 r __param_str_ignore_tpc +ffffffff81ecbea0 r _acpi_module_name +ffffffff81ecbec0 R processor_cooling_ops +ffffffff81ecbef0 r __param_str_ignore_ppc +ffffffff81ecbf10 r _acpi_module_name +ffffffff81ecbf40 r container_device_ids +ffffffff81ecbfc0 r acpi_thermal_pm +ffffffff81ecc080 r thermal_device_ids +ffffffff81ecc0c0 r __param_str_psv +ffffffff81ecc0d0 r __param_str_off +ffffffff81ecc0e0 r __param_str_nocrt +ffffffff81ecc0f0 r __param_str_tzp +ffffffff81ecc100 r __param_str_crt +ffffffff81ecc110 r __param_str_act +ffffffff81ecc120 r _acpi_module_name +ffffffff81ecc140 r memory_device_ids +ffffffff81ecc180 r pad_device_ids +ffffffff81ecc1c0 r int340x_thermal_device_ids +ffffffff81ecc340 r __func__.20720 +ffffffff81ecc360 r pnp_bus_dev_pm_ops +ffffffff81ecc420 r xtab.20277 +ffffffff81ecc440 r CSWTCH.24 +ffffffff81ecc460 r CSWTCH.37 +ffffffff81ecc540 r pnp_dev_group +ffffffff81ecc570 r mch_quirk_devices +ffffffff81ecc580 r pnp_dev_table +ffffffff81ecc760 r __func__.23339 +ffffffff81ecc770 r __func__.23236 +ffffffff81ecc780 r __func__.23146 +ffffffff81ecc7a0 r clk_nodrv_ops +ffffffff81ecc840 R clk_divider_ro_ops +ffffffff81ecc8e0 R clk_divider_ops +ffffffff81ecc980 R clk_fixed_factor_ops +ffffffff81ecca20 R clk_fixed_rate_ops +ffffffff81eccac0 R clk_gate_ops +ffffffff81eccb60 R clk_multiplier_ops +ffffffff81eccc00 R clk_mux_ro_ops +ffffffff81eccca0 R clk_mux_ops +ffffffff81eccd40 R clk_fractional_divider_ops +ffffffff81eccde0 r __func__.20583 +ffffffff81ecce00 r gpio_clk_match_table +ffffffff81ecd060 R clk_gpio_mux_ops +ffffffff81ecd100 R clk_gpio_gate_ops +ffffffff81ecd1a0 r plt_clk_ops +ffffffff81ecd240 r __func__.34228 +ffffffff81ecd260 r __func__.34036 +ffffffff81ecd270 r __func__.33958 +ffffffff81ecd280 r __func__.34085 +ffffffff81ecd2a0 r cons_dev_group +ffffffff81ecd2d0 r ptychar +ffffffff81ecd300 r hung_up_tty_fops +ffffffff81ecd400 r console_fops +ffffffff81ecd500 r tty_fops +ffffffff81ecd600 r __func__.33070 +ffffffff81ecd620 R tty_ldiscs_proc_fops +ffffffff81ecd720 r tty_ldiscs_seq_ops +ffffffff81ecd740 r __func__.27209 +ffffffff81ecd760 r default_client_ops +ffffffff81ecd780 r baud_bits +ffffffff81ecd800 r baud_table +ffffffff81ecd960 r pty_unix98_ops +ffffffff81ecda60 r ptm_unix98_ops +ffffffff81ecdb60 r vcs_fops +ffffffff81ecdd10 r CSWTCH.391 +ffffffff81ecdd20 r pad_chars.34146 +ffffffff81ecdd40 r app_map.34147 +ffffffff81ecdd56 r ret_diacr.34121 +ffffffff81ecdd5c r cur_chars.34140 +ffffffff81ecdd68 r __func__.34358 +ffffffff81ecdd80 r kbd_ids +ffffffff81ecdfe0 r x86_keycodes +ffffffff81ece1e0 r __param_str_brl_nbchords +ffffffff81ece200 r __param_str_brl_timeout +ffffffff81ece220 r max_vals +ffffffff81ece260 r fn_handler +ffffffff81ece300 r k_handler +ffffffff81eceaa0 r double_width.34076 +ffffffff81eceb00 r utf8_length_changes.34115 +ffffffff81eceb20 r con_dev_group +ffffffff81eceb60 r vt_dev_group +ffffffff81eceba0 r con_ops +ffffffff81ececa0 r __param_str_underline +ffffffff81ececb0 r __param_str_italic +ffffffff81ececc0 r __param_str_color +ffffffff81ececd0 r __param_str_default_blu +ffffffff81ecece0 r __param_arr_default_blu +ffffffff81eced00 r __param_str_default_grn +ffffffff81eced20 r __param_arr_default_grn +ffffffff81eced40 r __param_str_default_red +ffffffff81eced60 r __param_arr_default_red +ffffffff81eced80 R color_table +ffffffff81eced90 r __param_str_consoleblank +ffffffff81eceda0 r __param_str_cur_default +ffffffff81ecedb0 r __param_str_global_cursor_default +ffffffff81ecedd0 r __param_str_default_utf8 +ffffffff81ecede0 r memory_fops +ffffffff81eceee0 r devlist +ffffffff81ecf060 r full_fops +ffffffff81ecf160 r zero_fops +ffffffff81ecf260 r null_fops +ffffffff81ecf360 r __func__.40578 +ffffffff81ecf370 r __func__.40549 +ffffffff81ecf380 r __func__.40300 +ffffffff81ecf3a0 R urandom_fops +ffffffff81ecf4a0 R random_fops +ffffffff81ecf5a0 r twist_table +ffffffff81ecf5c0 r misc_fops +ffffffff81ecf6c0 r misc_proc_fops +ffffffff81ecf7c0 r misc_seq_ops +ffffffff81ecf7e0 r __func__.37297 +ffffffff81ecf7f0 r __func__.37259 +ffffffff81ecf800 r hpet_device_ids +ffffffff81ecf840 r hpet_fops +ffffffff81ecf940 r rng_dev_group +ffffffff81ecf980 r rng_chrdev_ops +ffffffff81ecfa80 r __param_str_default_quality +ffffffff81ecfaa0 r __param_str_current_quality +ffffffff81ecfac0 r __param_str_no_fwh_detect +ffffffff81ecfae0 r pci_tbl +ffffffff81ecff00 r iommu_group_sysfs_ops +ffffffff81ecff20 r iommu_group_resv_type_string +ffffffff81ecff40 r iommu_devices_attr_group +ffffffff81ecff80 r res_type.40972 +ffffffff81ecff90 r __func__.40840 +ffffffff81ecffa0 r irq_remap_fault_reasons +ffffffff81ecffe0 r dma_remap_fault_reasons +ffffffff81ed0060 r __func__.46062 +ffffffff81ed0080 r __func__.46083 +ffffffff81ed00a0 R intel_dma_ops +ffffffff81ed0140 R intel_iommu_ops +ffffffff81ed0220 r intel_mmuops +ffffffff81ed0280 r intel_ir_domain_ops +ffffffff81ed0318 r psr_setup_time_us.42177 +ffffffff81ed0330 r __func__.42029 +ffffffff81ed0348 r dpcd_quirk_list +ffffffff81ed0350 r drm_dp_i2c_lock_ops +ffffffff81ed0370 r drm_dp_i2c_algo +ffffffff81ed03a0 r __param_str_dp_aux_i2c_transfer_size +ffffffff81ed03e0 r __param_str_dp_aux_i2c_speed_khz +ffffffff81ed0410 r __param_str_poll +ffffffff81ed0440 R drm_primary_helper_funcs +ffffffff81ed0690 r __func__.43319 +ffffffff81ed06b0 r drm_dp_mst_i2c_algo +ffffffff81ed06d0 r mst_state_funcs +ffffffff81ed06e0 r CSWTCH.103 +ffffffff81ed0720 r dp_dual_mode_hdmi_id.41617 +ffffffff81ed0740 r drm_simple_kms_plane_funcs +ffffffff81ed07c0 r drm_simple_kms_plane_helper_funcs +ffffffff81ed0800 r drm_simple_kms_crtc_funcs +ffffffff81ed08c0 r drm_simple_kms_crtc_helper_funcs +ffffffff81ed0940 r drm_simple_kms_encoder_funcs +ffffffff81ed0960 r safe_modeset_formats +ffffffff81ed0970 r __func__.42355 +ffffffff81ed0990 r drm_gem_fb_funcs +ffffffff81ed09c0 r panel_bridge_bridge_funcs +ffffffff81ed0a20 r panel_bridge_connector_funcs +ffffffff81ed0aa0 r panel_bridge_connector_helper_funcs +ffffffff81ed0d60 r __func__.44011 +ffffffff81ed0d80 r __param_str_drm_fbdev_overalloc +ffffffff81ed0db0 r __param_str_fbdev_emulation +ffffffff81ed0ea0 r drm_ioctls +ffffffff81ed21c0 r drm_stub_fops +ffffffff81ed22c0 r drm_fs_sops +ffffffff81ed2380 r drm_fs_dops +ffffffff81ed2400 r __param_str_debug +ffffffff81ed2420 r connector_dev_group +ffffffff81ed2460 r drm_crtc_fence_ops +ffffffff81ed24c0 r formats.41569 +ffffffff81ed2a60 r drm_mode_status_names +ffffffff81ed2ba0 r cea_interlaced.42380 +ffffffff81ed2be0 r stereo_mandatory_modes +ffffffff81ed2c60 r __param_str_edid_fixup +ffffffff81ed2c70 r edid_header +ffffffff81ed2c80 r edid_4k_modes +ffffffff81ed30e0 r edid_cea_modes +ffffffff81ed8f60 r extra_modes +ffffffff81ed8fa0 r est3_modes +ffffffff81ed9100 r edid_est_modes +ffffffff81ed9fe0 r drm_dmt_modes +ffffffff81edece0 r edid_quirk_list +ffffffff81edeea0 r drm_gem_prime_dmabuf_ops +ffffffff81edef20 r CSWTCH.180 +ffffffff81edef40 r drm_tv_subconnector_enum_list +ffffffff81edefa0 r drm_tv_select_enum_list +ffffffff81edf000 r drm_dvi_i_subconnector_enum_list +ffffffff81edf040 r drm_dvi_i_select_enum_list +ffffffff81edf080 r drm_panel_orientation_enum_list +ffffffff81edf0c0 r drm_aspect_ratio_enum_list +ffffffff81edf100 r drm_scaling_mode_enum_list +ffffffff81edf140 r drm_link_status_enum_list +ffffffff81edf160 r drm_dpms_enum_list +ffffffff81edf1a0 r drm_subpixel_enum_list +ffffffff81edf200 r props.41990 +ffffffff81edf260 r drm_encoder_enum_list +ffffffff81edf300 r drm_plane_type_enum_list +ffffffff81edf330 r __param_str_timestamp_precision_usec +ffffffff81edf350 r __param_str_vblankoffdelay +ffffffff81edf380 r drm_syncobj_file_fops +ffffffff81edf480 r drm_syncobj_null_fence_ops +ffffffff81edf520 r drm_vm_sg_ops +ffffffff81edf580 r drm_vm_dma_ops +ffffffff81edf5e0 r drm_vm_shm_ops +ffffffff81edf640 r drm_vm_ops +ffffffff81edf6a0 r orientation_data +ffffffff81edfeb0 r vios_lth17 +ffffffff81edfed0 r itworks_tw891 +ffffffff81edfef0 r __compound_literal.2 +ffffffff81edff00 r gpd_win +ffffffff81edff20 r __compound_literal.1 +ffffffff81edff60 r gpd_pocket +ffffffff81edff80 r __compound_literal.0 +ffffffff81edffb0 r asus_t100ha +ffffffff81edffd0 r ttm_mem_zone_ops +ffffffff81edffe0 r ttm_bo_global_ops +ffffffff81ee0000 r ttm_bo_vm_ops +ffffffff81ee0060 r ttm_pool_sysfs_ops +ffffffff81ee0080 R ttm_bo_manager_func +ffffffff81ee00b0 r ttm_pool_sysfs_ops +ffffffff81ee00c0 r nvkm_client +ffffffff81ee0140 R nvkm_uclient_sclass +ffffffff81ee0160 r nvkm_engine_func +ffffffff81ee01a0 r nvkm_gpuobj_slow +ffffffff81ee01e0 r nvkm_gpuobj_fast +ffffffff81ee0220 r nvkm_gpuobj_func +ffffffff81ee0260 r nvkm_gpuobj_heap_slow +ffffffff81ee02a0 r nvkm_gpuobj_heap_fast +ffffffff81ee02e0 r nvkm_gpuobj_heap +ffffffff81ee0320 r nvkm_ioctl_v0 +ffffffff81ee0400 r nvkm_object_func +ffffffff81ee0480 r nvkm_oproxy_func +ffffffff81ee0500 r nvkm_falcon_v1 +ffffffff81ee0580 r msgqueue_0137bca5_func +ffffffff81ee05c0 r msgqueue_0137c63d_func +ffffffff81ee05f0 r msgqueue_0137bca5_acr_func +ffffffff81ee0600 r msgqueue_0137c63d_acr_func +ffffffff81ee0610 r msgqueue_0137c63d_init_func +ffffffff81ee0620 R msgqueue_0148cdec_func +ffffffff81ee0650 R msgqueue_0148cdec_acr_func +ffffffff81ee0660 r msgqueue_0148cdec_init_func +ffffffff81ee0680 r nvkm_bar +ffffffff81ee06c0 r nv50_bar_func +ffffffff81ee0720 r g84_bar_func +ffffffff81ee0780 r gf100_bar_func +ffffffff81ee07e0 r gk20a_bar_func +ffffffff81ee0840 r gm107_bar_func +ffffffff81ee08a0 r gm20b_bar_func +ffffffff81ee0920 r nvkm_bios +ffffffff81ee0a80 r init_opcode +ffffffff81ee0fe0 r g98_sor_map +ffffffff81ee0ff0 r g94_sor_map +ffffffff81ee1000 r g92_sor_map +ffffffff81ee1010 r g84_sor_map +ffffffff81ee1320 r shadow_fw +ffffffff81ee1360 R nvbios_acpi_slow +ffffffff81ee13a0 R nvbios_acpi_fast +ffffffff81ee13e0 R nvbios_of +ffffffff81ee1420 R nvbios_platform +ffffffff81ee1460 R nvbios_pcirom +ffffffff81ee14a0 R nvbios_ramin +ffffffff81ee14e0 R nvbios_rom +ffffffff81ee1820 r nvkm_bus +ffffffff81ee1860 r nv04_bus +ffffffff81ee1880 r nv31_bus +ffffffff81ee18a0 r nv50_bus +ffffffff81ee18c0 r g94_bus +ffffffff81ee18e0 r gf100_bus +ffffffff81ee1900 r nvkm_clk +ffffffff81ee1940 r nv04_clk +ffffffff81ee1a40 r nv40_clk +ffffffff81ee23a0 r nv50_clk +ffffffff81ee2480 r g84_clk +ffffffff81ee2660 r gt215_clk +ffffffff81ee2860 r mcp77_clk +ffffffff81ee2a20 r gf100_clk +ffffffff81ee2c60 r gk104_clk +ffffffff81ee2dc0 r gk20a_clk +ffffffff81ee2e60 r gk20a_pllg_params +ffffffff81ee2e88 r _pl_to_div +ffffffff81ee2ea0 r gm20b_clk_speedo0 +ffffffff81ee2f40 r gm20b_clk +ffffffff81ee2fe0 r gm20b_pllg_params +ffffffff81ee3008 r gm20b_dvfs_params +ffffffff81ee3020 r nvkm_devinit +ffffffff81ee3060 r nv04_devinit +ffffffff81ee30a0 r default_config_tab.42693 +ffffffff81ee30c0 r nv05_devinit +ffffffff81ee3100 r mem_width.42628 +ffffffff81ee3120 r nv10_devinit +ffffffff81ee3160 r nv1a_devinit +ffffffff81ee31a0 r nv20_devinit +ffffffff81ee31e0 r nv50_devinit +ffffffff81ee3220 r g84_devinit +ffffffff81ee3260 r g98_devinit +ffffffff81ee32a0 r gt215_devinit +ffffffff81ee32e0 r mcp89_devinit +ffffffff81ee3320 r gf100_devinit +ffffffff81ee3360 r gm107_devinit +ffffffff81ee33a0 r gm200_devinit +ffffffff81ee33e0 r nvkm_fb +ffffffff81ee3420 r nv04_fb +ffffffff81ee34a0 r nv10_fb +ffffffff81ee3520 r nv1a_fb +ffffffff81ee35a0 r nv20_fb +ffffffff81ee3620 r nv25_fb +ffffffff81ee36a0 r nv30_fb +ffffffff81ee3720 r nv35_fb +ffffffff81ee37a0 r nv36_fb +ffffffff81ee3820 r nv40_fb +ffffffff81ee38a0 r nv41_fb +ffffffff81ee3920 r nv44_fb +ffffffff81ee39a0 r nv46_fb +ffffffff81ee3a20 r nv47_fb +ffffffff81ee3aa0 r nv49_fb +ffffffff81ee3b20 r nv4e_fb +ffffffff81ee3ba0 r nv50_fb +ffffffff81ee3bc0 r nv50_fb_ +ffffffff81ee3c40 r vm_fault +ffffffff81ee3d80 r vm_engine +ffffffff81ee3f40 r vm_client +ffffffff81ee4140 r vm_bar_subclients +ffffffff81ee41a0 r vm_pfifo_subclients +ffffffff81ee4200 r vm_prop_subclients +ffffffff81ee43c0 r vm_ccache_subclients +ffffffff81ee4440 r vm_dispatch_subclients +ffffffff81ee4540 r g84_fb +ffffffff81ee4560 r gt215_fb +ffffffff81ee4580 r mcp77_fb +ffffffff81ee45a0 r mcp89_fb +ffffffff81ee45c0 r gf100_fb +ffffffff81ee4640 r gf108_fb +ffffffff81ee46c0 r gk104_fb +ffffffff81ee4740 r gk104_fb_clkgate_pack +ffffffff81ee4770 R gk104_fb_clkgate_blcg_init_bcast_0 +ffffffff81ee47a0 R gk104_fb_clkgate_blcg_init_main_0 +ffffffff81ee47d0 R gk104_fb_clkgate_blcg_init_vm_0 +ffffffff81ee4800 R gk104_fb_clkgate_blcg_init_unk_0 +ffffffff81ee4860 r gk110_fb +ffffffff81ee48e0 r gk110_fb_clkgate_pack +ffffffff81ee4920 r gk110_fb_clkgate_blcg_init_unk_0 +ffffffff81ee4980 r gk20a_fb +ffffffff81ee4a00 r gm107_fb +ffffffff81ee4a80 r gm200_fb +ffffffff81ee4b00 r gm20b_fb +ffffffff81ee4b80 r gp100_fb +ffffffff81ee4c00 r gp102_fb +ffffffff81ee4c80 r gp10b_fb +ffffffff81ee4d00 r name.43757 +ffffffff81ee4d60 r nvkm_vram +ffffffff81ee4dc0 R nv04_ram_func +ffffffff81ee4e20 r nv40_ram_func +ffffffff81ee4e68 r CSWTCH.1 +ffffffff81ee4ec0 r nv50_ram_func +ffffffff81ee4f20 r pattern.44627 +ffffffff81ee4f60 r gt215_ram_func +ffffffff81ee4fc0 r mcp77_ram_func +ffffffff81ee5020 r train1.44426 +ffffffff81ee5050 r train0.44425 +ffffffff81ee5060 r gf100_ram +ffffffff81ee50c0 r gf108_ram +ffffffff81ee5170 r CSWTCH.126 +ffffffff81ee5180 r gk104_ram +ffffffff81ee51e0 r gm107_ram +ffffffff81ee5240 r gm200_ram +ffffffff81ee52a0 r gp100_ram +ffffffff81ee5300 r ramddr2_wr +ffffffff81ee5340 r ramddr2_cl +ffffffff81ee5380 r ramddr3_cwl +ffffffff81ee53c0 r ramddr3_wr +ffffffff81ee5420 r ramddr3_cl +ffffffff81ee5480 r ramgddr3_wr_lo +ffffffff81ee54e0 r ramgddr3_cl_hi +ffffffff81ee5540 r ramgddr3_cl_lo +ffffffff81ee55a0 r nvkm_fuse +ffffffff81ee55d0 r nv50_fuse +ffffffff81ee55d8 r gf100_fuse +ffffffff81ee55e0 r gm107_fuse +ffffffff81ee5600 r nvkm_gpio +ffffffff81ee5640 r gpio_reset_ids +ffffffff81ee5900 r nvkm_gpio_intr_func +ffffffff81ee5920 r nv10_gpio +ffffffff81ee5960 r regs.42617 +ffffffff81ee5980 r nv50_gpio +ffffffff81ee59c0 r g94_gpio +ffffffff81ee5a00 r gf119_gpio +ffffffff81ee5a40 r gk104_gpio +ffffffff81ee5a80 r nvkm_i2c_drv +ffffffff81ee5ac0 r nvkm_i2c +ffffffff81ee5b00 r nvkm_i2c_intr_func +ffffffff81ee5b20 r nv04_i2c +ffffffff81ee5b60 r nv4e_i2c +ffffffff81ee5ba0 r nv50_i2c +ffffffff81ee5be0 r g94_i2c +ffffffff81ee5c20 r gf117_i2c +ffffffff81ee5c60 r gf119_i2c +ffffffff81ee5ca0 r gk104_i2c +ffffffff81ee5ce0 r gm200_i2c +ffffffff81ee5d20 r nv04_i2c_pad_func +ffffffff81ee5d40 r nv4e_i2c_pad_func +ffffffff81ee5d60 r nv50_i2c_pad_func +ffffffff81ee5d80 r g94_i2c_pad_x_func +ffffffff81ee5da0 r g94_i2c_pad_s_func +ffffffff81ee5dc0 r gf119_i2c_pad_x_func +ffffffff81ee5de0 r gf119_i2c_pad_s_func +ffffffff81ee5e00 r gm200_i2c_pad_x_func +ffffffff81ee5e20 r gm200_i2c_pad_s_func +ffffffff81ee5e40 r nvkm_i2c_bus_algo +ffffffff81ee5e60 r nv04_i2c_bus_func +ffffffff81ee5ea0 r nv4e_i2c_bus_func +ffffffff81ee5ee0 r addr.42926 +ffffffff81ee5f20 r nv50_i2c_bus_func +ffffffff81ee5f60 r gf119_i2c_bus_func +ffffffff81ee5f90 r nvkm_i2c_aux_i2c_algo +ffffffff81ee5fb0 r g94_i2c_aux +ffffffff81ee5fd0 r gf119_i2c_aux +ffffffff81ee5ff0 r gm200_i2c_aux_func +ffffffff81ee6020 r anx9805_pad_func +ffffffff81ee6040 r anx9805_aux_func +ffffffff81ee6060 r anx9805_bus_func +ffffffff81ee60a0 r gf100_ibus +ffffffff81ee60e0 r gf117_ibus +ffffffff81ee6120 r gk104_ibus +ffffffff81ee6160 r gk20a_ibus +ffffffff81ee61a0 r gm200_ibus +ffffffff81ee61e0 r gp10b_ibus +ffffffff81ee6220 r iccsense_func +ffffffff81ee6260 r nvkm_instmem +ffffffff81ee62a0 r nv04_instmem +ffffffff81ee62e0 r nv04_instobj_func +ffffffff81ee6330 r nv04_instobj_ptrs +ffffffff81ee6340 r nv40_instmem +ffffffff81ee6380 r nv40_instobj_func +ffffffff81ee63d0 r nv40_instobj_ptrs +ffffffff81ee63e0 r nv50_instmem +ffffffff81ee6420 r nv50_instobj_func +ffffffff81ee6470 r nv50_instobj_fast +ffffffff81ee6480 r nv50_instobj_slow +ffffffff81ee64a0 r gk20a_instmem +ffffffff81ee64e0 r gk20a_instobj_ptrs +ffffffff81ee6500 r gk20a_instobj_func_iommu +ffffffff81ee6560 r gk20a_instobj_func_dma +ffffffff81ee65c0 r nvkm_ltc +ffffffff81ee6600 r gf100_ltc +ffffffff81ee6660 R gf100_ltc_lts_intr_name +ffffffff81ee6740 r gk104_ltc +ffffffff81ee67a0 r gm107_ltc +ffffffff81ee6800 r gm200_ltc +ffffffff81ee6860 r gp100_ltc +ffffffff81ee68c0 r nvkm_mc +ffffffff81ee6900 r nv04_mc +ffffffff81ee6940 r nv04_mc_intr +ffffffff81ee69a0 R nv04_mc_reset +ffffffff81ee69e0 r nv11_mc +ffffffff81ee6a20 r nv11_mc_intr +ffffffff81ee6a80 r nv17_mc +ffffffff81ee6ac0 R nv17_mc_intr +ffffffff81ee6b20 R nv17_mc_reset +ffffffff81ee6b60 r nv44_mc +ffffffff81ee6ba0 r nv50_mc +ffffffff81ee6be0 r nv50_mc_intr +ffffffff81ee6c60 r g84_mc +ffffffff81ee6ca0 r g84_mc_intr +ffffffff81ee6d40 r g84_mc_reset +ffffffff81ee6da0 r g98_mc +ffffffff81ee6de0 r g98_mc_intr +ffffffff81ee6e80 r g98_mc_reset +ffffffff81ee6ee0 r gt215_mc +ffffffff81ee6f20 r gt215_mc_intr +ffffffff81ee6fe0 r gt215_mc_reset +ffffffff81ee7040 r gf100_mc +ffffffff81ee7080 r gf100_mc_intr +ffffffff81ee7180 r gf100_mc_reset +ffffffff81ee7200 r gk104_mc +ffffffff81ee7240 R gk104_mc_intr +ffffffff81ee72e0 R gk104_mc_reset +ffffffff81ee7320 r gk20a_mc +ffffffff81ee7360 r gp100_mc +ffffffff81ee73a0 r gp10b_mc +ffffffff81ee73e0 r nvkm_mmu +ffffffff81ee7420 R nv04_mmu +ffffffff81ee74c0 r nv41_mmu +ffffffff81ee7560 r nv44_mmu +ffffffff81ee7600 r kind.43187 +ffffffff81ee7680 r nv50_mmu +ffffffff81ee7720 r g84_mmu +ffffffff81ee77c0 r mcp77_mmu +ffffffff81ee7860 r kind.43187 +ffffffff81ee7960 r gf100_mmu +ffffffff81ee7a00 r gk104_mmu +ffffffff81ee7aa0 r gk20a_mmu +ffffffff81ee7b40 r kind.43694 +ffffffff81ee7c40 r gm200_mmu_fixed +ffffffff81ee7ce0 r gm200_mmu +ffffffff81ee7d80 r gm20b_mmu_fixed +ffffffff81ee7e20 r gm20b_mmu +ffffffff81ee7ec0 r gp100_mmu +ffffffff81ee7f60 r gp10b_mmu +ffffffff81ee8000 r nvkm_mem_sgl +ffffffff81ee8060 r nvkm_mem_dma +ffffffff81ee80c0 r nv04_vmm +ffffffff81ee8120 r nv04_vmm_desc_12 +ffffffff81ee8160 r nv04_vmm_desc_pgt +ffffffff81ee81a0 r nv41_vmm +ffffffff81ee8200 r nv41_vmm_desc_12 +ffffffff81ee8240 r nv41_vmm_desc_pgt +ffffffff81ee8280 r nv44_vmm +ffffffff81ee82e0 r nv44_vmm_desc_12 +ffffffff81ee8320 r nv44_vmm_desc_pgt +ffffffff81ee8480 r nv50_vmm +ffffffff81ee8500 R nv50_vmm_desc_16 +ffffffff81ee8560 R nv50_vmm_desc_12 +ffffffff81ee85c0 r nv50_vmm_pgd +ffffffff81ee8600 r nv50_vmm_pgt +ffffffff81ee8640 r mcp77_vmm +ffffffff81ee86c0 r CSWTCH.25 +ffffffff81ee86e0 r gf100_vmm_16 +ffffffff81ee8760 r gf100_vmm_17 +ffffffff81ee87e0 r gf100_vmm_desc_16_16 +ffffffff81ee8840 r gf100_vmm_desc_16_12 +ffffffff81ee88a0 r gf100_vmm_desc_17_17 +ffffffff81ee8900 r gf100_vmm_desc_17_12 +ffffffff81ee8960 R gf100_vmm_pgd +ffffffff81ee89a0 R gf100_vmm_pgt +ffffffff81ee89e0 r gk104_vmm_16 +ffffffff81ee8a60 r gk104_vmm_17 +ffffffff81ee8ae0 R gk104_vmm_desc_16_16 +ffffffff81ee8b40 R gk104_vmm_desc_16_12 +ffffffff81ee8ba0 R gk104_vmm_desc_17_17 +ffffffff81ee8c00 R gk104_vmm_desc_17_12 +ffffffff81ee8c60 r gk104_vmm_lpt +ffffffff81ee8ca0 r gk20a_vmm_16 +ffffffff81ee8d20 r gk20a_vmm_17 +ffffffff81ee8da0 r gm200_vmm_16 +ffffffff81ee8e40 r gm200_vmm_17 +ffffffff81ee8ee0 R gm200_vmm_desc_16_16 +ffffffff81ee8f40 R gm200_vmm_desc_16_12 +ffffffff81ee8fa0 R gm200_vmm_desc_17_17 +ffffffff81ee9000 R gm200_vmm_desc_17_12 +ffffffff81ee9060 r gm200_vmm_pgd +ffffffff81ee90a0 r gm200_vmm_lpt +ffffffff81ee90e0 r gm200_vmm_spt +ffffffff81ee9120 r gm20b_vmm_16 +ffffffff81ee91c0 r gm20b_vmm_17 +ffffffff81ee9260 r gp100_vmm +ffffffff81ee9340 R gp100_vmm_desc_12 +ffffffff81ee93e0 R gp100_vmm_desc_16 +ffffffff81ee9480 r gp100_vmm_desc_pd1 +ffffffff81ee94c0 r gp100_vmm_desc_pd0 +ffffffff81ee9500 r gp100_vmm_desc_lpt +ffffffff81ee9540 r gp100_vmm_desc_spt +ffffffff81ee9580 r gp10b_vmm +ffffffff81ee9660 r nvkm_umem +ffffffff81ee96e0 r nvkm_ummu +ffffffff81ee97a0 r nvkm_uvmm +ffffffff81ee9820 r nvkm_mxm +ffffffff81ee9920 r nvkm_pci_func +ffffffff81ee9960 r nv04_pci_func +ffffffff81ee99c0 r nv40_pci_func +ffffffff81ee9a20 r nv46_pci_func +ffffffff81ee9a80 r nv4c_pci_func +ffffffff81ee9ae0 r g84_pci_func +ffffffff81ee9b40 r g92_pci_func +ffffffff81ee9ba0 r g94_pci_func +ffffffff81ee9c00 r gf100_pci_func +ffffffff81ee9c60 r gf106_pci_func +ffffffff81ee9cc0 r CSWTCH.11 +ffffffff81ee9cd0 r CSWTCH.4 +ffffffff81ee9ce0 r gk104_pci_func +ffffffff81ee9d40 r gp100_pci_func +ffffffff81ee9da0 r nvkm_pmu +ffffffff81ee9de0 r gt215_pmu +ffffffff81ee9e40 r gf100_pmu +ffffffff81ee9ea0 r gf119_pmu +ffffffff81ee9f00 r gk104_pmu +ffffffff81ee9f60 r magic.42860 +ffffffff81ee9fe0 r gk110_pmu +ffffffff81eea040 r gk208_pmu +ffffffff81eea0a0 r gk20a_pmu +ffffffff81eea100 r gm107_pmu +ffffffff81eea160 r gm20b_pmu +ffffffff81eea1c0 r gp100_pmu +ffffffff81eea220 r gp102_pmu +ffffffff81eea280 r nvkm_secboot +ffffffff81eea2c0 r acr_r352_base_func +ffffffff81eea300 R acr_r352_func +ffffffff81eea380 r acr_r352_ls_pmu_func +ffffffff81eea3c0 R acr_r352_ls_gpccs_func +ffffffff81eea400 R acr_r352_ls_fecs_func +ffffffff81eea440 R acr_r361_func +ffffffff81eea4c0 R acr_r361_ls_sec2_func +ffffffff81eea500 R acr_r361_ls_pmu_func +ffffffff81eea540 R acr_r361_ls_gpccs_func +ffffffff81eea580 R acr_r361_ls_fecs_func +ffffffff81eea5c0 R acr_r364_func +ffffffff81eea640 R acr_r367_func +ffffffff81eea6c0 R acr_r370_func +ffffffff81eea740 R acr_r370_ls_sec2_func +ffffffff81eea780 R acr_r370_ls_gpccs_func +ffffffff81eea7c0 R acr_r370_ls_fecs_func +ffffffff81eea800 R acr_r375_func +ffffffff81eea880 R acr_r375_ls_pmu_func +ffffffff81eea8c0 r gm200_secboot +ffffffff81eea8e0 r gm20b_secboot +ffffffff81eea900 R gp102_secboot +ffffffff81eea920 r gp10b_secboot +ffffffff81eeaa60 r nvkm_therm +ffffffff81eeaaa0 r thresholds.43013 +ffffffff81eeaac0 r nv40_therm +ffffffff81eeab40 r nv50_therm +ffffffff81eeabc0 r g84_therm +ffffffff81eeac40 r gt215_therm +ffffffff81eeacc0 r gf119_therm +ffffffff81eead40 r gk104_therm_func +ffffffff81eeada8 R gk104_idle_filter +ffffffff81eeadc0 R gk104_clkgate_engine_info +ffffffff81eeae20 r gm107_therm +ffffffff81eeaea0 r gm200_therm +ffffffff81eeaf20 r gp100_therm +ffffffff81eeafa0 r nvkm_timer +ffffffff81eeafe0 r nv04_timer +ffffffff81eeb020 r nv40_timer +ffffffff81eeb060 r nv41_timer +ffffffff81eeb0a0 r gk20a_timer +ffffffff81eeb0e0 r nvkm_top +ffffffff81eeb1b0 r gk104_top +ffffffff81eeb1c0 r nvkm_volt +ffffffff81eeb1f0 r tags +ffffffff81eeb200 r nv40_volt +ffffffff81eeb240 r gf100_volt +ffffffff81eeb280 r gk104_volt_gpio +ffffffff81eeb2c0 r gk104_volt_pwm +ffffffff81eeb300 r gk20a_volt +ffffffff81eeb340 r gk20a_cvb_coef +ffffffff81eeb4c0 r speedo_to_vmin +ffffffff81eeb4e0 r gm20b_na_cvb_coef +ffffffff81eeb620 r gm20b_cvb_coef +ffffffff81eeb740 r nvkm_falcon +ffffffff81eeb7a0 r nvkm_falcon_cclass +ffffffff81eeb820 r nvkm_xtensa +ffffffff81eeb880 r nvkm_xtensa_cclass +ffffffff81eeb8f8 r g84_bsp +ffffffff81eeb940 r gt215_ce +ffffffff81eeba00 r gt215_ce_isr_error_name +ffffffff81eeba80 r gf100_ce1 +ffffffff81eebb40 r gf100_ce0 +ffffffff81eebc00 r gk104_ce +ffffffff81eebca0 r gk104_ce_launcherr_report +ffffffff81eebe40 r gm107_ce +ffffffff81eebf00 r gm200_ce +ffffffff81eebfa0 r gp100_ce +ffffffff81eec040 r gp100_ce_launcherr_report +ffffffff81eec220 r gp102_ce +ffffffff81eec2e0 r g84_cipher +ffffffff81eec380 r g84_cipher_intr_mask +ffffffff81eec3e0 r g84_cipher_cclass +ffffffff81eec460 r g84_cipher_oclass_func +ffffffff81eed1e0 r nvkm_device_event_func +ffffffff81eed200 r nv13b_chipset +ffffffff81eed3c0 r nv138_chipset +ffffffff81eed580 r nv137_chipset +ffffffff81eed740 r nv136_chipset +ffffffff81eed900 r nv134_chipset +ffffffff81eedac0 r nv132_chipset +ffffffff81eedc80 r nv130_chipset +ffffffff81eede40 r nv12b_chipset +ffffffff81eee000 r nv126_chipset +ffffffff81eee1c0 r nv124_chipset +ffffffff81eee380 r nv120_chipset +ffffffff81eee540 r nv118_chipset +ffffffff81eee700 r nv117_chipset +ffffffff81eee8c0 r nv108_chipset +ffffffff81eeea80 r nv106_chipset +ffffffff81eeec40 r nvf1_chipset +ffffffff81eeee00 r nvf0_chipset +ffffffff81eeefc0 r nvea_chipset +ffffffff81eef180 r nve7_chipset +ffffffff81eef340 r nve6_chipset +ffffffff81eef500 r nve4_chipset +ffffffff81eef6c0 r nvd9_chipset +ffffffff81eef880 r nvd7_chipset +ffffffff81eefa40 r nvcf_chipset +ffffffff81eefc00 r nvce_chipset +ffffffff81eefdc0 r nvc8_chipset +ffffffff81eeff80 r nvc4_chipset +ffffffff81ef0140 r nvc3_chipset +ffffffff81ef0300 r nvc1_chipset +ffffffff81ef04c0 r nvc0_chipset +ffffffff81ef0680 r nvaf_chipset +ffffffff81ef0840 r nvac_chipset +ffffffff81ef0a00 r nvaa_chipset +ffffffff81ef0bc0 r nva8_chipset +ffffffff81ef0d80 r nva5_chipset +ffffffff81ef0f40 r nva3_chipset +ffffffff81ef1100 r nva0_chipset +ffffffff81ef12c0 r nv98_chipset +ffffffff81ef1480 r nv96_chipset +ffffffff81ef1640 r nv94_chipset +ffffffff81ef1800 r nv92_chipset +ffffffff81ef19c0 r nv86_chipset +ffffffff81ef1b80 r nv84_chipset +ffffffff81ef1d40 r nv68_chipset +ffffffff81ef1f00 r nv67_chipset +ffffffff81ef20c0 r nv63_chipset +ffffffff81ef2280 r nv50_chipset +ffffffff81ef2440 r nv4e_chipset +ffffffff81ef2600 r nv4c_chipset +ffffffff81ef27c0 r nv4b_chipset +ffffffff81ef2980 r nv4a_chipset +ffffffff81ef2b40 r nv49_chipset +ffffffff81ef2d00 r nv47_chipset +ffffffff81ef2ec0 r nv46_chipset +ffffffff81ef3080 r nv45_chipset +ffffffff81ef3240 r nv44_chipset +ffffffff81ef3400 r nv43_chipset +ffffffff81ef35c0 r nv42_chipset +ffffffff81ef3780 r nv41_chipset +ffffffff81ef3940 r nv40_chipset +ffffffff81ef3b00 r nv36_chipset +ffffffff81ef3cc0 r nv35_chipset +ffffffff81ef3e80 r nv34_chipset +ffffffff81ef4040 r nv31_chipset +ffffffff81ef4200 r nv30_chipset +ffffffff81ef43c0 r nv2a_chipset +ffffffff81ef4580 r nv28_chipset +ffffffff81ef4740 r nv25_chipset +ffffffff81ef4900 r nv20_chipset +ffffffff81ef4ac0 r nv1f_chipset +ffffffff81ef4c80 r nv1a_chipset +ffffffff81ef4e40 r nv18_chipset +ffffffff81ef5000 r nv17_chipset +ffffffff81ef51c0 r nv15_chipset +ffffffff81ef5380 r nv11_chipset +ffffffff81ef5540 r nv10_chipset +ffffffff81ef5700 r nv5_chipset +ffffffff81ef58c0 r nv4_chipset +ffffffff81ef5a80 r null_chipset +ffffffff81ef5c40 R nvkm_control_oclass +ffffffff81ef5c80 r nvkm_control +ffffffff81ef5d00 r nvkm_device_pci_func +ffffffff81ef5d60 r nvkm_device_pci_10de +ffffffff81efa400 r nvkm_device_pci_10de_139b +ffffffff81efa460 r nvkm_device_pci_10de_139a +ffffffff81efa4a0 r nvkm_device_pci_10de_1392 +ffffffff81efa500 r nvkm_device_pci_10de_1391 +ffffffff81efa540 r nvkm_device_pci_10de_137d +ffffffff81efa580 r nvkm_device_pci_10de_137a +ffffffff81efa5c0 r nvkm_device_pci_10de_1347 +ffffffff81efa620 r nvkm_device_pci_10de_1346 +ffffffff81efa680 r nvkm_device_pci_10de_1341 +ffffffff81efa700 r nvkm_device_pci_10de_1340 +ffffffff81efa740 r nvkm_device_pci_10de_1299 +ffffffff81efa780 r nvkm_device_pci_10de_1295 +ffffffff81efa800 r nvkm_device_pci_10de_1292 +ffffffff81efa860 r nvkm_device_pci_10de_1290 +ffffffff81efa8a0 r nvkm_device_pci_10de_124d +ffffffff81efa8e0 r nvkm_device_pci_10de_1247 +ffffffff81efa940 r nvkm_device_pci_10de_11e3 +ffffffff81efa980 r nvkm_device_pci_10de_1199 +ffffffff81efa9c0 r nvkm_device_pci_10de_1189 +ffffffff81efaa00 r nvkm_device_pci_10de_1185 +ffffffff81efaa40 r nvkm_device_pci_10de_1140 +ffffffff81efca60 r nvkm_device_pci_10de_1096 +ffffffff81efcaa0 r nvkm_device_pci_10de_1091 +ffffffff81efcb20 r nvkm_device_pci_10de_105b +ffffffff81efcb80 r nvkm_device_pci_10de_1058 +ffffffff81efcc60 r nvkm_device_pci_10de_104b +ffffffff81efcd00 r nvkm_device_pci_10de_0fe3 +ffffffff81efcd60 r nvkm_device_pci_10de_0fd2 +ffffffff81efcdc0 r nvkm_device_pci_10de_0df4 +ffffffff81efce20 r nvkm_device_pci_10de_0dea +ffffffff81efcec0 r nvkm_device_pci_10de_0de9 +ffffffff81efcfc0 r nvkm_device_pci_10de_0dd8 +ffffffff81efd000 r nvkm_device_pci_10de_0a7a +ffffffff81efd120 r nvkm_device_pci_10de_0a75 +ffffffff81efd160 r nvkm_device_pci_10de_0a74 +ffffffff81efd1a0 r nvkm_device_pci_10de_0a73 +ffffffff81efd200 r nvkm_device_pci_10de_0a70 +ffffffff81efd260 r nvkm_device_pci_10de_0a6e +ffffffff81efd2a0 r nvkm_device_pci_10de_0873 +ffffffff81efd2e0 r nvkm_device_pci_10de_0872 +ffffffff81efd320 r nvkm_device_pci_10de_0866 +ffffffff81efd360 r nvkm_device_pci_10de_06ff +ffffffff81efd3a0 r nvkm_device_pci_10de_06f9 +ffffffff81efd3e0 r nvkm_device_pci_10de_06e8 +ffffffff81efd420 r nvkm_device_pci_10de_06de +ffffffff81efd500 r nvkm_device_pci_10de_06d2 +ffffffff81efd540 r nvkm_device_pci_10de_06d1 +ffffffff81efd5a0 r nvkm_device_pci_10de_0656 +ffffffff81efd5e0 r nvkm_device_pci_10de_0655 +ffffffff81efd620 r nvkm_device_pci_10de_0654 +ffffffff81efd680 r nvkm_device_pci_10de_0652 +ffffffff81efd6c0 r nvkm_device_pci_10de_0649 +ffffffff81efd700 r nvkm_device_pci_10de_062e +ffffffff81efd740 r nvkm_device_pci_10de_0609 +ffffffff81efd780 r nvkm_device_pci_10de_05e7 +ffffffff81efd820 r nvkm_device_pci_10de_0322 +ffffffff81efd880 r nvkm_device_pci_10de_01f0 +ffffffff81efd8c0 r nvkm_device_pci_10de_0189 +ffffffff81efd900 R nvkm_udevice_sclass +ffffffff81efd920 r nvkm_udevice +ffffffff81efd9a0 r nvkm_udevice_super +ffffffff81efda20 r nvkm_disp +ffffffff81efda80 r nvkm_disp_sclass +ffffffff81efdac0 r nvkm_disp_class +ffffffff81efdb00 r nvkm_disp_hpd_func +ffffffff81efdb20 r nvkm_disp_vblank_func +ffffffff81efdb40 r nv04_disp +ffffffff81efdb60 r nv50_disp +ffffffff81efdbc0 r nv50_disp_intr_error_code +ffffffff81efdc00 r nv50_disp_intr_error_type +ffffffff81efdca0 r nv50_disp_ +ffffffff81efdcc0 r g84_disp +ffffffff81efdd20 r g94_disp +ffffffff81efdd80 r gt200_disp +ffffffff81efdde0 r mcp77_disp +ffffffff81efde40 r gt215_disp +ffffffff81efdea0 r mcp89_disp +ffffffff81efdf00 r gf119_disp +ffffffff81efdf60 r gk104_disp +ffffffff81efdfc0 r gk110_disp +ffffffff81efe020 r gm107_disp +ffffffff81efe080 r gm200_disp +ffffffff81efe0e0 r gp100_disp +ffffffff81efe140 r gp102_disp +ffffffff81efe1a0 r nv04_head +ffffffff81efe1e0 r nv50_head +ffffffff81efe220 r gf119_head +ffffffff81efe250 r nvkm_ior_name +ffffffff81efe280 r nv50_dac +ffffffff81efe340 r gf119_dac +ffffffff81efe400 r nv50_pior +ffffffff81efe4c0 r nv50_sor +ffffffff81efe580 r g84_sor +ffffffff81efe6a0 r g94_sor +ffffffff81efe760 r mcp77_sor +ffffffff81efe820 r gt215_sor +ffffffff81efe8e0 r mcp89_sor +ffffffff81efea00 r gf119_sor +ffffffff81efeac0 r gk104_sor +ffffffff81efeb80 r gm107_sor +ffffffff81efec40 r gm200_sor +ffffffff81efed40 r nvkm_outp +ffffffff81efed80 r nvkm_dp_func +ffffffff81efedc0 r nvkm_dp_rates +ffffffff81efee98 r hpd.43016 +ffffffff81efeea0 R nv04_disp_root_oclass +ffffffff81efeee0 r nv04_disp_root +ffffffff81eff0a0 R nv50_disp_root_oclass +ffffffff81eff0e0 r nv50_disp_root +ffffffff81eff120 r nv50_disp_root_ +ffffffff81eff1a0 R g84_disp_root_oclass +ffffffff81eff1e0 r g84_disp_root +ffffffff81eff220 R g94_disp_root_oclass +ffffffff81eff260 r g94_disp_root +ffffffff81eff2a0 R gt200_disp_root_oclass +ffffffff81eff2e0 r gt200_disp_root +ffffffff81eff320 R gt215_disp_root_oclass +ffffffff81eff360 r gt215_disp_root +ffffffff81eff3a0 R gf119_disp_root_oclass +ffffffff81eff3e0 r gf119_disp_root +ffffffff81eff420 R gk104_disp_root_oclass +ffffffff81eff460 r gk104_disp_root +ffffffff81eff4a0 R gk110_disp_root_oclass +ffffffff81eff4e0 r gk110_disp_root +ffffffff81eff520 R gm107_disp_root_oclass +ffffffff81eff560 r gm107_disp_root +ffffffff81eff5a0 R gm200_disp_root_oclass +ffffffff81eff5e0 r gm200_disp_root +ffffffff81eff620 R gp100_disp_root_oclass +ffffffff81eff660 r gp100_disp_root +ffffffff81eff6a0 R gp102_disp_root_oclass +ffffffff81eff6e0 r gp102_disp_root +ffffffff81eff720 r nv50_disp_chan +ffffffff81eff7a0 R nv50_disp_chan_uevent +ffffffff81eff7c0 R gf119_disp_chan_uevent +ffffffff81eff7e0 R nv50_disp_dmac_func +ffffffff81eff800 r nv50_disp_dmac_func_ +ffffffff81eff840 r nv50_disp_dmac_child_func_ +ffffffff81eff870 R gf119_disp_dmac_func +ffffffff81eff890 R gp102_disp_dmac_func +ffffffff81eff8c0 R nv50_disp_base_oclass +ffffffff81eff900 r nv50_disp_base_chan_mthd +ffffffff81eff958 R nv50_disp_base_mthd_image +ffffffff81eff9c0 r nv50_disp_base_mthd_base +ffffffff81effae0 R g84_disp_base_oclass +ffffffff81effb20 R g84_disp_base_chan_mthd +ffffffff81effb78 r g84_disp_base_mthd_base +ffffffff81effce0 R gt200_disp_base_oclass +ffffffff81effd20 R gt215_disp_base_oclass +ffffffff81effd60 R gf119_disp_base_oclass +ffffffff81effda0 R gf119_disp_base_chan_mthd +ffffffff81effdf8 r gf119_disp_base_mthd_image +ffffffff81effe60 r gf119_disp_base_mthd_base +ffffffff81f00120 R gk104_disp_base_oclass +ffffffff81f00160 R gk110_disp_base_oclass +ffffffff81f001a0 R gp102_disp_base_oclass +ffffffff81f001e0 R nv50_disp_core_oclass +ffffffff81f00220 R nv50_disp_core_func +ffffffff81f00240 r nv50_disp_core_chan_mthd +ffffffff81f002e0 r nv50_disp_core_mthd_head +ffffffff81f00558 R nv50_disp_core_mthd_pior +ffffffff81f00580 R nv50_disp_core_mthd_sor +ffffffff81f005a8 r nv50_disp_core_mthd_dac +ffffffff81f005f0 R nv50_disp_core_mthd_base +ffffffff81f00660 R g84_disp_core_oclass +ffffffff81f006a0 R g84_disp_core_chan_mthd +ffffffff81f00740 R g84_disp_core_mthd_head +ffffffff81f00a08 R g84_disp_core_mthd_dac +ffffffff81f00a60 R g94_disp_core_oclass +ffffffff81f00aa0 R g94_disp_core_chan_mthd +ffffffff81f00b40 r g94_disp_core_mthd_sor +ffffffff81f00b80 R gt200_disp_core_oclass +ffffffff81f00bc0 R gt215_disp_core_oclass +ffffffff81f00c00 R gf119_disp_core_oclass +ffffffff81f00c40 R gf119_disp_core_func +ffffffff81f00c60 r gf119_disp_core_chan_mthd +ffffffff81f00d00 r gf119_disp_core_mthd_head +ffffffff81f01128 R gf119_disp_core_mthd_pior +ffffffff81f01180 R gf119_disp_core_mthd_sor +ffffffff81f011d8 R gf119_disp_core_mthd_dac +ffffffff81f01230 R gf119_disp_core_mthd_base +ffffffff81f012a0 R gk104_disp_core_oclass +ffffffff81f012e0 R gk104_disp_core_chan_mthd +ffffffff81f01380 r gk104_disp_core_mthd_head +ffffffff81f01800 R gk110_disp_core_oclass +ffffffff81f01840 R gm107_disp_core_oclass +ffffffff81f01880 R gm200_disp_core_oclass +ffffffff81f018c0 R gp100_disp_core_oclass +ffffffff81f01900 R gp102_disp_core_oclass +ffffffff81f01940 r gp102_disp_core_func +ffffffff81f01960 R nv50_disp_ovly_oclass +ffffffff81f019a0 r nv50_disp_ovly_chan_mthd +ffffffff81f019e0 r nv50_disp_ovly_mthd_base +ffffffff81f01b40 R g84_disp_ovly_oclass +ffffffff81f01b80 R g84_disp_ovly_chan_mthd +ffffffff81f01bc0 r g84_disp_ovly_mthd_base +ffffffff81f01d20 R gt200_disp_ovly_oclass +ffffffff81f01d60 r gt200_disp_ovly_chan_mthd +ffffffff81f01da0 r gt200_disp_ovly_mthd_base +ffffffff81f01f20 R gt215_disp_ovly_oclass +ffffffff81f01f60 R gf119_disp_ovly_oclass +ffffffff81f01fa0 r gf119_disp_ovly_chan_mthd +ffffffff81f01fe0 r gf119_disp_ovly_mthd_base +ffffffff81f022c0 R gk104_disp_ovly_oclass +ffffffff81f02300 R gk104_disp_ovly_chan_mthd +ffffffff81f02340 r gk104_disp_ovly_mthd_base +ffffffff81f02640 R gp102_disp_ovly_oclass +ffffffff81f02680 R nv50_disp_pioc_func +ffffffff81f026c0 R gf119_disp_pioc_func +ffffffff81f02700 R nv50_disp_curs_oclass +ffffffff81f02740 R g84_disp_curs_oclass +ffffffff81f02780 R gt215_disp_curs_oclass +ffffffff81f027c0 R gf119_disp_curs_oclass +ffffffff81f02800 R gk104_disp_curs_oclass +ffffffff81f02840 R gp102_disp_curs_oclass +ffffffff81f02880 R nv50_disp_oimm_oclass +ffffffff81f028c0 R g84_disp_oimm_oclass +ffffffff81f02900 R gt215_disp_oimm_oclass +ffffffff81f02940 R gf119_disp_oimm_oclass +ffffffff81f02980 R gk104_disp_oimm_oclass +ffffffff81f029c0 R gp102_disp_oimm_oclass +ffffffff81f02a00 r nvkm_dma +ffffffff81f02a60 r nvkm_dma_sclass +ffffffff81f02ac0 r nvkm_dma_oclass_base +ffffffff81f02ae8 r nv04_dma +ffffffff81f02af0 r nv50_dma +ffffffff81f02af8 r gf100_dma +ffffffff81f02b00 r gf119_dma +ffffffff81f02b60 r nvkm_dmaobj_func +ffffffff81f02bd8 r nv04_dmaobj_func +ffffffff81f02be0 r nv50_dmaobj_func +ffffffff81f02be8 r gf100_dmaobj_func +ffffffff81f02bf0 r gf119_dmaobj_func +ffffffff81f02c00 r nvkm_fifo +ffffffff81f02c60 r nvkm_fifo_class +ffffffff81f02ca0 r nvkm_fifo_uevent_func +ffffffff81f02cc0 r nvkm_fifo_cevent_func +ffffffff81f02ce0 r nvkm_fifo_kevent_func +ffffffff81f02d00 r desc.43330 +ffffffff81f02d40 r nv04_fifo +ffffffff81f02dc0 r nv04_fifo_ramfc +ffffffff81f02e20 r nv10_fifo +ffffffff81f02ea0 r nv10_fifo_ramfc +ffffffff81f02f00 r nv17_fifo +ffffffff81f02f80 r nv17_fifo_ramfc +ffffffff81f03000 r nv40_fifo +ffffffff81f03080 r nv40_fifo_ramfc +ffffffff81f03140 r nv50_fifo +ffffffff81f031c0 r g84_fifo +ffffffff81f03300 r gf100_fifo +ffffffff81f03380 r gf100_fifo_pbdma_intr +ffffffff81f033c0 r gf100_fifo_fault_gpcclient +ffffffff81f03460 r gf100_fifo_fault_hubclient +ffffffff81f03640 r gf100_fifo_fault_reason +ffffffff81f03780 r gf100_fifo_fault_engine +ffffffff81f03920 r gf100_fifo_sched_reason +ffffffff81f03960 r gk104_fifo +ffffffff81f039a0 R gk104_fifo_fault_gpcclient +ffffffff81f03e60 R gk104_fifo_fault_hubclient +ffffffff81f04280 R gk104_fifo_fault_reason +ffffffff81f044a0 R gk104_fifo_fault_engine +ffffffff81f04800 r gk104_fifo_ +ffffffff81f04860 r gk104_fifo_pbdma_intr_1 +ffffffff81f048c0 r gk104_fifo_pbdma_intr_0 +ffffffff81f04ac0 r gk104_fifo_sched_reason +ffffffff81f04b00 r gk104_fifo_bind_reason +ffffffff81f04be0 r gk110_fifo +ffffffff81f04c20 r gk208_fifo +ffffffff81f04c60 r gk20a_fifo +ffffffff81f04ca0 r gm107_fifo +ffffffff81f04ce0 R gm107_fifo_fault_engine +ffffffff81f04f40 r gm200_fifo +ffffffff81f04f80 r gm20b_fifo +ffffffff81f04fc0 r gp100_fifo +ffffffff81f05000 R gp100_fifo_fault_engine +ffffffff81f05280 r gp10b_fifo +ffffffff81f052c0 r nvkm_fifo_chan_func +ffffffff81f05340 r nvkm_fifo_chan_child_func +ffffffff81f05380 r nv50_fifo_chan_func +ffffffff81f054e0 r CSWTCH.10 +ffffffff81f05560 r CSWTCH.7 +ffffffff81f055e0 r g84_fifo_chan_func +ffffffff81f05640 R nv04_fifo_dma_oclass +ffffffff81f05680 R nv04_fifo_dma_func +ffffffff81f056e0 R nv10_fifo_dma_oclass +ffffffff81f05720 R nv17_fifo_dma_oclass +ffffffff81f05760 R nv40_fifo_dma_oclass +ffffffff81f057a0 r nv40_fifo_dma_func +ffffffff81f05800 R nv50_fifo_dma_oclass +ffffffff81f05840 R g84_fifo_dma_oclass +ffffffff81f05880 R nv50_fifo_gpfifo_oclass +ffffffff81f058c0 R g84_fifo_gpfifo_oclass +ffffffff81f05900 r CSWTCH.225 +ffffffff81f05960 R gf100_fifo_gpfifo_oclass +ffffffff81f059a0 r gf100_fifo_gpfifo_func +ffffffff81f05a00 r CSWTCH.223 +ffffffff81f05a60 R gk104_fifo_gpfifo_oclass +ffffffff81f05aa0 r gk104_fifo_gpfifo +ffffffff81f05b80 r gk104_fifo_gpfifo_func +ffffffff81f05be0 R gk110_fifo_gpfifo_oclass +ffffffff81f05c20 R gm200_fifo_gpfifo_oclass +ffffffff81f05c60 R gp100_fifo_gpfifo_oclass +ffffffff81f05ca0 r nvkm_gr +ffffffff81f05fe0 r nv04_gr +ffffffff81f06580 R nv04_gr_nsource +ffffffff81f066c0 r nv04_gr_nstatus +ffffffff81f06720 r nv04_gr_intr_name +ffffffff81f06740 r nv04_gr_chan +ffffffff81f067c0 R nv04_gr_object +ffffffff81f06840 r nv04_gr_ctx_regs +ffffffff81f06d20 r nv10_gr +ffffffff81f06fe0 R nv10_gr_nstatus +ffffffff81f07040 R nv10_gr_intr_name +ffffffff81f07080 r nv10_gr_chan +ffffffff81f07100 r nv17_gr_ctx_regs +ffffffff81f07160 r nv10_gr_ctx_regs +ffffffff81f07660 r nv15_gr +ffffffff81f07920 r nv17_gr +ffffffff81f07be0 r nv20_gr +ffffffff81f07e40 r nv20_gr_chan +ffffffff81f07ec0 r nv25_gr +ffffffff81f08120 r nv25_gr_chan +ffffffff81f081a0 r nv2a_gr +ffffffff81f08400 r nv2a_gr_chan +ffffffff81f08480 r nv30_gr +ffffffff81f08740 r nv30_gr_chan +ffffffff81f087c0 r nv34_gr +ffffffff81f08a80 r nv34_gr_chan +ffffffff81f08b00 r nv35_gr +ffffffff81f08dc0 r nv35_gr_chan +ffffffff81f08ec0 r nv40_gr +ffffffff81f09140 r nv40_gr_chan +ffffffff81f091c0 R nv40_gr_object +ffffffff81f09240 r nv44_gr +ffffffff81f094c0 r nv50_gr +ffffffff81f095e0 r nv50_gr_trap_prop +ffffffff81f096a0 r nv50_gr_intr_name +ffffffff81f09760 R nv50_data_error_names +ffffffff81f09cc0 r nv50_gr_trap_ccache +ffffffff81f09ce0 r nv50_gr_trap_strmout +ffffffff81f09d00 r nv50_gr_trap_vfetch +ffffffff81f09d20 r nv50_gr_trap_m2mf +ffffffff81f09d60 r nv50_tex_traps +ffffffff81f09dc0 r nv50_mpc_traps +ffffffff81f09e80 r nv50_mp_exec_errors +ffffffff81f09f00 r nv50_gr_chan +ffffffff81f09f80 R nv50_gr_object +ffffffff81f0a000 r g84_gr +ffffffff81f0a120 r nv50_gr_vstatus_2 +ffffffff81f0a1c0 r nv50_gr_vstatus_1 +ffffffff81f0a220 r nv50_gr_vstatus_0 +ffffffff81f0a2a0 r nv50_gr_status +ffffffff81f0a440 r gt200_gr +ffffffff81f0a560 r mcp79_gr +ffffffff81f0a680 r gt215_gr +ffffffff81f0a7c0 r mcp89_gr +ffffffff81f0ac60 r gf100_gr +ffffffff81f0ad80 r gf100_gr_ +ffffffff81f0ade0 r gf100_mp_global_error +ffffffff81f0aea0 r gf100_mp_warp_error +ffffffff81f0b160 r gf100_gpc_rop_error +ffffffff81f0b1e0 r gk104_sked_error +ffffffff81f0b2e0 r gf100_macro_error +ffffffff81f0b340 r gf100_ccache_error +ffffffff81f0b380 r gf100_unk6_error +ffffffff81f0b3a0 r gf100_m2mf_error +ffffffff81f0b3e0 r gf100_dispatch_error +ffffffff81f0b420 r gf100_gr_pack_mmio +ffffffff81f0b5e0 R gf100_gr_init_pe_1 +ffffffff81f0b600 R gf100_gr_init_fe_1 +ffffffff81f0b620 R gf100_gr_init_be_0 +ffffffff81f0b680 r gf100_gr_init_sm_0 +ffffffff81f0b730 R gf100_gr_init_mpc_0 +ffffffff81f0b750 R gf100_gr_init_tpccs_1 +ffffffff81f0b780 R gf100_gr_init_wwdx_0 +ffffffff81f0b7c0 R gf100_gr_init_l1c_0 +ffffffff81f0b820 R gf100_gr_init_pe_0 +ffffffff81f0b860 R gf100_gr_init_tex_0 +ffffffff81f0b8a0 R gf100_gr_init_tpccs_0 +ffffffff81f0b8e0 R gf100_gr_init_gcc_0 +ffffffff81f0b920 R gf100_gr_init_gpc_unk_1 +ffffffff81f0b960 R gf100_gr_init_gpm_0 +ffffffff81f0b9a0 R gf100_gr_init_zcull_0 +ffffffff81f0ba00 R gf100_gr_init_setup_1 +ffffffff81f0ba40 R gf100_gr_init_crstr_0 +ffffffff81f0ba60 R gf100_gr_init_setup_0 +ffffffff81f0ba80 R gf100_gr_init_gpc_unk_0 +ffffffff81f0bac0 R gf100_gr_init_prop_0 +ffffffff81f0bae0 R gf100_gr_init_scc_0 +ffffffff81f0bb00 R gf100_gr_init_ds_0 +ffffffff81f0bb30 R gf100_gr_init_pd_0 +ffffffff81f0bb50 R gf100_gr_init_rstr2d_0 +ffffffff81f0bb70 R gf100_gr_init_pri_0 +ffffffff81f0bba0 R gf100_gr_init_fe_0 +ffffffff81f0bbe0 R gf100_gr_init_main_0 +ffffffff81f0bc80 r gf100_gr_chan +ffffffff81f0bd00 r gf100_gr_object_func +ffffffff81f0bd80 R gf100_fermi +ffffffff81f0be00 r gf104_gr +ffffffff81f0bf20 r gf104_gr_pack_mmio +ffffffff81f0c0e0 R gf104_gr_init_sm_0 +ffffffff81f0c1a0 r gf104_gr_init_pe_0 +ffffffff81f0c200 R gf104_gr_init_tex_0 +ffffffff81f0c240 R gf104_gr_init_ds_0 +ffffffff81f0c280 r gf108_gr +ffffffff81f0c3c0 r gf108_gr_pack_mmio +ffffffff81f0c580 r gf108_gr_init_pe_0 +ffffffff81f0c5e0 r gf108_gr_init_gpc_unk_1 +ffffffff81f0c620 R gf108_gr_init_setup_1 +ffffffff81f0c660 R gf108_gr_init_gpc_unk_0 +ffffffff81f0c6a0 r gf110_gr +ffffffff81f0c820 r gf110_gr_pack_mmio +ffffffff81f0c9e0 r gf110_gr_init_sm_0 +ffffffff81f0caa0 r gf117_gr +ffffffff81f0cc20 r gf117_gr_pack_mmio +ffffffff81f0cde0 R gf117_gr_init_cbm_0 +ffffffff81f0ce20 R gf117_gr_init_wwdx_0 +ffffffff81f0ce60 R gf117_gr_init_pes_0 +ffffffff81f0cec0 r gf117_gr_init_pe_0 +ffffffff81f0cf00 r gf119_gr +ffffffff81f0d080 r gf119_gr_pack_mmio +ffffffff81f0d240 R gf119_gr_init_fe_1 +ffffffff81f0d280 R gf119_gr_init_sm_0 +ffffffff81f0d340 r gf119_gr_init_tpccs_1 +ffffffff81f0d380 r gf119_gr_init_wwdx_0 +ffffffff81f0d3c0 r gf119_gr_init_pe_0 +ffffffff81f0d420 R gf119_gr_init_tex_0 +ffffffff81f0d480 R gf119_gr_init_gpc_unk_1 +ffffffff81f0d500 R gf119_gr_init_gpm_0 +ffffffff81f0d540 R gf119_gr_init_prop_0 +ffffffff81f0d580 R gf119_gr_init_ds_0 +ffffffff81f0d5e0 R gf119_gr_init_pd_0 +ffffffff81f0d620 r gk104_gr +ffffffff81f0d740 r gk104_clkgate_pack +ffffffff81f0d820 R gk104_clkgate_blcg_init_pxbar_0 +ffffffff81f0d860 R gk104_clkgate_blcg_init_rop_crop_0 +ffffffff81f0d890 R gk104_clkgate_blcg_init_rop_0 +ffffffff81f0d8b0 R gk104_clkgate_blcg_init_rop_zrop_0 +ffffffff81f0d8e0 R gk104_clkgate_blcg_init_gpc_ppc_0 +ffffffff81f0d920 R gk104_clkgate_blcg_init_gpc_mp_0 +ffffffff81f0d970 R gk104_clkgate_blcg_init_gpc_unk_2 +ffffffff81f0d990 R gk104_clkgate_blcg_init_gpc_l1c_0 +ffffffff81f0d9b0 R gk104_clkgate_blcg_init_gpc_poly_0 +ffffffff81f0d9e0 R gk104_clkgate_blcg_init_gpc_tex_0 +ffffffff81f0da10 R gk104_clkgate_blcg_init_gpc_ffb_0 +ffffffff81f0da40 R gk104_clkgate_blcg_init_gpc_gcc_0 +ffffffff81f0da80 R gk104_clkgate_blcg_init_gpc_unk_1 +ffffffff81f0dac0 R gk104_clkgate_blcg_init_gpc_tpconf_0 +ffffffff81f0dae0 R gk104_clkgate_blcg_init_gpc_zcull_0 +ffffffff81f0db00 R gk104_clkgate_blcg_init_gpc_tpbus_0 +ffffffff81f0db20 R gk104_clkgate_blcg_init_gpc_esetup_0 +ffffffff81f0db40 R gk104_clkgate_blcg_init_gpc_unk_0 +ffffffff81f0db80 R gk104_clkgate_blcg_init_gpc_ctxctl_0 +ffffffff81f0dbb0 R gk104_clkgate_blcg_init_unk_1 +ffffffff81f0dbd0 R gk104_clkgate_blcg_init_sked_0 +ffffffff81f0dbf0 R gk104_clkgate_blcg_init_gcc_0 +ffffffff81f0dc20 R gk104_clkgate_blcg_init_unk_0 +ffffffff81f0dc50 R gk104_clkgate_blcg_init_rstr2d_0 +ffffffff81f0dc80 R gk104_clkgate_blcg_init_main_0 +ffffffff81f0dcc0 R gk104_gr_pack_mmio +ffffffff81f0dea0 R gk104_gr_init_be_0 +ffffffff81f0df20 r gk104_gr_init_sm_0 +ffffffff81f0dfa0 r gk104_gr_init_l1c_0 +ffffffff81f0e020 R gk104_gr_init_pe_0 +ffffffff81f0e060 R gk104_gr_init_tpccs_0 +ffffffff81f0e0a0 r gk104_gr_init_gpc_unk_1 +ffffffff81f0e110 r gk104_gr_init_cwd_0 +ffffffff81f0e130 r gk104_gr_init_sked_0 +ffffffff81f0e160 r gk104_gr_init_ds_0 +ffffffff81f0e1c0 R gk104_gr_init_main_0 +ffffffff81f0e260 r gk110_gr +ffffffff81f0e380 r gk110_clkgate_pack +ffffffff81f0e4c0 r gk110_clkgate_slcg_init_pcounter_0 +ffffffff81f0e500 r gk110_clkgate_slcg_init_gpc_ppc_0 +ffffffff81f0e520 r gk110_clkgate_slcg_init_gpc_mp_0 +ffffffff81f0e560 r gk110_clkgate_slcg_init_gpc_unk_1 +ffffffff81f0e580 r gk110_clkgate_slcg_init_gpc_l1c_0 +ffffffff81f0e5a0 r gk110_clkgate_slcg_init_gpc_zcull_0 +ffffffff81f0e5c0 r gk110_clkgate_slcg_init_gpc_esetup_0 +ffffffff81f0e5e0 r gk110_clkgate_slcg_init_gpc_unk_0 +ffffffff81f0e610 r gk110_clkgate_slcg_init_gpc_ctxctl_0 +ffffffff81f0e630 r gk110_clkgate_slcg_init_sked_0 +ffffffff81f0e650 r gk110_clkgate_slcg_init_unk_0 +ffffffff81f0e680 r gk110_clkgate_slcg_init_main_0 +ffffffff81f0e6c0 r gk110_clkgate_blcg_init_gpc_mp_0 +ffffffff81f0e720 r gk110_clkgate_blcg_init_gpc_l1c_0 +ffffffff81f0e740 r gk110_clkgate_blcg_init_gpc_gcc_0 +ffffffff81f0e770 r gk110_clkgate_blcg_init_sked_0 +ffffffff81f0e7a0 r gk110_gr_pack_mmio +ffffffff81f0e980 R gk110_gr_init_sm_0 +ffffffff81f0ea20 r gk110_gr_init_l1c_0 +ffffffff81f0eac0 R gk110_gr_init_tex_0 +ffffffff81f0eb20 R gk110_gr_init_gpc_unk_1 +ffffffff81f0eba0 R gk110_gr_init_cwd_0 +ffffffff81f0ebe0 R gk110_gr_init_sked_0 +ffffffff81f0ec20 R gk110_gr_init_ds_0 +ffffffff81f0ec80 R gk110_gr_init_fe_0 +ffffffff81f0ecc0 r gk110b_gr +ffffffff81f0ede0 r gk110b_gr_pack_mmio +ffffffff81f0efc0 r gk110b_gr_init_sm_0 +ffffffff81f0f060 r gk110b_gr_init_l1c_0 +ffffffff81f0f100 r gk208_gr +ffffffff81f0f220 r gk208_gr_pack_mmio +ffffffff81f0f400 r gk208_gr_init_l1c_0 +ffffffff81f0f4a0 r gk208_gr_init_tex_0 +ffffffff81f0f500 r gk208_gr_init_setup_1 +ffffffff81f0f540 R gk208_gr_init_gpc_unk_0 +ffffffff81f0f580 r gk208_gr_init_ds_0 +ffffffff81f0f5e0 r gk208_gr_init_main_0 +ffffffff81f0f680 r gk20a_gr +ffffffff81f0f7a0 r regs.44368 +ffffffff81f0f7e0 r gm107_gr +ffffffff81f0f900 r gm107_gr_pack_mmio +ffffffff81f0fb00 r gm107_gr_init_sm_1 +ffffffff81f0fb40 r gm107_gr_init_be_0 +ffffffff81f0fc50 R gm107_gr_init_cbm_0 +ffffffff81f0fc80 R gm107_gr_init_wwdx_0 +ffffffff81f0fcc0 r gm107_gr_init_pes_0 +ffffffff81f0fd20 r gm107_gr_init_l1c_1 +ffffffff81f0fd60 r gm107_gr_init_sm_0 +ffffffff81f0fe20 R gm107_gr_init_l1c_0 +ffffffff81f0fe60 r gm107_gr_init_pe_0 +ffffffff81f0fec0 R gm107_gr_init_tex_0 +ffffffff81f0ff40 r gm107_gr_init_tpccs_0 +ffffffff81f0ffc0 R gm107_gr_init_gpc_unk_1 +ffffffff81f10000 R gm107_gr_init_zcull_0 +ffffffff81f10060 R gm107_gr_init_setup_1 +ffffffff81f100a0 R gm107_gr_init_prop_0 +ffffffff81f100e0 r gm107_gr_init_sked_0 +ffffffff81f10110 R gm107_gr_init_scc_0 +ffffffff81f10140 r gm107_gr_init_ds_0 +ffffffff81f10180 r gm107_gr_init_main_0 +ffffffff81f10220 r gm200_gr +ffffffff81f10340 r gm20b_gr +ffffffff81f10460 r gp100_gr +ffffffff81f10580 r gp102_gr +ffffffff81f106a0 r gp107_gr +ffffffff81f107c0 r gp10b_gr +ffffffff81f108e0 r CSWTCH.111 +ffffffff81f12420 R gf100_grctx +ffffffff81f124c0 R gf100_grctx_pack_tpc +ffffffff81f12540 r gf100_grctx_init_sm_0 +ffffffff81f125c0 R gf100_grctx_init_tpccs_0 +ffffffff81f12600 r gf100_grctx_init_l1c_0 +ffffffff81f12640 R gf100_grctx_init_mpc_0 +ffffffff81f12680 R gf100_grctx_init_wwdx_0 +ffffffff81f12700 r gf100_grctx_init_tex_0 +ffffffff81f12760 R gf100_grctx_init_pe_0 +ffffffff81f127c0 R gf100_grctx_pack_zcull +ffffffff81f127e0 r gf100_grctx_init_zcullr_0 +ffffffff81f12920 R gf100_grctx_pack_gpc +ffffffff81f129c0 R gf100_grctx_init_gcc_0 +ffffffff81f12a00 R gf100_grctx_init_gpm_0 +ffffffff81f12a40 R gf100_grctx_init_crstr_0 +ffffffff81f12ac0 R gf100_grctx_init_zcull_0 +ffffffff81f12b00 r gf100_grctx_init_setup_0 +ffffffff81f12b80 R gf100_grctx_init_gpc_unk_1 +ffffffff81f12be0 R gf100_grctx_init_prop_0 +ffffffff81f12c60 R gf100_grctx_init_gpc_unk_0 +ffffffff81f12c80 R gf100_grctx_pack_hub +ffffffff81f12d20 r gf100_grctx_init_be_0 +ffffffff81f12d80 R gf100_grctx_init_scc_0 +ffffffff81f12de0 R gf100_grctx_init_rstr2d_0 +ffffffff81f12e60 r gf100_grctx_init_pd_0 +ffffffff81f12ec0 r gf100_grctx_init_ds_0 +ffffffff81f12f20 R gf100_grctx_init_memfmt_0 +ffffffff81f13000 R gf100_grctx_init_pri_0 +ffffffff81f13060 R gf100_grctx_init_fe_0 +ffffffff81f13130 R gf100_grctx_init_main_0 +ffffffff81f13160 R gf100_grctx_pack_mthd +ffffffff81f131c0 R gf100_grctx_init_90c0_0 +ffffffff81f13280 R gf100_grctx_init_9039_0 +ffffffff81f132c0 R gf100_grctx_init_902d_0 +ffffffff81f13380 r gf100_grctx_init_9097_0 +ffffffff81f141a0 R gf100_grctx_pack_icmd +ffffffff81f141c0 r gf100_grctx_init_icmd_0 +ffffffff81f14cc0 R gf104_grctx +ffffffff81f14d60 r gf104_grctx_pack_tpc +ffffffff81f14de0 R gf104_grctx_init_sm_0 +ffffffff81f14e60 R gf104_grctx_init_l1c_0 +ffffffff81f14ea0 R gf104_grctx_init_tex_0 +ffffffff81f14f20 R gf108_grctx +ffffffff81f14fc0 r gf108_grctx_pack_tpc +ffffffff81f15040 R gf108_grctx_init_tpccs_0 +ffffffff81f15080 R gf108_grctx_init_wwdx_0 +ffffffff81f15100 R gf108_grctx_init_pe_0 +ffffffff81f15160 r gf108_grctx_pack_gpc +ffffffff81f15200 R gf108_grctx_init_gpm_0 +ffffffff81f15260 r gf108_grctx_init_setup_0 +ffffffff81f152e0 r gf108_grctx_pack_hub +ffffffff81f15380 r gf108_grctx_init_be_0 +ffffffff81f153e0 r gf108_grctx_init_pd_0 +ffffffff81f15440 r gf108_grctx_init_ds_0 +ffffffff81f154a0 r gf108_grctx_pack_mthd +ffffffff81f15500 r gf108_grctx_init_9197_0 +ffffffff81f15540 R gf108_grctx_init_9097_0 +ffffffff81f16340 r gf108_grctx_pack_icmd +ffffffff81f16360 r gf108_grctx_init_icmd_0 +ffffffff81f16e80 R gf110_grctx +ffffffff81f16f20 r gf110_grctx_pack_gpc +ffffffff81f16fc0 r gf110_grctx_init_setup_0 +ffffffff81f17040 r gf110_grctx_pack_mthd +ffffffff81f170c0 R gf110_grctx_init_9297_0 +ffffffff81f17110 R gf110_grctx_init_9197_0 +ffffffff81f17140 r gf110_grctx_pack_icmd +ffffffff81f17160 r gf110_grctx_init_icmd_0 +ffffffff81f17c80 R gf117_grctx +ffffffff81f17d20 r gf117_grctx_pack_ppc +ffffffff81f17d60 R gf117_grctx_init_wwdx_0 +ffffffff81f17de0 r gf117_grctx_init_cbm_0 +ffffffff81f17e10 r gf117_grctx_init_pes_0 +ffffffff81f17e40 r gf117_grctx_pack_tpc +ffffffff81f17ea0 r gf117_grctx_init_mpc_0 +ffffffff81f17f00 r gf117_grctx_init_tex_0 +ffffffff81f17f80 R gf117_grctx_init_pe_0 +ffffffff81f17fc0 r gf117_grctx_pack_gpc +ffffffff81f18060 r gf117_grctx_init_setup_0 +ffffffff81f180e0 r gf117_grctx_pack_hub +ffffffff81f18180 r gf117_grctx_init_pd_0 +ffffffff81f18200 r gf117_grctx_init_ds_0 +ffffffff81f18280 R gf119_grctx +ffffffff81f18320 r gf119_grctx_pack_tpc +ffffffff81f183a0 R gf119_grctx_init_sm_0 +ffffffff81f18420 r gf119_grctx_init_mpc_0 +ffffffff81f18480 r gf119_grctx_init_tex_0 +ffffffff81f18500 r gf119_grctx_pack_gpc +ffffffff81f185a0 R gf119_grctx_init_crstr_0 +ffffffff81f18620 r gf119_grctx_init_setup_0 +ffffffff81f186a0 R gf119_grctx_init_gpc_unk_1 +ffffffff81f18700 R gf119_grctx_init_prop_0 +ffffffff81f18780 r gf119_grctx_pack_hub +ffffffff81f18820 R gf119_grctx_init_be_0 +ffffffff81f18880 r gf119_grctx_init_pd_0 +ffffffff81f188e0 r gf119_grctx_init_ds_0 +ffffffff81f18960 R gf119_grctx_init_fe_0 +ffffffff81f18a40 R gf119_grctx_pack_mthd +ffffffff81f18ac0 r gf119_grctx_init_90c0_0 +ffffffff81f18bc0 R gf119_grctx_pack_icmd +ffffffff81f18be0 r gf119_grctx_init_icmd_0 +ffffffff81f19720 R gk104_grctx +ffffffff81f197c0 R gk104_grctx_pack_ppc +ffffffff81f19800 r gk104_grctx_init_cbm_0 +ffffffff81f19830 R gk104_grctx_init_pes_0 +ffffffff81f19860 R gk104_grctx_pack_tpc +ffffffff81f198c0 r gk104_grctx_init_sm_0 +ffffffff81f19980 r gk104_grctx_init_l1c_0 +ffffffff81f199c0 r gk104_grctx_init_mpc_0 +ffffffff81f19a20 r gk104_grctx_init_tex_0 +ffffffff81f19ac0 R gk104_grctx_pack_gpc +ffffffff81f19b60 R gk104_grctx_init_gpm_0 +ffffffff81f19bc0 r gk104_grctx_init_setup_0 +ffffffff81f19c40 R gk104_grctx_pack_hub +ffffffff81f19d00 r gk104_grctx_init_be_0 +ffffffff81f19d80 R gk104_grctx_init_scc_0 +ffffffff81f19de0 r gk104_grctx_init_sked_0 +ffffffff81f19e00 r gk104_grctx_init_pd_0 +ffffffff81f19ea0 r gk104_grctx_init_cwd_0 +ffffffff81f19ee0 R gk104_grctx_init_ds_0 +ffffffff81f19f60 R gk104_grctx_init_memfmt_0 +ffffffff81f1a080 r gk104_grctx_init_fe_0 +ffffffff81f1a160 r gk104_grctx_pack_mthd +ffffffff81f1a1a0 R gk104_grctx_init_a097_0 +ffffffff81f1af80 R gk104_grctx_pack_icmd +ffffffff81f1afa0 r gk104_grctx_init_icmd_0 +ffffffff81f1bae0 R gk110_grctx +ffffffff81f1bb80 R gk110_grctx_pack_ppc +ffffffff81f1bbc0 r gk110_grctx_init_cbm_0 +ffffffff81f1bc00 r gk110_grctx_pack_tpc +ffffffff81f1bc60 r gk110_grctx_init_sm_0 +ffffffff81f1bd80 R gk110_grctx_init_l1c_0 +ffffffff81f1bdc0 R gk110_grctx_init_mpc_0 +ffffffff81f1be20 R gk110_grctx_init_tex_0 +ffffffff81f1bec0 R gk110_grctx_pack_gpc +ffffffff81f1bf60 R gk110_grctx_init_gpc_unk_2 +ffffffff81f1bf80 r gk110_grctx_init_setup_0 +ffffffff81f1c020 R gk110_grctx_pack_hub +ffffffff81f1c0e0 r gk110_grctx_init_be_0 +ffffffff81f1c160 r gk110_grctx_init_pd_0 +ffffffff81f1c200 R gk110_grctx_init_cwd_0 +ffffffff81f1c240 R gk110_grctx_init_pri_0 +ffffffff81f1c2a0 r gk110_grctx_init_fe_0 +ffffffff81f1c3c0 R gk110_grctx_pack_mthd +ffffffff81f1c400 r gk110_grctx_init_a197_0 +ffffffff81f1d200 R gk110_grctx_pack_icmd +ffffffff81f1d220 r gk110_grctx_init_icmd_0 +ffffffff81f1ddc0 R gk110b_grctx +ffffffff81f1de60 r gk110b_grctx_pack_tpc +ffffffff81f1dec0 r gk110b_grctx_init_sm_0 +ffffffff81f1dfe0 R gk208_grctx +ffffffff81f1e080 r gk208_grctx_pack_ppc +ffffffff81f1e0c0 r gk208_grctx_init_cbm_0 +ffffffff81f1e100 r gk208_grctx_pack_tpc +ffffffff81f1e160 r gk208_grctx_init_sm_0 +ffffffff81f1e280 r gk208_grctx_init_tex_0 +ffffffff81f1e320 r gk208_grctx_pack_gpc +ffffffff81f1e3c0 r gk208_grctx_init_gpm_0 +ffffffff81f1e420 R gk208_grctx_init_crstr_0 +ffffffff81f1e4a0 r gk208_grctx_init_setup_0 +ffffffff81f1e540 r gk208_grctx_init_gpc_unk_1 +ffffffff81f1e5a0 R gk208_grctx_init_prop_0 +ffffffff81f1e620 r gk208_grctx_pack_hub +ffffffff81f1e6e0 r gk208_grctx_init_be_0 +ffffffff81f1e760 R gk208_grctx_init_rstr2d_0 +ffffffff81f1e7e0 r gk208_grctx_init_pd_0 +ffffffff81f1e880 r gk208_grctx_init_ds_0 +ffffffff81f1e900 r gk208_grctx_init_fe_0 +ffffffff81f1ea20 r gk208_grctx_pack_icmd +ffffffff81f1ea40 r gk208_grctx_init_icmd_0 +ffffffff81f1f5e0 R gk20a_grctx +ffffffff81f1f680 R gm107_grctx +ffffffff81f1f720 r gm107_grctx_pack_ppc +ffffffff81f1f760 R gm107_grctx_init_wwdx_0 +ffffffff81f1f7e0 r gm107_grctx_init_cbm_0 +ffffffff81f1f840 r gm107_grctx_pack_tpc +ffffffff81f1f8a0 r gm107_grctx_init_sm_0 +ffffffff81f1f970 r gm107_grctx_init_l1c_0 +ffffffff81f1f9a0 r gm107_grctx_init_mpc_0 +ffffffff81f1fa20 r gm107_grctx_init_tex_0 +ffffffff81f1fac0 r gm107_grctx_pack_gpc +ffffffff81f1fb60 r gm107_grctx_init_gpc_unk_2 +ffffffff81f1fbe0 r gm107_grctx_init_setup_0 +ffffffff81f1fc60 r gm107_grctx_init_gpc_unk_1 +ffffffff81f1fcc0 R gm107_grctx_init_gpc_unk_0 +ffffffff81f1fce0 r gm107_grctx_pack_hub +ffffffff81f1fda0 r gm107_grctx_init_be_0 +ffffffff81f1fe20 r gm107_grctx_init_pd_0 +ffffffff81f1fec0 r gm107_grctx_init_ds_0 +ffffffff81f1ff40 r gm107_grctx_init_fe_0 +ffffffff81f20020 r gm107_grctx_pack_mthd +ffffffff81f20060 r gm107_grctx_init_b097_0 +ffffffff81f20f20 r gm107_grctx_pack_icmd +ffffffff81f20f40 r gm107_grctx_init_icmd_0 +ffffffff81f21b40 R gm200_grctx +ffffffff81f21be0 R gm20b_grctx +ffffffff81f21c80 R gp100_grctx +ffffffff81f21d20 R gp102_grctx +ffffffff81f21dc0 R gp107_grctx +ffffffff81f21e60 r nv31_mpeg +ffffffff81f21e80 r nv31_mpeg_ +ffffffff81f21f20 r nv31_mpeg_chan +ffffffff81f21fa0 R nv31_mpeg_object +ffffffff81f22018 r nv40_mpeg +ffffffff81f22020 r nv44_mpeg +ffffffff81f220c0 r nv44_mpeg_chan +ffffffff81f22140 r nv50_mpeg +ffffffff81f221e0 R nv50_mpeg_cclass +ffffffff81f22260 r g84_mpeg +ffffffff81f22300 r g98_mspdec +ffffffff81f223c0 r gt215_mspdec +ffffffff81f22480 r gf100_mspdec +ffffffff81f22540 r gk104_mspdec +ffffffff81f22600 r g98_msppp +ffffffff81f226c0 r gt215_msppp +ffffffff81f22780 r gf100_msppp +ffffffff81f22840 r g98_msvld +ffffffff81f22900 r gt215_msvld +ffffffff81f229c0 r mcp89_msvld +ffffffff81f22a80 r gf100_msvld +ffffffff81f22b40 r gk104_msvld +ffffffff81f22c00 r nvkm_nvdec +ffffffff81f22c60 r nvkm_pm +ffffffff81f22cc0 r nvkm_pm_oclass +ffffffff81f22d00 r nvkm_perfmon +ffffffff81f22d80 r nvkm_perfdom +ffffffff81f22e00 r nv40_pm +ffffffff81f22e90 r __compound_literal.4 +ffffffff81f22eb0 r __compound_literal.3 +ffffffff81f22ed0 r __compound_literal.2 +ffffffff81f22ef0 r __compound_literal.1 +ffffffff81f22f10 r __compound_literal.0 +ffffffff81f22f28 r nv40_pm_ +ffffffff81f22f30 R nv40_perfctr_func +ffffffff81f22f60 r nv50_pm +ffffffff81f22ff0 r __compound_literal.10 +ffffffff81f23010 r __compound_literal.9 +ffffffff81f23040 r __compound_literal.8 +ffffffff81f232a0 r __compound_literal.7 +ffffffff81f236f0 r __compound_literal.6 +ffffffff81f23720 r nv50_vfetch_sources +ffffffff81f23760 r __compound_literal.5 +ffffffff81f237a0 r nv50_tex_sources +ffffffff81f237e0 r __compound_literal.4 +ffffffff81f23820 r nv50_crop_sources +ffffffff81f23860 r __compound_literal.3 +ffffffff81f238c0 r nv50_prop_sources +ffffffff81f23900 r __compound_literal.2 +ffffffff81f23940 R nv50_zrop_sources +ffffffff81f23980 r __compound_literal.1 +ffffffff81f239e0 R nv50_zcull_sources +ffffffff81f23a20 r __compound_literal.0 +ffffffff81f23a60 r g84_pm +ffffffff81f23b40 r __compound_literal.11 +ffffffff81f23b60 r __compound_literal.10 +ffffffff81f23b80 r __compound_literal.9 +ffffffff81f23ba0 r __compound_literal.8 +ffffffff81f23bc0 r __compound_literal.7 +ffffffff81f23be0 r __compound_literal.6 +ffffffff81f23e40 r __compound_literal.5 +ffffffff81f24290 r __compound_literal.4 +ffffffff81f242c0 r g84_tex_sources +ffffffff81f24300 r __compound_literal.3 +ffffffff81f24340 r g84_crop_sources +ffffffff81f24380 r __compound_literal.2 +ffffffff81f243e0 r g84_prop_sources +ffffffff81f24420 r __compound_literal.1 +ffffffff81f24460 R g84_vfetch_sources +ffffffff81f244a0 r __compound_literal.0 +ffffffff81f244e0 r gt200_pm +ffffffff81f245c0 r __compound_literal.10 +ffffffff81f245e0 r __compound_literal.9 +ffffffff81f24600 r __compound_literal.8 +ffffffff81f24620 r __compound_literal.7 +ffffffff81f24640 r __compound_literal.6 +ffffffff81f24660 r __compound_literal.5 +ffffffff81f248c0 r __compound_literal.4 +ffffffff81f24d10 r __compound_literal.3 +ffffffff81f24d40 R gt200_tex_sources +ffffffff81f24d80 r __compound_literal.2 +ffffffff81f24dc0 R gt200_prop_sources +ffffffff81f24e00 r __compound_literal.1 +ffffffff81f24e40 R gt200_crop_sources +ffffffff81f24e80 r __compound_literal.0 +ffffffff81f24ee0 r gt215_pm +ffffffff81f24fc0 r __compound_literal.8 +ffffffff81f24fe0 r __compound_literal.7 +ffffffff81f25000 r __compound_literal.6 +ffffffff81f25020 r __compound_literal.5 +ffffffff81f25040 r __compound_literal.4 +ffffffff81f25060 r __compound_literal.3 +ffffffff81f252c0 r __compound_literal.2 +ffffffff81f25710 r __compound_literal.1 +ffffffff81f25740 r gt215_zcull_sources +ffffffff81f25780 r __compound_literal.0 +ffffffff81f257e0 r gf100_pm +ffffffff81f257f8 r gf100_pm_ +ffffffff81f25800 R gf100_perfctr_func +ffffffff81f25820 r gf100_pm_part +ffffffff81f25860 r __compound_literal.6 +ffffffff81f259e0 R gf100_pm_gpc +ffffffff81f25a20 r __compound_literal.5 +ffffffff81f25bc0 r gf100_pm_hub +ffffffff81f25be0 r gf100_unk400_sources +ffffffff81f25c20 r __compound_literal.4 +ffffffff81f25c60 r gf100_tex_sources +ffffffff81f25ca0 r __compound_literal.3 +ffffffff81f25d00 r gf100_l1_sources +ffffffff81f25d40 r __compound_literal.2 +ffffffff81f25d80 R gf100_pmfb_sources +ffffffff81f25dc0 r __compound_literal.1 +ffffffff81f25e40 R gf100_pbfb_sources +ffffffff81f25e80 r __compound_literal.0 +ffffffff81f25ee0 r gf108_pm +ffffffff81f25f00 r gf108_pm_part +ffffffff81f25f40 r __compound_literal.0 +ffffffff81f260e0 r gf108_pm_hub +ffffffff81f26100 r gf117_pm +ffffffff81f26120 r gf117_pm_part +ffffffff81f26160 r __compound_literal.2 +ffffffff81f262d0 r gf117_pm_hub +ffffffff81f26300 r gf117_pmfb_sources +ffffffff81f26360 r __compound_literal.1 +ffffffff81f263a0 r __compound_literal.0 +ffffffff81f26420 r gk104_pm +ffffffff81f26440 r gk104_pm_part +ffffffff81f264a0 r __compound_literal.20 +ffffffff81f264e0 r __compound_literal.19 +ffffffff81f26680 r gk104_pm_gpc +ffffffff81f266e0 r __compound_literal.18 +ffffffff81f268b0 r __compound_literal.17 +ffffffff81f268e0 r __compound_literal.16 +ffffffff81f26920 r gk104_pm_hub +ffffffff81f26a00 r __compound_literal.15 +ffffffff81f26a40 r __compound_literal.14 +ffffffff81f26aa0 r __compound_literal.13 +ffffffff81f26ae0 r __compound_literal.12 +ffffffff81f26b40 r __compound_literal.11 +ffffffff81f26b80 r __compound_literal.10 +ffffffff81f26bc0 r __compound_literal.9 +ffffffff81f26c00 r __compound_literal.8 +ffffffff81f26c40 r gk104_tex_sources +ffffffff81f26ca0 r __compound_literal.7 +ffffffff81f26ce0 r __compound_literal.6 +ffffffff81f26d20 r __compound_literal.5 +ffffffff81f26d80 r gk104_pmfb_sources +ffffffff81f26e20 r __compound_literal.4 +ffffffff81f26e60 r __compound_literal.3 +ffffffff81f26ea0 r __compound_literal.2 +ffffffff81f26ee0 r __compound_literal.1 +ffffffff81f26f20 r __compound_literal.0 +ffffffff81f26fa0 r g98_sec +ffffffff81f27060 r g98_sec_isr_error_name +ffffffff81f27100 r nvkm_sec2 +ffffffff81f27160 r nvkm_sw +ffffffff81f271c0 r nv04_sw +ffffffff81f27220 r nv04_sw_chan +ffffffff81f27230 r nv04_nvsw +ffffffff81f27240 r nv10_sw +ffffffff81f272a0 r nv10_sw_chan +ffffffff81f272b0 r nv50_sw +ffffffff81f27310 r nv50_sw_chan +ffffffff81f27320 r gf100_sw +ffffffff81f27380 r gf100_sw_chan +ffffffff81f273a0 r nvkm_sw_chan +ffffffff81f27420 r nvkm_sw_chan_event +ffffffff81f27440 r nvkm_nvsw +ffffffff81f27460 r nvkm_nvsw_ +ffffffff81f274d8 r g84_vp +ffffffff81f27520 r mems.54613 +ffffffff81f27540 r vmms.54615 +ffffffff81f27580 r mmus.54614 +ffffffff81f275a0 r nouveau_pm_ops +ffffffff81f27660 r nouveau_driver_fops +ffffffff81f27760 r nouveau_ioctls +ffffffff81f27de0 r driver_stub +ffffffff81f27fb8 r __param_str_runpm +ffffffff81f27fd0 r __param_str_modeset +ffffffff81f27fe0 r __param_str_noaccel +ffffffff81f27ff0 r __param_str_debug +ffffffff81f28000 r __param_str_config +ffffffff81f28020 R nvif_driver_nvkm +ffffffff81f280e0 r _methods.53264 +ffffffff81f28300 r __func__.53047 +ffffffff81f28320 R nv04_gart_manager +ffffffff81f28360 R nouveau_gart_manager +ffffffff81f283a0 R nouveau_vram_manager +ffffffff81f28420 r CSWTCH.123 +ffffffff81f284a0 r nouveau_connector_funcs_lvds +ffffffff81f28520 r nouveau_connector_funcs +ffffffff81f285a0 r nouveau_connector_helper_funcs +ffffffff81f285d0 r __param_str_hdmimhz +ffffffff81f285e0 r __param_str_duallink +ffffffff81f28600 r __param_str_ignorelid +ffffffff81f28620 r __param_str_tv_disable +ffffffff81f28640 r oclass.54893 +ffffffff81f28660 r nouveau_mode_config_funcs +ffffffff81f286a0 r nouveau_framebuffer_funcs +ffffffff81f286c0 r CSWTCH.852 +ffffffff81f286d0 r CSWTCH.759 +ffffffff81f28700 r CSWTCH.754 +ffffffff81f28720 r __func__.57051 +ffffffff81f28740 r __func__.57077 +ffffffff81f28760 r __func__.56462 +ffffffff81f28780 r __func__.56478 +ffffffff81f28790 r __func__.56965 +ffffffff81f287a0 r oclass.55349 +ffffffff81f287c0 r oclass.55210 +ffffffff81f287e0 r curses.55668 +ffffffff81f28820 r oclass.55338 +ffffffff81f28840 r __func__.55836 +ffffffff81f28860 r __func__.55820 +ffffffff81f28880 r __func__.55804 +ffffffff81f288a0 r __func__.55788 +ffffffff81f288c0 r __func__.55749 +ffffffff81f288e0 r __func__.55729 +ffffffff81f288f8 r __func__.55714 +ffffffff81f28910 r __func__.55855 +ffffffff81f28940 r oclass.55325 +ffffffff81f28980 r __func__.57134 +ffffffff81f289a0 r __func__.55930 +ffffffff81f289c0 r __func__.55942 +ffffffff81f289d8 r __func__.55964 +ffffffff81f289e8 r __func__.55985 +ffffffff81f28a00 r __func__.56018 +ffffffff81f28a20 r __func__.56054 +ffffffff81f28a40 r __func__.56145 +ffffffff81f28a58 r __func__.56173 +ffffffff81f28a68 r __func__.56213 +ffffffff81f28a80 r __func__.55996 +ffffffff81f28aa0 r __func__.56042 +ffffffff81f28ac0 r __func__.56096 +ffffffff81f28ae0 r __func__.57294 +ffffffff81f28b00 r __func__.57536 +ffffffff81f28b18 r __param_str_atomic +ffffffff81f28b40 r nv50_disp_func +ffffffff81f28b80 r nv50_pior_func +ffffffff81f28ba0 r nv50_pior_help +ffffffff81f28c00 r nv50_sor_func +ffffffff81f28c20 r nv50_sor_help +ffffffff81f28c80 r nv50_mstm +ffffffff81f28ca0 r nv50_mstc +ffffffff81f28d20 r nv50_mstc_help +ffffffff81f28d60 r nv50_msto +ffffffff81f28d80 r nv50_msto_help +ffffffff81f28de0 r nv50_dac_func +ffffffff81f28e00 r nv50_dac_help +ffffffff81f28e60 r nv50_head_func +ffffffff81f28f20 r nv50_head_help +ffffffff81f28fa0 r nv50_base +ffffffff81f29020 r nv50_base_format +ffffffff81f29060 r nv50_curs +ffffffff81f290d0 r nv50_curs_format +ffffffff81f290e0 r nv50_wndw +ffffffff81f29160 r nv50_wndw_helper +ffffffff81f29198 r __param_str_mst +ffffffff81f291b0 r nouveau_fbcon_helper_funcs +ffffffff81f291c0 r __param_str_fbcon_bpp +ffffffff81f291e0 r __param_str_nofbaccel +ffffffff81f292a0 r CSWTCH.111 +ffffffff81f292d0 r oclasses.52914 +ffffffff81f292e0 r oclasses.52897 +ffffffff81f292f0 r __param_str_vram_pushbuf +ffffffff81f29320 r nouveau_fence_ops_legacy +ffffffff81f29380 r nouveau_fence_ops_uevent +ffffffff81f294a0 r hwsq_signature.54432 +ffffffff81f294a8 r edid_sig.54440 +ffffffff81f294c0 r modeset_formats +ffffffff81f294e0 r nv04_crtc_helper_funcs +ffffffff81f29560 r nv04_crtc_funcs +ffffffff81f29620 r nv04_dac_funcs +ffffffff81f29640 r nv17_dac_helper_funcs +ffffffff81f296a0 r nv04_dac_helper_funcs +ffffffff81f29700 r nv04_dfp_funcs +ffffffff81f29720 r nv04_tmds_helper_funcs +ffffffff81f29780 r nv04_lvds_helper_funcs +ffffffff81f297e0 r nv04_plane_funcs +ffffffff81f29860 r nv10_plane_funcs +ffffffff81f298e0 R nv17_tv_modes +ffffffff81f2a0c0 r fparams +ffffffff81f2a4c0 R nv17_tv_norm_names +ffffffff81f2a520 r nv04_tv_helper_funcs +ffffffff81f2a580 r nv04_tv_funcs +ffffffff81f2a5a0 r nv17_tv_funcs +ffffffff81f2a5c0 r nv17_tv_slave_funcs +ffffffff81f2a620 r nv17_tv_helper_funcs +ffffffff81f2a680 r __param_str_tv_norm +ffffffff81f2a6a0 r cn_file_ops +ffffffff81f2a7a0 r device_uevent_ops +ffffffff81f2a7c0 r dev_sysfs_ops +ffffffff81f2a7d0 r __func__.20431 +ffffffff81f2a7e0 r bus_uevent_ops +ffffffff81f2a800 r bus_sysfs_ops +ffffffff81f2a810 r driver_sysfs_ops +ffffffff81f2a820 r __func__.33689 +ffffffff81f2a830 r __func__.33652 +ffffffff81f2a840 r class_sysfs_ops +ffffffff81f2a860 r __func__.38061 +ffffffff81f2a880 r platform_dev_pm_ops +ffffffff81f2a940 r platform_dev_group +ffffffff81f2a980 r cpu_root_vulnerabilities_group +ffffffff81f2a9c0 r topology_attr_group +ffffffff81f2a9f0 r __func__.17490 +ffffffff81f2aa20 r CSWTCH.139 +ffffffff81f2aae0 r pset_fwnode_ops +ffffffff81f2ab60 r cache_default_group +ffffffff81f2aba0 r pm_qos_flags_attr_group +ffffffff81f2abe0 r pm_qos_latency_tolerance_attr_group +ffffffff81f2ac20 r pm_qos_resume_latency_attr_group +ffffffff81f2ac60 r pm_runtime_attr_group +ffffffff81f2aca0 r pm_wakeup_attr_group +ffffffff81f2ace0 r pm_attr_group +ffffffff81f2ad08 r _disabled +ffffffff81f2ad18 r _enabled +ffffffff81f2ad20 r ctrl_on +ffffffff81f2ad23 r ctrl_auto +ffffffff81f2ad28 R power_group_name +ffffffff81f2ad30 r __func__.18825 +ffffffff81f2ad60 r CSWTCH.136 +ffffffff81f2ad60 r CSWTCH.227 +ffffffff81f2ad60 r CSWTCH.236 +ffffffff81f2ad60 r CSWTCH.240 +ffffffff81f2ad80 r __func__.40226 +ffffffff81f2ad90 r __func__.40136 +ffffffff81f2ada0 r __func__.39777 +ffffffff81f2adc0 r __func__.19463 +ffffffff81f2ade0 r __func__.35400 +ffffffff81f2ae00 r __param_str_path +ffffffff81f2ae20 r __param_string_path +ffffffff81f2ae40 r fw_path +ffffffff81f2b120 r __func__.38190 +ffffffff81f2b130 r __func__.38200 +ffffffff81f2b140 r __func__.38378 +ffffffff81f2b160 r loop_ctl_fops +ffffffff81f2b260 r loop_mq_ops +ffffffff81f2b2c0 r __param_str_max_part +ffffffff81f2b2d0 r __param_str_max_loop +ffffffff81f2b2e0 r lo_fops +ffffffff81f2b360 r dma_buf_fops +ffffffff81f2b460 R dma_fence_array_ops +ffffffff81f2b4b0 R reservation_seqcount_string +ffffffff81f2b4e0 R seqno_fence_ops +ffffffff81f2b540 r sync_file_fops +ffffffff81f2b640 r __param_str_use_blk_mq +ffffffff81f2b660 r __param_str_scsi_logging_level +ffffffff81f2b6c0 r __param_str_eh_deadline +ffffffff81f2bbc0 r __func__.39909 +ffffffff81f2bbe0 r __func__.39418 +ffffffff81f2bbf0 r __func__.39234 +ffffffff81f2bc20 r scsi_mq_ops +ffffffff81f2bc80 r scsi_device_types +ffffffff81f2bd30 r __func__.39089 +ffffffff81f2bd50 r __func__.39099 +ffffffff81f2bd70 r __func__.38991 +ffffffff81f2bd88 r __func__.38930 +ffffffff81f2bda0 r __func__.38805 +ffffffff81f2bdb0 r __func__.38879 +ffffffff81f2bdd0 r __param_str_inq_timeout +ffffffff81f2bde8 r __param_str_scan +ffffffff81f2be00 r __param_string_scan +ffffffff81f2be10 r __param_str_max_luns +ffffffff81f2be40 r sdev_bflags_name +ffffffff81f2bf40 r shost_states +ffffffff81f2bfc0 r sdev_states +ffffffff81f2c050 r __func__.34833 +ffffffff81f2c070 r __func__.34851 +ffffffff81f2c090 r __func__.34907 +ffffffff81f2c0b0 r __param_str_default_dev_flags +ffffffff81f2c0d0 r __param_str_dev_flags +ffffffff81f2c0f0 r __param_string_dev_flags +ffffffff81f2c380 R scsi_bus_pm_ops +ffffffff81f2c5a0 r CSWTCH.1193 +ffffffff81f2c5a8 r temp.37772 +ffffffff81f2c5b3 r cap.37292 +ffffffff81f2c5c0 r sd_fops +ffffffff81f2c640 r sd_pr_ops +ffffffff81f2c680 r sd_pm_ops +ffffffff81f2c740 r sd_disk_group +ffffffff81f2c7a8 r __func__.51501 +ffffffff81f2c7c0 r __func__.50408 +ffffffff81f2c7e0 r __func__.50299 +ffffffff81f2c7f0 r spd_str.50141 +ffffffff81f2c820 r xfer_mode_str.50133 +ffffffff81f2c8c0 R ata_dummy_port_info +ffffffff81f2c900 R ata_port_type +ffffffff81f2c940 r ata_port_pm_ops +ffffffff81f2ca00 r ata_device_blacklist +ffffffff81f2d400 r ata_timing +ffffffff81f2d5e0 r ata_xfer_tbl +ffffffff81f2d610 r ata_rw_cmds +ffffffff81f2d630 r __param_str_atapi_an +ffffffff81f2d640 r __param_str_allow_tpm +ffffffff81f2d658 r __param_str_noacpi +ffffffff81f2d670 r __param_str_ata_probe_timeout +ffffffff81f2d690 r __param_str_dma +ffffffff81f2d6a0 r __param_str_ignore_hpa +ffffffff81f2d6b8 r __param_str_fua +ffffffff81f2d6d0 r __param_str_atapi_passthru16 +ffffffff81f2d6f0 r __param_str_atapi_dmadir +ffffffff81f2d710 r __param_str_atapi_enabled +ffffffff81f2d728 r __param_str_force +ffffffff81f2d740 r __param_string_force +ffffffff81f2d760 R sata_port_ops +ffffffff81f2d8e0 R ata_base_port_ops +ffffffff81f2da50 R sata_deb_timing_long +ffffffff81f2da70 R sata_deb_timing_hotplug +ffffffff81f2da90 R sata_deb_timing_normal +ffffffff81f2f1a8 r CSWTCH.348 +ffffffff81f2f1b2 r versions.47833 +ffffffff81f2f1b8 r versions_zbc.47834 +ffffffff81f2f1c0 r pages.47841 +ffffffff81f2f1c8 r hdr.47846 +ffffffff81f2f1d0 r sat_blk_desc.47911 +ffffffff81f2f1e0 r stat_table.47610 +ffffffff81f2f200 r sense_table.47609 +ffffffff81f2f240 r ata_lpm_policy_names +ffffffff81f2f268 r def_control_mpage +ffffffff81f2f280 r def_cache_mpage +ffffffff81f2f298 r def_rw_recovery_mpage +ffffffff81f2f2c0 r dma_str.47183 +ffffffff81f2f2d8 r pio_dnxfer_sel.47129 +ffffffff81f2f2e0 r dma_dnxfer_sel.47128 +ffffffff81f2f300 r ata_eh_cmd_timeout_table +ffffffff81f2f360 r __compound_literal.5 +ffffffff81f2f363 r __compound_literal.4 +ffffffff81f2f365 r __compound_literal.3 +ffffffff81f2f367 r __compound_literal.2 +ffffffff81f2f36a r __compound_literal.1 +ffffffff81f2f36d r __compound_literal.0 +ffffffff81f2f370 r ata_eh_other_timeouts +ffffffff81f2f3a0 r ata_eh_flush_timeouts +ffffffff81f2f3c0 r ata_eh_identify_timeouts +ffffffff81f2f3e0 r ata_eh_reset_timeouts +ffffffff81f2f420 r dev_attr_trim +ffffffff81f2f440 r dev_attr_gscr +ffffffff81f2f460 r dev_attr_id +ffffffff81f2f480 r dev_attr_ering +ffffffff81f2f4a0 r dev_attr_spdn_cnt +ffffffff81f2f4c0 r dev_attr_xfer_mode +ffffffff81f2f4e0 r dev_attr_dma_mode +ffffffff81f2f500 r dev_attr_pio_mode +ffffffff81f2f520 r dev_attr_class +ffffffff81f2f540 r dev_attr_sata_spd +ffffffff81f2f560 r dev_attr_sata_spd_limit +ffffffff81f2f580 r dev_attr_hw_sata_spd_limit +ffffffff81f2f5a0 r dev_attr_port_no +ffffffff81f2f5c0 r dev_attr_idle_irq +ffffffff81f2f5e0 r dev_attr_nr_pmp_links +ffffffff81f2f600 r ata_xfer_names +ffffffff81f2f780 r ata_err_names +ffffffff81f2f840 r ata_class_names +ffffffff81f2f8f0 r __func__.46370 +ffffffff81f2f910 r __func__.46303 +ffffffff81f2f920 r __param_str_acpi_gtf_filter +ffffffff81f2f940 r sysids.48416 +ffffffff81f2fc00 r sysids.48362 +ffffffff81f2fec0 r sysids.48436 +ffffffff81f30180 r sysids.48406 +ffffffff81f305a0 r sysids.48397 +ffffffff81f30dc0 r broken_systems.48391 +ffffffff81f311e0 r ids.48412 +ffffffff81f31220 r sysids.48381 +ffffffff81f318e0 r __param_str_mobile_lpm_policy +ffffffff81f31900 r __param_str_marvell_enable +ffffffff81f31920 r ahci_pci_pm_ops +ffffffff81f319e0 r ahci_pci_tbl +ffffffff81f33e20 r ahci_port_info +ffffffff81f34170 r offset.48094 +ffffffff81f34190 r __func__.48023 +ffffffff81f341b0 r __param_str_devslp_idle_timeout +ffffffff81f341d0 r __param_str_ahci_em_messages +ffffffff81f341f0 r __param_str_ignore_sss +ffffffff81f34210 r __param_str_skip_host_reset +ffffffff81f34240 r loopback_ops +ffffffff81f34440 r loopback_ethtool_ops +ffffffff81f34600 r rfh_mq_tbl.53071 +ffffffff81f34620 r rfh_tbl.53070 +ffffffff81f34640 r fh_tbl.53118 +ffffffff81f34820 r CSWTCH.132 +ffffffff81f34840 r __param_str_disable_11ac +ffffffff81f34860 r __param_str_d0i3_timeout +ffffffff81f34880 r __param_str_fw_monitor +ffffffff81f348a0 r __param_str_power_level +ffffffff81f348c0 r __param_str_power_save +ffffffff81f348e0 r __param_str_led_mode +ffffffff81f34900 r __param_str_bt_coex_active +ffffffff81f34920 r __param_str_uapsd_disable +ffffffff81f34940 r __param_str_lar_disable +ffffffff81f34960 r __param_str_d0i3_disable +ffffffff81f34980 r __param_str_nvm_file +ffffffff81f349a0 r __param_str_antenna_coupling +ffffffff81f349c0 r __param_str_fw_restart +ffffffff81f349e0 r __param_str_amsdu_size +ffffffff81f34a00 r __param_str_11n_disable +ffffffff81f34a20 r __param_str_swcrypto +ffffffff81f34a78 r iwl_eeprom_band_7 +ffffffff81f34a83 r iwl_eeprom_band_6 +ffffffff81f34a8a r iwl_eeprom_band_5 +ffffffff81f34a90 r iwl_eeprom_band_4 +ffffffff81f34aa0 r iwl_eeprom_band_3 +ffffffff81f34ab0 r iwl_eeprom_band_2 +ffffffff81f34ac0 r iwl_eeprom_band_1 +ffffffff81f34ae0 r reserved_mac.58583 +ffffffff81f34b00 r iwl_ext_nvm_channels +ffffffff81f34b40 r iwl_nvm_channels +ffffffff81f34b80 r iwl_dev_pm_ops +ffffffff81f34c40 r iwl_hw_card_ids +ffffffff81f37b40 r __func__.65670 +ffffffff81f37b60 r zero_val.65771 +ffffffff81f37b70 r __func__.65612 +ffffffff81f37b90 r __func__.61279 +ffffffff81f37c10 r CSWTCH.400 +ffffffff81f37c20 r CSWTCH.396 +ffffffff81f37c40 r csr_tbl.54955 +ffffffff81f37ca0 r trans_ops_pcie_gen2 +ffffffff81f37de0 r trans_ops_pcie +ffffffff81f37f20 r causes_list +ffffffff81f37fd0 r __func__.48309 +ffffffff81f38000 R iwl7265d_n_cfg +ffffffff81f380c0 R iwl7265d_2n_cfg +ffffffff81f38180 R iwl7265d_2ac_cfg +ffffffff81f38240 R iwl7265_n_cfg +ffffffff81f38300 R iwl7265_2n_cfg +ffffffff81f383c0 R iwl7265_2ac_cfg +ffffffff81f38480 R iwl3168_2ac_cfg +ffffffff81f38540 R iwl3165_2ac_cfg +ffffffff81f385e8 r iwl7265_ht_params +ffffffff81f38600 r iwl7265_pwr_tx_backoffs +ffffffff81f38640 R iwl3160_n_cfg +ffffffff81f38700 R iwl3160_2n_cfg +ffffffff81f387c0 R iwl3160_2ac_cfg +ffffffff81f38880 R iwl7260_n_cfg +ffffffff81f38940 R iwl7260_2n_cfg +ffffffff81f38a00 R iwl7260_2ac_cfg_high_temp +ffffffff81f38ac0 R iwl7260_2ac_cfg +ffffffff81f38b68 r iwl7000_ht_params +ffffffff81f38b80 r iwl7000_high_temp_tt_params +ffffffff81f38bd0 r iwl7000_base_params +ffffffff81f38be0 R iwl4165_2ac_cfg +ffffffff81f38ca0 R iwl8275_2ac_cfg +ffffffff81f38d60 R iwl8265_2ac_cfg +ffffffff81f38e20 R iwl8260_2ac_cfg +ffffffff81f38ee0 R iwl8260_2n_cfg +ffffffff81f38fa0 r iwl8000_tt_params +ffffffff81f38ff0 r iwl8000_ht_params +ffffffff81f39000 r iwl8000_base_params +ffffffff81f39020 R iwl9560_2ac_cfg_shared_clk +ffffffff81f390e0 R iwl9462_2ac_cfg_shared_clk +ffffffff81f391a0 R iwl9461_2ac_cfg_shared_clk +ffffffff81f39260 R iwl9460_2ac_cfg_shared_clk +ffffffff81f39320 R iwl9560_2ac_cfg_soc +ffffffff81f393e0 R iwl9560_2ac_cfg +ffffffff81f394a0 R iwl9462_2ac_cfg_soc +ffffffff81f39560 R iwl9461_2ac_cfg_soc +ffffffff81f39620 R iwl9460_2ac_cfg_soc +ffffffff81f396e0 R iwl9460_2ac_cfg +ffffffff81f397a0 R iwl9270_2ac_cfg +ffffffff81f39860 R iwl9260_2ac_cfg +ffffffff81f39920 R iwl9160_2ac_cfg +ffffffff81f399e0 r iwl9000_tt_params +ffffffff81f39a30 r iwl9000_ht_params +ffffffff81f39a40 r iwl9000_base_params +ffffffff81f39a60 R iwl22000_2ax_cfg_qnj_hr_a0 +ffffffff81f39b20 R iwl22000_2ax_cfg_qnj_jf_b0 +ffffffff81f39be0 R iwl22000_2ax_cfg_qnj_hr_f0 +ffffffff81f39ca0 R iwl22000_2ax_cfg_hr +ffffffff81f39d60 R iwl22000_2ac_cfg_jf +ffffffff81f39e20 R iwl22000_2ac_cfg_hr_cdb +ffffffff81f39ee0 R iwl22000_2ac_cfg_hr +ffffffff81f39f88 r iwl_22000_ht_params +ffffffff81f39f90 r iwl_22000_base_params +ffffffff81f39fa0 R iwl_dump_desc_assert +ffffffff81f39fc0 r iwl_prph_dump_addr_9000 +ffffffff81f39fe0 r iwl_prph_dump_addr_comm +ffffffff81f3a2d0 r alive_cmd.74184 +ffffffff81f3a2d2 r init_complete.74213 +ffffffff81f3a2d4 r init_complete.74254 +ffffffff81f3a340 r __func__.64908 +ffffffff81f3a360 r time_event_response.79199 +ffffffff81f3a370 r __func__.64884 +ffffffff81f3a390 r mvm_ciphers.78305 +ffffffff81f3a3a0 R iwl_mvm_hw_ops +ffffffff81f3a680 r iwl_mvm_iface_combinations +ffffffff81f3a698 r iwl_mvm_limits +ffffffff81f3a6c0 r no_reclaim_cmds.74307 +ffffffff81f3a6d0 r __func__.60826 +ffffffff81f3a6f0 r iwl_mvm_fwrt_ops +ffffffff81f3a720 r iwl_mvm_groups +ffffffff81f3a800 r iwl_mvm_regulatory_and_nvm_names +ffffffff81f3a820 r iwl_mvm_prot_offload_names +ffffffff81f3a840 r iwl_mvm_data_path_names +ffffffff81f3a8a0 r iwl_mvm_phy_names +ffffffff81f3a900 r iwl_mvm_mac_conf_names +ffffffff81f3a920 r iwl_mvm_system_names +ffffffff81f3a940 r iwl_mvm_legacy_names +ffffffff81f3af00 r iwl_mvm_rx_handlers +ffffffff81f3b0c0 r __param_str_tfd_q_hang_detect +ffffffff81f3b0e0 r __param_str_power_scheme +ffffffff81f3b100 r __param_str_init_dbg +ffffffff81f3b120 r iwl_mvm_ops_mq +ffffffff81f3b1a0 r iwl_mvm_ops +ffffffff81f3b218 r CSWTCH.29 +ffffffff81f3b2d0 R iwl_mvm_ac_to_gen2_tx_fifo +ffffffff81f3b2d4 R iwl_mvm_ac_to_tx_fifo +ffffffff81f3b340 r __func__.60759 +ffffffff81f3b360 r __func__.60780 +ffffffff81f3b380 r advanced_lookup +ffffffff81f3b480 r fw_rate_idx_to_plcp +ffffffff81f3b4e0 r __func__.58655 +ffffffff81f3b4f8 r __func__.58642 +ffffffff81f3b560 r __func__.62344 +ffffffff81f3b579 r _maddr.74790 +ffffffff81f3b57f r _baddr.74725 +ffffffff81f3b590 r __func__.62370 +ffffffff81f3b5b0 r __func__.62277 +ffffffff81f3b5d0 r __func__.62357 +ffffffff81f3b5f0 r tid_to_ucode_ac +ffffffff81f3b5f8 R tid_to_mac80211_ac +ffffffff81f3b620 r sf_full_timeout +ffffffff81f3b660 r sf_full_timeout_def +ffffffff81f3b6a0 r scan_done_notif.74593 +ffffffff81f3b6a4 r before_ds_params.74274 +ffffffff81f3b6c0 r rate_to_scan_rate.74336 +ffffffff81f3b700 r scan_timing +ffffffff81f3b728 r time_event_response.74327 +ffffffff81f3b740 r CSWTCH.107 +ffffffff81f3b760 r lq_types.74113 +ffffffff81f3b7a0 r ant_name.74109 +ffffffff81f3b7e0 r ht_vht_rates.74119 +ffffffff81f3b860 r legacy_rates.74118 +ffffffff81f3b8c0 r rs_mvm_ops_drv +ffffffff81f3b930 r rs_optimal_rates_vht +ffffffff81f3b950 r rs_optimal_rates_vht_20mhz +ffffffff81f3b970 r rs_optimal_rates_ht +ffffffff81f3b980 r rs_optimal_rates_5ghz_legacy +ffffffff81f3b990 r rs_optimal_rates_24ghz_legacy +ffffffff81f3b9c0 r expected_tpt_mimo2_160MHz +ffffffff81f3ba40 r expected_tpt_mimo2_80MHz +ffffffff81f3bac0 r expected_tpt_mimo2_40MHz +ffffffff81f3bb40 r expected_tpt_mimo2_20MHz +ffffffff81f3bbc0 r expected_tpt_siso_160MHz +ffffffff81f3bc40 r expected_tpt_siso_80MHz +ffffffff81f3bcc0 r expected_tpt_siso_40MHz +ffffffff81f3bd40 r expected_tpt_siso_20MHz +ffffffff81f3bdc0 r expected_tpt_legacy +ffffffff81f3bde0 r rs_tx_columns +ffffffff81f3bfe0 r iwl_rates +ffffffff81f3c049 r ant_toggle_lookup +ffffffff81f3c050 r rs_ht_to_legacy +ffffffff81f3c060 r CSWTCH.25 +ffffffff81f3c06c r CSWTCH.19 +ffffffff81f3c0c0 r iwl_ci_mask +ffffffff81f3c240 r tcooling_ops +ffffffff81f3c280 r iwl_mvm_cdev_budgets +ffffffff81f3c300 r d3_notif.78605 +ffffffff81f3c320 r usb_device_pm_ops +ffffffff81f3c3e0 r __param_str_autosuspend +ffffffff81f3c3f8 r __param_str_nousb +ffffffff81f3c498 r __func__.35194 +ffffffff81f3c4b0 r __func__.35960 +ffffffff81f3c4d0 r __func__.36061 +ffffffff81f3c4f0 r __func__.35082 +ffffffff81f3c520 r hub_id_table +ffffffff81f3c5a0 r usb3_lpm_names +ffffffff81f3c5c0 r __param_str_use_both_schemes +ffffffff81f3c5e0 r __param_str_old_scheme_first +ffffffff81f3c600 r __param_str_initial_descriptor_timeout +ffffffff81f3c630 r __param_str_blinkenlights +ffffffff81f3c660 r langids.39309 +ffffffff81f3c680 r usb_bus_attr_group +ffffffff81f3c6b0 r __param_str_authorized_default +ffffffff81f3c6d0 r ss_rh_config_descriptor +ffffffff81f3c6f0 r hs_rh_config_descriptor +ffffffff81f3c710 r fs_rh_config_descriptor +ffffffff81f3c730 r usb11_rh_dev_descriptor +ffffffff81f3c750 r usb2_rh_dev_descriptor +ffffffff81f3c770 r usb25_rh_dev_descriptor +ffffffff81f3c790 r usb3_rh_dev_descriptor +ffffffff81f3c7b0 r usb31_rh_dev_descriptor +ffffffff81f3c810 r pipetypes +ffffffff81f3c820 r __func__.41506 +ffffffff81f3c840 r __func__.41403 +ffffffff81f3c860 r __func__.41386 +ffffffff81f3c878 r __func__.41191 +ffffffff81f3c888 r __func__.41134 +ffffffff81f3c8a0 r __func__.32986 +ffffffff81f3c8c0 r __func__.33029 +ffffffff81f3c940 r bos_desc_len +ffffffff81f3ca40 r super_speed_maxpacket_maxes +ffffffff81f3ca48 r high_speed_maxpacket_maxes +ffffffff81f3ca50 r full_speed_maxpacket_maxes +ffffffff81f3ca58 r low_speed_maxpacket_maxes +ffffffff81f3ca60 r usb_fops +ffffffff81f3cb60 r pool_max +ffffffff81f3cb80 r CSWTCH.62 +ffffffff81f3cbb8 r auto_string +ffffffff81f3cbbd r on_string +ffffffff81f3cbc0 r CSWTCH.86 +ffffffff81f3cbe0 r dirs.40610 +ffffffff81f3cc00 r types.40609 +ffffffff81f3cc20 r __func__.40794 +ffffffff81f3cc30 r __func__.41301 +ffffffff81f3cc40 R usbdev_file_operations +ffffffff81f3cd40 r usbdev_vm_ops +ffffffff81f3cda0 r __param_str_usbfs_memory_mb +ffffffff81f3cdc0 r __param_str_usbfs_snoop_max +ffffffff81f3cde0 r __param_str_usbfs_snoop +ffffffff81f3ce00 r usb_amd_resume_quirk_list +ffffffff81f3cee0 r usb_interface_quirk_list +ffffffff81f3cf20 r usb_quirk_list +ffffffff81f3d860 r CSWTCH.45 +ffffffff81f3d8a0 R usbfs_devices_fops +ffffffff81f3d9a0 r clas_info +ffffffff81f3dac0 r format_endpt +ffffffff81f3db00 r format_iface +ffffffff81f3db60 r format_iad +ffffffff81f3dba0 r format_config +ffffffff81f3dbe0 r format_device2 +ffffffff81f3dc20 r format_device1 +ffffffff81f3dc80 r format_bandwidth +ffffffff81f3dcc0 r format_string_serialnumber +ffffffff81f3dce0 r format_string_product +ffffffff81f3dd00 r format_string_manufacturer +ffffffff81f3dd20 r format_topo +ffffffff81f3dd80 r CSWTCH.107 +ffffffff81f3dda0 r usb_port_pm_ops +ffffffff81f3de60 r __func__.39675 +ffffffff81f3de78 r __func__.39646 +ffffffff81f3dea0 R usb_hcd_pci_pm_ops +ffffffff81f3df60 r __func__.37934 +ffffffff81f3df80 r ehci_dmi_nohandoff_table +ffffffff81f3e718 r smask_out.39013 +ffffffff81f3e720 r max_tt_usecs +ffffffff81f3e740 r event_handlers +ffffffff81f3e7a0 r event_delays_ns +ffffffff81f3e7d0 r __param_str_ignore_oc +ffffffff81f3e7e8 r __param_str_park +ffffffff81f3e800 r __param_str_log2_irq_thresh +ffffffff81f3e820 r hcd_name +ffffffff81f3e840 r pci_ids +ffffffff81f3e8a0 r bypass_pci_id_table +ffffffff81f3e920 r hcd_name +ffffffff81f3ed60 r __func__.39755 +ffffffff81f3ed70 r __func__.39895 +ffffffff81f3ed90 r __func__.40353 +ffffffff81f3edb0 r __func__.40396 +ffffffff81f3edd0 r __func__.39978 +ffffffff81f3edf0 r __func__.39963 +ffffffff81f3ee10 r __func__.40231 +ffffffff81f3ee30 r __func__.39987 +ffffffff81f3ee50 r __func__.40512 +ffffffff81f3ee70 r __func__.40786 +ffffffff81f3ee90 r __func__.40634 +ffffffff81f3eeb0 r __func__.40183 +ffffffff81f3eed0 r __func__.40210 +ffffffff81f3eef0 r __func__.40555 +ffffffff81f3ef10 r __func__.40275 +ffffffff81f3ef30 r __func__.39814 +ffffffff81f3ef40 r xhci_besl_encoding +ffffffff81f3ef80 r __param_str_quirks +ffffffff81f3ef90 r __param_str_link_quirk +ffffffff81f3f630 r __func__.37354 +ffffffff81f3f640 r __func__.37216 +ffffffff81f3f8a0 r CSWTCH.2 +ffffffff81f3f8c0 r intel_dsm_guid.43741 +ffffffff81f3f8e0 r pci_ids +ffffffff81f3f920 r hcd_name +ffffffff81f3f930 r __func__.38497 +ffffffff81f3f950 r record_not_found.37927 +ffffffff81f3fa70 r msgs.40119 +ffffffff81f3fa90 r __param_str_quirks +ffffffff81f3fab0 r __param_string_quirks +ffffffff81f3fac0 r __param_str_delay_use +ffffffff81f3fae0 r __param_str_swi_tru_install +ffffffff81f3fb00 r rezero_msg.36995 +ffffffff81f3fb20 r inquiry_msg.37002 +ffffffff81f3fb40 r __param_str_option_zero_cd +ffffffff81f3fb60 r names.29752 +ffffffff81f3fbc0 r names.29730 +ffffffff81f3fc40 r usb_dr_modes +ffffffff81f3fc60 r speed_names +ffffffff81f3fe20 r input_dev_type +ffffffff81f3fe60 r input_dev_pm_ops +ffffffff81f3ff20 r input_dev_caps_attr_group +ffffffff81f3ff60 r input_dev_id_attr_group +ffffffff81f3ffa0 r input_dev_attr_group +ffffffff81f3ffe0 r input_handlers_fileops +ffffffff81f400e0 r input_handlers_seq_ops +ffffffff81f40100 r input_devices_fileops +ffffffff81f40200 r input_devices_seq_ops +ffffffff81f402e0 r counts.29259 +ffffffff81f403e0 r evdev_ids +ffffffff81f40580 r evdev_fops +ffffffff81f40680 r rtc_ydays +ffffffff81f406b8 r rtc_days_in_month +ffffffff81f406e0 r rtc_dev_fops +ffffffff81f407e0 r rtc_proc_fops +ffffffff81f408e0 r rtc_ids +ffffffff81f40920 r cmos_pm_ops +ffffffff81f409e0 r cmos_rtc_ops +ffffffff81f40a40 r driver_name +ffffffff81f40a60 r __func__.34101 +ffffffff81f40a80 r i2c_host_notify_irq_ops +ffffffff81f40ad0 r i2c_adapter_lock_ops +ffffffff81f40b00 r i2c_adapter_group +ffffffff81f40b40 r dummy_id +ffffffff81f40b80 r i2c_dev_group +ffffffff81f40c40 r i2c_acpi_ignored_device_ids +ffffffff81f40c80 r smbalert_ids +ffffffff81f40cc0 r i2c_bit_quirk_no_clk_stretch +ffffffff81f40ce0 R i2c_bit_algo +ffffffff81f40d00 r __param_str_bit_test +ffffffff81f40d80 r i801_pm_ops +ffffffff81f40e40 r tco_platform_data +ffffffff81f40e80 r dmi_devices +ffffffff81f40ee0 r i801_ids +ffffffff81f414c0 r smbus_algorithm +ffffffff81f414e0 r __param_str_disable_features +ffffffff81f41500 r i801_feature_names +ffffffff81f41540 r __func__.21765 +ffffffff81f41560 r __func__.21665 +ffffffff81f41580 r psy_tcd_ops +ffffffff81f417a0 r power_supply_scope_text +ffffffff81f417c0 r power_supply_capacity_level_text +ffffffff81f41800 r power_supply_technology_text +ffffffff81f41840 r power_supply_health_text +ffffffff81f418a0 r power_supply_charge_type_text +ffffffff81f418c0 r power_supply_status_text +ffffffff81f41900 r power_supply_type_text +ffffffff81f41960 r thermal_event_mcgrps +ffffffff81f41980 r cooling_device_attr_group +ffffffff81f419c0 r intel_pch_pm_ops +ffffffff81f41a80 r intel_pch_thermal_id +ffffffff81f41b80 r board_info +ffffffff81f41bc0 r pch_dev_ops_wpt +ffffffff81f41be0 r h4p +ffffffff81f41c40 r h4_recv_pkts +ffffffff81f41c80 r alts.58503 +ffffffff81f41c90 r __param_str_reset +ffffffff81f41ca0 r __param_str_enable_autosuspend +ffffffff81f41cc0 r __param_str_force_scofix +ffffffff81f41ce0 r __param_str_disable_scofix +ffffffff81f41d00 r qca_devices_table +ffffffff81f41d40 r btusb_needs_reset_resume_table +ffffffff81f42000 r blacklist_table +ffffffff81f42fc0 r btusb_table +ffffffff81f433e0 r param.54527 +ffffffff81f43400 r regmap_ibt_cfg +ffffffff81f43500 r __func__.35942 +ffffffff81f43520 R edac_mem_types +ffffffff81f435c0 r __param_str_edac_report +ffffffff81f435e0 r edac_report_ops +ffffffff81f43600 r __func__.35131 +ffffffff81f43620 r mc_attr_type +ffffffff81f43660 r mci_attr_type +ffffffff81f436a0 r mci_attr_grp +ffffffff81f436e0 r dimm_attr_type +ffffffff81f43720 r dimm_attr_grp +ffffffff81f43760 r edac_caps +ffffffff81f437c0 r dev_types +ffffffff81f43800 r mem_types +ffffffff81f438a0 r __param_str_edac_mc_poll_msec +ffffffff81f438c0 r __param_ops_edac_mc_poll_msec +ffffffff81f438e0 r __param_str_edac_mc_log_ce +ffffffff81f43900 r __param_str_edac_mc_log_ue +ffffffff81f43920 r __param_str_edac_mc_panic_on_ue +ffffffff81f43940 r device_block_ops +ffffffff81f43950 r device_instance_ops +ffffffff81f43960 r device_ctl_info_ops +ffffffff81f43970 r __func__.35092 +ffffffff81f43990 r __param_str_edac_pci_panic_on_pe +ffffffff81f439b0 r __param_str_check_pci_errors +ffffffff81f439d0 r edac_pci_sysfs_ops +ffffffff81f439e0 r pci_instance_ops +ffffffff81f43a40 r CSWTCH.311 +ffffffff81f43a70 r CSWTCH.259 +ffffffff81f43a90 r __param_str_edac_op_state +ffffffff81f43ac0 r sbridge_cpuids +ffffffff81f43b40 r knl_tad_dram_hi +ffffffff81f43b60 r knl_tad_dram_offset_lo +ffffffff81f43b80 r knl_tad_dram_limit_lo +ffffffff81f43ba0 r pci_dev_descr_broadwell_table +ffffffff81f43be0 r pci_dev_descr_broadwell +ffffffff81f43cc0 r pci_dev_descr_knl_table +ffffffff81f43d00 r pci_dev_descr_knl +ffffffff81f43f60 r pci_dev_descr_haswell_table +ffffffff81f43fa0 r pci_dev_descr_haswell +ffffffff81f440a0 r pci_dev_descr_ibridge_table +ffffffff81f440e0 r pci_dev_descr_ibridge +ffffffff81f441e0 r pci_dev_descr_sbridge_table +ffffffff81f44220 r pci_dev_descr_sbridge +ffffffff81f442c0 r rir_offset +ffffffff81f44360 r rir_way_limit +ffffffff81f44380 r tad_ch_nilv_offset +ffffffff81f443b0 r mtr_regs +ffffffff81f443c0 r tad_dram_rule +ffffffff81f443f0 r ibridge_interleave_pkg +ffffffff81f44400 r sbridge_interleave_pkg +ffffffff81f44420 r knl_interleave_list +ffffffff81f44480 r ibridge_interleave_list +ffffffff81f444e0 r sbridge_interleave_list +ffffffff81f44520 r knl_dram_rule +ffffffff81f44580 r ibridge_dram_rule +ffffffff81f445e0 r sbridge_dram_rule +ffffffff81f44610 r __func__.41126 +ffffffff81f44630 r __func__.41105 +ffffffff81f44648 r __func__.41165 +ffffffff81f44660 r __func__.41210 +ffffffff81f44670 r __func__.40580 +ffffffff81f44680 r __func__.41528 +ffffffff81f446a0 r __func__.41499 +ffffffff81f446c0 r __func__.41520 +ffffffff81f446e0 r __func__.41360 +ffffffff81f446f8 r __func__.41371 +ffffffff81f44708 r __func__.41299 +ffffffff81f44720 r __func__.41277 +ffffffff81f44730 r __func__.41269 +ffffffff81f44750 r __func__.18408 +ffffffff81f44770 r __func__.40454 +ffffffff81f44790 r __func__.40441 +ffffffff81f447a8 r __param_str_off +ffffffff81f447c0 r sysfs_ops +ffffffff81f447e0 r silvermont_freq_table.44709 +ffffffff81f44800 r airmont_freq_table.44717 +ffffffff81f44840 r intel_pstate_cpu_ee_disable_ids +ffffffff81f44860 r intel_pstate_cpu_ids +ffffffff81f449c0 r knl_funcs +ffffffff81f44a00 r airmont_funcs +ffffffff81f44a40 r silvermont_funcs +ffffffff81f44a80 r intel_pstate_attr_group +ffffffff81f44ab0 r epp_values +ffffffff81f44ac0 r energy_perf_strings +ffffffff81f44af0 r __param_str_off +ffffffff81f44b00 r cpuidle_state_sysfs_ops +ffffffff81f44b10 r cpuidle_sysfs_ops +ffffffff81f44b20 r fields.29723 +ffffffff81f44b2c r dmi_empty_string +ffffffff81f44b40 r fields.20473 +ffffffff81f44c20 r efi_subsys_attr_group +ffffffff81f44c60 r efi_tables +ffffffff81f44ce0 r variable_validate +ffffffff81f44f00 r esrt_attr_group +ffffffff81f44f30 r esre_attr_ops +ffffffff81f44f40 r __func__.35824 +ffffffff81f45000 r CSWTCH.250 +ffffffff81f450c0 r dispatch_type.30184 +ffffffff81f450e0 r types.30472 +ffffffff81f45128 r __func__.30288 +ffffffff81f45140 r dispatch_type.30223 +ffffffff81f45160 r hid_dev_group +ffffffff81f451a0 r hid_drv_group +ffffffff81f451e0 r dev_attr_country +ffffffff81f45200 r hid_hiddev_list +ffffffff81f45250 r hid_report_names +ffffffff81f45270 r __param_str_ignore_special_drivers +ffffffff81f45290 r __param_str_debug +ffffffff81f47720 r hid_hat_to_axis +ffffffff81f47780 r hid_keyboard +ffffffff81f47880 r hid_mouse_ignore_list +ffffffff81f47dc0 r hid_ignore_list +ffffffff81f48c30 r hid_have_special_driver +ffffffff81f48c60 r hid_quirks +ffffffff81f499c0 r uhid_fops +ffffffff81f49ac0 r hid_table +ffffffff81f49b00 r hid_usb_ids +ffffffff81f49b40 r __param_str_quirks +ffffffff81f49b60 r __param_arr_quirks +ffffffff81f49b80 r __param_str_ignoreled +ffffffff81f49b98 r __param_str_jspoll +ffffffff81f49bb0 r __param_str_mousepoll +ffffffff81f49be0 r hiddev_fops +ffffffff81f49ce0 r wmi_fops +ffffffff81f49de0 r wmi_method_group +ffffffff81f49e20 r wmi_data_group +ffffffff81f49e60 r wmi_event_group +ffffffff81f49ea0 r wmi_group +ffffffff81f49ee0 r wmi_device_ids +ffffffff81f49f40 r __param_str_debug_dump_wdg +ffffffff81f49f60 r __param_str_debug_event +ffffffff81f49f80 r smartconnect_ids +ffffffff81f49fc0 r pmc_pci_ids +ffffffff81f4a020 r cht_data +ffffffff81f4a030 r byt_data +ffffffff81f4a040 r cht_reg_map +ffffffff81f4a080 r byt_reg_map +ffffffff81f4a0c0 r cht_pss_map +ffffffff81f4a200 r byt_pss_map +ffffffff81f4a340 r d3_sts_0_map +ffffffff81f4a560 r cht_clks +ffffffff81f4a5a0 r byt_clks +ffffffff81f4a5f0 r __func__.22692 +ffffffff81f4a620 r pcc_chan_ops +ffffffff81f4a648 r trace_count +ffffffff81f4a660 r snd_fops +ffffffff81f4a760 r __param_str_cards_limit +ffffffff81f4a770 r __param_str_major +ffffffff81f4a780 r __func__.26345 +ffffffff81f4a7a0 r card_dev_attr_group +ffffffff81f4a7c8 r __param_str_slots +ffffffff81f4a7e0 r __param_arr_slots +ffffffff81f4a800 r snd_shutdown_f_ops +ffffffff81f4a900 r value_sizes.32962 +ffffffff81f4a920 r max_value_counts.32963 +ffffffff81f4a940 r snd_ctl_f_ops +ffffffff81f4aa40 r jack_detect_kctl +ffffffff81f4aa90 r jack_switch_types +ffffffff81f4aac0 r snd_hwdep_f_ops +ffffffff81f4abc0 r snd_timer_f_ops +ffffffff81f4acc0 r snd_timer_system +ffffffff81f4ad20 r __param_str_timer_tstamp_monotonic +ffffffff81f4ad50 r __param_str_timer_limit +ffffffff81f4ad80 r strs.31314 +ffffffff81f4ada0 r pcm_dev_attr_group +ffffffff81f4ade0 r snd_pcm_format_names +ffffffff81f4afe0 r vars.35242 +ffffffff81f4b020 R snd_pcm_f_ops +ffffffff81f4b220 r snd_pcm_vm_ops_data_fault +ffffffff81f4b280 r snd_pcm_vm_ops_data +ffffffff81f4b2e0 r snd_pcm_vm_ops_control +ffffffff81f4b340 r snd_pcm_vm_ops_status +ffffffff81f4b3a0 R snd_pcm_known_rates +ffffffff81f4b3c0 r rates +ffffffff81f4b400 r snd_pcm_action_drain_init +ffffffff81f4b420 r snd_pcm_action_prepare +ffffffff81f4b440 r snd_pcm_action_reset +ffffffff81f4b460 r snd_pcm_action_resume +ffffffff81f4b480 r snd_pcm_action_suspend +ffffffff81f4b4a0 r snd_pcm_action_pause +ffffffff81f4b4c0 r snd_pcm_action_stop +ffffffff81f4b4e0 r snd_pcm_action_start +ffffffff81f4b550 r CSWTCH.278 +ffffffff81f4b570 r __func__.33043 +ffffffff81f4b5a0 R snd_pcm_alt_chmaps +ffffffff81f4b600 R snd_pcm_std_chmaps +ffffffff81f4b660 r __param_str_maximum_substreams +ffffffff81f4b680 r __param_str_preallocate_dma +ffffffff81f4b6a0 r info_flags.28824 +ffffffff81f4b6c0 r snd_rawmidi_f_ops +ffffffff81f4b7c0 r bits.36825 +ffffffff81f4b7e0 r texts_default.36660 +ffffffff81f4b800 r audio_idx.36531 +ffffffff81f4b850 r texts.36121 +ffffffff81f4b880 R snd_pcm_2_1_chmaps +ffffffff81f4b8c0 R hda_codec_driver_pm +ffffffff81f4b980 r spdif_share_sw +ffffffff81f4b9e0 r vmaster_mute_mode +ffffffff81f4ba40 r CSWTCH.108 +ffffffff81f4bba0 r channel_sfx.34514 +ffffffff81f4bbc0 r hda_dev_attr_group +ffffffff81f4bc00 r __func__.36349 +ffffffff81f4bc20 r __func__.36366 +ffffffff81f4bc40 r __func__.36217 +ffffffff81f4bc60 r bus_core_ops +ffffffff81f4bc80 r azx_pcm_ops +ffffffff81f4bd00 r CSWTCH.232 +ffffffff81f4bd20 r snd_hda_id_hdmi +ffffffff81f4c9a0 r hw_constraints_2_8_channels +ffffffff81f4c9b0 r hw_constraints_2_6_8_channels +ffffffff81f4c9c0 r channels_2_8 +ffffffff81f4c9c8 r channels_2_6_8 +ffffffff81f4c9e0 r nvhdmi_basic_init_7x_8ch +ffffffff81f4ca40 r nvhdmi_basic_init_7x_2ch +ffffffff81f4ca68 r nvhdmi_con_nids_7x +ffffffff81f4ca80 r eld_bytes_ctl +ffffffff81f4cae0 r __param_str_static_hdmi_pcm +ffffffff81f4cba0 r alsa_rates.34699 +ffffffff81f4cbe0 r cea_sampling_frequencies +ffffffff81f4cc00 r cea_sample_sizes +ffffffff81f4cc20 r callbacks.41735 +ffffffff81f4cc60 r azx_ids +ffffffff81f4d8a0 r azx_max_codecs +ffffffff81f4d900 r pci_hda_ops +ffffffff81f4d940 r pci_hda_io_ops +ffffffff81f4d980 r azx_pm +ffffffff81f4da40 r driver_short_names +ffffffff81f4dad0 r __param_str_snoop +ffffffff81f4db00 r __param_str_align_buffer_size +ffffffff81f4db20 r __param_str_power_save_controller +ffffffff81f4db50 r __param_str_pm_blacklist +ffffffff81f4db70 r __param_str_power_save +ffffffff81f4dba0 r param_ops_xint +ffffffff81f4dbc0 r __param_str_enable_msi +ffffffff81f4dbe0 r __param_str_single_cmd +ffffffff81f4dc00 r __param_str_jackpoll_ms +ffffffff81f4dc20 r __param_arr_jackpoll_ms +ffffffff81f4dc40 r __param_str_probe_only +ffffffff81f4dc60 r __param_arr_probe_only +ffffffff81f4dc80 r __param_str_probe_mask +ffffffff81f4dca0 r __param_arr_probe_mask +ffffffff81f4dcc0 r __param_str_bdl_pos_adj +ffffffff81f4dce0 r __param_arr_bdl_pos_adj +ffffffff81f4dd00 r __param_str_position_fix +ffffffff81f4dd20 r __param_arr_position_fix +ffffffff81f4dd40 r __param_str_model +ffffffff81f4dd60 r __param_arr_model +ffffffff81f4dd80 r __param_str_enable +ffffffff81f4dda0 r __param_arr_enable +ffffffff81f4ddc0 r __param_str_id +ffffffff81f4dde0 r __param_arr_id +ffffffff81f4de00 r __param_str_index +ffffffff81f4de20 r __param_arr_index +ffffffff81f4de80 r usb_audio_ids +ffffffff81f4ff00 r __compound_literal.410 +ffffffff81f4ff20 r __compound_literal.409 +ffffffff81f4ff80 r __compound_literal.408 +ffffffff81f50000 r __compound_literal.406 +ffffffff81f50020 r __compound_literal.405 +ffffffff81f50080 r __compound_literal.404 +ffffffff81f50100 r __compound_literal.402 +ffffffff81f50120 r __compound_literal.401 +ffffffff81f50140 r __compound_literal.400 +ffffffff81f50160 r __compound_literal.399 +ffffffff81f501e0 r __compound_literal.398 +ffffffff81f50200 r __compound_literal.397 +ffffffff81f50260 r __compound_literal.396 +ffffffff81f502e0 r __compound_literal.394 +ffffffff81f50300 r __compound_literal.393 +ffffffff81f50360 r __compound_literal.392 +ffffffff81f503e0 r __compound_literal.391 +ffffffff81f50460 r __compound_literal.390 +ffffffff81f50480 r __compound_literal.389 +ffffffff81f504e0 r __compound_literal.388 +ffffffff81f50560 r __compound_literal.386 +ffffffff81f50580 r __compound_literal.385 +ffffffff81f50680 r __compound_literal.384 +ffffffff81f506a0 r __compound_literal.383 +ffffffff81f50720 r __compound_literal.381 +ffffffff81f507a0 r __compound_literal.379 +ffffffff81f507c0 r __compound_literal.378 +ffffffff81f50840 r __compound_literal.377 +ffffffff81f508c0 r __compound_literal.375 +ffffffff81f50940 r __compound_literal.373 +ffffffff81f50960 r __compound_literal.372 +ffffffff81f50980 r __compound_literal.371 +ffffffff81f509a0 r __compound_literal.370 +ffffffff81f509c0 r __compound_literal.369 +ffffffff81f509e0 r __compound_literal.368 +ffffffff81f50a00 r __compound_literal.367 +ffffffff81f50a20 r __compound_literal.366 +ffffffff81f50a40 r __compound_literal.365 +ffffffff81f50a60 r __compound_literal.364 +ffffffff81f50a80 r __compound_literal.363 +ffffffff81f50aa0 r __compound_literal.362 +ffffffff81f50ac0 r __compound_literal.361 +ffffffff81f50ae0 r __compound_literal.360 +ffffffff81f50b00 r __compound_literal.359 +ffffffff81f50b20 r __compound_literal.358 +ffffffff81f50b40 r __compound_literal.357 +ffffffff81f50b60 r __compound_literal.356 +ffffffff81f50b80 r __compound_literal.355 +ffffffff81f50ba0 r __compound_literal.354 +ffffffff81f50bc0 r __compound_literal.353 +ffffffff81f50be0 r __compound_literal.352 +ffffffff81f50c00 r __compound_literal.351 +ffffffff81f50c20 r __compound_literal.350 +ffffffff81f50c80 r __compound_literal.349 +ffffffff81f50ca0 r __compound_literal.348 +ffffffff81f50cc0 r __compound_literal.347 +ffffffff81f50ce0 r __compound_literal.346 +ffffffff81f50d40 r __compound_literal.345 +ffffffff81f50dc0 r __compound_literal.343 +ffffffff81f50de0 r __compound_literal.342 +ffffffff81f50e40 r __compound_literal.341 +ffffffff81f50ec0 r __compound_literal.339 +ffffffff81f50ee0 r __compound_literal.338 +ffffffff81f50f00 r __compound_literal.337 +ffffffff81f50f20 r __compound_literal.336 +ffffffff81f50f40 r __compound_literal.335 +ffffffff81f50f60 r __compound_literal.334 +ffffffff81f50f80 r __compound_literal.333 +ffffffff81f50fa0 r __compound_literal.332 +ffffffff81f50fc0 r __compound_literal.331 +ffffffff81f50fe0 r __compound_literal.330 +ffffffff81f51000 r __compound_literal.329 +ffffffff81f51020 r __compound_literal.328 +ffffffff81f51040 r __compound_literal.327 +ffffffff81f510e0 r __compound_literal.326 +ffffffff81f51100 r __compound_literal.325 +ffffffff81f51120 r __compound_literal.324 +ffffffff81f511c0 r __compound_literal.323 +ffffffff81f511e0 r __compound_literal.322 +ffffffff81f51200 r __compound_literal.321 +ffffffff81f51260 r __compound_literal.320 +ffffffff81f51280 r __compound_literal.319 +ffffffff81f512a0 r __compound_literal.318 +ffffffff81f512c0 r __compound_literal.317 +ffffffff81f512e0 r __compound_literal.316 +ffffffff81f51300 r __compound_literal.315 +ffffffff81f51320 r __compound_literal.314 +ffffffff81f51340 r __compound_literal.313 +ffffffff81f51360 r __compound_literal.312 +ffffffff81f51380 r __compound_literal.311 +ffffffff81f513a0 r __compound_literal.310 +ffffffff81f51400 r __compound_literal.309 +ffffffff81f51420 r __compound_literal.308 +ffffffff81f51440 r __compound_literal.307 +ffffffff81f51460 r __compound_literal.306 +ffffffff81f514e0 r __compound_literal.305 +ffffffff81f51560 r __compound_literal.303 +ffffffff81f515e0 r __compound_literal.301 +ffffffff81f51600 r __compound_literal.300 +ffffffff81f51680 r __compound_literal.299 +ffffffff81f51700 r __compound_literal.297 +ffffffff81f51780 r __compound_literal.295 +ffffffff81f517a0 r __compound_literal.294 +ffffffff81f51820 r __compound_literal.293 +ffffffff81f518a0 r __compound_literal.291 +ffffffff81f51920 r __compound_literal.289 +ffffffff81f51940 r __compound_literal.288 +ffffffff81f519c0 r __compound_literal.287 +ffffffff81f51a40 r __compound_literal.285 +ffffffff81f51ac0 r __compound_literal.283 +ffffffff81f51ae0 r __compound_literal.282 +ffffffff81f51b80 r __compound_literal.281 +ffffffff81f51ba0 r __compound_literal.280 +ffffffff81f51bc0 r __compound_literal.279 +ffffffff81f51d20 r __compound_literal.278 +ffffffff81f51d40 r __compound_literal.277 +ffffffff81f51d60 r __compound_literal.276 +ffffffff81f51d80 r __compound_literal.275 +ffffffff81f51da0 r __compound_literal.274 +ffffffff81f51dc0 r __compound_literal.273 +ffffffff81f51de0 r __compound_literal.272 +ffffffff81f51f40 r __compound_literal.271 +ffffffff81f51f60 r __compound_literal.270 +ffffffff81f51f80 r __compound_literal.269 +ffffffff81f51fa0 r __compound_literal.268 +ffffffff81f51fc0 r __compound_literal.267 +ffffffff81f51fe0 r __compound_literal.266 +ffffffff81f52000 r __compound_literal.265 +ffffffff81f52020 r __compound_literal.264 +ffffffff81f52040 r __compound_literal.263 +ffffffff81f52060 r __compound_literal.262 +ffffffff81f52080 r __compound_literal.261 +ffffffff81f520a0 r __compound_literal.260 +ffffffff81f520c0 r __compound_literal.259 +ffffffff81f520e0 r __compound_literal.258 +ffffffff81f52100 r __compound_literal.257 +ffffffff81f52120 r __compound_literal.256 +ffffffff81f52140 r __compound_literal.255 +ffffffff81f52160 r __compound_literal.254 +ffffffff81f52180 r __compound_literal.253 +ffffffff81f521a0 r __compound_literal.252 +ffffffff81f52220 r __compound_literal.251 +ffffffff81f52240 r __compound_literal.250 +ffffffff81f52260 r __compound_literal.249 +ffffffff81f52320 r __compound_literal.248 +ffffffff81f52340 r __compound_literal.247 +ffffffff81f523c0 r __compound_literal.245 +ffffffff81f52440 r __compound_literal.243 +ffffffff81f52460 r __compound_literal.242 +ffffffff81f52520 r __compound_literal.241 +ffffffff81f52540 r __compound_literal.240 +ffffffff81f525c0 r __compound_literal.238 +ffffffff81f52640 r __compound_literal.236 +ffffffff81f52660 r __compound_literal.235 +ffffffff81f526e0 r __compound_literal.234 +ffffffff81f52700 r __compound_literal.233 +ffffffff81f52720 r __compound_literal.232 +ffffffff81f52740 r __compound_literal.231 +ffffffff81f52760 r __compound_literal.230 +ffffffff81f527e0 r __compound_literal.229 +ffffffff81f52800 r __compound_literal.228 +ffffffff81f52880 r __compound_literal.227 +ffffffff81f528a0 r __compound_literal.226 +ffffffff81f528c0 r __compound_literal.225 +ffffffff81f52940 r __compound_literal.224 +ffffffff81f52960 r __compound_literal.223 +ffffffff81f52980 r __compound_literal.222 +ffffffff81f529a0 r __compound_literal.221 +ffffffff81f529c0 r __compound_literal.220 +ffffffff81f529e0 r __compound_literal.219 +ffffffff81f52a00 r __compound_literal.218 +ffffffff81f52a20 r __compound_literal.217 +ffffffff81f52a40 r __compound_literal.216 +ffffffff81f52a60 r __compound_literal.215 +ffffffff81f52ae0 r __compound_literal.214 +ffffffff81f52b00 r __compound_literal.213 +ffffffff81f52b20 r __compound_literal.212 +ffffffff81f52b40 r __compound_literal.211 +ffffffff81f52b60 r __compound_literal.210 +ffffffff81f52b80 r __compound_literal.209 +ffffffff81f52be0 r __compound_literal.208 +ffffffff81f52c00 r __compound_literal.207 +ffffffff81f52c20 r __compound_literal.206 +ffffffff81f52c40 r __compound_literal.205 +ffffffff81f52ca0 r __compound_literal.204 +ffffffff81f52cc0 r __compound_literal.203 +ffffffff81f52ce0 r __compound_literal.202 +ffffffff81f52d00 r __compound_literal.201 +ffffffff81f52d60 r __compound_literal.200 +ffffffff81f52d80 r __compound_literal.199 +ffffffff81f52da0 r __compound_literal.198 +ffffffff81f52dc0 r __compound_literal.197 +ffffffff81f52e20 r __compound_literal.196 +ffffffff81f52e40 r __compound_literal.195 +ffffffff81f52e60 r __compound_literal.194 +ffffffff81f52e80 r __compound_literal.193 +ffffffff81f52ea0 r __compound_literal.192 +ffffffff81f52ec0 r __compound_literal.191 +ffffffff81f52f40 r __compound_literal.190 +ffffffff81f52f60 r __compound_literal.189 +ffffffff81f52f80 r __compound_literal.188 +ffffffff81f52fa0 r __compound_literal.187 +ffffffff81f52fc0 r __compound_literal.186 +ffffffff81f52fe0 r __compound_literal.185 +ffffffff81f53000 r __compound_literal.184 +ffffffff81f53020 r __compound_literal.183 +ffffffff81f53040 r __compound_literal.182 +ffffffff81f53060 r __compound_literal.181 +ffffffff81f530e0 r __compound_literal.180 +ffffffff81f53100 r __compound_literal.179 +ffffffff81f53120 r __compound_literal.178 +ffffffff81f53140 r __compound_literal.177 +ffffffff81f53160 r __compound_literal.176 +ffffffff81f53180 r __compound_literal.175 +ffffffff81f53220 r __compound_literal.174 +ffffffff81f53240 r __compound_literal.173 +ffffffff81f532c0 r __compound_literal.172 +ffffffff81f53340 r __compound_literal.171 +ffffffff81f53360 r __compound_literal.170 +ffffffff81f53380 r __compound_literal.169 +ffffffff81f533a0 r __compound_literal.168 +ffffffff81f533c0 r __compound_literal.167 +ffffffff81f533e0 r __compound_literal.166 +ffffffff81f53460 r __compound_literal.165 +ffffffff81f53480 r __compound_literal.164 +ffffffff81f534a0 r __compound_literal.163 +ffffffff81f53520 r __compound_literal.162 +ffffffff81f53540 r __compound_literal.161 +ffffffff81f53560 r __compound_literal.160 +ffffffff81f53580 r __compound_literal.159 +ffffffff81f535a0 r __compound_literal.158 +ffffffff81f535c0 r __compound_literal.157 +ffffffff81f535e0 r __compound_literal.156 +ffffffff81f53640 r __compound_literal.155 +ffffffff81f53660 r __compound_literal.154 +ffffffff81f536e0 r __compound_literal.153 +ffffffff81f53700 r __compound_literal.152 +ffffffff81f53720 r __compound_literal.151 +ffffffff81f537a0 r __compound_literal.150 +ffffffff81f537c0 r __compound_literal.149 +ffffffff81f537e0 r __compound_literal.148 +ffffffff81f53860 r __compound_literal.147 +ffffffff81f53880 r __compound_literal.146 +ffffffff81f538a0 r __compound_literal.145 +ffffffff81f53920 r __compound_literal.144 +ffffffff81f53940 r __compound_literal.143 +ffffffff81f53960 r __compound_literal.142 +ffffffff81f539e0 r __compound_literal.141 +ffffffff81f53a00 r __compound_literal.140 +ffffffff81f53a20 r __compound_literal.139 +ffffffff81f53aa0 r __compound_literal.138 +ffffffff81f53ac0 r __compound_literal.137 +ffffffff81f53ae0 r __compound_literal.136 +ffffffff81f53b60 r __compound_literal.135 +ffffffff81f53b80 r __compound_literal.134 +ffffffff81f53ba0 r __compound_literal.133 +ffffffff81f53c20 r __compound_literal.132 +ffffffff81f53c40 r __compound_literal.131 +ffffffff81f53c60 r __compound_literal.130 +ffffffff81f53ce0 r __compound_literal.129 +ffffffff81f53d00 r __compound_literal.128 +ffffffff81f53d20 r __compound_literal.127 +ffffffff81f53da0 r __compound_literal.126 +ffffffff81f53dc0 r __compound_literal.125 +ffffffff81f53e40 r __compound_literal.124 +ffffffff81f53ec0 r __compound_literal.123 +ffffffff81f53ee0 r __compound_literal.122 +ffffffff81f53f00 r __compound_literal.121 +ffffffff81f53f20 r __compound_literal.120 +ffffffff81f53f40 r __compound_literal.119 +ffffffff81f53f60 r __compound_literal.118 +ffffffff81f53f80 r __compound_literal.117 +ffffffff81f53fa0 r __compound_literal.116 +ffffffff81f53fc0 r __compound_literal.115 +ffffffff81f53fe0 r __compound_literal.114 +ffffffff81f54000 r __compound_literal.113 +ffffffff81f54020 r __compound_literal.112 +ffffffff81f54040 r __compound_literal.111 +ffffffff81f54060 r __compound_literal.110 +ffffffff81f54080 r __compound_literal.109 +ffffffff81f540a0 r __compound_literal.108 +ffffffff81f540c0 r __compound_literal.107 +ffffffff81f540e0 r __compound_literal.106 +ffffffff81f54100 r __compound_literal.105 +ffffffff81f54120 r __compound_literal.104 +ffffffff81f54140 r __compound_literal.103 +ffffffff81f54160 r __compound_literal.102 +ffffffff81f54180 r __compound_literal.101 +ffffffff81f541a0 r __compound_literal.100 +ffffffff81f541c0 r __compound_literal.99 +ffffffff81f54240 r __compound_literal.98 +ffffffff81f54260 r __compound_literal.97 +ffffffff81f542e0 r __compound_literal.96 +ffffffff81f54300 r __compound_literal.95 +ffffffff81f543a0 r __compound_literal.94 +ffffffff81f543c0 r __compound_literal.93 +ffffffff81f54440 r __compound_literal.92 +ffffffff81f54460 r __compound_literal.91 +ffffffff81f544e0 r __compound_literal.90 +ffffffff81f54500 r __compound_literal.89 +ffffffff81f54520 r __compound_literal.88 +ffffffff81f54540 r __compound_literal.87 +ffffffff81f54560 r __compound_literal.86 +ffffffff81f54580 r __compound_literal.85 +ffffffff81f545a0 r __compound_literal.84 +ffffffff81f545c0 r __compound_literal.83 +ffffffff81f545e0 r __compound_literal.82 +ffffffff81f54600 r __compound_literal.81 +ffffffff81f54620 r __compound_literal.80 +ffffffff81f54640 r __compound_literal.79 +ffffffff81f54660 r __compound_literal.78 +ffffffff81f54680 r __compound_literal.77 +ffffffff81f546a0 r __compound_literal.76 +ffffffff81f546c0 r __compound_literal.75 +ffffffff81f546e0 r __compound_literal.74 +ffffffff81f54700 r __compound_literal.73 +ffffffff81f54720 r __compound_literal.72 +ffffffff81f54740 r __compound_literal.71 +ffffffff81f54760 r __compound_literal.70 +ffffffff81f54780 r __compound_literal.69 +ffffffff81f547a0 r __compound_literal.68 +ffffffff81f547c0 r __compound_literal.67 +ffffffff81f547e0 r __compound_literal.66 +ffffffff81f54800 r __compound_literal.65 +ffffffff81f54820 r __compound_literal.64 +ffffffff81f54840 r __compound_literal.63 +ffffffff81f54860 r __compound_literal.62 +ffffffff81f54880 r __compound_literal.61 +ffffffff81f548a0 r __compound_literal.60 +ffffffff81f548c0 r __compound_literal.59 +ffffffff81f548e0 r __compound_literal.58 +ffffffff81f54900 r __compound_literal.57 +ffffffff81f54920 r __compound_literal.56 +ffffffff81f54940 r __compound_literal.55 +ffffffff81f54960 r __compound_literal.54 +ffffffff81f54980 r __compound_literal.53 +ffffffff81f549a0 r __compound_literal.52 +ffffffff81f549c0 r __compound_literal.51 +ffffffff81f549e0 r __compound_literal.50 +ffffffff81f54a00 r __compound_literal.49 +ffffffff81f54a20 r __compound_literal.48 +ffffffff81f54a40 r __compound_literal.47 +ffffffff81f54a60 r __compound_literal.46 +ffffffff81f54a80 r __compound_literal.45 +ffffffff81f54aa0 r __compound_literal.44 +ffffffff81f54ac0 r __compound_literal.43 +ffffffff81f54ae0 r __compound_literal.42 +ffffffff81f54b00 r __compound_literal.41 +ffffffff81f54b20 r __compound_literal.40 +ffffffff81f54b40 r __compound_literal.39 +ffffffff81f54b60 r __compound_literal.38 +ffffffff81f54b80 r __compound_literal.37 +ffffffff81f54ba0 r __compound_literal.36 +ffffffff81f54bc0 r __compound_literal.35 +ffffffff81f54be0 r __compound_literal.34 +ffffffff81f54c00 r __compound_literal.33 +ffffffff81f54c20 r __compound_literal.32 +ffffffff81f54c40 r __compound_literal.31 +ffffffff81f54c60 r __compound_literal.30 +ffffffff81f54c80 r __compound_literal.29 +ffffffff81f54ca0 r __compound_literal.28 +ffffffff81f54cc0 r __compound_literal.27 +ffffffff81f54ce0 r __compound_literal.26 +ffffffff81f54d00 r __compound_literal.25 +ffffffff81f54d20 r __compound_literal.24 +ffffffff81f54d40 r __compound_literal.23 +ffffffff81f54d60 r __compound_literal.22 +ffffffff81f54d80 r __compound_literal.21 +ffffffff81f54da0 r __compound_literal.20 +ffffffff81f54dc0 r __compound_literal.19 +ffffffff81f54de0 r __compound_literal.18 +ffffffff81f54e00 r __compound_literal.17 +ffffffff81f54e20 r __compound_literal.16 +ffffffff81f54e40 r __compound_literal.15 +ffffffff81f54e60 r __compound_literal.14 +ffffffff81f54e80 r __compound_literal.13 +ffffffff81f54ea0 r __compound_literal.12 +ffffffff81f54ec0 r __compound_literal.11 +ffffffff81f54ee0 r __compound_literal.10 +ffffffff81f54f00 r __compound_literal.9 +ffffffff81f54f20 r __compound_literal.8 +ffffffff81f54f40 r __compound_literal.7 +ffffffff81f54f60 r __compound_literal.6 +ffffffff81f54fe0 r __compound_literal.5 +ffffffff81f55000 r __compound_literal.4 +ffffffff81f55020 r __compound_literal.3 +ffffffff81f55040 r __compound_literal.2 +ffffffff81f550c0 r __compound_literal.1 +ffffffff81f550e0 r __param_str_quirk_alias +ffffffff81f55100 r __param_arr_quirk_alias +ffffffff81f55120 r __param_str_autoclock +ffffffff81f55140 r __param_str_ignore_ctl_error +ffffffff81f55160 r __param_str_device_setup +ffffffff81f55180 r __param_arr_device_setup +ffffffff81f551a0 r __param_str_pid +ffffffff81f551c0 r __param_arr_pid +ffffffff81f551e0 r __param_str_vid +ffffffff81f55200 r __param_arr_vid +ffffffff81f55220 r __param_str_enable +ffffffff81f55240 r __param_arr_enable +ffffffff81f55260 r __param_str_id +ffffffff81f55280 r __param_arr_id +ffffffff81f552a0 r __param_str_index +ffffffff81f552c0 r __param_arr_index +ffffffff81f552e0 r __func__.33879 +ffffffff81f55300 r __func__.33889 +ffffffff81f55320 r __func__.33155 +ffffffff81f55460 r mixer_selectunit_ctl +ffffffff81f554c0 r mixer_procunit_ctl +ffffffff81f55520 r usb_feature_unit_ctl_ro +ffffffff81f55580 r audio_feature_info +ffffffff81f55660 r dell_alc4020_map +ffffffff81f556c0 r scms_usb3318_map +ffffffff81f55700 r scale.31128 +ffffffff81f55800 r texts.31066 +ffffffff81f55810 r texts.30692 +ffffffff81f55820 r resume_funcs.31034 +ffffffff81f55840 r name.30826 +ffffffff81f55860 r name.30818 +ffffffff81f55870 r name.30810 +ffffffff81f55880 r name.30928 +ffffffff81f558a0 r name.30920 +ffffffff81f558b0 r name.30912 +ffffffff81f558c0 r texts.30747 +ffffffff81f55900 r texts.30612 +ffffffff81f55910 r snd_audigy2nx_led_names +ffffffff81f55940 r rc_configs +ffffffff81f55a60 r usb_scarlett_ctl_sync +ffffffff81f55ac0 r usb_scarlett_ctl_dynamic_enum +ffffffff81f55b20 r usb_scarlett_ctl_enum +ffffffff81f55b80 r usb_scarlett_ctl_master +ffffffff81f55be0 r usb_scarlett_ctl +ffffffff81f55c30 r db_scale_scarlett_gain +ffffffff81f55c40 r usb_scarlett_ctl_switch +ffffffff81f55ca0 r opt_sync +ffffffff81f55cd0 r __compound_literal.3 +ffffffff81f55ce0 r opt_clock +ffffffff81f55d10 r __compound_literal.2 +ffffffff81f55d40 r opt_impedance +ffffffff81f55d70 r __compound_literal.1 +ffffffff81f55d80 r opt_pad +ffffffff81f55db0 r __compound_literal.0 +ffffffff81f55dc0 r master_controls +ffffffff81f55e60 r channel_controls +ffffffff81f55f00 r comp_controls +ffffffff81f56000 r eq_controls +ffffffff81f561c0 r route_names +ffffffff81f56210 r ratio_map +ffffffff81f56220 r eqs_msq +ffffffff81f56240 r comp_msg +ffffffff81f5625d r bus_msg_out +ffffffff81f56262 r bypass_msg_out +ffffffff81f56268 r mix_msg_out +ffffffff81f56278 r mix_msg_in +ffffffff81f56288 r mix_init_msg2 +ffffffff81f56292 r mix_init_msg1 +ffffffff81f562a0 r route_msg +ffffffff81f562c0 r __func__.33506 +ffffffff81f562e0 r __func__.33750 +ffffffff81f56300 r snd_usb_capture_ops +ffffffff81f56380 r snd_usb_playback_ops +ffffffff81f56400 r seq.34361 +ffffffff81f56420 r roland_midi_quirk.34228 +ffffffff81f56440 r yamaha_midi_quirk.34219 +ffffffff81f56460 r ua700_ep.34284 +ffffffff81f56468 r uaxx_ep.34286 +ffffffff81f56480 r ua_format.34278 +ffffffff81f56500 r uaxx_quirk.34287 +ffffffff81f56520 r ua700_quirk.34285 +ffffffff81f56540 r quirk_funcs.34313 +ffffffff81f566e0 r names.29645 +ffffffff81f566f0 r init_data.29349 +ffffffff81f56700 r finish_data.29353 +ffffffff81f56710 r snd_usbmidi_ops +ffffffff81f56740 r roland_load_ctl +ffffffff81f567a0 r snd_usbmidi_input_ops +ffffffff81f567c0 r snd_usbmidi_output_ops +ffffffff81f567e0 r snd_usbmidi_emagic_ops +ffffffff81f56820 r snd_usbmidi_122l_ops +ffffffff81f56860 r snd_usbmidi_ftdi_ops +ffffffff81f568a0 r snd_usbmidi_raw_ops +ffffffff81f568e0 r snd_usbmidi_novation_ops +ffffffff81f56920 r snd_usbmidi_akai_ops +ffffffff81f56960 r snd_usbmidi_ch345_broken_sysex_ops +ffffffff81f569a0 r snd_usbmidi_cme_ops +ffffffff81f569e0 r snd_usbmidi_maudio_broken_running_status_ops +ffffffff81f56a20 r snd_usbmidi_midiman_ops +ffffffff81f56a60 r snd_usbmidi_standard_ops +ffffffff81f56a90 r snd_usbmidi_cin_length +ffffffff81f56aa0 r default_ops +ffffffff81f56ba0 r rate_bits +ffffffff81f56c40 r widget_afg_group +ffffffff81f56c80 r widget_node_group +ffffffff81f56cb0 r widget_sysfs_ops +ffffffff81f56cc0 r hda_regmap_cfg +ffffffff81f56de0 r __func__.20415 +ffffffff81f56e00 r eld_speaker_allocation_bits +ffffffff81f56e40 r cea_speaker_allocation_names +ffffffff81f56e98 r _fw_iwlwifi_3160_17_ucode_bin +ffffffff82037194 r _fw_end +ffffffff82037198 r _fw_intel_ucode_06_3c_03_bin +ffffffff8203cd98 r _fw_end +ffffffff8203cd98 r _fw_regulatory_db_bin +ffffffff8203db94 r _fw_end +ffffffff8203db98 r _fw_regulatory_db_p7s_bin +ffffffff8203e036 r _fw_end +ffffffff8203e040 R pci_mmcfg +ffffffff8203e050 r pci_direct_conf2 +ffffffff8203e060 R pci_direct_conf1 +ffffffff8203e080 r toshiba_ohci1394_dmi_table +ffffffff8203e5e0 r msi_k8t_dmi_table +ffffffff8203e890 r irqmap.38006 +ffffffff8203e8a0 r irqmap.38015 +ffffffff8203e8b0 r pirqmap.38064 +ffffffff8203e8b0 r pirqmap.38073 +ffffffff8203e8c0 r pirqmap.38047 +ffffffff8203e8c0 r pirqmap.38056 +ffffffff8203e8e0 r msr_save_dmi_table +ffffffff8203ec68 r __func__.62106 +ffffffff8203ec80 r nargs +ffffffff8203ecc0 r sockfs_inode_ops +ffffffff8203ed80 r sockfs_security_xattr_handler +ffffffff8203edc0 r sockfs_xattr_handler +ffffffff8203ee00 r sockfs_dentry_operations +ffffffff8203ee80 r sockfs_ops +ffffffff8203ef40 r socket_file_ops +ffffffff8203f410 r __func__.60138 +ffffffff8203f440 r proto_seq_fops +ffffffff8203f540 r proto_seq_ops +ffffffff8203f560 r __func__.59134 +ffffffff8203f570 r __func__.59128 +ffffffff8203f580 r __func__.60144 +ffffffff8203f5a0 r __func__.60151 +ffffffff8203f5c0 r default_crc32c_ops +ffffffff8203f5e0 r __msg.51529 +ffffffff8203f620 r __msg.51526 +ffffffff8203f660 r __msg.51524 +ffffffff8203f680 r __msg.51522 +ffffffff8203f6a0 r __msg.51520 +ffffffff8203f6c0 r __msg.51560 +ffffffff8203f6e0 r __msg.51558 +ffffffff8203f700 R netns_operations +ffffffff8203f740 r rtnl_net_policy +ffffffff8203f780 r CSWTCH.120 +ffffffff8203f7c0 r flow_keys_buf_dissector_keys +ffffffff8203f7e0 r flow_keys_dissector_symmetric_keys +ffffffff8203f840 r flow_keys_dissector_keys +ffffffff8203fa00 r CSWTCH.694 +ffffffff8203fa30 r __func__.72545 +ffffffff8203fa60 r __msg.71935 +ffffffff8203faa8 r __func__.70835 +ffffffff820400a0 r phy_tunable_strings +ffffffff820400e0 r tunable_strings +ffffffff82040140 r rss_hash_func_strings +ffffffff820401a0 r netdev_features_strings +ffffffff82040820 r __func__.58897 +ffffffff82040838 r __func__.58892 +ffffffff82040860 R dst_default_metrics +ffffffff82040940 r neigh_stat_seq_ops +ffffffff82040960 r nl_ntbl_parm_policy +ffffffff82040aa0 r nl_neightbl_policy +ffffffff82040b40 r neigh_stat_seq_fops +ffffffff82040c40 r CSWTCH.320 +ffffffff82040ca0 r __msg.61392 +ffffffff82040ce0 r __msg.61389 +ffffffff82040d10 r __msg.61854 +ffffffff82040d20 r __msg.61852 +ffffffff82040d30 r __msg.61850 +ffffffff82040d40 r __msg.61836 +ffffffff82040d50 r __msg.61834 +ffffffff82040d70 r __msg.61883 +ffffffff82040d80 r __msg.61881 +ffffffff82040d90 r __msg.61879 +ffffffff82040da0 r __msg.62106 +ffffffff82040db0 r __msg.62085 +ffffffff82040dc0 r ifla_xdp_policy +ffffffff82040e20 r ifla_port_policy +ffffffff82040ea0 r ifla_vf_policy +ffffffff82040f80 r ifla_info_policy +ffffffff82040fe0 r ifla_policy +ffffffff82041300 r eth_reserved_addr_base +ffffffff82041308 r __func__.53412 +ffffffff82043e00 r codes.61185 +ffffffff82043eb8 R sk_skb_prog_ops +ffffffff82043ec0 R sk_skb_verifier_ops +ffffffff82043ee0 R sock_ops_prog_ops +ffffffff82043f00 R sock_ops_verifier_ops +ffffffff82043f20 R cg_sock_prog_ops +ffffffff82043f40 R cg_sock_verifier_ops +ffffffff82043f60 R lwt_xmit_prog_ops +ffffffff82043f80 R lwt_xmit_verifier_ops +ffffffff82043fa0 R lwt_inout_prog_ops +ffffffff82043fc0 R lwt_inout_verifier_ops +ffffffff82043fe0 R cg_skb_prog_ops +ffffffff82044000 R cg_skb_verifier_ops +ffffffff82044020 R xdp_prog_ops +ffffffff82044040 R xdp_verifier_ops +ffffffff82044060 R tc_cls_act_prog_ops +ffffffff82044080 R tc_cls_act_verifier_ops +ffffffff820440a0 R sk_filter_prog_ops +ffffffff820440c0 R sk_filter_verifier_ops +ffffffff820440e0 r bpf_sock_ops_cb_flags_set_proto +ffffffff82044120 r bpf_getsockopt_proto +ffffffff82044160 r bpf_setsockopt_proto +ffffffff820441a0 r bpf_get_socket_uid_proto +ffffffff820441e0 r bpf_get_socket_cookie_proto +ffffffff82044220 r bpf_xdp_event_output_proto +ffffffff82044260 r bpf_skb_under_cgroup_proto +ffffffff820442a0 r bpf_skb_set_tunnel_opt_proto +ffffffff820442e0 r bpf_skb_set_tunnel_key_proto +ffffffff82044320 r bpf_skb_get_tunnel_opt_proto +ffffffff82044360 r bpf_skb_get_tunnel_key_proto +ffffffff820443a0 r bpf_skb_event_output_proto +ffffffff820443e0 r bpf_xdp_redirect_map_proto +ffffffff82044420 r bpf_xdp_redirect_proto +ffffffff82044460 r bpf_xdp_adjust_meta_proto +ffffffff820444a0 r bpf_xdp_adjust_head_proto +ffffffff820444e0 r bpf_skb_change_head_proto +ffffffff82044520 r bpf_skb_change_tail_proto +ffffffff82044560 r bpf_skb_adjust_room_proto +ffffffff820445a0 r bpf_skb_change_type_proto +ffffffff820445e0 r bpf_skb_change_proto_proto +ffffffff82044620 R bpf_skb_vlan_pop_proto +ffffffff82044660 R bpf_skb_vlan_push_proto +ffffffff820446a0 r bpf_set_hash_proto +ffffffff820446e0 r bpf_set_hash_invalid_proto +ffffffff82044720 r bpf_get_hash_recalc_proto +ffffffff82044760 r bpf_get_route_realm_proto +ffffffff820447a0 r bpf_get_cgroup_classid_proto +ffffffff820447e0 r bpf_sk_redirect_map_proto +ffffffff82044820 r bpf_redirect_proto +ffffffff82044860 r bpf_clone_redirect_proto +ffffffff820448a0 r bpf_csum_update_proto +ffffffff820448e0 r bpf_csum_diff_proto +ffffffff82044920 r bpf_l4_csum_replace_proto +ffffffff82044960 r bpf_l3_csum_replace_proto +ffffffff820449a0 r bpf_skb_pull_data_proto +ffffffff820449e0 r bpf_skb_load_bytes_proto +ffffffff82044a20 r bpf_skb_store_bytes_proto +ffffffff82044a60 r bpf_get_raw_smp_processor_id_proto +ffffffff82044fa0 R net_ns_type_operations +ffffffff82044fe0 r dql_group +ffffffff82045010 r netdev_queue_sysfs_ops +ffffffff82045020 r rx_queue_sysfs_ops +ffffffff82045040 r wireless_group +ffffffff82045080 r netstat_group +ffffffff820450c0 r net_class_group +ffffffff82045100 r operstates +ffffffff82045138 r fmt_u64 +ffffffff8204513e r fmt_ulong +ffffffff82045143 r fmt_dec +ffffffff82045147 r fmt_hex +ffffffff82045160 r dev_mc_seq_fops +ffffffff82045260 r dev_mc_seq_ops +ffffffff82045280 r ptype_seq_fops +ffffffff82045380 r ptype_seq_ops +ffffffff820453a0 r softnet_seq_fops +ffffffff820454a0 r softnet_seq_ops +ffffffff820454c0 r dev_seq_fops +ffffffff820455c0 r dev_seq_ops +ffffffff82045600 r __func__.59214 +ffffffff82045640 R eth_header_ops +ffffffff82045670 r __msg.59215 +ffffffff82045690 r prio2band +ffffffff820456a0 r mq_class_ops +ffffffff82045830 r netlink_family_ops +ffffffff82045860 r netlink_seq_fops +ffffffff82045960 r netlink_seq_ops +ffffffff82045980 r netlink_ops +ffffffff82045a40 r netlink_rhashtable_params +ffffffff82045a80 r genl_ctrl_groups +ffffffff82045aa0 r genl_ctrl_ops +ffffffff82045ae0 r ctrl_policy +ffffffff82045b60 R nf_ct_zone_dflt +ffffffff82045b80 r dummy_ops +ffffffff82045bc0 r nflog_file_ops +ffffffff82045cc0 r nflog_seq_ops +ffffffff82045ce0 r nfnl_batch_policy +ffffffff82045d00 r nfnl_group2type +ffffffff82045d40 r __param_str_hashsize +ffffffff82045d60 r __param_ops_hashsize +ffffffff82045d80 r __param_str_expect_hashsize +ffffffff82045da0 r helper_extend +ffffffff82045dc0 r __param_str_nf_conntrack_helper +ffffffff82045e00 R nf_conntrack_l4proto_generic +ffffffff82045f00 R nf_conntrack_l4proto_tcp6 +ffffffff82045fa0 R nf_conntrack_l4proto_tcp4 +ffffffff82046040 r tcp_valid_flags +ffffffff82046080 r tcp_conntracks +ffffffff82046100 r tcp_timeouts +ffffffff82046140 r tcp_conntrack_names +ffffffff820461a0 R nf_conntrack_l4proto_udp6 +ffffffff82046240 R nf_conntrack_l4proto_udp4 +ffffffff820462e0 r acct_extend +ffffffff820462f0 r __param_str_acct +ffffffff82046310 r nf_ct_seqadj_extend +ffffffff82046320 r nft_basic_types +ffffffff82046360 r trace_loginfo +ffffffff82046380 r comments +ffffffff820466c0 r nft_data_policy +ffffffff82046700 r nft_verdict_policy +ffffffff82046740 r nf_tables_subsys +ffffffff82046780 r nf_tables_cb +ffffffff82046b80 r nft_flowtable_hook_policy +ffffffff82046bc0 r nft_flowtable_policy +ffffffff82046c40 r nft_obj_policy +ffffffff82046cc0 r nft_set_elem_list_policy +ffffffff82046d20 r nft_set_elem_policy +ffffffff82046dc0 R nft_set_ext_types +ffffffff82046de0 r nft_set_desc_policy +ffffffff82046e00 r nft_set_policy +ffffffff82046f20 r nft_rule_policy +ffffffff82046fc0 r nft_expr_policy +ffffffff82047000 r nft_counter_policy +ffffffff82047040 r nft_hook_policy +ffffffff82047080 r nft_chain_policy +ffffffff82047120 r nft_table_policy +ffffffff82047180 r nft_imm_ops +ffffffff820471e0 r nft_immediate_policy +ffffffff82047260 R nft_cmp_fast_ops +ffffffff820472c0 r nft_cmp_ops +ffffffff82047320 r nft_cmp_policy +ffffffff82047360 r nft_range_ops +ffffffff820473c0 r nft_range_policy +ffffffff82047420 r nft_bitwise_ops +ffffffff82047480 r nft_bitwise_policy +ffffffff820474e0 r nft_byteorder_ops +ffffffff82047540 r nft_byteorder_policy +ffffffff820475a0 r nft_payload_set_ops +ffffffff82047600 R nft_payload_fast_ops +ffffffff82047660 r nft_payload_ops +ffffffff820476c0 r nft_payload_policy +ffffffff82047760 r nft_lookup_ops +ffffffff820477c0 r nft_lookup_policy +ffffffff82047820 r nft_dynset_ops +ffffffff82047880 r nft_dynset_policy +ffffffff82047920 r filter_inet +ffffffff82047b20 r nft_meta_set_ops +ffffffff82047b80 r nft_meta_get_ops +ffffffff82047be0 R nft_meta_policy +ffffffff82047c20 r nft_rt_get_ops +ffffffff82047c80 r nft_rt_policy +ffffffff82047e40 r nft_ct_helper_obj_ops +ffffffff82047e80 r nft_ct_helper_policy +ffffffff82047ec0 r nft_notrack_ops +ffffffff82047f20 r nft_ct_set_ops +ffffffff82047f80 r nft_ct_get_ops +ffffffff82047fe0 r nft_ct_policy +ffffffff82048040 r nft_limit_obj_bytes_ops +ffffffff82048080 r nft_limit_obj_pkts_ops +ffffffff820480c0 r nft_limit_bytes_ops +ffffffff82048120 r nft_limit_pkts_ops +ffffffff82048180 r nft_limit_policy +ffffffff82048200 r icmp_code_v6 +ffffffff82048204 r icmp_code_v4 +ffffffff82048220 R nft_reject_policy +ffffffff82048260 r nft_reject_inet_ops +ffffffff820482c0 r nft_counter_ops +ffffffff82048320 r nft_counter_obj_ops +ffffffff82048360 r nft_counter_policy +ffffffff820483a0 r nft_log_ops +ffffffff82048400 r nft_log_policy +ffffffff82048500 r nft_symhash_ops +ffffffff82048560 r nft_jhash_ops +ffffffff820485c0 r nft_hash_policy +ffffffff82048640 r rt_cpu_seq_fops +ffffffff82048740 r rt_cpu_seq_ops +ffffffff82048760 r rt_cache_seq_fops +ffffffff82048860 r rt_cache_seq_ops +ffffffff82048880 R ip_tos2prio +ffffffff82048890 r ip_frag_cache_name +ffffffff820488a0 r __func__.55122 +ffffffff82048d80 R inet_csk_timer_bug_msg +ffffffff82048fe0 r __func__.61913 +ffffffff82048ff0 r __func__.61841 +ffffffff82049000 r new_state +ffffffff82049070 r __func__.59103 +ffffffff82049080 r __func__.59045 +ffffffff820490a0 r __func__.58222 +ffffffff820490c0 r tcp_afinfo_seq_fops +ffffffff820491c0 R ipv4_specific +ffffffff82049220 r tcp_request_sock_ipv4_ops +ffffffff82049260 r tcp_metrics_nl_ops +ffffffff820492c0 r tcp_metrics_nl_policy +ffffffff820493a0 r tcpv4_offload +ffffffff820493c0 r __func__.59137 +ffffffff820493e0 r raw_seq_fops +ffffffff820494e0 r raw_seq_ops +ffffffff82049500 r udp_afinfo_seq_fops +ffffffff82049600 r __func__.55159 +ffffffff82049620 r udplite_afinfo_seq_fops +ffffffff82049720 r udplite_protocol +ffffffff82049760 r udpv4_offload +ffffffff82049780 r arp_seq_fops +ffffffff82049880 r arp_seq_ops +ffffffff820498a0 r arp_direct_ops +ffffffff820498e0 r arp_hh_ops +ffffffff82049920 r arp_generic_ops +ffffffff82049960 r icmp_pointers +ffffffff82049aa0 R icmp_err_convert +ffffffff82049c00 r devconf_ipv4_policy +ffffffff82049c80 r inet_af_policy +ffffffff82049ca0 r ifa_ipv4_policy +ffffffff82049fc0 r __func__.62757 +ffffffff82049fd0 r __func__.62740 +ffffffff82049ff0 r __func__.62534 +ffffffff8204a020 r ipip_offload +ffffffff8204a040 r icmp_protocol +ffffffff8204a070 r inet_family_ops +ffffffff8204a0a0 r inet_sockraw_ops +ffffffff8204a160 R inet_dgram_ops +ffffffff8204a220 R inet_stream_ops +ffffffff8204a380 r igmp_mcf_seq_fops +ffffffff8204a480 r igmp_mcf_seq_ops +ffffffff8204a4a0 r igmp_mc_seq_fops +ffffffff8204a5a0 r igmp_mc_seq_ops +ffffffff8204a740 r __msg.59787 +ffffffff8204a770 r __msg.60135 +ffffffff8204a790 r __msg.60162 +ffffffff8204a7b0 r __func__.60276 +ffffffff8204a7c0 r __func__.60260 +ffffffff8204a7e0 R rtm_ipv4_policy +ffffffff8204a9a0 r __msg.57225 +ffffffff8204a9c0 r __msg.57223 +ffffffff8204aa00 r __msg.57220 +ffffffff8204aa30 r __msg.57217 +ffffffff8204aa50 r __msg.57215 +ffffffff8204aa70 r __msg.57211 +ffffffff8204aa90 r __msg.57209 +ffffffff8204aab0 r __msg.57207 +ffffffff8204aad0 r __msg.57383 +ffffffff8204ab00 r __msg.57375 +ffffffff8204ab30 r __msg.57370 +ffffffff8204ab40 r __msg.57368 +ffffffff8204ab60 r __msg.57358 +ffffffff8204abb0 r __msg.57356 +ffffffff8204abe0 r __msg.57352 +ffffffff8204ac20 r __msg.57340 +ffffffff8204ac58 r __msg.57338 +ffffffff8204ac80 R fib_props +ffffffff8204ace0 r __msg.57368 +ffffffff8204ad10 r __msg.57366 +ffffffff8204ad40 r fib_route_fops +ffffffff8204ae40 r fib_route_seq_ops +ffffffff8204ae60 r fib_trie_fops +ffffffff8204af60 r fib_trie_seq_ops +ffffffff8204af80 r rtn_type_names +ffffffff8204afe0 r fib_triestat_fops +ffffffff8204b0e0 r fib4_notifier_ops_template +ffffffff8204b120 R ip_frag_ecn_table +ffffffff8204b140 R ping_seq_fops +ffffffff8204b240 r gre_offload +ffffffff8204b260 r __func__.58001 +ffffffff8204b280 r netstat_seq_fops +ffffffff8204b380 r snmp_seq_fops +ffffffff8204b480 r snmp4_net_list +ffffffff8204bb80 r snmp4_udp_list +ffffffff8204bc20 r snmp4_tcp_list +ffffffff8204bd20 r icmpmibmap +ffffffff8204bde0 r snmp4_ipextstats_list +ffffffff8204bf00 r snmp4_ipstats_list +ffffffff8204c020 r sockstat_seq_fops +ffffffff8204c120 r builtin_l4proto4 +ffffffff8204c140 r __param_str_hashsize +ffffffff8204c160 r __param_ops_hashsize +ffffffff8204c180 R nf_conntrack_l3proto_ipv4 +ffffffff8204c1c0 r ipv4_conntrack_ops +ffffffff8204c2c0 r valid_new.57931 +ffffffff8204c2e0 R nf_conntrack_l4proto_icmp +ffffffff8204c380 r invmap +ffffffff8204c3a0 r ipv4_defrag_ops +ffffffff8204c400 r filter_ipv4 +ffffffff8204c460 r nft_chain_route_ipv4 +ffffffff8204c4c0 r nft_reject_ipv4_ops +ffffffff8204c520 r bbr_pacing_gain +ffffffff8204c540 r __func__.53005 +ffffffff8204c550 r unix_family_ops +ffffffff8204c580 r unix_seq_fops +ffffffff8204c680 r unix_seq_ops +ffffffff8204c6a0 r unix_seqpacket_ops +ffffffff8204c760 r unix_dgram_ops +ffffffff8204c820 r unix_stream_ops +ffffffff8204ca80 r ipv6_stub_impl +ffffffff8204cab0 r inet6_family_ops +ffffffff8204cae0 R inet6_dgram_ops +ffffffff8204cba0 R inet6_stream_ops +ffffffff8204cc60 r __param_str_autoconf +ffffffff8204cc70 r __param_str_disable_ipv6 +ffffffff8204cc88 r __param_str_disable +ffffffff8204cca0 r ac6_seq_fops +ffffffff8204cda0 r ac6_seq_ops +ffffffff8204ceb8 r __func__.62803 +ffffffff8204ced0 r __func__.60490 +ffffffff8204cf00 r addrconf_sysctl +ffffffff8204da00 r two_five_five +ffffffff8204da04 r one +ffffffff8204da08 r zero +ffffffff8204da20 r inet6_af_policy +ffffffff8204dac0 r ifa_ipv6_policy +ffffffff8204db60 r if6_fops +ffffffff8204dc60 r if6_seq_ops +ffffffff8204dc80 r devconf_ipv6_policy +ffffffff8204dd00 r ifal_policy +ffffffff8204dd40 r ip6addrlbl_init_table +ffffffff8204de00 r __msg.54989 +ffffffff8204de30 r __msg.62300 +ffffffff8204de60 r __msg.62174 +ffffffff8204de90 r __msg.62234 +ffffffff8204deb0 r __msg.62232 +ffffffff8204dee0 r __msg.62230 +ffffffff8204df20 r __msg.62228 +ffffffff8204df40 r __msg.62226 +ffffffff8204df60 r __msg.62224 +ffffffff8204df80 r __msg.62212 +ffffffff8204dfa0 r __msg.62210 +ffffffff8204dfe0 r __msg.62208 +ffffffff8204e020 r __msg.62206 +ffffffff8204e040 r __msg.62204 +ffffffff8204e060 r __msg.62202 +ffffffff8204e080 r __msg.62199 +ffffffff8204e0a0 r rt6_stats_seq_fops +ffffffff8204e1a0 r ipv6_route_proc_fops +ffffffff8204e2a0 r rtm_ipv6_policy +ffffffff8204e480 r ip6_null_entry_template +ffffffff8204e5c0 r ip6_template_metrics +ffffffff8204e620 r __msg.55435 +ffffffff8204e660 r __msg.55411 +ffffffff8204e6a0 r ipv6_route_seq_ops +ffffffff8204f210 r __func__.56903 +ffffffff8204f230 r __func__.56403 +ffffffff8204f240 r ndisc_direct_ops +ffffffff8204f280 r ndisc_hh_ops +ffffffff8204f2c0 r ndisc_generic_ops +ffffffff8204f300 r udp6_afinfo_seq_fops +ffffffff8204f400 r udplite6_afinfo_seq_fops +ffffffff8204f500 r udplitev6_protocol +ffffffff8204f540 R inet6_sockraw_ops +ffffffff8204f600 r raw6_seq_fops +ffffffff8204f700 r raw6_seq_ops +ffffffff8204fbc0 r tab_unreach +ffffffff8204fc00 r icmpv6_protocol +ffffffff8204fc80 r igmp6_mcf_seq_fops +ffffffff8204fd80 r igmp6_mcf_seq_ops +ffffffff8204fda0 r igmp6_mc_seq_fops +ffffffff8204fea0 r igmp6_mc_seq_ops +ffffffff8204fec0 r frag_protocol +ffffffff8204fee8 r ip6_frag_cache_name +ffffffff8204ff00 r tcp6_afinfo_seq_fops +ffffffff82050000 r tcp_request_sock_ipv6_ops +ffffffff82050040 r ipv6_specific +ffffffff820500a0 r ipv6_mapped +ffffffff82050100 r tlvprochopopt_lst +ffffffff82050140 r nodata_protocol +ffffffff82050180 r destopt_protocol +ffffffff820501c0 r rthdr_protocol +ffffffff820501f0 r tlvprocdestopt_lst +ffffffff82050420 r ip6fl_seq_fops +ffffffff82050520 r ip6fl_seq_ops +ffffffff82050540 r udpv6_offload +ffffffff82050560 r seg6_genl_ops +ffffffff82050620 r seg6_genl_policy +ffffffff820506a0 r fib6_notifier_ops_template +ffffffff820506e0 r fake_sk.58884 +ffffffff82050a60 r ipv6ops +ffffffff82050aa0 r snmp6_dev_seq_fops +ffffffff82050ba0 r snmp6_seq_fops +ffffffff82050ca0 r snmp6_udplite6_list +ffffffff82050d20 r snmp6_udp6_list +ffffffff82050dc0 r icmp6type2name +ffffffff820515c0 r snmp6_icmp6_list +ffffffff82051620 r snmp6_ipstats_list +ffffffff82051840 r sockstat6_seq_fops +ffffffff82051940 r builtin_l4proto6 +ffffffff82051960 R nf_conntrack_l3proto_ipv6 +ffffffff820519a0 r ipv6_conntrack_ops +ffffffff82051aa0 r valid_new.58031 +ffffffff82051ac0 R nf_conntrack_l4proto_icmpv6 +ffffffff82051b58 r noct_valid_new +ffffffff82051b68 r invmap +ffffffff82051b80 r ipv6_defrag_ops +ffffffff82051bd0 r nf_frags_cache_name +ffffffff82051be0 r filter_ipv6 +ffffffff82051c40 r nft_chain_route_ipv6 +ffffffff82051ca0 r nft_reject_ipv6_ops +ffffffff82051cf0 R in6addr_sitelocal_allrouters +ffffffff82051d00 R in6addr_interfacelocal_allrouters +ffffffff82051d10 R in6addr_interfacelocal_allnodes +ffffffff82051d20 R in6addr_linklocal_allrouters +ffffffff82051d30 R in6addr_linklocal_allnodes +ffffffff82051d40 R in6addr_any +ffffffff82051d50 R in6addr_loopback +ffffffff82051d60 r __func__.53670 +ffffffff82051d80 r ip6ip6_offload +ffffffff82051da0 r ip4ip6_offload +ffffffff82051dc0 r sit_offload +ffffffff82051de0 r tcpv6_offload +ffffffff82051e00 r dstopt_offload +ffffffff82051e20 r rthdr_offload +ffffffff82051fc0 r packet_seq_fops +ffffffff820520c0 r packet_seq_ops +ffffffff820520e0 r packet_family_ops +ffffffff82052100 r packet_mmap_ops +ffffffff82052160 r packet_ops_spkt +ffffffff82052220 r packet_ops +ffffffff820522e0 r bt_sock_family_ops +ffffffff82052300 r bt_fops +ffffffff82052400 r bt_seq_ops +ffffffff82052460 r esco_param_msbc +ffffffff82052470 r sco_param_cvsd +ffffffff82052480 r esco_param_cvsd +ffffffff820527d0 r CSWTCH.172 +ffffffff82052800 r mgmt_handlers +ffffffff82052e60 r bluetooth_base_uuid +ffffffff82052e80 r mgmt_status_table +ffffffff82052ec0 r mgmt_untrusted_events +ffffffff82052ed8 r mgmt_untrusted_commands +ffffffff82052f00 r mgmt_events +ffffffff82052f60 r mgmt_commands +ffffffff82053050 r hci_sock_family_ops +ffffffff82053080 r hci_sock_ops +ffffffff82053140 r hci_sec_filter +ffffffff820531c0 r bt_host +ffffffff82053200 r bt_link +ffffffff820535c0 r __param_str_disable_ertm +ffffffff82053680 r CSWTCH.140 +ffffffff82053690 r l2cap_sock_family_ops +ffffffff820536c0 r l2cap_chan_ops +ffffffff82053740 r l2cap_sock_ops +ffffffff82053880 r smp_root_chan_ops +ffffffff82053900 r smp_chan_ops +ffffffff82053970 r sc_method +ffffffff82053990 r gen_method +ffffffff820539c0 r debug_sk +ffffffff820539e0 r debug_pk +ffffffff82053a20 r CSWTCH.2 +ffffffff82053a60 r __func__.51156 +ffffffff82053a80 r __param_str_disable_esco +ffffffff82053aa0 r sco_sock_family_ops +ffffffff82053ac0 r sco_sock_ops +ffffffff82053c00 r a2mp_chan_ops +ffffffff82053e30 r __param_str_l2cap_ertm +ffffffff82053e50 r __param_str_l2cap_mtu +ffffffff82053e70 r __param_str_channel_mtu +ffffffff82053e90 r __param_str_disable_cfc +ffffffff82053ec0 r rfcomm_crc_table +ffffffff82053fc0 r CSWTCH.126 +ffffffff82053fd0 r rfcomm_sock_family_ops +ffffffff82054000 r rfcomm_sock_ops +ffffffff82054140 r hidp_keycode +ffffffff82054240 r hidp_sock_family_ops +ffffffff82054260 r hidp_sock_ops +ffffffff82054420 r wiphy_type +ffffffff82054460 r __param_str_cfg80211_disable_40mhz_24ghz +ffffffff820544a0 r wiphy_pm_ops +ffffffff82054560 r ieee80211_group +ffffffff82054590 r radiotap_ns +ffffffff820545b0 r rtap_namespace_sizes +ffffffff820546a0 r base.67411 +ffffffff82054740 r __mcs2bitrate.67402 +ffffffff820547c0 R bridge_tunnel_header +ffffffff820547c6 R rfc1042_header +ffffffff82054840 r CSWTCH.393 +ffffffff82054860 r __param_str_ieee80211_regdom +ffffffff82054880 r world_regdom +ffffffff82054980 r __param_str_bss_entries_limit +ffffffff82054a80 r CSWTCH.572 +ffffffff82054a90 r __msg.63885 +ffffffff82054ab0 r __msg.63902 +ffffffff82054ac0 r __msg.63900 +ffffffff82054ae0 r __msg.63898 +ffffffff82054b00 r __msg.63896 +ffffffff82054b20 r __msg.63894 +ffffffff82054b50 r __msg.63930 +ffffffff82054b70 r __msg.63925 +ffffffff82054b90 r __msg.63923 +ffffffff82054bb0 r __msg.63921 +ffffffff82054be0 r nl80211_ops +ffffffff82055e40 r nl80211_attr_cqm_policy +ffffffff82055ee0 r reg_rule_policy +ffffffff82055f60 r nl80211_mesh_setup_params_policy +ffffffff82056000 r nl80211_meshconf_params_policy +ffffffff820561e0 r nl80211_sta_wme_policy +ffffffff82056220 r sta_flags_policy +ffffffff820562a0 r nl80211_txattr_policy +ffffffff82056300 r mntr_flags_policy +ffffffff82056380 r txq_params_policy +ffffffff820563e0 r nl80211_packet_pattern_policy +ffffffff82056420 r nl80211_nan_srf_policy +ffffffff82056480 r nl80211_nan_func_policy +ffffffff820565a0 r nl80211_bss_select_policy +ffffffff820565e0 r nl80211_plan_policy +ffffffff82056620 r nl80211_match_policy +ffffffff82056680 r nl80211_rekey_policy +ffffffff820566c0 r nl80211_coalesce_policy +ffffffff82056700 r nl80211_wowlan_tcp_policy +ffffffff820567c0 r nl80211_wowlan_policy +ffffffff82056900 r nl80211_key_default_policy +ffffffff82056940 r nl80211_key_policy +ffffffff820569e0 r nl80211_policy +ffffffff82057a20 r nl80211_mcgrps +ffffffff82057ad8 r before_extcapa.57658 +ffffffff82057bc0 r CSWTCH.48 +ffffffff82057be0 R default_mesh_setup +ffffffff82057ca0 R default_mesh_config +ffffffff82057d00 R shipped_regdb_certs +ffffffff82057fc0 r cipher_suites.69740 +ffffffff82057ff0 r mac80211_vht_capa_mod_mask +ffffffff82058000 r mac80211_ht_capa_mod_mask +ffffffff82058020 r ieee80211_default_mgmt_stypes +ffffffff82058060 r CSWTCH.379 +ffffffff82058080 r sta_rht_params +ffffffff82058160 r CSWTCH.38 +ffffffff82058278 r bssid_wildcard.68467 +ffffffff82058280 r ieee80211_monitorif_ops +ffffffff82058480 r ieee80211_dataif_ops +ffffffff82058680 r __param_str_ieee80211_default_rc_algo +ffffffff820586c0 r tkip_sbox +ffffffff82058900 R mac80211_config_ops +ffffffff82058c20 R ieee80211_ethtool_ops +ffffffff82058de0 r ieee80211_gstrings_sta_stats +ffffffff820591f8 r pae_group_addr.68585 +ffffffff820595b8 r bcast_addr +ffffffff8205a370 r before_vht.68719 +ffffffff8205a376 r before_ht.68715 +ffffffff8205a378 r before_extrates.68711 +ffffffff8205a37b R ieee80211_ac_to_qos_mask +ffffffff8205a380 R mac80211_wiphy_privid +ffffffff8205a400 r CSWTCH.15 +ffffffff8205a420 R ieee802_1d_to_ac +ffffffff8205a540 r CSWTCH.302 +ffffffff8205a750 r before_vht.68054 +ffffffff8205a758 r after_ric.68045 +ffffffff8205a768 r before_ht.68044 +ffffffff8205a780 r __param_str_probe_wait_ms +ffffffff8205a7a0 r __param_str_beacon_loss_count +ffffffff8205a7c0 r __param_str_max_probe_tries +ffffffff8205a7e0 r __param_str_max_nullfunc_tries +ffffffff8205a948 r CSWTCH.271 +ffffffff8205a954 r before_lnkie.67823 +ffffffff8205a955 r before_ht_op.67803 +ffffffff8205a959 r before_qos.67799 +ffffffff8205a960 r before_vht_cap.67777 +ffffffff8205a970 r before_ht_cap.67771 +ffffffff8205a97a r before_ext_cap.67767 +ffffffff8205a980 R mac80211_minstrel +ffffffff8205aa00 r mac80211_minstrel_ht +ffffffff8205aa80 R minstrel_mcs_groups +ffffffff8205ae20 R _ctype +ffffffff8205af20 r __func__.14312 +ffffffff8205af40 R kobj_sysfs_ops +ffffffff8205af60 r modalias_prefix.50975 +ffffffff8205af80 r kobject_actions +ffffffff8205ba08 r CSWTCH.289 +ffffffff8205ba18 r numspec.59400 +ffffffff8205ba20 r strspec.59399 +ffffffff8205ba28 r flag_spec.59084 +ffffffff8205ba30 r bus_spec.59081 +ffffffff8205ba38 r dec_spec.59082 +ffffffff8205ba40 r mem_spec.59080 +ffffffff8205ba48 r io_spec.59079 +ffffffff8205ba50 r str_spec.59083 +ffffffff8205ba60 r decpair +ffffffff8205bbc0 r regoff2.29316 +ffffffff8205bbe0 r regoff1.29315 +ffffffff8205bc00 r regoff.29293 +ffffffff8205bc80 R inat_avx_tables +ffffffff8205c080 R inat_group_tables +ffffffff8205c480 R inat_escape_tables +ffffffff8205c500 R inat_group_table_24_1 +ffffffff8205c520 R inat_group_table_24 +ffffffff8205c540 R inat_group_table_23_1 +ffffffff8205c560 R inat_group_table_23 +ffffffff8205c580 R inat_group_table_25 +ffffffff8205c5a0 R inat_group_table_13 +ffffffff8205c5c0 R inat_group_table_19_2 +ffffffff8205c5e0 R inat_group_table_19 +ffffffff8205c600 R inat_group_table_16_1 +ffffffff8205c620 R inat_group_table_16 +ffffffff8205c640 R inat_group_table_15_1 +ffffffff8205c660 R inat_group_table_15 +ffffffff8205c680 R inat_group_table_14_1 +ffffffff8205c6a0 R inat_group_table_14 +ffffffff8205c6c0 R inat_group_table_5 +ffffffff8205c6e0 R inat_group_table_4 +ffffffff8205c700 R inat_group_table_22_2 +ffffffff8205c720 R inat_group_table_22_1 +ffffffff8205c740 R inat_group_table_22 +ffffffff8205c760 R inat_group_table_11 +ffffffff8205c780 R inat_group_table_10 +ffffffff8205c7a0 R inat_group_table_9 +ffffffff8205c7c0 R inat_group_table_8 +ffffffff8205c7e0 R inat_group_table_7 +ffffffff8205c800 R inat_group_table_6 +ffffffff8205c820 R inat_escape_table_3_3 +ffffffff8205cc20 R inat_escape_table_3_1 +ffffffff8205d020 R inat_escape_table_3 +ffffffff8205d420 R inat_escape_table_2_3 +ffffffff8205d820 R inat_escape_table_2_2 +ffffffff8205dc20 R inat_escape_table_2_1 +ffffffff8205e020 R inat_escape_table_2 +ffffffff8205e420 R inat_escape_table_1_3 +ffffffff8205e820 R inat_escape_table_1_2 +ffffffff8205ec20 R inat_escape_table_1_1 +ffffffff8205f020 R inat_escape_table_1 +ffffffff8205f420 R inat_primary_table +ffffffff820e26d0 r _fw_iwlwifi_3160_17_ucode_name +ffffffff820e26e8 r _fw_intel_ucode_06_3c_03_name +ffffffff820e2700 r _fw_regulatory_db_name +ffffffff820e2710 r _fw_regulatory_db_p7s_name +ffffffff820e9ed0 r POLY +ffffffff820e9ed0 r POLY +ffffffff820e9ee0 r TWOONE +ffffffff820e9ee0 r TWOONE +ffffffff820e9ef0 r PSHUFFLE_BYTE_FLIP_MASK +ffffffff820e9ef0 r SHUF_MASK +ffffffff820e9ef0 r SHUF_MASK +ffffffff820e9f00 r MASK1 +ffffffff820e9f10 r MASK2 +ffffffff820e9f20 r ONE +ffffffff820e9f20 r ONE +ffffffff820e9f20 r dec +ffffffff820e9f30 r F_MIN_MASK +ffffffff820e9f40 r enc +ffffffff820e9f50 r POLY2 +ffffffff820e9f60 r ONEf +ffffffff820e9f70 r UPPER_WORD_MASK +ffffffff820e9f80 r PSHUFFLE_BYTE_FLIP_MASK +ffffffff820e9f80 r PSHUFFLE_BYTE_FLIP_MASK +ffffffff820e9f80 r PSHUFFLE_BYTE_FLIP_MASK +ffffffff820e9f90 r _SHUF_00BA +ffffffff820e9f90 r _SHUF_00BA +ffffffff820e9fa0 r _SHUF_DC00 +ffffffff820e9fa0 r _SHUF_DC00 +ffffffff820e9fc0 r K256 +ffffffff820e9fc0 r K256 +ffffffff820e9fc0 r K256 +ffffffff820ea0c0 r K256 +ffffffff820ea2c0 r PSHUFFLE_BYTE_FLIP_MASK +ffffffff820ea2e0 r _SHUF_00BA +ffffffff820ea300 r _SHUF_DC00 +ffffffff820ea320 R __start_ro_after_init +ffffffff820ea320 R rodata_enabled +ffffffff820eb000 r raw_data +ffffffff820ed000 R idt_descr +ffffffff820ed010 R mmu_cr4_features +ffffffff820ed020 R x86_io_apic_ops +ffffffff820ed040 R x86_msi +ffffffff820ed060 R x86_platform +ffffffff820ed0e0 r data_attr +ffffffff820ed120 r x86_64_regsets +ffffffff820ed220 R machine_ops +ffffffff820ed260 R intel_graphics_stolen_res +ffffffff820ed2a0 R __per_cpu_offset +ffffffff820ed2c0 R apic_noop +ffffffff820ed3e0 r hpet_msi_controller +ffffffff820ed500 R apic +ffffffff820ed520 r apic_flat +ffffffff820ed640 r apic_physflat +ffffffff820ed760 r notes_attr +ffffffff820ed7a0 r family +ffffffff820ed818 R pcpu_slot +ffffffff820ed820 R pcpu_reserved_chunk +ffffffff820ed828 R pcpu_first_chunk +ffffffff820ed830 r pcpu_group_sizes +ffffffff820ed838 r pcpu_group_offsets +ffffffff820ed840 r pcpu_nr_groups +ffffffff820ed848 R pcpu_unit_offsets +ffffffff820ed850 r pcpu_unit_map +ffffffff820ed858 R pcpu_base_addr +ffffffff820ed860 r pcpu_high_unit_cpu +ffffffff820ed864 r pcpu_low_unit_cpu +ffffffff820ed868 r pcpu_chunk_struct_size +ffffffff820ed870 R pcpu_nr_slots +ffffffff820ed874 r pcpu_atom_size +ffffffff820ed878 r pcpu_nr_units +ffffffff820ed87c r pcpu_unit_size +ffffffff820ed880 r pcpu_unit_pages +ffffffff820ed8a0 R protection_map +ffffffff820ed920 r proc_inode_cachep +ffffffff820ed928 r nlink_tgid +ffffffff820ed929 r nlink_tid +ffffffff820ed92c r self_inum +ffffffff820ed930 r thread_self_inum +ffffffff820ed940 r acpi_event_genl_family +ffffffff820ed9c0 r ptmx_fops +ffffffff820edac0 r thermal_event_genl_family +ffffffff820edb40 r net_class +ffffffff820edbc0 r netdev_queue_ktype +ffffffff820edc00 r netdev_queue_default_attrs +ffffffff820edc40 r xps_cpus_attribute +ffffffff820edc60 r dql_attrs +ffffffff820edca0 r bql_limit_min_attribute +ffffffff820edcc0 r bql_limit_max_attribute +ffffffff820edce0 r bql_limit_attribute +ffffffff820edd00 r bql_inflight_attribute +ffffffff820edd20 r bql_hold_time_attribute +ffffffff820edd40 r queue_traffic_class +ffffffff820edd60 r queue_trans_timeout +ffffffff820edd80 r queue_tx_maxrate +ffffffff820edda0 r rx_queue_ktype +ffffffff820eddd0 r rx_queue_default_attrs +ffffffff820ede00 r rps_dev_flow_table_cnt_attribute +ffffffff820ede20 r rps_cpus_attribute +ffffffff820ede40 r netstat_attrs +ffffffff820edf20 r net_class_attrs +ffffffff820ee020 r genl_ctrl +ffffffff820ee0a0 r tcp_metrics_nl_family +ffffffff820ee120 r seg6_genl_family +ffffffff820ee1a0 r nl80211_fam +ffffffff820ee218 R __end_ro_after_init +ffffffff820ee218 r __pci_fixup_quirk_intel_purley_xeon_ras_cap658 +ffffffff820ee218 R __start___tracepoints_ptrs +ffffffff820ee218 R __start_pci_fixups_early +ffffffff820ee218 R __stop___tracepoints_ptrs +ffffffff820ee230 r __pci_fixup_quirk_intel_brickland_xeon_ras_cap657 +ffffffff820ee248 r __pci_fixup_quirk_intel_brickland_xeon_ras_cap656 +ffffffff820ee260 r __pci_fixup_quirk_intel_brickland_xeon_ras_cap655 +ffffffff820ee278 r __pci_fixup_quirk_no_ext_tags4820 +ffffffff820ee290 r __pci_fixup_quirk_no_ext_tags4819 +ffffffff820ee2a8 r __pci_fixup_quirk_no_ext_tags4818 +ffffffff820ee2c0 r __pci_fixup_quirk_intel_no_flr4804 +ffffffff820ee2d8 r __pci_fixup_quirk_intel_no_flr4803 +ffffffff820ee2f0 r __pci_fixup_quirk_intel_qat_vf_cap4796 +ffffffff820ee308 r __pci_fixup_quirk_relaxedordering_disable4125 +ffffffff820ee320 r __pci_fixup_quirk_relaxedordering_disable4123 +ffffffff820ee338 r __pci_fixup_quirk_relaxedordering_disable4121 +ffffffff820ee350 r __pci_fixup_quirk_relaxedordering_disable4109 +ffffffff820ee368 r __pci_fixup_quirk_relaxedordering_disable4107 +ffffffff820ee380 r __pci_fixup_quirk_relaxedordering_disable4105 +ffffffff820ee398 r __pci_fixup_quirk_relaxedordering_disable4103 +ffffffff820ee3b0 r __pci_fixup_quirk_relaxedordering_disable4101 +ffffffff820ee3c8 r __pci_fixup_quirk_relaxedordering_disable4099 +ffffffff820ee3e0 r __pci_fixup_quirk_relaxedordering_disable4097 +ffffffff820ee3f8 r __pci_fixup_quirk_relaxedordering_disable4095 +ffffffff820ee410 r __pci_fixup_quirk_relaxedordering_disable4093 +ffffffff820ee428 r __pci_fixup_quirk_relaxedordering_disable4091 +ffffffff820ee440 r __pci_fixup_quirk_relaxedordering_disable4089 +ffffffff820ee458 r __pci_fixup_quirk_relaxedordering_disable4087 +ffffffff820ee470 r __pci_fixup_quirk_relaxedordering_disable4085 +ffffffff820ee488 r __pci_fixup_quirk_relaxedordering_disable4083 +ffffffff820ee4a0 r __pci_fixup_quirk_relaxedordering_disable4081 +ffffffff820ee4b8 r __pci_fixup_quirk_relaxedordering_disable4079 +ffffffff820ee4d0 r __pci_fixup_quirk_relaxedordering_disable4077 +ffffffff820ee4e8 r __pci_fixup_quirk_relaxedordering_disable4075 +ffffffff820ee500 r __pci_fixup_quirk_relaxedordering_disable4073 +ffffffff820ee518 r __pci_fixup_quirk_relaxedordering_disable4071 +ffffffff820ee530 r __pci_fixup_quirk_relaxedordering_disable4069 +ffffffff820ee548 r __pci_fixup_quirk_relaxedordering_disable4067 +ffffffff820ee560 r __pci_fixup_quirk_relaxedordering_disable4065 +ffffffff820ee578 r __pci_fixup_quirk_relaxedordering_disable4063 +ffffffff820ee590 r __pci_fixup_quirk_relaxedordering_disable4061 +ffffffff820ee5a8 r __pci_fixup_quirk_relaxedordering_disable4059 +ffffffff820ee5c0 r __pci_fixup_quirk_relaxedordering_disable4057 +ffffffff820ee5d8 r __pci_fixup_quirk_relaxedordering_disable4055 +ffffffff820ee5f0 r __pci_fixup_quirk_tw686x_class4036 +ffffffff820ee608 r __pci_fixup_quirk_tw686x_class4034 +ffffffff820ee620 r __pci_fixup_quirk_tw686x_class4032 +ffffffff820ee638 r __pci_fixup_quirk_tw686x_class4030 +ffffffff820ee650 r __pci_fixup_fixup_ti816x_class2995 +ffffffff820ee668 r __pci_fixup_vtd_mask_spec_errors2982 +ffffffff820ee680 r __pci_fixup_vtd_mask_spec_errors2981 +ffffffff820ee698 r __pci_fixup_nvbridge_check_legacy_irq_routing2532 +ffffffff820ee6b0 r __pci_fixup_nvbridge_check_legacy_irq_routing2528 +ffffffff820ee6c8 r __pci_fixup_nvenet_msi_disable2498 +ffffffff820ee6e0 r __pci_fixup_quirk_unhide_mch_dev62320 +ffffffff820ee6f8 r __pci_fixup_quirk_unhide_mch_dev62318 +ffffffff820ee710 r __pci_fixup_quirk_f0_vpd_link1993 +ffffffff820ee728 r __pci_fixup_quirk_pcie_pxh1652 +ffffffff820ee740 r __pci_fixup_quirk_pcie_pxh1651 +ffffffff820ee758 r __pci_fixup_quirk_pcie_pxh1650 +ffffffff820ee770 r __pci_fixup_quirk_pcie_pxh1649 +ffffffff820ee788 r __pci_fixup_quirk_pcie_pxh1648 +ffffffff820ee7a0 r __pci_fixup_quirk_jmicron_ata1582 +ffffffff820ee7b8 r __pci_fixup_quirk_jmicron_ata1581 +ffffffff820ee7d0 r __pci_fixup_quirk_jmicron_ata1580 +ffffffff820ee7e8 r __pci_fixup_quirk_jmicron_ata1579 +ffffffff820ee800 r __pci_fixup_quirk_jmicron_ata1578 +ffffffff820ee818 r __pci_fixup_quirk_jmicron_ata1577 +ffffffff820ee830 r __pci_fixup_quirk_jmicron_ata1576 +ffffffff820ee848 r __pci_fixup_quirk_jmicron_ata1575 +ffffffff820ee860 r __pci_fixup_quirk_jmicron_ata1574 +ffffffff820ee878 r __pci_fixup_quirk_no_ata_d31172 +ffffffff820ee890 r __pci_fixup_quirk_no_ata_d31168 +ffffffff820ee8a8 r __pci_fixup_quirk_no_ata_d31165 +ffffffff820ee8c0 r __pci_fixup_quirk_no_ata_d31163 +ffffffff820ee8d8 r __pci_fixup_quirk_ide_samemode1151 +ffffffff820ee8f0 r __pci_fixup_quirk_svwks_csb5ide1133 +ffffffff820ee908 r __pci_fixup_quirk_mmio_always_on43 +ffffffff820ee920 r __pci_fixup_acpi_pm_check_graylist135 +ffffffff820ee938 r __pci_fixup_acpi_pm_check_graylist133 +ffffffff820ee950 r __pci_fixup_acpi_pm_check_blacklist119 +ffffffff820ee968 r __pci_fixup_quirk_no_aersid638 +ffffffff820ee980 r __pci_fixup_quirk_no_aersid637 +ffffffff820ee998 r __pci_fixup_quirk_no_aersid636 +ffffffff820ee9b0 r __pci_fixup_quirk_no_aersid635 +ffffffff820ee9c8 r __pci_fixup_pci_invalid_bar574 +ffffffff820ee9e0 r __pci_fixup_pci_invalid_bar573 +ffffffff820ee9f8 r __pci_fixup_pci_invalid_bar572 +ffffffff820eea10 r __pci_fixup_pci_invalid_bar571 +ffffffff820eea28 r __pci_fixup_sb600_disable_hpet_bar524 +ffffffff820eea40 r __pci_fixup_pci_early_fixup_cyrix_5530483 +ffffffff820eea58 R __end_pci_fixups_early +ffffffff820eea58 r __pci_fixup_force_disable_hpet_msi533 +ffffffff820eea58 R __start_pci_fixups_header +ffffffff820eea70 r __pci_fixup_e6xx_force_enable_hpet518 +ffffffff820eea88 r __pci_fixup_nvidia_force_enable_hpet477 +ffffffff820eeaa0 r __pci_fixup_nvidia_force_enable_hpet475 +ffffffff820eeab8 r __pci_fixup_nvidia_force_enable_hpet473 +ffffffff820eead0 r __pci_fixup_nvidia_force_enable_hpet471 +ffffffff820eeae8 r __pci_fixup_nvidia_force_enable_hpet469 +ffffffff820eeb00 r __pci_fixup_nvidia_force_enable_hpet467 +ffffffff820eeb18 r __pci_fixup_nvidia_force_enable_hpet465 +ffffffff820eeb30 r __pci_fixup_nvidia_force_enable_hpet463 +ffffffff820eeb48 r __pci_fixup_nvidia_force_enable_hpet461 +ffffffff820eeb60 r __pci_fixup_nvidia_force_enable_hpet457 +ffffffff820eeb78 r __pci_fixup_nvidia_force_enable_hpet455 +ffffffff820eeb90 r __pci_fixup_ati_force_enable_hpet420 +ffffffff820eeba8 r __pci_fixup_vt8237_force_enable_hpet349 +ffffffff820eebc0 r __pci_fixup_vt8237_force_enable_hpet347 +ffffffff820eebd8 r __pci_fixup_vt8237_force_enable_hpet345 +ffffffff820eebf0 r __pci_fixup_old_ich_force_enable_hpet280 +ffffffff820eec08 r __pci_fixup_old_ich_force_enable_hpet278 +ffffffff820eec20 r __pci_fixup_old_ich_force_enable_hpet_user276 +ffffffff820eec38 r __pci_fixup_old_ich_force_enable_hpet_user274 +ffffffff820eec50 r __pci_fixup_old_ich_force_enable_hpet_user272 +ffffffff820eec68 r __pci_fixup_old_ich_force_enable_hpet_user270 +ffffffff820eec80 r __pci_fixup_old_ich_force_enable_hpet_user268 +ffffffff820eec98 r __pci_fixup_ich_force_enable_hpet176 +ffffffff820eecb0 r __pci_fixup_ich_force_enable_hpet174 +ffffffff820eecc8 r __pci_fixup_ich_force_enable_hpet172 +ffffffff820eece0 r __pci_fixup_ich_force_enable_hpet170 +ffffffff820eecf8 r __pci_fixup_ich_force_enable_hpet168 +ffffffff820eed10 r __pci_fixup_ich_force_enable_hpet166 +ffffffff820eed28 r __pci_fixup_ich_force_enable_hpet164 +ffffffff820eed40 r __pci_fixup_ich_force_enable_hpet162 +ffffffff820eed58 r __pci_fixup_ich_force_enable_hpet160 +ffffffff820eed70 r __pci_fixup_ich_force_enable_hpet158 +ffffffff820eed88 r __pci_fixup_quirk_chelsio_T5_disable_root_port_attributes4182 +ffffffff820eeda0 r __pci_fixup_quirk_bridge_cavm_thrx2_pcie_root4014 +ffffffff820eedb8 r __pci_fixup_quirk_bridge_cavm_thrx2_pcie_root4012 +ffffffff820eedd0 r __pci_fixup_quirk_mic_x200_dma_alias4000 +ffffffff820eede8 r __pci_fixup_quirk_mic_x200_dma_alias3999 +ffffffff820eee00 r __pci_fixup_quirk_use_pcie_bridge_dma_alias3985 +ffffffff820eee18 r __pci_fixup_quirk_use_pcie_bridge_dma_alias3983 +ffffffff820eee30 r __pci_fixup_quirk_use_pcie_bridge_dma_alias3981 +ffffffff820eee48 r __pci_fixup_quirk_use_pcie_bridge_dma_alias3979 +ffffffff820eee60 r __pci_fixup_quirk_use_pcie_bridge_dma_alias3977 +ffffffff820eee78 r __pci_fixup_quirk_fixed_dma_alias3956 +ffffffff820eee90 r __pci_fixup_quirk_dma_func1_alias3920 +ffffffff820eeea8 r __pci_fixup_quirk_dma_func1_alias3916 +ffffffff820eeec0 r __pci_fixup_quirk_dma_func1_alias3912 +ffffffff820eeed8 r __pci_fixup_quirk_dma_func1_alias3910 +ffffffff820eeef0 r __pci_fixup_quirk_dma_func1_alias3908 +ffffffff820eef08 r __pci_fixup_quirk_dma_func1_alias3905 +ffffffff820eef20 r __pci_fixup_quirk_dma_func1_alias3902 +ffffffff820eef38 r __pci_fixup_quirk_dma_func1_alias3899 +ffffffff820eef50 r __pci_fixup_quirk_dma_func1_alias3896 +ffffffff820eef68 r __pci_fixup_quirk_dma_func1_alias3893 +ffffffff820eef80 r __pci_fixup_quirk_dma_func1_alias3890 +ffffffff820eef98 r __pci_fixup_quirk_dma_func1_alias3888 +ffffffff820eefb0 r __pci_fixup_quirk_dma_func1_alias3886 +ffffffff820eefc8 r __pci_fixup_quirk_dma_func0_alias3871 +ffffffff820eefe0 r __pci_fixup_quirk_dma_func0_alias3870 +ffffffff820eeff8 r __pci_fixup_quirk_no_pm_reset3395 +ffffffff820ef010 r __pci_fixup_quirk_no_bus_reset3374 +ffffffff820ef028 r __pci_fixup_quirk_no_bus_reset3367 +ffffffff820ef040 r __pci_fixup_quirk_no_bus_reset3366 +ffffffff820ef058 r __pci_fixup_quirk_no_bus_reset3365 +ffffffff820ef070 r __pci_fixup_quirk_no_bus_reset3364 +ffffffff820ef088 r __pci_fixup_quirk_intel_ntb3102 +ffffffff820ef0a0 r __pci_fixup_quirk_intel_ntb3101 +ffffffff820ef0b8 r __pci_fixup_quirk_intel_mc_errata3076 +ffffffff820ef0d0 r __pci_fixup_quirk_intel_mc_errata3075 +ffffffff820ef0e8 r __pci_fixup_quirk_intel_mc_errata3074 +ffffffff820ef100 r __pci_fixup_quirk_intel_mc_errata3073 +ffffffff820ef118 r __pci_fixup_quirk_intel_mc_errata3072 +ffffffff820ef130 r __pci_fixup_quirk_intel_mc_errata3071 +ffffffff820ef148 r __pci_fixup_quirk_intel_mc_errata3070 +ffffffff820ef160 r __pci_fixup_quirk_intel_mc_errata3069 +ffffffff820ef178 r __pci_fixup_quirk_intel_mc_errata3068 +ffffffff820ef190 r __pci_fixup_quirk_intel_mc_errata3067 +ffffffff820ef1a8 r __pci_fixup_quirk_intel_mc_errata3066 +ffffffff820ef1c0 r __pci_fixup_quirk_intel_mc_errata3064 +ffffffff820ef1d8 r __pci_fixup_quirk_intel_mc_errata3063 +ffffffff820ef1f0 r __pci_fixup_quirk_intel_mc_errata3062 +ffffffff820ef208 r __pci_fixup_quirk_intel_mc_errata3061 +ffffffff820ef220 r __pci_fixup_quirk_intel_mc_errata3060 +ffffffff820ef238 r __pci_fixup_quirk_intel_mc_errata3059 +ffffffff820ef250 r __pci_fixup_quirk_intel_mc_errata3058 +ffffffff820ef268 r __pci_fixup_quirk_intel_mc_errata3057 +ffffffff820ef280 r __pci_fixup_quirk_intel_mc_errata3056 +ffffffff820ef298 r __pci_fixup_quirk_intel_mc_errata3055 +ffffffff820ef2b0 r __pci_fixup_quirk_intel_mc_errata3054 +ffffffff820ef2c8 r __pci_fixup_quirk_intel_mc_errata3053 +ffffffff820ef2e0 r __pci_fixup_quirk_intel_mc_errata3052 +ffffffff820ef2f8 r __pci_fixup_quirk_intel_mc_errata3051 +ffffffff820ef310 r __pci_fixup_fixup_mpss_2563009 +ffffffff820ef328 r __pci_fixup_fixup_mpss_2563007 +ffffffff820ef340 r __pci_fixup_fixup_mpss_2563005 +ffffffff820ef358 r __pci_fixup_quirk_hotplug_bridge2847 +ffffffff820ef370 r __pci_fixup_ht_enable_msi_mapping2479 +ffffffff820ef388 r __pci_fixup_ht_enable_msi_mapping2476 +ffffffff820ef3a0 r __pci_fixup_quirk_p64h2_1k_io2114 +ffffffff820ef3b8 r __pci_fixup_fixup_rev1_53c8102100 +ffffffff820ef3d0 r __pci_fixup_quirk_netmos1968 +ffffffff820ef3e8 r __pci_fixup_quirk_plx_pci90501932 +ffffffff820ef400 r __pci_fixup_quirk_plx_pci90501931 +ffffffff820ef418 r __pci_fixup_quirk_plx_pci90501921 +ffffffff820ef430 r __pci_fixup_quirk_tc86c001_ide1893 +ffffffff820ef448 r __pci_fixup_quirk_alder_ioapic1626 +ffffffff820ef460 r __pci_fixup_asus_hides_ac97_lpc1511 +ffffffff820ef478 r __pci_fixup_quirk_sis_5031477 +ffffffff820ef490 r __pci_fixup_quirk_sis_96x_smbus1440 +ffffffff820ef4a8 r __pci_fixup_quirk_sis_96x_smbus1439 +ffffffff820ef4c0 r __pci_fixup_quirk_sis_96x_smbus1438 +ffffffff820ef4d8 r __pci_fixup_quirk_sis_96x_smbus1437 +ffffffff820ef4f0 r __pci_fixup_asus_hides_smbus_lpc_ich61420 +ffffffff820ef508 r __pci_fixup_asus_hides_smbus_lpc1368 +ffffffff820ef520 r __pci_fixup_asus_hides_smbus_lpc1367 +ffffffff820ef538 r __pci_fixup_asus_hides_smbus_lpc1366 +ffffffff820ef550 r __pci_fixup_asus_hides_smbus_lpc1365 +ffffffff820ef568 r __pci_fixup_asus_hides_smbus_lpc1364 +ffffffff820ef580 r __pci_fixup_asus_hides_smbus_lpc1363 +ffffffff820ef598 r __pci_fixup_asus_hides_smbus_lpc1362 +ffffffff820ef5b0 r __pci_fixup_asus_hides_smbus_hostbridge1342 +ffffffff820ef5c8 r __pci_fixup_asus_hides_smbus_hostbridge1341 +ffffffff820ef5e0 r __pci_fixup_asus_hides_smbus_hostbridge1340 +ffffffff820ef5f8 r __pci_fixup_asus_hides_smbus_hostbridge1338 +ffffffff820ef610 r __pci_fixup_asus_hides_smbus_hostbridge1337 +ffffffff820ef628 r __pci_fixup_asus_hides_smbus_hostbridge1336 +ffffffff820ef640 r __pci_fixup_asus_hides_smbus_hostbridge1335 +ffffffff820ef658 r __pci_fixup_asus_hides_smbus_hostbridge1334 +ffffffff820ef670 r __pci_fixup_asus_hides_smbus_hostbridge1333 +ffffffff820ef688 r __pci_fixup_asus_hides_smbus_hostbridge1332 +ffffffff820ef6a0 r __pci_fixup_asus_hides_smbus_hostbridge1331 +ffffffff820ef6b8 r __pci_fixup_asus_hides_smbus_hostbridge1330 +ffffffff820ef6d0 r __pci_fixup_asus_hides_smbus_hostbridge1329 +ffffffff820ef6e8 r __pci_fixup_quirk_eisa_bridge1181 +ffffffff820ef700 r __pci_fixup_quirk_amd_ide_mode1116 +ffffffff820ef718 r __pci_fixup_quirk_amd_ide_mode1114 +ffffffff820ef730 r __pci_fixup_quirk_amd_ide_mode1112 +ffffffff820ef748 r __pci_fixup_quirk_amd_ide_mode1110 +ffffffff820ef760 r __pci_fixup_quirk_transparent_bridge1049 +ffffffff820ef778 r __pci_fixup_quirk_transparent_bridge1048 +ffffffff820ef790 r __pci_fixup_quirk_dunord1036 +ffffffff820ef7a8 r __pci_fixup_quirk_vt82c598_id981 +ffffffff820ef7c0 r __pci_fixup_quirk_via_bridge923 +ffffffff820ef7d8 r __pci_fixup_quirk_via_bridge922 +ffffffff820ef7f0 r __pci_fixup_quirk_via_bridge921 +ffffffff820ef808 r __pci_fixup_quirk_via_bridge920 +ffffffff820ef820 r __pci_fixup_quirk_via_bridge919 +ffffffff820ef838 r __pci_fixup_quirk_via_bridge918 +ffffffff820ef850 r __pci_fixup_quirk_via_bridge917 +ffffffff820ef868 r __pci_fixup_quirk_via_bridge916 +ffffffff820ef880 r __pci_fixup_quirk_via_acpi881 +ffffffff820ef898 r __pci_fixup_quirk_via_acpi880 +ffffffff820ef8b0 r __pci_fixup_quirk_vt8235_acpi747 +ffffffff820ef8c8 r __pci_fixup_quirk_vt82c686_acpi735 +ffffffff820ef8e0 r __pci_fixup_quirk_vt82c586_acpi718 +ffffffff820ef8f8 r __pci_fixup_quirk_ich7_lpc706 +ffffffff820ef910 r __pci_fixup_quirk_ich7_lpc705 +ffffffff820ef928 r __pci_fixup_quirk_ich7_lpc704 +ffffffff820ef940 r __pci_fixup_quirk_ich7_lpc703 +ffffffff820ef958 r __pci_fixup_quirk_ich7_lpc702 +ffffffff820ef970 r __pci_fixup_quirk_ich7_lpc701 +ffffffff820ef988 r __pci_fixup_quirk_ich7_lpc700 +ffffffff820ef9a0 r __pci_fixup_quirk_ich7_lpc699 +ffffffff820ef9b8 r __pci_fixup_quirk_ich7_lpc698 +ffffffff820ef9d0 r __pci_fixup_quirk_ich7_lpc697 +ffffffff820ef9e8 r __pci_fixup_quirk_ich7_lpc696 +ffffffff820efa00 r __pci_fixup_quirk_ich7_lpc695 +ffffffff820efa18 r __pci_fixup_quirk_ich7_lpc694 +ffffffff820efa30 r __pci_fixup_quirk_ich6_lpc657 +ffffffff820efa48 r __pci_fixup_quirk_ich6_lpc656 +ffffffff820efa60 r __pci_fixup_quirk_ich4_lpc_acpi602 +ffffffff820efa78 r __pci_fixup_quirk_ich4_lpc_acpi601 +ffffffff820efa90 r __pci_fixup_quirk_ich4_lpc_acpi600 +ffffffff820efaa8 r __pci_fixup_quirk_ich4_lpc_acpi599 +ffffffff820efac0 r __pci_fixup_quirk_ich4_lpc_acpi598 +ffffffff820efad8 r __pci_fixup_quirk_ich4_lpc_acpi597 +ffffffff820efaf0 r __pci_fixup_quirk_ich4_lpc_acpi596 +ffffffff820efb08 r __pci_fixup_quirk_ich4_lpc_acpi595 +ffffffff820efb20 r __pci_fixup_quirk_ich4_lpc_acpi594 +ffffffff820efb38 r __pci_fixup_quirk_ich4_lpc_acpi593 +ffffffff820efb50 r __pci_fixup_quirk_piix4_acpi553 +ffffffff820efb68 r __pci_fixup_quirk_piix4_acpi552 +ffffffff820efb80 r __pci_fixup_quirk_ali7101_acpi465 +ffffffff820efb98 r __pci_fixup_quirk_amd_nl_class447 +ffffffff820efbb0 r __pci_fixup_quirk_cs5536_vsa387 +ffffffff820efbc8 r __pci_fixup_quirk_s3_64M337 +ffffffff820efbe0 r __pci_fixup_quirk_s3_64M336 +ffffffff820efbf8 r __pci_fixup_quirk_extend_bar_to_page320 +ffffffff820efc10 r __pci_fixup_quirk_nfp6000301 +ffffffff820efc28 r __pci_fixup_quirk_nfp6000300 +ffffffff820efc40 r __pci_fixup_quirk_nfp6000299 +ffffffff820efc58 r __pci_fixup_quirk_citrine289 +ffffffff820efc70 r __pci_fixup_quirk_tigerpoint_bm_sts121 +ffffffff820efc88 r __pci_fixup_quirk_calpella_no_shadow_gtt5418 +ffffffff820efca0 r __pci_fixup_quirk_calpella_no_shadow_gtt5417 +ffffffff820efcb8 r __pci_fixup_quirk_calpella_no_shadow_gtt5416 +ffffffff820efcd0 r __pci_fixup_quirk_calpella_no_shadow_gtt5415 +ffffffff820efce8 r __pci_fixup_quirk_iommu_rwbf5387 +ffffffff820efd00 r __pci_fixup_quirk_iommu_rwbf5386 +ffffffff820efd18 r __pci_fixup_quirk_iommu_rwbf5385 +ffffffff820efd30 r __pci_fixup_quirk_iommu_rwbf5384 +ffffffff820efd48 r __pci_fixup_quirk_iommu_rwbf5383 +ffffffff820efd60 r __pci_fixup_quirk_iommu_rwbf5382 +ffffffff820efd78 r __pci_fixup_quirk_iommu_rwbf5381 +ffffffff820efd90 r __pci_fixup_quirk_iommu_g4x_gfx5369 +ffffffff820efda8 r __pci_fixup_quirk_iommu_g4x_gfx5368 +ffffffff820efdc0 r __pci_fixup_quirk_iommu_g4x_gfx5367 +ffffffff820efdd8 r __pci_fixup_quirk_iommu_g4x_gfx5366 +ffffffff820efdf0 r __pci_fixup_quirk_iommu_g4x_gfx5365 +ffffffff820efe08 r __pci_fixup_quirk_iommu_g4x_gfx5364 +ffffffff820efe20 r __pci_fixup_quirk_iommu_g4x_gfx5363 +ffffffff820efe38 r __pci_fixup_quirk_apple_mbp_poweroff621 +ffffffff820efe50 r __pci_fixup_twinhead_reserve_killing_zone554 +ffffffff820efe68 r __pci_fixup_sb600_hpet_quirk536 +ffffffff820efe80 r __pci_fixup_pci_siemens_interrupt_controller496 +ffffffff820efe98 r __pci_fixup_pci_pre_fixup_toshiba_ohci1394451 +ffffffff820efeb0 r __pci_fixup_pci_fixup_msi_k8t_onboard_sound402 +ffffffff820efec8 r __pci_fixup_pci_fixup_nforce2196 +ffffffff820efee0 r __pci_fixup_pci_fixup_transparent_bridge160 +ffffffff820efef8 r __pci_fixup_pci_fixup_via_northbridge_bug139 +ffffffff820eff10 r __pci_fixup_pci_fixup_via_northbridge_bug138 +ffffffff820eff28 r __pci_fixup_pci_fixup_via_northbridge_bug137 +ffffffff820eff40 r __pci_fixup_pci_fixup_via_northbridge_bug136 +ffffffff820eff58 r __pci_fixup_pci_fixup_piix4_acpi85 +ffffffff820eff70 r __pci_fixup_pci_fixup_latency76 +ffffffff820eff88 r __pci_fixup_pci_fixup_latency75 +ffffffff820effa0 r __pci_fixup_pci_fixup_umc_ide64 +ffffffff820effb8 r __pci_fixup_pci_fixup_i450gx50 +ffffffff820effd0 r __pci_fixup_pci_fixup_i450nx36 +ffffffff820effe8 R __end_pci_fixups_header +ffffffff820effe8 r __pci_fixup_via_no_dac289 +ffffffff820effe8 R __start_pci_fixups_final +ffffffff820f0000 r __pci_fixup_amd_disable_seq_and_redirect_scrub628 +ffffffff820f0018 r __pci_fixup_quirk_intel_irqbalance54 +ffffffff820f0030 r __pci_fixup_quirk_intel_irqbalance52 +ffffffff820f0048 r __pci_fixup_quirk_intel_irqbalance50 +ffffffff820f0060 r __pci_fixup_quirk_fsl_no_msi4843 +ffffffff820f0078 r __pci_fixup_quirk_no_ats4834 +ffffffff820f0090 r __pci_fixup_quirk_chelsio_extend_vpd3444 +ffffffff820f00a8 r __pci_fixup_quirk_thunderbolt_hotplug_msi3418 +ffffffff820f00c0 r __pci_fixup_quirk_thunderbolt_hotplug_msi3416 +ffffffff820f00d8 r __pci_fixup_quirk_thunderbolt_hotplug_msi3414 +ffffffff820f00f0 r __pci_fixup_quirk_thunderbolt_hotplug_msi3412 +ffffffff820f0108 r __pci_fixup_quirk_thunderbolt_hotplug_msi3410 +ffffffff820f0120 r __pci_fixup_mellanox_check_broken_intx_masking3350 +ffffffff820f0138 r __pci_fixup_quirk_broken_intx_masking3263 +ffffffff820f0150 r __pci_fixup_quirk_broken_intx_masking3261 +ffffffff820f0168 r __pci_fixup_quirk_broken_intx_masking3259 +ffffffff820f0180 r __pci_fixup_quirk_broken_intx_masking3257 +ffffffff820f0198 r __pci_fixup_quirk_broken_intx_masking3255 +ffffffff820f01b0 r __pci_fixup_quirk_broken_intx_masking3253 +ffffffff820f01c8 r __pci_fixup_quirk_broken_intx_masking3251 +ffffffff820f01e0 r __pci_fixup_quirk_broken_intx_masking3249 +ffffffff820f01f8 r __pci_fixup_quirk_broken_intx_masking3247 +ffffffff820f0210 r __pci_fixup_quirk_broken_intx_masking3245 +ffffffff820f0228 r __pci_fixup_quirk_broken_intx_masking3243 +ffffffff820f0240 r __pci_fixup_quirk_broken_intx_masking3241 +ffffffff820f0258 r __pci_fixup_quirk_broken_intx_masking3239 +ffffffff820f0270 r __pci_fixup_quirk_broken_intx_masking3237 +ffffffff820f0288 r __pci_fixup_quirk_broken_intx_masking3235 +ffffffff820f02a0 r __pci_fixup_quirk_broken_intx_masking3233 +ffffffff820f02b8 r __pci_fixup_quirk_broken_intx_masking3226 +ffffffff820f02d0 r __pci_fixup_quirk_broken_intx_masking3217 +ffffffff820f02e8 r __pci_fixup_quirk_broken_intx_masking3215 +ffffffff820f0300 r __pci_fixup_quirk_broken_intx_masking3213 +ffffffff820f0318 r __pci_fixup_quirk_remove_d3_delay3201 +ffffffff820f0330 r __pci_fixup_quirk_remove_d3_delay3200 +ffffffff820f0348 r __pci_fixup_quirk_remove_d3_delay3199 +ffffffff820f0360 r __pci_fixup_quirk_remove_d3_delay3198 +ffffffff820f0378 r __pci_fixup_quirk_remove_d3_delay3197 +ffffffff820f0390 r __pci_fixup_quirk_remove_d3_delay3196 +ffffffff820f03a8 r __pci_fixup_quirk_remove_d3_delay3195 +ffffffff820f03c0 r __pci_fixup_quirk_remove_d3_delay3194 +ffffffff820f03d8 r __pci_fixup_quirk_remove_d3_delay3193 +ffffffff820f03f0 r __pci_fixup_quirk_remove_d3_delay3191 +ffffffff820f0408 r __pci_fixup_quirk_remove_d3_delay3190 +ffffffff820f0420 r __pci_fixup_quirk_remove_d3_delay3189 +ffffffff820f0438 r __pci_fixup_quirk_remove_d3_delay3188 +ffffffff820f0450 r __pci_fixup_quirk_remove_d3_delay3187 +ffffffff820f0468 r __pci_fixup_quirk_remove_d3_delay3186 +ffffffff820f0480 r __pci_fixup_quirk_remove_d3_delay3185 +ffffffff820f0498 r __pci_fixup_quirk_remove_d3_delay3184 +ffffffff820f04b0 r __pci_fixup_quirk_remove_d3_delay3183 +ffffffff820f04c8 r __pci_fixup_quirk_remove_d3_delay3182 +ffffffff820f04e0 r __pci_fixup_quirk_remove_d3_delay3181 +ffffffff820f04f8 r __pci_fixup_quirk_remove_d3_delay3179 +ffffffff820f0510 r __pci_fixup_quirk_remove_d3_delay3178 +ffffffff820f0528 r __pci_fixup_quirk_remove_d3_delay3177 +ffffffff820f0540 r __pci_fixup_disable_igfx_irq3166 +ffffffff820f0558 r __pci_fixup_disable_igfx_irq3165 +ffffffff820f0570 r __pci_fixup_disable_igfx_irq3164 +ffffffff820f0588 r __pci_fixup_quirk_msi_intx_disable_qca_bug2833 +ffffffff820f05a0 r __pci_fixup_quirk_msi_intx_disable_qca_bug2831 +ffffffff820f05b8 r __pci_fixup_quirk_msi_intx_disable_qca_bug2829 +ffffffff820f05d0 r __pci_fixup_quirk_msi_intx_disable_qca_bug2827 +ffffffff820f05e8 r __pci_fixup_quirk_msi_intx_disable_qca_bug2825 +ffffffff820f0600 r __pci_fixup_quirk_msi_intx_disable_bug2823 +ffffffff820f0618 r __pci_fixup_quirk_msi_intx_disable_bug2821 +ffffffff820f0630 r __pci_fixup_quirk_msi_intx_disable_bug2819 +ffffffff820f0648 r __pci_fixup_quirk_msi_intx_disable_bug2817 +ffffffff820f0660 r __pci_fixup_quirk_msi_intx_disable_bug2815 +ffffffff820f0678 r __pci_fixup_quirk_msi_intx_disable_bug2813 +ffffffff820f0690 r __pci_fixup_quirk_msi_intx_disable_bug2810 +ffffffff820f06a8 r __pci_fixup_quirk_msi_intx_disable_bug2808 +ffffffff820f06c0 r __pci_fixup_quirk_msi_intx_disable_bug2806 +ffffffff820f06d8 r __pci_fixup_quirk_msi_intx_disable_ati_bug2803 +ffffffff820f06f0 r __pci_fixup_quirk_msi_intx_disable_ati_bug2801 +ffffffff820f0708 r __pci_fixup_quirk_msi_intx_disable_ati_bug2799 +ffffffff820f0720 r __pci_fixup_quirk_msi_intx_disable_ati_bug2797 +ffffffff820f0738 r __pci_fixup_quirk_msi_intx_disable_ati_bug2795 +ffffffff820f0750 r __pci_fixup_quirk_msi_intx_disable_bug2792 +ffffffff820f0768 r __pci_fixup_quirk_msi_intx_disable_bug2789 +ffffffff820f0780 r __pci_fixup_quirk_msi_intx_disable_bug2786 +ffffffff820f0798 r __pci_fixup_quirk_msi_intx_disable_bug2783 +ffffffff820f07b0 r __pci_fixup_quirk_msi_intx_disable_bug2780 +ffffffff820f07c8 r __pci_fixup_quirk_msi_intx_disable_bug2777 +ffffffff820f07e0 r __pci_fixup_nv_msi_ht_cap_quirk_all2743 +ffffffff820f07f8 r __pci_fixup_nv_msi_ht_cap_quirk_leaf2740 +ffffffff820f0810 r __pci_fixup_quirk_nvidia_ck804_msi_ht_cap2452 +ffffffff820f0828 r __pci_fixup_quirk_msi_ht_cap2427 +ffffffff820f0840 r __pci_fixup_quirk_amd_780_apc_msi2392 +ffffffff820f0858 r __pci_fixup_quirk_amd_780_apc_msi2391 +ffffffff820f0870 r __pci_fixup_quirk_disable_msi2372 +ffffffff820f0888 r __pci_fixup_quirk_disable_msi2371 +ffffffff820f08a0 r __pci_fixup_quirk_disable_msi2370 +ffffffff820f08b8 r __pci_fixup_quirk_disable_all_msi2360 +ffffffff820f08d0 r __pci_fixup_quirk_disable_all_msi2359 +ffffffff820f08e8 r __pci_fixup_quirk_disable_all_msi2358 +ffffffff820f0900 r __pci_fixup_quirk_disable_all_msi2357 +ffffffff820f0918 r __pci_fixup_quirk_disable_all_msi2356 +ffffffff820f0930 r __pci_fixup_quirk_disable_all_msi2355 +ffffffff820f0948 r __pci_fixup_quirk_disable_all_msi2354 +ffffffff820f0960 r __pci_fixup_quirk_disable_all_msi2353 +ffffffff820f0978 r __pci_fixup_quirk_brcm_570x_limit_vpd2260 +ffffffff820f0990 r __pci_fixup_quirk_brcm_570x_limit_vpd2257 +ffffffff820f09a8 r __pci_fixup_quirk_brcm_570x_limit_vpd2254 +ffffffff820f09c0 r __pci_fixup_quirk_brcm_570x_limit_vpd2251 +ffffffff820f09d8 r __pci_fixup_quirk_brcm_570x_limit_vpd2248 +ffffffff820f09f0 r __pci_fixup_quirk_brcm_570x_limit_vpd2245 +ffffffff820f0a08 r __pci_fixup_quirk_blacklist_vpd2213 +ffffffff820f0a20 r __pci_fixup_quirk_blacklist_vpd2212 +ffffffff820f0a38 r __pci_fixup_quirk_blacklist_vpd2210 +ffffffff820f0a50 r __pci_fixup_quirk_blacklist_vpd2209 +ffffffff820f0a68 r __pci_fixup_quirk_blacklist_vpd2208 +ffffffff820f0a80 r __pci_fixup_quirk_blacklist_vpd2207 +ffffffff820f0a98 r __pci_fixup_quirk_blacklist_vpd2206 +ffffffff820f0ab0 r __pci_fixup_quirk_blacklist_vpd2205 +ffffffff820f0ac8 r __pci_fixup_quirk_blacklist_vpd2204 +ffffffff820f0ae0 r __pci_fixup_quirk_blacklist_vpd2203 +ffffffff820f0af8 r __pci_fixup_quirk_blacklist_vpd2202 +ffffffff820f0b10 r __pci_fixup_quirk_blacklist_vpd2201 +ffffffff820f0b28 r __pci_fixup_quirk_blacklist_vpd2200 +ffffffff820f0b40 r __pci_fixup_quirk_via_cx700_pci_parking_caching2183 +ffffffff820f0b58 r __pci_fixup_quirk_nvidia_ck804_pcie_aer_ext_cap2131 +ffffffff820f0b70 r __pci_fixup_quirk_disable_aspm_l0s2083 +ffffffff820f0b88 r __pci_fixup_quirk_disable_aspm_l0s2082 +ffffffff820f0ba0 r __pci_fixup_quirk_disable_aspm_l0s2081 +ffffffff820f0bb8 r __pci_fixup_quirk_disable_aspm_l0s2080 +ffffffff820f0bd0 r __pci_fixup_quirk_disable_aspm_l0s2079 +ffffffff820f0be8 r __pci_fixup_quirk_disable_aspm_l0s2078 +ffffffff820f0c00 r __pci_fixup_quirk_disable_aspm_l0s2077 +ffffffff820f0c18 r __pci_fixup_quirk_disable_aspm_l0s2076 +ffffffff820f0c30 r __pci_fixup_quirk_disable_aspm_l0s2075 +ffffffff820f0c48 r __pci_fixup_quirk_disable_aspm_l0s2074 +ffffffff820f0c60 r __pci_fixup_quirk_disable_aspm_l0s2073 +ffffffff820f0c78 r __pci_fixup_quirk_disable_aspm_l0s2072 +ffffffff820f0c90 r __pci_fixup_quirk_disable_aspm_l0s2071 +ffffffff820f0ca8 r __pci_fixup_quirk_disable_aspm_l0s2070 +ffffffff820f0cc0 r __pci_fixup_quirk_e100_interrupt2059 +ffffffff820f0cd8 r __pci_fixup_quirk_disable_amd_8111_boot_interrupt1872 +ffffffff820f0cf0 r __pci_fixup_quirk_disable_amd_813x_boot_interrupt1850 +ffffffff820f0d08 r __pci_fixup_quirk_disable_amd_813x_boot_interrupt1848 +ffffffff820f0d20 r __pci_fixup_quirk_disable_broadcom_boot_interrupt1815 +ffffffff820f0d38 r __pci_fixup_quirk_disable_intel_boot_interrupt1782 +ffffffff820f0d50 r __pci_fixup_quirk_reroute_to_boot_interrupts_intel1746 +ffffffff820f0d68 r __pci_fixup_quirk_reroute_to_boot_interrupts_intel1745 +ffffffff820f0d80 r __pci_fixup_quirk_reroute_to_boot_interrupts_intel1744 +ffffffff820f0d98 r __pci_fixup_quirk_reroute_to_boot_interrupts_intel1743 +ffffffff820f0db0 r __pci_fixup_quirk_reroute_to_boot_interrupts_intel1742 +ffffffff820f0dc8 r __pci_fixup_quirk_reroute_to_boot_interrupts_intel1741 +ffffffff820f0de0 r __pci_fixup_quirk_reroute_to_boot_interrupts_intel1740 +ffffffff820f0df8 r __pci_fixup_quirk_reroute_to_boot_interrupts_intel1739 +ffffffff820f0e10 r __pci_fixup_quirk_radeon_pm1697 +ffffffff820f0e28 r __pci_fixup_quirk_intel_pcie_pm1684 +ffffffff820f0e40 r __pci_fixup_quirk_intel_pcie_pm1683 +ffffffff820f0e58 r __pci_fixup_quirk_intel_pcie_pm1682 +ffffffff820f0e70 r __pci_fixup_quirk_intel_pcie_pm1681 +ffffffff820f0e88 r __pci_fixup_quirk_intel_pcie_pm1680 +ffffffff820f0ea0 r __pci_fixup_quirk_intel_pcie_pm1679 +ffffffff820f0eb8 r __pci_fixup_quirk_intel_pcie_pm1678 +ffffffff820f0ed0 r __pci_fixup_quirk_intel_pcie_pm1677 +ffffffff820f0ee8 r __pci_fixup_quirk_intel_pcie_pm1676 +ffffffff820f0f00 r __pci_fixup_quirk_intel_pcie_pm1675 +ffffffff820f0f18 r __pci_fixup_quirk_intel_pcie_pm1674 +ffffffff820f0f30 r __pci_fixup_quirk_intel_pcie_pm1673 +ffffffff820f0f48 r __pci_fixup_quirk_intel_pcie_pm1672 +ffffffff820f0f60 r __pci_fixup_quirk_intel_pcie_pm1671 +ffffffff820f0f78 r __pci_fixup_quirk_intel_pcie_pm1670 +ffffffff820f0f90 r __pci_fixup_quirk_intel_pcie_pm1669 +ffffffff820f0fa8 r __pci_fixup_quirk_intel_pcie_pm1668 +ffffffff820f0fc0 r __pci_fixup_quirk_intel_pcie_pm1667 +ffffffff820f0fd8 r __pci_fixup_quirk_intel_pcie_pm1666 +ffffffff820f0ff0 r __pci_fixup_quirk_intel_pcie_pm1665 +ffffffff820f1008 r __pci_fixup_quirk_intel_pcie_pm1664 +ffffffff820f1020 r __pci_fixup_quirk_pcie_mch1637 +ffffffff820f1038 r __pci_fixup_quirk_pcie_mch1635 +ffffffff820f1050 r __pci_fixup_quirk_pcie_mch1634 +ffffffff820f1068 r __pci_fixup_quirk_pcie_mch1633 +ffffffff820f1080 r __pci_fixup_quirk_jmicron_async_suspend1605 +ffffffff820f1098 r __pci_fixup_quirk_jmicron_async_suspend1604 +ffffffff820f10b0 r __pci_fixup_quirk_jmicron_async_suspend1603 +ffffffff820f10c8 r __pci_fixup_quirk_jmicron_async_suspend1602 +ffffffff820f10e0 r __pci_fixup_quirk_disable_pxb1090 +ffffffff820f10f8 r __pci_fixup_quirk_mediagx_master1069 +ffffffff820f1110 r __pci_fixup_quirk_amd_ordering1018 +ffffffff820f1128 r __pci_fixup_quirk_cardbus_legacy994 +ffffffff820f1140 r __pci_fixup_quirk_amd_8131_mmrbc859 +ffffffff820f1158 r __pci_fixup_quirk_amd_ioapic833 +ffffffff820f1170 r __pci_fixup_quirk_via_vt8237_bypass_apic_deassert814 +ffffffff820f1188 r __pci_fixup_quirk_via_ioapic794 +ffffffff820f11a0 r __pci_fixup_quirk_xio2000a766 +ffffffff820f11b8 r __pci_fixup_quirk_ati_exploding_mce425 +ffffffff820f11d0 r __pci_fixup_quirk_natoma279 +ffffffff820f11e8 r __pci_fixup_quirk_natoma278 +ffffffff820f1200 r __pci_fixup_quirk_natoma277 +ffffffff820f1218 r __pci_fixup_quirk_natoma276 +ffffffff820f1230 r __pci_fixup_quirk_natoma275 +ffffffff820f1248 r __pci_fixup_quirk_natoma274 +ffffffff820f1260 r __pci_fixup_quirk_alimagik261 +ffffffff820f1278 r __pci_fixup_quirk_alimagik260 +ffffffff820f1290 r __pci_fixup_quirk_vsfx245 +ffffffff820f12a8 r __pci_fixup_quirk_viaetbf236 +ffffffff820f12c0 r __pci_fixup_quirk_vialatency220 +ffffffff820f12d8 r __pci_fixup_quirk_vialatency219 +ffffffff820f12f0 r __pci_fixup_quirk_vialatency218 +ffffffff820f1308 r __pci_fixup_quirk_triton161 +ffffffff820f1320 r __pci_fixup_quirk_triton160 +ffffffff820f1338 r __pci_fixup_quirk_triton159 +ffffffff820f1350 r __pci_fixup_quirk_triton158 +ffffffff820f1368 r __pci_fixup_quirk_nopciamd146 +ffffffff820f1380 r __pci_fixup_quirk_nopcipci134 +ffffffff820f1398 r __pci_fixup_quirk_nopcipci133 +ffffffff820f13b0 r __pci_fixup_quirk_isa_dma_hangs101 +ffffffff820f13c8 r __pci_fixup_quirk_isa_dma_hangs100 +ffffffff820f13e0 r __pci_fixup_quirk_isa_dma_hangs99 +ffffffff820f13f8 r __pci_fixup_quirk_isa_dma_hangs98 +ffffffff820f1410 r __pci_fixup_quirk_isa_dma_hangs97 +ffffffff820f1428 r __pci_fixup_quirk_isa_dma_hangs96 +ffffffff820f1440 r __pci_fixup_quirk_isa_dma_hangs95 +ffffffff820f1458 r __pci_fixup_quirk_passive_release74 +ffffffff820f1470 r __pci_fixup_quirk_mellanox_tavor54 +ffffffff820f1488 r __pci_fixup_quirk_mellanox_tavor53 +ffffffff820f14a0 r __pci_fixup_quirk_usb_early_handoff1270 +ffffffff820f14b8 r __pci_fixup_pci_amd_enable_64bit_bar746 +ffffffff820f14d0 r __pci_fixup_pci_amd_enable_64bit_bar745 +ffffffff820f14e8 r __pci_fixup_pci_amd_enable_64bit_bar744 +ffffffff820f1500 r __pci_fixup_pci_amd_enable_64bit_bar743 +ffffffff820f1518 r __pci_fixup_pci_amd_enable_64bit_bar742 +ffffffff820f1530 r __pci_fixup_pci_fixup_amd_ehci_pme589 +ffffffff820f1548 r __pci_fixup_pci_fixup_video357 +ffffffff820f1560 r __pci_fixup_pcie_rootport_aspm_quirk292 +ffffffff820f1578 r __pci_fixup_pcie_rootport_aspm_quirk291 +ffffffff820f1590 r __pci_fixup_pcie_rootport_aspm_quirk290 +ffffffff820f15a8 r __pci_fixup_pcie_rootport_aspm_quirk289 +ffffffff820f15c0 r __pci_fixup_pcie_rootport_aspm_quirk288 +ffffffff820f15d8 r __pci_fixup_pcie_rootport_aspm_quirk287 +ffffffff820f15f0 R __end_pci_fixups_final +ffffffff820f15f0 r __pci_fixup_quirk_brcm_5719_limit_mrrs2278 +ffffffff820f15f0 R __start_pci_fixups_enable +ffffffff820f1608 r __pci_fixup_quirk_via_vlink968 +ffffffff820f1620 r __pci_fixup_quirk_ioat_snb_local_iommu3968 +ffffffff820f1638 r __pci_fixup_pci_post_fixup_toshiba_ohci1394467 +ffffffff820f1650 R __end_pci_fixups_enable +ffffffff820f1650 r __pci_fixup_resumequirk_disable_amd_8111_boot_interrupt1873 +ffffffff820f1650 R __start_pci_fixups_resume +ffffffff820f1668 r __pci_fixup_resumequirk_disable_amd_813x_boot_interrupt1851 +ffffffff820f1680 r __pci_fixup_resumequirk_disable_amd_813x_boot_interrupt1849 +ffffffff820f1698 r __pci_fixup_resumequirk_disable_broadcom_boot_interrupt1816 +ffffffff820f16b0 r __pci_fixup_resumequirk_disable_intel_boot_interrupt1783 +ffffffff820f16c8 r __pci_fixup_resumequirk_reroute_to_boot_interrupts_intel1754 +ffffffff820f16e0 r __pci_fixup_resumequirk_reroute_to_boot_interrupts_intel1753 +ffffffff820f16f8 r __pci_fixup_resumequirk_reroute_to_boot_interrupts_intel1752 +ffffffff820f1710 r __pci_fixup_resumequirk_reroute_to_boot_interrupts_intel1751 +ffffffff820f1728 r __pci_fixup_resumequirk_reroute_to_boot_interrupts_intel1750 +ffffffff820f1740 r __pci_fixup_resumequirk_reroute_to_boot_interrupts_intel1749 +ffffffff820f1758 r __pci_fixup_resumequirk_reroute_to_boot_interrupts_intel1748 +ffffffff820f1770 r __pci_fixup_resumequirk_reroute_to_boot_interrupts_intel1747 +ffffffff820f1788 r __pci_fixup_resumeasus_hides_smbus_lpc_ich6_resume1422 +ffffffff820f17a0 r __pci_fixup_resumequirk_mediagx_master1070 +ffffffff820f17b8 r __pci_fixup_resumequirk_vialatency224 +ffffffff820f17d0 r __pci_fixup_resumequirk_vialatency223 +ffffffff820f17e8 r __pci_fixup_resumequirk_vialatency222 +ffffffff820f1800 r __pci_fixup_resumequirk_passive_release75 +ffffffff820f1818 r __pci_fixup_resumepci_amd_enable_64bit_bar751 +ffffffff820f1830 r __pci_fixup_resumepci_amd_enable_64bit_bar750 +ffffffff820f1848 r __pci_fixup_resumepci_amd_enable_64bit_bar749 +ffffffff820f1860 r __pci_fixup_resumepci_amd_enable_64bit_bar748 +ffffffff820f1878 r __pci_fixup_resumepci_amd_enable_64bit_bar747 +ffffffff820f1890 r __pci_fixup_resumepci_early_fixup_cyrix_5530485 +ffffffff820f18a8 r __pci_fixup_resumepci_fixup_msi_k8t_onboard_sound404 +ffffffff820f18c0 r __pci_fixup_resumepci_fixup_nforce2197 +ffffffff820f18d8 r __pci_fixup_resumepci_fixup_via_northbridge_bug143 +ffffffff820f18f0 r __pci_fixup_resumepci_fixup_via_northbridge_bug142 +ffffffff820f1908 r __pci_fixup_resumepci_fixup_via_northbridge_bug141 +ffffffff820f1920 r __pci_fixup_resumepci_fixup_via_northbridge_bug140 +ffffffff820f1938 R __end_pci_fixups_resume +ffffffff820f1938 r __pci_fixup_resume_earlyquirk_apple_wait_for_thunderbolt3551 +ffffffff820f1938 R __start_pci_fixups_resume_early +ffffffff820f1950 r __pci_fixup_resume_earlyquirk_apple_wait_for_thunderbolt3548 +ffffffff820f1968 r __pci_fixup_resume_earlyquirk_apple_wait_for_thunderbolt3545 +ffffffff820f1980 r __pci_fixup_resume_earlyquirk_apple_wait_for_thunderbolt3542 +ffffffff820f1998 r __pci_fixup_resume_earlynv_msi_ht_cap_quirk_all2744 +ffffffff820f19b0 r __pci_fixup_resume_earlynv_msi_ht_cap_quirk_leaf2741 +ffffffff820f19c8 r __pci_fixup_resume_earlyquirk_nvidia_ck804_pcie_aer_ext_cap2133 +ffffffff820f19e0 r __pci_fixup_resume_earlyquirk_jmicron_ata1591 +ffffffff820f19f8 r __pci_fixup_resume_earlyquirk_jmicron_ata1590 +ffffffff820f1a10 r __pci_fixup_resume_earlyquirk_jmicron_ata1589 +ffffffff820f1a28 r __pci_fixup_resume_earlyquirk_jmicron_ata1588 +ffffffff820f1a40 r __pci_fixup_resume_earlyquirk_jmicron_ata1587 +ffffffff820f1a58 r __pci_fixup_resume_earlyquirk_jmicron_ata1586 +ffffffff820f1a70 r __pci_fixup_resume_earlyquirk_jmicron_ata1585 +ffffffff820f1a88 r __pci_fixup_resume_earlyquirk_jmicron_ata1584 +ffffffff820f1aa0 r __pci_fixup_resume_earlyquirk_jmicron_ata1583 +ffffffff820f1ab8 r __pci_fixup_resume_earlyasus_hides_ac97_lpc1512 +ffffffff820f1ad0 r __pci_fixup_resume_earlyquirk_sis_5031478 +ffffffff820f1ae8 r __pci_fixup_resume_earlyquirk_sis_96x_smbus1444 +ffffffff820f1b00 r __pci_fixup_resume_earlyquirk_sis_96x_smbus1443 +ffffffff820f1b18 r __pci_fixup_resume_earlyquirk_sis_96x_smbus1442 +ffffffff820f1b30 r __pci_fixup_resume_earlyquirk_sis_96x_smbus1441 +ffffffff820f1b48 r __pci_fixup_resume_earlyasus_hides_smbus_lpc_ich6_resume_early1423 +ffffffff820f1b60 r __pci_fixup_resume_earlyasus_hides_smbus_lpc1375 +ffffffff820f1b78 r __pci_fixup_resume_earlyasus_hides_smbus_lpc1374 +ffffffff820f1b90 r __pci_fixup_resume_earlyasus_hides_smbus_lpc1373 +ffffffff820f1ba8 r __pci_fixup_resume_earlyasus_hides_smbus_lpc1372 +ffffffff820f1bc0 r __pci_fixup_resume_earlyasus_hides_smbus_lpc1371 +ffffffff820f1bd8 r __pci_fixup_resume_earlyasus_hides_smbus_lpc1370 +ffffffff820f1bf0 r __pci_fixup_resume_earlyasus_hides_smbus_lpc1369 +ffffffff820f1c08 r __pci_fixup_resume_earlyquirk_amd_ide_mode1117 +ffffffff820f1c20 r __pci_fixup_resume_earlyquirk_amd_ide_mode1115 +ffffffff820f1c38 r __pci_fixup_resume_earlyquirk_amd_ide_mode1113 +ffffffff820f1c50 r __pci_fixup_resume_earlyquirk_amd_ide_mode1111 +ffffffff820f1c68 r __pci_fixup_resume_earlyquirk_disable_pxb1091 +ffffffff820f1c80 r __pci_fixup_resume_earlyquirk_amd_ordering1019 +ffffffff820f1c98 r __pci_fixup_resume_earlyquirk_cardbus_legacy996 +ffffffff820f1cb0 r __pci_fixup_resume_earlyquirk_via_vt8237_bypass_apic_deassert815 +ffffffff820f1cc8 r __pci_fixup_resume_earlyquirk_via_ioapic795 +ffffffff820f1ce0 R __end_pci_fixups_resume_early +ffffffff820f1ce0 r __pci_fixup_suspendasus_hides_smbus_lpc_ich6_suspend1421 +ffffffff820f1ce0 R __start_pci_fixups_suspend +ffffffff820f1cf8 R __end_pci_fixups_suspend +ffffffff820f1cf8 r __pci_fixup_suspend_latequirk_apple_poweroff_thunderbolt3495 +ffffffff820f1cf8 R __start_pci_fixups_suspend_late +ffffffff820f1d10 R __end_pci_fixups_suspend_late +ffffffff820f1d10 R __start_builtin_fw +ffffffff820f1d70 R __end_builtin_fw +ffffffff820f1d70 r __param_initcall_debug +ffffffff820f1d70 A __start___kcrctab +ffffffff820f1d70 A __start___kcrctab_gpl +ffffffff820f1d70 A __start___kcrctab_gpl_future +ffffffff820f1d70 A __start___kcrctab_unused +ffffffff820f1d70 A __start___kcrctab_unused_gpl +ffffffff820f1d70 A __start___ksymtab +ffffffff820f1d70 A __start___ksymtab_gpl +ffffffff820f1d70 A __start___ksymtab_gpl_future +ffffffff820f1d70 A __start___ksymtab_unused +ffffffff820f1d70 A __start___ksymtab_unused_gpl +ffffffff820f1d70 R __start___param +ffffffff820f1d70 A __stop___kcrctab +ffffffff820f1d70 A __stop___kcrctab_gpl +ffffffff820f1d70 A __stop___kcrctab_gpl_future +ffffffff820f1d70 A __stop___kcrctab_unused +ffffffff820f1d70 A __stop___kcrctab_unused_gpl +ffffffff820f1d70 A __stop___ksymtab +ffffffff820f1d70 A __stop___ksymtab_gpl +ffffffff820f1d70 A __stop___ksymtab_gpl_future +ffffffff820f1d70 A __stop___ksymtab_unused +ffffffff820f1d70 A __stop___ksymtab_unused_gpl +ffffffff820f1d98 r __param_force +ffffffff820f1dc0 r __param_crash_kexec_post_notifiers +ffffffff820f1de8 r __param_panic_on_warn +ffffffff820f1e10 r __param_pause_on_oops +ffffffff820f1e38 r __param_panic +ffffffff820f1e60 r __param_debug_force_rr_cpu +ffffffff820f1e88 r __param_power_efficient +ffffffff820f1eb0 r __param_disable_numa +ffffffff820f1ed8 r __param_always_kmsg_dump +ffffffff820f1f00 r __param_console_suspend +ffffffff820f1f28 r __param_time +ffffffff820f1f50 r __param_ignore_loglevel +ffffffff820f1f78 r __param_irqfixup +ffffffff820f1fa0 r __param_noirqdebug +ffffffff820f1fc8 r __param_rcu_task_stall_timeout +ffffffff820f1ff0 r __param_rcu_cpu_stall_timeout +ffffffff820f2018 r __param_rcu_cpu_stall_suppress +ffffffff820f2040 r __param_rcu_normal_after_boot +ffffffff820f2068 r __param_rcu_normal +ffffffff820f2090 r __param_rcu_expedited +ffffffff820f20b8 r __param_counter_wrap_check +ffffffff820f20e0 r __param_exp_holdoff +ffffffff820f2108 r __param_jiffies_till_sched_qs +ffffffff820f2130 r __param_rcu_kick_kthreads +ffffffff820f2158 r __param_jiffies_till_next_fqs +ffffffff820f2180 r __param_jiffies_till_first_fqs +ffffffff820f21a8 r __param_qlowmark +ffffffff820f21d0 r __param_qhimark +ffffffff820f21f8 r __param_blimit +ffffffff820f2220 r __param_gp_cleanup_delay +ffffffff820f2248 r __param_gp_init_delay +ffffffff820f2270 r __param_gp_preinit_delay +ffffffff820f2298 r __param_kthread_prio +ffffffff820f22c0 r __param_rcu_fanout_leaf +ffffffff820f22e8 r __param_rcu_fanout_exact +ffffffff820f2310 r __param_dump_tree +ffffffff820f2338 r __param_ignore_rlimit_data +ffffffff820f2360 r __param_notests +ffffffff820f2388 r __param_cryptd_max_cpu_qlen +ffffffff820f23b0 r __param_events_dfl_poll_msecs +ffffffff820f23d8 r __param_policy +ffffffff820f2400 r __param_lockless_register_fb +ffffffff820f2428 r __param_max_cstate +ffffffff820f2450 r __param_ec_event_clearing +ffffffff820f2478 r __param_ec_no_wakeup +ffffffff820f24a0 r __param_ec_freeze_events +ffffffff820f24c8 r __param_ec_storm_threshold +ffffffff820f24f0 r __param_ec_polling_guard +ffffffff820f2518 r __param_ec_busy_polling +ffffffff820f2540 r __param_ec_max_queries +ffffffff820f2568 r __param_ec_delay +ffffffff820f2590 r __param_acpica_version +ffffffff820f25b8 r __param_aml_debug_output +ffffffff820f25e0 r __param_lid_init_state +ffffffff820f2608 r __param_lid_report_interval +ffffffff820f2630 r __param_only_lcd +ffffffff820f2658 r __param_device_id_scheme +ffffffff820f2680 r __param_report_key_events +ffffffff820f26a8 r __param_disable_backlight_sysfs_if +ffffffff820f26d0 r __param_allow_duplicates +ffffffff820f26f8 r __param_brightness_switch_enabled +ffffffff820f2720 r __param_latency_factor +ffffffff820f2748 r __param_bm_check_disable +ffffffff820f2770 r __param_nocst +ffffffff820f2798 r __param_max_cstate +ffffffff820f27c0 r __param_ignore_tpc +ffffffff820f27e8 r __param_ignore_ppc +ffffffff820f2810 r __param_psv +ffffffff820f2838 r __param_off +ffffffff820f2860 r __param_nocrt +ffffffff820f2888 r __param_tzp +ffffffff820f28b0 r __param_crt +ffffffff820f28d8 r __param_act +ffffffff820f2900 r __param_brl_nbchords +ffffffff820f2928 r __param_brl_timeout +ffffffff820f2950 r __param_underline +ffffffff820f2978 r __param_italic +ffffffff820f29a0 r __param_color +ffffffff820f29c8 r __param_default_blu +ffffffff820f29f0 r __param_default_grn +ffffffff820f2a18 r __param_default_red +ffffffff820f2a40 r __param_consoleblank +ffffffff820f2a68 r __param_cur_default +ffffffff820f2a90 r __param_global_cursor_default +ffffffff820f2ab8 r __param_default_utf8 +ffffffff820f2ae0 r __param_default_quality +ffffffff820f2b08 r __param_current_quality +ffffffff820f2b30 r __param_no_fwh_detect +ffffffff820f2b58 r __param_dp_aux_i2c_transfer_size +ffffffff820f2b80 r __param_dp_aux_i2c_speed_khz +ffffffff820f2ba8 r __param_poll +ffffffff820f2bd0 r __param_drm_fbdev_overalloc +ffffffff820f2bf8 r __param_fbdev_emulation +ffffffff820f2c20 r __param_debug +ffffffff820f2c48 r __param_edid_fixup +ffffffff820f2c70 r __param_timestamp_precision_usec +ffffffff820f2c98 r __param_vblankoffdelay +ffffffff820f2cc0 r __param_runpm +ffffffff820f2ce8 r __param_modeset +ffffffff820f2d10 r __param_noaccel +ffffffff820f2d38 r __param_debug +ffffffff820f2d60 r __param_config +ffffffff820f2d88 r __param_hdmimhz +ffffffff820f2db0 r __param_duallink +ffffffff820f2dd8 r __param_ignorelid +ffffffff820f2e00 r __param_tv_disable +ffffffff820f2e28 r __param_atomic +ffffffff820f2e50 r __param_mst +ffffffff820f2e78 r __param_fbcon_bpp +ffffffff820f2ea0 r __param_nofbaccel +ffffffff820f2ec8 r __param_vram_pushbuf +ffffffff820f2ef0 r __param_tv_norm +ffffffff820f2f18 r __param_path +ffffffff820f2f40 r __param_max_part +ffffffff820f2f68 r __param_max_loop +ffffffff820f2f90 r __param_use_blk_mq +ffffffff820f2fb8 r __param_scsi_logging_level +ffffffff820f2fe0 r __param_eh_deadline +ffffffff820f3008 r __param_inq_timeout +ffffffff820f3030 r __param_scan +ffffffff820f3058 r __param_max_luns +ffffffff820f3080 r __param_default_dev_flags +ffffffff820f30a8 r __param_dev_flags +ffffffff820f30d0 r __param_atapi_an +ffffffff820f30f8 r __param_allow_tpm +ffffffff820f3120 r __param_noacpi +ffffffff820f3148 r __param_ata_probe_timeout +ffffffff820f3170 r __param_dma +ffffffff820f3198 r __param_ignore_hpa +ffffffff820f31c0 r __param_fua +ffffffff820f31e8 r __param_atapi_passthru16 +ffffffff820f3210 r __param_atapi_dmadir +ffffffff820f3238 r __param_atapi_enabled +ffffffff820f3260 r __param_force +ffffffff820f3288 r __param_acpi_gtf_filter +ffffffff820f32b0 r __param_mobile_lpm_policy +ffffffff820f32d8 r __param_marvell_enable +ffffffff820f3300 r __param_devslp_idle_timeout +ffffffff820f3328 r __param_ahci_em_messages +ffffffff820f3350 r __param_ignore_sss +ffffffff820f3378 r __param_skip_host_reset +ffffffff820f33a0 r __param_disable_11ac +ffffffff820f33c8 r __param_d0i3_timeout +ffffffff820f33f0 r __param_fw_monitor +ffffffff820f3418 r __param_power_level +ffffffff820f3440 r __param_power_save +ffffffff820f3468 r __param_led_mode +ffffffff820f3490 r __param_bt_coex_active +ffffffff820f34b8 r __param_uapsd_disable +ffffffff820f34e0 r __param_lar_disable +ffffffff820f3508 r __param_d0i3_disable +ffffffff820f3530 r __param_nvm_file +ffffffff820f3558 r __param_antenna_coupling +ffffffff820f3580 r __param_fw_restart +ffffffff820f35a8 r __param_amsdu_size +ffffffff820f35d0 r __param_11n_disable +ffffffff820f35f8 r __param_swcrypto +ffffffff820f3620 r __param_tfd_q_hang_detect +ffffffff820f3648 r __param_power_scheme +ffffffff820f3670 r __param_init_dbg +ffffffff820f3698 r __param_autosuspend +ffffffff820f36c0 r __param_nousb +ffffffff820f36e8 r __param_use_both_schemes +ffffffff820f3710 r __param_old_scheme_first +ffffffff820f3738 r __param_initial_descriptor_timeout +ffffffff820f3760 r __param_blinkenlights +ffffffff820f3788 r __param_authorized_default +ffffffff820f37b0 r __param_usbfs_memory_mb +ffffffff820f37d8 r __param_usbfs_snoop_max +ffffffff820f3800 r __param_usbfs_snoop +ffffffff820f3828 r __param_ignore_oc +ffffffff820f3850 r __param_park +ffffffff820f3878 r __param_log2_irq_thresh +ffffffff820f38a0 r __param_quirks +ffffffff820f38c8 r __param_link_quirk +ffffffff820f38f0 r __param_quirks +ffffffff820f3918 r __param_delay_use +ffffffff820f3940 r __param_swi_tru_install +ffffffff820f3968 r __param_option_zero_cd +ffffffff820f3990 r __param_bit_test +ffffffff820f39b8 r __param_disable_features +ffffffff820f39e0 r __param_reset +ffffffff820f3a08 r __param_enable_autosuspend +ffffffff820f3a30 r __param_force_scofix +ffffffff820f3a58 r __param_disable_scofix +ffffffff820f3a80 r __param_edac_report +ffffffff820f3aa8 r __param_edac_mc_poll_msec +ffffffff820f3ad0 r __param_edac_mc_log_ce +ffffffff820f3af8 r __param_edac_mc_log_ue +ffffffff820f3b20 r __param_edac_mc_panic_on_ue +ffffffff820f3b48 r __param_edac_pci_panic_on_pe +ffffffff820f3b70 r __param_check_pci_errors +ffffffff820f3b98 r __param_edac_op_state +ffffffff820f3bc0 r __param_off +ffffffff820f3be8 r __param_off +ffffffff820f3c10 r __param_ignore_special_drivers +ffffffff820f3c38 r __param_debug +ffffffff820f3c60 r __param_quirks +ffffffff820f3c88 r __param_ignoreled +ffffffff820f3cb0 r __param_jspoll +ffffffff820f3cd8 r __param_mousepoll +ffffffff820f3d00 r __param_debug_dump_wdg +ffffffff820f3d28 r __param_debug_event +ffffffff820f3d50 r __param_cards_limit +ffffffff820f3d78 r __param_major +ffffffff820f3da0 r __param_slots +ffffffff820f3dc8 r __param_timer_tstamp_monotonic +ffffffff820f3df0 r __param_timer_limit +ffffffff820f3e18 r __param_maximum_substreams +ffffffff820f3e40 r __param_preallocate_dma +ffffffff820f3e68 r __param_static_hdmi_pcm +ffffffff820f3e90 r __param_snoop +ffffffff820f3eb8 r __param_align_buffer_size +ffffffff820f3ee0 r __param_power_save_controller +ffffffff820f3f08 r __param_pm_blacklist +ffffffff820f3f30 r __param_power_save +ffffffff820f3f58 r __param_enable_msi +ffffffff820f3f80 r __param_single_cmd +ffffffff820f3fa8 r __param_jackpoll_ms +ffffffff820f3fd0 r __param_probe_only +ffffffff820f3ff8 r __param_probe_mask +ffffffff820f4020 r __param_bdl_pos_adj +ffffffff820f4048 r __param_position_fix +ffffffff820f4070 r __param_model +ffffffff820f4098 r __param_enable +ffffffff820f40c0 r __param_id +ffffffff820f40e8 r __param_index +ffffffff820f4110 r __param_quirk_alias +ffffffff820f4138 r __param_autoclock +ffffffff820f4160 r __param_ignore_ctl_error +ffffffff820f4188 r __param_device_setup +ffffffff820f41b0 r __param_pid +ffffffff820f41d8 r __param_vid +ffffffff820f4200 r __param_enable +ffffffff820f4228 r __param_id +ffffffff820f4250 r __param_index +ffffffff820f4278 r __param_hashsize +ffffffff820f42a0 r __param_expect_hashsize +ffffffff820f42c8 r __param_nf_conntrack_helper +ffffffff820f42f0 r __param_acct +ffffffff820f4318 r __param_hashsize +ffffffff820f4340 r __param_autoconf +ffffffff820f4368 r __param_disable_ipv6 +ffffffff820f4390 r __param_disable +ffffffff820f43b8 r __param_disable_ertm +ffffffff820f43e0 r __param_disable_esco +ffffffff820f4408 r __param_l2cap_ertm +ffffffff820f4430 r __param_l2cap_mtu +ffffffff820f4458 r __param_channel_mtu +ffffffff820f4480 r __param_disable_cfc +ffffffff820f44a8 r __param_cfg80211_disable_40mhz_24ghz +ffffffff820f44d0 r __param_ieee80211_regdom +ffffffff820f44f8 r __param_bss_entries_limit +ffffffff820f4520 r __param_ieee80211_default_rc_algo +ffffffff820f4548 r __param_probe_wait_ms +ffffffff820f4570 r __param_beacon_loss_count +ffffffff820f4598 r __param_max_probe_tries +ffffffff820f45c0 r __param_max_nullfunc_tries +ffffffff820f45e8 r __modver_attr +ffffffff820f45e8 R __start___modver +ffffffff820f45e8 R __stop___param +ffffffff820f45f0 r __modver_attr +ffffffff820f45f8 r __modver_attr +ffffffff820f4600 r __modver_attr +ffffffff820f4608 r __modver_attr +ffffffff820f4610 r __modver_attr +ffffffff820f4618 r __modver_attr +ffffffff820f4620 r __modver_attr +ffffffff820f4628 r __modver_attr +ffffffff820f4630 R __stop___modver +ffffffff820f5000 R __end_rodata +ffffffff82200000 A __end_rodata_hpage_align +ffffffff82200000 D __start_init_task +ffffffff82200000 D _sdata +ffffffff82200000 D init_stack +ffffffff82200000 D init_thread_union +ffffffff82204000 D __end_init_task +ffffffff82204000 D jiffies +ffffffff82204000 D jiffies_64 +ffffffff82204040 d hpet +ffffffff82204080 D mmlist_lock +ffffffff822040c0 D tasklist_lock +ffffffff82204100 d softirq_vec +ffffffff82204180 d pidmap_lock +ffffffff822041c0 d bit_wait_table +ffffffff82205a00 D jiffies_lock +ffffffff82205a40 d tick_broadcast_lock +ffffffff82205a80 d page_wait_table +ffffffff82207280 D vm_node_stat +ffffffff82207380 D vm_numa_stat +ffffffff82207380 D vm_zone_stat +ffffffff82207400 d nr_files +ffffffff82207440 D rename_lock +ffffffff82207480 d inode_hash_lock +ffffffff822074c0 D mount_lock +ffffffff82207500 d bdev_lock +ffffffff82207540 D nf_conntrack_expect_lock +ffffffff82207580 D nf_conntrack_locks +ffffffff82209000 D init_top_pgt +ffffffff8220a000 D level3_kernel_pgt +ffffffff8220b000 D level2_kernel_pgt +ffffffff8220c000 D level2_fixmap_pgt +ffffffff8220d000 D level1_fixmap_pgt +ffffffff8220e000 D early_gdt_descr +ffffffff8220e002 d early_gdt_descr_base +ffffffff8220e010 D phys_base +ffffffff8220e018 D early_pmd_flags +ffffffff8220e020 D loops_per_jiffy +ffffffff8220e040 D envp_init +ffffffff8220e160 d argv_init +ffffffff8220e280 D init_uts_ns +ffffffff8220e440 d rootfs_fs_type +ffffffff8220e478 D root_mountflags +ffffffff8220e480 D init_task +ffffffff8220fdc0 d init_sighand +ffffffff82210600 d init_signals +ffffffff822109c0 d perf_event_nmi_handler_na.39489 +ffffffff82210a20 d x86_pmu_attr_groups +ffffffff82210a50 d x86_pmu_caps_attrs +ffffffff82210a60 d dev_attr_max_precise +ffffffff82210a80 d x86_pmu_attrs +ffffffff82210aa0 d dev_attr_rdpmc +ffffffff82210ac0 d x86_pmu_caps_group +ffffffff82210b00 d x86_pmu_attr_group +ffffffff82210b40 d x86_pmu_events_group +ffffffff82210b80 d events_attr +ffffffff82210be0 d event_attr_REF_CPU_CYCLES +ffffffff82210c20 d event_attr_STALLED_CYCLES_BACKEND +ffffffff82210c60 d event_attr_STALLED_CYCLES_FRONTEND +ffffffff82210ca0 d event_attr_BUS_CYCLES +ffffffff82210ce0 d event_attr_BRANCH_MISSES +ffffffff82210d20 d event_attr_BRANCH_INSTRUCTIONS +ffffffff82210d60 d event_attr_CACHE_MISSES +ffffffff82210da0 d event_attr_CACHE_REFERENCES +ffffffff82210de0 d event_attr_INSTRUCTIONS +ffffffff82210e20 d event_attr_CPU_CYCLES +ffffffff82210e60 d x86_pmu_format_group +ffffffff82210ea0 d pmu +ffffffff82210fa0 d pmc_reserve_mutex +ffffffff82210fc0 d perf_ibs_syscore_ops +ffffffff82211000 d pmu_msr +ffffffff82211100 d attr_groups +ffffffff82211120 d format_attr_group +ffffffff82211150 d format_attrs +ffffffff82211160 d format_attr_event +ffffffff82211180 d events_attr_group +ffffffff822111c0 d msr +ffffffff822112c0 d evattr_therm_unit +ffffffff82211300 d evattr_therm_snap +ffffffff82211340 d evattr_therm +ffffffff82211380 d evattr_irperf +ffffffff822113c0 d evattr_ptsc +ffffffff82211400 d evattr_smi +ffffffff82211440 d evattr_pperf +ffffffff82211480 d evattr_mperf +ffffffff822114c0 d evattr_aperf +ffffffff82211500 d evattr_tsc +ffffffff82211540 d intel_pmu_attrs +ffffffff82211550 d intel_pmu_caps_attrs +ffffffff82211560 d dev_attr_pmu_name +ffffffff82211580 d lbr_attrs +ffffffff822115a0 d dev_attr_branches +ffffffff822115c0 d dev_attr_freeze_on_smi +ffffffff822115e0 d freeze_on_smi_mutex +ffffffff82211600 d hsw_tsx_events_attrs +ffffffff82211680 d hsw_events_attrs +ffffffff822116e0 d event_attr_cycles_ct +ffffffff82211720 d event_attr_cycles_t +ffffffff82211760 d event_attr_el_conflict +ffffffff822117a0 d event_attr_el_capacity +ffffffff822117e0 d event_attr_el_abort +ffffffff82211820 d event_attr_el_commit +ffffffff82211860 d event_attr_el_start +ffffffff822118a0 d event_attr_tx_conflict +ffffffff822118e0 d event_attr_tx_capacity +ffffffff82211920 d event_attr_tx_abort +ffffffff82211960 d event_attr_tx_commit +ffffffff822119a0 d event_attr_tx_start +ffffffff822119e0 d event_attr_mem_st_hsw +ffffffff82211a20 d event_attr_mem_ld_hsw +ffffffff82211a50 d skl_format_attr +ffffffff82211a60 d slm_format_attr +ffffffff82211a70 d nhm_format_attr +ffffffff82211aa0 d hsw_format_attr +ffffffff82211ae0 d intel_arch3_formats_attr +ffffffff82211b20 d format_attr_frontend +ffffffff82211b40 d format_attr_ldlat +ffffffff82211b60 d format_attr_offcore_rsp +ffffffff82211b80 d intel_arch_formats_attr +ffffffff82211bc0 d format_attr_in_tx_cp +ffffffff82211be0 d format_attr_in_tx +ffffffff82211c00 d format_attr_cmask +ffffffff82211c20 d format_attr_inv +ffffffff82211c40 d format_attr_any +ffffffff82211c60 d format_attr_pc +ffffffff82211c80 d format_attr_edge +ffffffff82211ca0 d format_attr_umask +ffffffff82211cc0 d format_attr_event +ffffffff82211ce0 d counter2_constraint +ffffffff82211d20 d counter0_constraint +ffffffff82211d60 d glm_events_attrs +ffffffff82211da0 d event_attr_td_slots_issued_glm +ffffffff82211de0 d event_attr_td_slots_retired_glm +ffffffff82211e20 d event_attr_td_recovery_bubbles_glm +ffffffff82211e60 d event_attr_td_fetch_bubbles_glm +ffffffff82211ea0 d event_attr_td_total_slots_scale_glm +ffffffff82211ee0 d event_attr_td_total_slots_glm +ffffffff82211f20 d slm_events_attrs +ffffffff82211f60 d event_attr_td_slots_retired_slm +ffffffff82211fa0 d event_attr_td_slots_issued_slm +ffffffff82211fe0 d event_attr_td_fetch_bubbles_scale_slm +ffffffff82212020 d event_attr_td_fetch_bubbles_slm +ffffffff82212060 d event_attr_td_total_slots_scale_slm +ffffffff822120a0 d event_attr_td_total_slots_slm +ffffffff822120e0 d intel_bdw_event_constraints +ffffffff82212280 d intel_hsw_event_constraints +ffffffff822124c0 d snb_events_attrs +ffffffff82212520 d event_attr_td_recovery_bubbles_scale +ffffffff82212560 d event_attr_td_recovery_bubbles +ffffffff822125a0 d event_attr_td_fetch_bubbles +ffffffff822125e0 d event_attr_td_slots_retired +ffffffff82212620 d event_attr_td_slots_issued +ffffffff82212660 d event_attr_td_total_slots_scale +ffffffff822126a0 d event_attr_td_total_slots +ffffffff822126e0 d nhm_events_attrs +ffffffff82212700 d event_attr_mem_st_snb +ffffffff82212740 d event_attr_mem_ld_snb +ffffffff82212780 d event_attr_mem_ld_nhm +ffffffff822127c0 d intel_skl_event_constraints +ffffffff82212960 D intel_skl_pebs_event_constraints +ffffffff82212c20 D intel_bdw_pebs_event_constraints +ffffffff82212ee0 D intel_hsw_pebs_event_constraints +ffffffff822131a0 D intel_ivb_pebs_event_constraints +ffffffff82213360 D intel_snb_pebs_event_constraints +ffffffff82213500 D intel_westmere_pebs_event_constraints +ffffffff82213720 D intel_nehalem_pebs_event_constraints +ffffffff82213940 D intel_glp_pebs_event_constraints +ffffffff822139a0 D intel_glm_pebs_event_constraints +ffffffff82213a00 D intel_slm_pebs_event_constraints +ffffffff82213a80 D intel_atom_pebs_event_constraints +ffffffff82213b80 D intel_core2_pebs_event_constraints +ffffffff82213ca0 D bts_constraint +ffffffff82213ce0 d pebs_data_source +ffffffff82213d60 d intel_knc_formats_attr +ffffffff82213da0 d format_attr_cmask +ffffffff82213dc0 d format_attr_inv +ffffffff82213de0 d format_attr_edge +ffffffff82213e00 d format_attr_umask +ffffffff82213e20 d format_attr_event +ffffffff82213e40 d knc_event_constraints +ffffffff822141c0 d intel_p4_formats_attr +ffffffff822141e0 d format_attr_ht +ffffffff82214200 d format_attr_escr +ffffffff82214220 d format_attr_cccr +ffffffff82214240 d p4_event_bind_map +ffffffff82214760 d intel_p6_formats_attr +ffffffff822147a0 d format_attr_cmask +ffffffff822147c0 d format_attr_inv +ffffffff822147e0 d format_attr_pc +ffffffff82214800 d format_attr_edge +ffffffff82214820 d format_attr_umask +ffffffff82214840 d format_attr_event +ffffffff82214860 d p6_event_constraints +ffffffff82214980 d _rs.36262 +ffffffff822149c0 d pt_attr_groups +ffffffff822149e0 d pt_timing_group +ffffffff82214a10 d pt_timing_attr +ffffffff82214a40 d timing_attr_tsc_art_ratio +ffffffff82214a80 d timing_attr_max_nonturbo_ratio +ffffffff82214ac0 d pt_format_group +ffffffff82214b00 d pt_formats_attr +ffffffff82214b80 d format_attr_psb_period +ffffffff82214ba0 d format_attr_cyc_thresh +ffffffff82214bc0 d format_attr_mtc_period +ffffffff82214be0 d format_attr_branch +ffffffff82214c00 d format_attr_ptw +ffffffff82214c20 d format_attr_noretcomp +ffffffff82214c40 d format_attr_tsc +ffffffff82214c60 d format_attr_mtc +ffffffff82214c80 d format_attr_fup_on_ptw +ffffffff82214ca0 d format_attr_pwr_evt +ffffffff82214cc0 d format_attr_cyc +ffffffff82214ce0 d format_attr_pt +ffffffff82214d00 d pt_cap_group +ffffffff82214d40 d _rs.35233 +ffffffff82214d68 d kvm_posted_intr_wakeup_handler +ffffffff82214d80 d irq0 +ffffffff82214e00 d die_owner +ffffffff82214e04 D code_bytes +ffffffff82214e20 d _rs.32678 +ffffffff82214e60 d nmi_desc +ffffffff82214ec0 d kernel_offset_notifier +ffffffff82214ed8 d reserve_low +ffffffff82214ee0 d standard_io_resources +ffffffff82215160 d bss_resource +ffffffff822151a0 d code_resource +ffffffff822151e0 d data_resource +ffffffff82215220 D _brk_end +ffffffff82215230 D x86_cpuinit +ffffffff82215260 D default_legacy_pic +ffffffff822152c0 D null_legacy_pic +ffffffff82215320 d i8259_syscore_ops +ffffffff82215360 D i8259A_chip +ffffffff82215470 D cached_irq_mask +ffffffff82215478 D legacy_pic +ffffffff82215480 d irq2 +ffffffff82215500 d video_rom_resource +ffffffff82215540 d adapter_rom_resources +ffffffff822156c0 d extension_rom_resource +ffffffff82215700 d system_rom_resource +ffffffff82215740 d setup_data_data_attrs +ffffffff82215750 d setup_data_type_attrs +ffffffff82215760 d type_attr +ffffffff82215780 d boot_params_data_attrs +ffffffff82215790 d boot_params_version_attrs +ffffffff822157a0 d boot_params_data_attr +ffffffff822157e0 d boot_params_version_attr +ffffffff82215800 D pci_mem_start +ffffffff82215820 D x86_dma_fallback_dev +ffffffff82215ae8 D dma_ops +ffffffff82215af0 d smp_alt_modules +ffffffff82215b00 D ideal_nops +ffffffff82215b20 d tsc_start.21849 +ffffffff82215b40 d tsc_irqwork +ffffffff82215ba0 d clocksource_tsc +ffffffff82215c60 d clocksource_tsc_early +ffffffff82215d10 d time_cpufreq_notifier_block +ffffffff82215d40 d rtc_device +ffffffff82216040 d rtc_resources +ffffffff822160c0 d should_dump.32144 +ffffffff822160e0 d xstate_sizes +ffffffff82216120 d xstate_offsets +ffffffff82216160 d cpu_syscore_ops +ffffffff82216188 d this_cpu +ffffffff822161a0 d ratelimit.34119 +ffffffff822161e0 d _rs.33349 +ffffffff82216220 d dev_attr_cmci_disabled +ffffffff82216260 d dev_attr_ignore_ce +ffffffff822162a0 d dev_attr_check_interval +ffffffff822162e0 d dev_attr_dont_log_ce +ffffffff82216320 d dev_attr_monarch_timeout +ffffffff82216360 d dev_attr_tolerant +ffffffff822163a0 d mce_subsys +ffffffff82216440 d mce_syscore_ops +ffffffff82216468 D machine_check_vector +ffffffff82216470 d mce_adjust_timer +ffffffff82216478 d check_interval +ffffffff82216480 d mce_default_nb +ffffffff822164a0 d first_nb +ffffffff822164c0 D msr_ops +ffffffff822164e0 d mce_srao_nb +ffffffff82216500 D x86_mce_decoder_chain +ffffffff82216540 d mce_sysfs_mutex +ffffffff82216560 d mce_log_mutex +ffffffff82216580 D mce_severity +ffffffff822165a0 d severities +ffffffff82216840 d _rs.26561 +ffffffff82216868 D mce_threshold_vector +ffffffff82216880 d smp_thermal_vector +ffffffff82216890 d thermal_throttle_attrs +ffffffff822168a0 d dev_attr_package_power_limit_count +ffffffff822168c0 d dev_attr_package_throttle_count +ffffffff822168e0 d dev_attr_core_power_limit_count +ffffffff82216900 d dev_attr_core_throttle_count +ffffffff82216920 d mtrr_syscore_ops +ffffffff82216960 d mtrr_mutex +ffffffff82216980 d cpu_root_microcode_attrs +ffffffff822169a0 d mc_syscore_ops +ffffffff822169e0 d mc_cpu_interface +ffffffff82216a10 d mc_default_attrs +ffffffff82216a40 d dev_attr_processor_flags +ffffffff82216a60 d dev_attr_version +ffffffff82216a80 d dev_attr_reload +ffffffff82216aa0 d microcode_dev +ffffffff82216af0 d final_levels +ffffffff82216b00 d microcode_mutex +ffffffff82216b20 D microcode_cache +ffffffff82216b30 d dis_ucode_ldr +ffffffff82216b40 d x86_cpu_microcode_mutex.28200 +ffffffff82216b60 d microcode_intel_ops +ffffffff82216ba0 D acpi_suspend_lowlevel +ffffffff82216ba8 D __acpi_register_gsi +ffffffff82216bc0 d acpi_ioapic_lock +ffffffff82216be0 D saved_rbp +ffffffff82216bf0 D saved_rsi +ffffffff82216c00 D saved_rdi +ffffffff82216c10 D saved_rbx +ffffffff82216c20 D saved_rip +ffffffff82216c30 D saved_rsp +ffffffff82216c40 D saved_magic +ffffffff82216c60 d crash_nmi_callback_na.39653 +ffffffff82216ca8 D crashing_cpu +ffffffff82216cc0 d smp_stop_nmi_callback_na.35235 +ffffffff82216d20 D smp_ops +ffffffff82216d80 d stopping_cpu +ffffffff82216da0 d wakeup_cpu0_nmi_na.34607 +ffffffff82216de8 d current_node.34548 +ffffffff82216dec d init_udelay +ffffffff82216e00 d x86_topology +ffffffff82216ea8 D smp_num_siblings +ffffffff82216ec0 d lapic_syscore_ops +ffffffff82216ef0 d cpuid_to_apicid +ffffffff82216f00 d nr_logical_cpuids +ffffffff82216f40 d lapic_clockevent +ffffffff82217040 d lapic_resource +ffffffff82217080 D boot_cpu_physical_apicid +ffffffff822170a0 d lapic_controller +ffffffff822171c0 d nmi_cpu_backtrace_handler_na.28805 +ffffffff82217220 d ioapic_syscore_ops +ffffffff82217248 d ioapic_i8259 +ffffffff82217260 d ioapic_mutex +ffffffff82217280 d dmar_lock.39197 +ffffffff822172a0 d hpet_msi_domain_ops +ffffffff822172e0 d dmar_msi_domain_info +ffffffff82217320 d dmar_msi_domain_ops +ffffffff82217360 d dmar_msi_controller +ffffffff82217480 d pci_msi_ir_domain_info +ffffffff822174c0 d pci_msi_ir_controller +ffffffff822175e0 d pci_msi_domain_info +ffffffff82217620 d pci_msi_domain_ops +ffffffff82217660 d pci_msi_controller +ffffffff82217780 d clocksource_hpet +ffffffff82217840 d hpet_clockevent +ffffffff82217940 D efifb_dmi_list +ffffffff82217d40 d itmt_root_table +ffffffff82217dc0 d itmt_kern_table +ffffffff82217e40 d one +ffffffff82217e60 d itmt_update_mutex +ffffffff82217e80 d ratelimit.29012 +ffffffff82217ea8 D cur_orc_table +ffffffff82217eb0 D cur_orc_ip_table +ffffffff82217eb8 d is_vsmp +ffffffff82217ec0 D direct_gbpages +ffffffff82217ec8 D __pte2cachemode_tbl +ffffffff82217ed0 D __cachemode2pte_tbl +ffffffff82217ee0 D show_unhandled_signals +ffffffff82217ef0 D pgd_list +ffffffff82217f00 D __userpte_alloc_gfp +ffffffff82217f08 D last_mm_ctx_id +ffffffff82217f10 D init_pkru_value +ffffffff82217f18 D vmemmap_base +ffffffff82217f20 D vmalloc_base +ffffffff82217f28 D page_offset_base +ffffffff82217f40 d aes_alg +ffffffff822180e0 d des3_ede_algs +ffffffff82218760 d aesni_aead_algs +ffffffff82218f00 d aesni_skciphers +ffffffff82219680 d aesni_algs +ffffffff822199c0 d crypto_fpu_tmpl +ffffffff82219a80 d alg +ffffffff82219c80 d sha1_ni_alg +ffffffff82219e80 d sha1_avx2_alg +ffffffff8221a080 d sha1_avx_alg +ffffffff8221a280 d sha1_ssse3_alg +ffffffff8221a480 d sha256_ni_algs +ffffffff8221a860 d sha256_avx2_algs +ffffffff8221ac40 d sha256_avx_algs +ffffffff8221b020 d sha256_ssse3_algs +ffffffff8221b400 d efi_dummy_name +ffffffff8221b410 d efi_va +ffffffff8221b418 d default_dump_filter +ffffffff8221b420 d _rs.31979 +ffffffff8221b448 D panic_cpu +ffffffff8221b44c D panic_timeout +ffffffff8221b460 d cpu_hotplug_pm_callback_nb.40988 +ffffffff8221b480 d cpuhp_cpu_root_attrs +ffffffff8221b4a0 d dev_attr_states +ffffffff8221b4c0 d cpuhp_cpu_attrs +ffffffff8221b4e0 d dev_attr_fail +ffffffff8221b500 d dev_attr_target +ffffffff8221b520 d dev_attr_state +ffffffff8221b540 d cpuhp_ap_states +ffffffff8221d440 d cpuhp_bp_states +ffffffff8221e980 d cpuhp_threads +ffffffff8221ea00 d cpu_hotplug_lock +ffffffff8221ea80 d cpu_add_remove_lock +ffffffff8221eaa0 d cpuhp_state_mutex +ffffffff8221eac0 d softirq_threads +ffffffff8221eb40 d muxed_resource_wait +ffffffff8221eb60 D iomem_resource +ffffffff8221eba0 D ioport_resource +ffffffff8221ebe0 d debug_table +ffffffff8221ec60 d fs_table +ffffffff8221f1e0 d vm_table +ffffffff8221faa0 d kern_table +ffffffff82220760 d max_extfrag_threshold +ffffffff82220780 d sysctl_base_table +ffffffff82220900 d sysctl_writes_strict +ffffffff82220904 d ngroups_max +ffffffff82220908 d maxolduid +ffffffff82220910 d dirty_bytes_min +ffffffff82220918 d six_hundred_forty_kb +ffffffff8222091c d ten_thousand +ffffffff82220920 d one_thousand +ffffffff82220924 d one_hundred +ffffffff82220928 d one_ul +ffffffff82220930 d four +ffffffff82220934 d two +ffffffff82220938 d one +ffffffff8222093c d neg_one +ffffffff82220940 D file_caps_enabled +ffffffff82220960 D root_user +ffffffff82220a00 D init_user_ns +ffffffff82220be0 d ratelimit_state.46318 +ffffffff82220c20 D uts_sem +ffffffff82220c48 D fs_overflowgid +ffffffff82220c4c D fs_overflowuid +ffffffff82220c50 D overflowgid +ffffffff82220c54 D overflowuid +ffffffff82220c60 D usermodehelper_table +ffffffff82220d20 d usermodehelper_disabled_waitq +ffffffff82220d40 d running_helpers_waitq +ffffffff82220d58 d usermodehelper_disabled +ffffffff82220d60 d umhelper_sem +ffffffff82220d88 d usermodehelper_inheritable +ffffffff82220d90 d usermodehelper_bset +ffffffff82220da0 d cancel_waitq.37167 +ffffffff82220dc0 d wq_sysfs_cpumask_attr +ffffffff82220de0 d wq_subsys +ffffffff82220e80 d wq_sysfs_unbound_attrs +ffffffff82220f20 d wq_sysfs_groups +ffffffff82220f30 d wq_sysfs_attrs +ffffffff82220f60 d dev_attr_max_active +ffffffff82220f80 d dev_attr_per_cpu +ffffffff82220fa0 d worker_pool_idr +ffffffff82220fc0 d workqueues +ffffffff82220fd0 d wq_manager_wait +ffffffff82221000 d wq_pool_mutex +ffffffff82221020 D init_pid_ns +ffffffff822210f0 D pid_max_max +ffffffff822210f4 D pid_max_min +ffffffff822210f8 D pid_max +ffffffff82221100 D init_struct_pid +ffffffff82221140 D text_mutex +ffffffff82221160 D module_ktype +ffffffff82221190 d kmalloced_params +ffffffff822211a0 d param_lock +ffffffff822211c0 d kthread_create_list +ffffffff822211e0 D init_nsproxy +ffffffff82221220 D reboot_notifier_list +ffffffff82221260 d kernel_attrs +ffffffff822212a0 d rcu_normal_attr +ffffffff822212c0 d rcu_expedited_attr +ffffffff822212e0 d fscaps_attr +ffffffff82221300 d uevent_seqnum_attr +ffffffff82221320 D init_cred +ffffffff822213c0 D init_groups +ffffffff822213e0 d envp.39117 +ffffffff82221400 d cad_work.39110 +ffffffff82221420 d reboot_work +ffffffff82221440 d poweroff_work +ffffffff82221460 D poweroff_cmd +ffffffff82221560 d reboot_mutex +ffffffff82221580 D reboot_type +ffffffff82221584 D reboot_default +ffffffff82221588 D C_A_D +ffffffff82221590 d async_done +ffffffff822215b0 d async_dfl_domain +ffffffff822215d0 d async_global_pending +ffffffff822215e0 d next_cookie +ffffffff82221600 d smpboot_threads_lock +ffffffff82221620 d hotplug_threads +ffffffff82221640 d user_table +ffffffff822218c0 d int_max +ffffffff822218e0 d set_root +ffffffff82221980 D cpu_cgrp_subsys +ffffffff82221a80 d cpu_files +ffffffff82221dc0 d cpu_legacy_files +ffffffff822221e0 d cfs_constraints_mutex +ffffffff82222200 D task_groups +ffffffff82222240 d fake_task +ffffffff82223b80 D sysctl_sched_rt_runtime +ffffffff82223b84 D sysctl_sched_rt_period +ffffffff82223ba0 d sched_clock_work +ffffffff82223bc0 d __sched_clock_stable_early +ffffffff82223be0 d shares_mutex +ffffffff82223c00 D capacity_margin +ffffffff82223c04 D sysctl_sched_cfs_bandwidth_slice +ffffffff82223c08 D normalized_sysctl_sched_wakeup_granularity +ffffffff82223c0c D sysctl_sched_wakeup_granularity +ffffffff82223c10 D normalized_sysctl_sched_min_granularity +ffffffff82223c14 D sysctl_sched_min_granularity +ffffffff82223c18 D sysctl_sched_tunable_scaling +ffffffff82223c1c D normalized_sysctl_sched_latency +ffffffff82223c20 D sysctl_sched_latency +ffffffff82223c40 d mutex.32693 +ffffffff82223c60 d mutex.32681 +ffffffff82223c80 D sysctl_sched_rr_timeslice +ffffffff82223c84 D sched_rr_timeslice +ffffffff82223ca0 d sched_domain_topology +ffffffff82223cc0 d default_topology +ffffffff82223d68 d default_relax_domain_level +ffffffff82223d80 D sched_domains_mutex +ffffffff82223da0 d next.36799 +ffffffff82223da8 D max_lock_depth +ffffffff82223dc0 d memory_bandwidth_pm_qos +ffffffff82223e20 d memory_bw_constraints +ffffffff82223e60 d memory_bandwidth_notifier +ffffffff82223ea0 d network_throughput_pm_qos +ffffffff82223f00 d network_tput_constraints +ffffffff82223f40 d network_throughput_notifier +ffffffff82223f80 d network_lat_pm_qos +ffffffff82223fe0 d network_lat_constraints +ffffffff82224020 d network_lat_notifier +ffffffff82224060 d cpu_dma_pm_qos +ffffffff822240c0 d cpu_dma_constraints +ffffffff82224100 d cpu_dma_lat_notifier +ffffffff82224140 d g +ffffffff82224180 d pm_freeze_timeout_attr +ffffffff822241a0 d autosleep_attr +ffffffff822241c0 d wakeup_count_attr +ffffffff822241e0 d state_attr +ffffffff82224200 d mem_sleep_attr +ffffffff82224220 d pm_async_attr +ffffffff82224240 D pm_async_enabled +ffffffff82224260 d pm_chain_head +ffffffff822242a0 D pm_mutex +ffffffff822242c0 d pm_vt_switch_list +ffffffff822242e0 d vt_switch_mutex +ffffffff82224300 d s2idle_wait_head +ffffffff82224318 D mem_sleep_default +ffffffff8222431c D mem_sleep_current +ffffffff82224320 d suspend_work +ffffffff82224340 d autosleep_lock +ffffffff82224360 d saved_console_loglevel.41152 +ffffffff82224370 d dump_list +ffffffff82224380 D printk_ratelimit_state +ffffffff822243a8 D console_suspend_enabled +ffffffff822243ac d log_buf_len +ffffffff822243b0 d log_buf +ffffffff822243c0 D log_wait +ffffffff822243d8 d preferred_console +ffffffff822243e0 D devkmsg_log_str +ffffffff822243f0 d console_sem +ffffffff82224410 D console_printk +ffffffff82224420 d irq_desc_tree +ffffffff82224440 d irq_kobj_type +ffffffff82224480 d irq_attrs +ffffffff822244c0 d actions_attr +ffffffff822244e0 d name_attr +ffffffff82224500 d type_attr +ffffffff82224520 d hwirq_attr +ffffffff82224540 d chip_name_attr +ffffffff82224560 d per_cpu_count_attr +ffffffff82224580 d sparse_irq_lock +ffffffff822245a0 D nr_irqs +ffffffff822245c0 d ratelimit.20227 +ffffffff82224600 d count.22395 +ffffffff82224620 d poll_spurious_irq_timer +ffffffff82224680 D chained_action +ffffffff82224700 d ratelimit.19824 +ffffffff82224740 D dummy_irq_chip +ffffffff82224860 D no_irq_chip +ffffffff82224980 d probing_active +ffffffff822249a0 d irq_domain_mutex +ffffffff822249c0 d irq_domain_list +ffffffff822249e0 d register_lock.26744 +ffffffff82224a00 d _rs.20276 +ffffffff82224a40 d _rs.20285 +ffffffff82224a80 d irq_pm_syscore_ops +ffffffff82224ac0 d msi_domain_ops_default +ffffffff82224b00 d tasks_rcu_exit_srcu +ffffffff82224c90 d rcu_tasks_cbs_wq +ffffffff82224ca8 d rcu_tasks_cbs_tail +ffffffff82224cb0 d rcu_panic_block +ffffffff82224cc8 d rcu_expedited_nesting +ffffffff82224cd0 d counter_wrap_check +ffffffff82224cd8 d exp_holdoff +ffffffff82224d00 d rcu_pm_notify_nb.42362 +ffffffff82224d40 D rcu_preempt_state +ffffffff822250c0 d jiffies_till_sched_qs +ffffffff822250c8 d jiffies_till_next_fqs +ffffffff822250d0 d jiffies_till_first_fqs +ffffffff822250d8 d qlowmark +ffffffff822250e0 d qhimark +ffffffff822250e8 d blimit +ffffffff822250f0 D num_rcu_lvl +ffffffff82225100 D rcu_struct_flavors +ffffffff82225140 D rcu_bh_state +ffffffff822254c0 D rcu_sched_state +ffffffff82225840 d rcu_fanout_leaf +ffffffff82225844 d firsttime.39561 +ffffffff82225860 D sysctl_timer_migration +ffffffff82225880 d timer_update_work +ffffffff822258a0 d timer_keys_mutex +ffffffff822258c0 d hrtimer_work +ffffffff82225900 d migration_cpu_base +ffffffff82225b40 d timekeeping_syscore_ops +ffffffff82225b80 d tk_fast_raw +ffffffff82225c00 d tk_fast_mono +ffffffff82225c80 d dummy_clock +ffffffff82225d40 d sync_work +ffffffff82225d98 d ntp_next_leap_sec +ffffffff82225da0 d time_esterror +ffffffff82225da8 d time_maxerror +ffffffff82225db0 d time_constant +ffffffff82225db8 d time_status +ffffffff82225dc0 D tick_usec +ffffffff82225de0 d device_clocksource +ffffffff822260c0 d clocksource_subsys +ffffffff82226160 d dev_attr_available_clocksource +ffffffff82226180 d dev_attr_unbind_clocksource +ffffffff822261a0 d dev_attr_current_clocksource +ffffffff822261c0 d watchdog_work +ffffffff822261e0 d watchdog_list +ffffffff82226200 d clocksource_mutex +ffffffff82226220 d clocksource_list +ffffffff82226240 d clocksource_jiffies +ffffffff82226300 d alarmtimer_driver +ffffffff822263c0 d alarmtimer_rtc_interface +ffffffff82226400 d tick_bc_dev +ffffffff822266e0 d dev_attr_unbind_device +ffffffff82226700 d dev_attr_current_device +ffffffff82226720 d clockevents_subsys +ffffffff822267c0 d clockevents_mutex +ffffffff822267e0 d clockevents_released +ffffffff822267f0 d clockevent_devices +ffffffff82226800 d ce_broadcast_hrtimer +ffffffff82226900 d _rs.38876 +ffffffff82226928 D setup_max_cpus +ffffffff82226940 d acct_on_mutex +ffffffff82226960 D acct_parm +ffffffff82226980 d cgroup_sysfs_attrs +ffffffff822269a0 d cgroup_features_attr +ffffffff822269c0 d cgroup_delegate_attr +ffffffff822269e0 d cgroup_base_files +ffffffff822272e0 d cgroup_kf_ops +ffffffff82227340 d cgroup_kf_single_ops +ffffffff822273a0 D cgroup_fs_type +ffffffff822273e0 d cgroup_kf_syscall_ops +ffffffff82227410 d css_set_count +ffffffff82227420 D init_css_set +ffffffff82227540 d cgroup2_fs_type +ffffffff82227580 D init_cgroup_ns +ffffffff822275b8 d css_serial_nr_next +ffffffff822275c0 d cgroup_hierarchy_idr +ffffffff822275e0 D cgroup_roots +ffffffff82227600 D cgrp_dfl_root +ffffffff82228980 D pids_cgrp_subsys_on_dfl_key +ffffffff82228990 D pids_cgrp_subsys_enabled_key +ffffffff822289a0 D cpu_cgrp_subsys_on_dfl_key +ffffffff822289b0 D cpu_cgrp_subsys_enabled_key +ffffffff822289c0 D cgroup_subsys +ffffffff822289e0 D cgroup_mutex +ffffffff82228a00 d cgroup_stat_mutex +ffffffff82228a20 D cgroup1_kf_syscall_ops +ffffffff82228a60 D cgroup1_base_files +ffffffff82229020 D pids_cgrp_subsys +ffffffff82229120 d pids_files +ffffffff82229460 d userns_state_mutex +ffffffff82229480 d kern_path +ffffffff822294a0 d pid_ns_ctl_table +ffffffff82229520 d pid_caches_mutex +ffffffff82229540 d pid_caches_lh +ffffffff82229560 d cpu_stop_threads +ffffffff822295e0 d stop_cpus_mutex +ffffffff82229600 d seccomp_sysctl_table +ffffffff822296c0 d seccomp_sysctl_path +ffffffff822296d8 d seccomp_actions_logged +ffffffff822296e0 d uts_root_table +ffffffff82229760 d uts_kern_table +ffffffff822298e0 d domainname_poll +ffffffff82229900 d hostname_poll +ffffffff82229920 d ___once_key.48775 +ffffffff82229940 d dummy_bpf_prog +ffffffff82229970 d map_idr +ffffffff82229990 d prog_idr +ffffffff822299c0 d bpf_verifier_lock +ffffffff822299e0 d bpf_fs_type +ffffffff82229a20 d dev_map_notifier +ffffffff82229a40 d dev_map_list +ffffffff82229a60 d bpf_offload_notifier +ffffffff82229a80 d bpf_map_offload_devs +ffffffff82229a90 d bpf_prog_offload_devs +ffffffff82229aa0 d bpf_devs_lock +ffffffff82229ae0 d _rs.55275 +ffffffff82229b10 d perf_reboot_notifier +ffffffff82229b40 d pmu_bus +ffffffff82229be0 d pmu_dev_groups +ffffffff82229bf0 d pmu_dev_attrs +ffffffff82229c20 d dev_attr_perf_event_mux_interval_ms +ffffffff82229c40 d mux_interval_mutex +ffffffff82229c60 d dev_attr_type +ffffffff82229c80 D dev_attr_nr_addr_filters +ffffffff82229ca0 d perf_task_clock +ffffffff82229da0 d perf_cpu_clock +ffffffff82229ea0 d perf_swevent +ffffffff82229fa0 d perf_duration_work +ffffffff82229fc0 d pmus_lock +ffffffff82229fe0 d pmus +ffffffff8222a000 d perf_sched_mutex +ffffffff8222a020 d perf_sched_work +ffffffff8222a080 d callchain_mutex +ffffffff8222a0a0 d perf_breakpoint +ffffffff8222a1a0 d hw_breakpoint_exceptions_nb +ffffffff8222a1c0 d nr_bp_mutex +ffffffff8222a1e0 d bp_task_head +ffffffff8222a200 d jump_label_mutex +ffffffff8222a220 d oom_rs.39189 +ffffffff8222a260 d oom_notify_list +ffffffff8222a290 d oom_reaper_wait +ffffffff8222a2b0 d oom_victims_wait +ffffffff8222a2e0 D oom_lock +ffffffff8222a300 D sysctl_oom_dump_tasks +ffffffff8222a320 d show_mem_rs.43234 +ffffffff8222a360 d nopage_rs.43244 +ffffffff8222a388 D watermark_scale_factor +ffffffff8222a38c D user_min_free_kbytes +ffffffff8222a390 D min_free_kbytes +ffffffff8222a398 D sysctl_lowmem_reserve_ratio +ffffffff8222a3c0 D pcpu_drain_mutex +ffffffff8222a3e0 D vm_numa_stat_key +ffffffff8222a400 d pcp_batch_high_lock +ffffffff8222a420 D dirty_expire_interval +ffffffff8222a424 D dirty_writeback_interval +ffffffff8222a428 D vm_dirty_ratio +ffffffff8222a42c D dirty_background_ratio +ffffffff8222a430 d ratelimit_pages +ffffffff8222a440 d lock.37679 +ffffffff8222a460 d _rs.41937 +ffffffff8222a4a0 d shrinker_rwsem +ffffffff8222a4d0 d shrinker_list +ffffffff8222a4e0 D vm_swappiness +ffffffff8222a500 D shmem_enabled_attr +ffffffff8222a520 d shmem_xattr_handlers +ffffffff8222a560 d shmem_swaplist_mutex +ffffffff8222a580 d shmem_fs_type +ffffffff8222a5c0 d shepherd +ffffffff8222a620 d congestion_wqh +ffffffff8222a650 d bdi_dev_groups +ffffffff8222a660 d bdi_dev_attrs +ffffffff8222a6a0 d dev_attr_stable_pages_required +ffffffff8222a6c0 d dev_attr_max_ratio +ffffffff8222a6e0 d dev_attr_min_ratio +ffffffff8222a700 d dev_attr_read_ahead_kb +ffffffff8222a720 D bdi_list +ffffffff8222a740 D noop_backing_dev_info +ffffffff8222aa00 D vm_committed_as_batch +ffffffff8222aa20 d warn_limit.28594 +ffffffff8222aa40 d pcpu_balance_work +ffffffff8222aa60 d pcpu_alloc_mutex +ffffffff8222aa80 d slab_nomerge +ffffffff8222aaa0 d slab_caches_to_rcu_destroy_work +ffffffff8222aac0 d slab_caches_to_rcu_destroy +ffffffff8222aae0 D slab_mutex +ffffffff8222ab00 D slab_caches +ffffffff8222ab10 D sysctl_extfrag_threshold +ffffffff8222ab20 d workingset_shadow_shrinker +ffffffff8222ab60 D migrate_reason_names +ffffffff8222aba0 d mm_all_locks_mutex +ffffffff8222abc0 D stack_guard_gap +ffffffff8222abe0 d vmap_block_tree +ffffffff8222ac00 d vmap_purge_lock +ffffffff8222ac20 d vmap_notify_list +ffffffff8222ac50 D vmap_area_list +ffffffff8222ac60 D init_mm +ffffffff8222afe0 d dev_attr_pools +ffffffff8222b000 d pools_reg_lock +ffffffff8222b020 d pools_lock +ffffffff8222b040 d srcu +ffffffff8222b1e0 d slab_ktype +ffffffff8222b220 d slab_attrs +ffffffff8222b2e0 d shrink_attr +ffffffff8222b300 d reserved_attr +ffffffff8222b320 d destroy_by_rcu_attr +ffffffff8222b340 d usersize_attr +ffffffff8222b360 d cache_dma_attr +ffffffff8222b380 d hwcache_align_attr +ffffffff8222b3a0 d reclaim_account_attr +ffffffff8222b3c0 d slabs_cpu_partial_attr +ffffffff8222b3e0 d objects_partial_attr +ffffffff8222b400 d objects_attr +ffffffff8222b420 d cpu_slabs_attr +ffffffff8222b440 d partial_attr +ffffffff8222b460 d aliases_attr +ffffffff8222b480 d ctor_attr +ffffffff8222b4a0 d cpu_partial_attr +ffffffff8222b4c0 d min_partial_attr +ffffffff8222b4e0 d order_attr +ffffffff8222b500 d objs_per_slab_attr +ffffffff8222b520 d object_size_attr +ffffffff8222b540 d align_attr +ffffffff8222b560 d slab_size_attr +ffffffff8222b580 d slub_max_order +ffffffff8222b5a0 d hugepage_attr +ffffffff8222b5e0 d hpage_pmd_size_attr +ffffffff8222b600 d use_zero_page_attr +ffffffff8222b620 d defrag_attr +ffffffff8222b640 d enabled_attr +ffffffff8222b660 d huge_zero_page_shrinker +ffffffff8222b6a0 d deferred_split_shrinker +ffffffff8222b6e0 d khugepaged_mutex.37680 +ffffffff8222b700 D khugepaged_attr_group +ffffffff8222b740 d khugepaged_attr +ffffffff8222b7a0 d khugepaged_max_ptes_swap_attr +ffffffff8222b7c0 d khugepaged_max_ptes_none_attr +ffffffff8222b7e0 d khugepaged_defrag_attr +ffffffff8222b800 d full_scans_attr +ffffffff8222b820 d pages_collapsed_attr +ffffffff8222b840 d pages_to_scan_attr +ffffffff8222b860 d alloc_sleep_millisecs_attr +ffffffff8222b880 d scan_sleep_millisecs_attr +ffffffff8222b8a0 d khugepaged_scan +ffffffff8222b8c0 d khugepaged_wait +ffffffff8222b8e0 d delayed_fput_work +ffffffff8222b940 D files_stat +ffffffff8222b960 d unnamed_dev_start +ffffffff8222b970 d unnamed_dev_ida +ffffffff8222b980 d super_blocks +ffffffff8222b9a0 d ktype_cdev_dynamic +ffffffff8222b9e0 d ktype_cdev_default +ffffffff8222ba20 d chrdevs_lock +ffffffff8222ba40 d warncount.38917 +ffffffff8222ba50 d formats +ffffffff8222ba60 d pipe_fs_type +ffffffff8222ba98 D pipe_user_pages_soft +ffffffff8222baa0 D pipe_max_size +ffffffff8222bac0 d _rs.42057 +ffffffff8222bb00 D dentry_stat +ffffffff8222bb40 D init_files +ffffffff8222be00 D sysctl_nr_open_max +ffffffff8222be04 D sysctl_nr_open_min +ffffffff8222be20 d mnt_ns_seq +ffffffff8222be40 d delayed_mntput_work +ffffffff8222bea0 d namespace_sem +ffffffff8222bec8 d mnt_group_start +ffffffff8222bed0 d mnt_group_ida +ffffffff8222bee0 d mnt_id_ida +ffffffff8222bf00 d dirtytime_work +ffffffff8222bf58 D dirtytime_expire_interval +ffffffff8222bf60 D init_fs +ffffffff8222bfa0 d nsfs +ffffffff8222bfe0 d _rs.44109 +ffffffff8222c020 d _rs.38506 +ffffffff8222c050 d all_bdevs +ffffffff8222c060 d bd_type +ffffffff8222c0a0 d _rs.34180 +ffffffff8222c0e0 d connector_reaper_work +ffffffff8222c100 d reaper_work +ffffffff8222c160 d destroy_list +ffffffff8222c180 D inotify_table +ffffffff8222c280 D epoll_table +ffffffff8222c300 d long_max +ffffffff8222c310 d tfile_check_list +ffffffff8222c320 d visited_list +ffffffff8222c340 d epmutex +ffffffff8222c360 d anon_inode_fs_type +ffffffff8222c3a0 d cancel_list +ffffffff8222c3c0 d aio_fs.45412 +ffffffff8222c3f8 D aio_max_nr +ffffffff8222c400 d file_rwsem +ffffffff8222c480 D lease_break_time +ffffffff8222c484 D leases_enable +ffffffff8222c4a0 d script_format +ffffffff8222c4e0 d elf_format +ffffffff8222c520 D proc_root +ffffffff8222c5c0 d proc_fs_type +ffffffff8222c600 d oom_adj_mutex.38163 +ffffffff8222c620 d proc_inum_ida +ffffffff8222c640 d ns_entries +ffffffff8222c680 d sysctl_table_root +ffffffff8222c700 d root_table +ffffffff8222c780 d proc_net_ns_ops +ffffffff8222c7c0 d iattr_mutex.36692 +ffffffff8222c7e0 D kernfs_xattr_handlers +ffffffff8222c800 D kernfs_mutex +ffffffff8222c820 d kernfs_notify_work.30854 +ffffffff8222c840 d kernfs_notify_list +ffffffff8222c860 d kernfs_open_file_mutex +ffffffff8222c880 d sysfs_fs_type +ffffffff8222c8c0 d devpts_fs_type +ffffffff8222c900 d allocated_ptys_lock +ffffffff8222c920 d pty_root_table +ffffffff8222c9a0 d pty_kern_table +ffffffff8222ca20 d pty_table +ffffffff8222cb20 d pty_limit_max +ffffffff8222cb24 d pty_reserve +ffffffff8222cb28 d pty_limit +ffffffff8222cb40 d _rs.42869 +ffffffff8222cb80 d ext4_grpinfo_slab_create_mutex.47000 +ffffffff8222cba0 d _rs.42046 +ffffffff8222cbe0 d _rs.41866 +ffffffff8222cc20 d ext4_fs_type +ffffffff8222cc60 d ext3_fs_type +ffffffff8222cca0 d ext2_fs_type +ffffffff8222cce0 d ext4_feat_ktype +ffffffff8222cd20 d ext4_ktype +ffffffff8222cd60 d ext4_sb_ktype +ffffffff8222cda0 d ext4_feat_attrs +ffffffff8222cde0 d ext4_attr_metadata_csum_seed +ffffffff8222ce00 d ext4_attr_meta_bg_resize +ffffffff8222ce20 d ext4_attr_batched_discard +ffffffff8222ce40 d ext4_attr_lazy_itable_init +ffffffff8222ce60 d ext4_attrs +ffffffff8222cf40 d ext4_attr_max_writeback_mb_bump +ffffffff8222cf60 d old_bump_val +ffffffff8222cf80 d ext4_attr_last_error_time +ffffffff8222cfa0 d ext4_attr_first_error_time +ffffffff8222cfc0 d ext4_attr_errors_count +ffffffff8222cfe0 d ext4_attr_msg_ratelimit_burst +ffffffff8222d000 d ext4_attr_msg_ratelimit_interval_ms +ffffffff8222d020 d ext4_attr_warning_ratelimit_burst +ffffffff8222d040 d ext4_attr_warning_ratelimit_interval_ms +ffffffff8222d060 d ext4_attr_err_ratelimit_burst +ffffffff8222d080 d ext4_attr_err_ratelimit_interval_ms +ffffffff8222d0a0 d ext4_attr_trigger_fs_error +ffffffff8222d0c0 d ext4_attr_extent_max_zeroout_kb +ffffffff8222d0e0 d ext4_attr_mb_group_prealloc +ffffffff8222d100 d ext4_attr_mb_stream_req +ffffffff8222d120 d ext4_attr_mb_order2_req +ffffffff8222d140 d ext4_attr_mb_min_to_scan +ffffffff8222d160 d ext4_attr_mb_max_to_scan +ffffffff8222d180 d ext4_attr_mb_stats +ffffffff8222d1a0 d ext4_attr_inode_goal +ffffffff8222d1c0 d ext4_attr_inode_readahead_blks +ffffffff8222d1e0 d ext4_attr_reserved_clusters +ffffffff8222d200 d ext4_attr_lifetime_write_kbytes +ffffffff8222d220 d ext4_attr_session_write_kbytes +ffffffff8222d240 d ext4_attr_delayed_allocation_blocks +ffffffff8222d260 D ext4_xattr_handlers +ffffffff8222d2a0 d _rs.39771 +ffffffff8222d2e0 d jbd2_slab_create_mutex.39742 +ffffffff8222d300 d ramfs_fs_type +ffffffff8222d340 d floppy_defaults +ffffffff8222d390 d fat_default_iocharset +ffffffff8222d3a0 d vfat_fs_type +ffffffff8222d3e0 d tables +ffffffff8222d400 d default_table +ffffffff8222d440 d table +ffffffff8222d480 d table +ffffffff8222d4c0 d table +ffffffff8222d500 d table +ffffffff8222d540 d table +ffffffff8222d580 d table +ffffffff8222d5c0 d table +ffffffff8222d600 d table +ffffffff8222d640 D I30 +ffffffff8222d660 d ___modver_attr +ffffffff8222d6c0 d ntfs_fs_type +ffffffff8222d700 D ntfs_lock +ffffffff8222d720 d autofs_fs_type +ffffffff8222d758 d autofs4_next_wait_queue +ffffffff8222d760 d _autofs_dev_ioctl_misc +ffffffff8222d7c0 d btrfs_misc +ffffffff8222d820 d printk_limits +ffffffff8222d960 d btrfs_root_fs_type +ffffffff8222d9a0 d btrfs_fs_type +ffffffff8222d9e0 d _rs.52787 +ffffffff8222da20 d _rs.52772 +ffffffff8222da60 d _rs.52665 +ffffffff8222daa0 d _rs.49760 +ffffffff8222dae0 d _rs.52780 +ffffffff8222db20 d _rs.52063 +ffffffff8222db60 d _rs.52146 +ffffffff8222dba0 d _rs.52143 +ffffffff8222dbe0 d _rs.52076 +ffffffff8222dc20 d _rs.50713 +ffffffff8222dc60 d _rs.50710 +ffffffff8222dc88 D btrfs_filetype_table +ffffffff8222dca0 d btrfs_ktype +ffffffff8222dce0 d btrfs_attrs +ffffffff8222dd20 d btrfs_attr__quota_override +ffffffff8222dd40 d btrfs_attr__clone_alignment +ffffffff8222dd60 d btrfs_attr__sectorsize +ffffffff8222dd80 d btrfs_attr__nodesize +ffffffff8222dda0 d btrfs_attr__label +ffffffff8222ddc0 d allocation_attrs +ffffffff8222dde0 D space_info_ktype +ffffffff8222de20 d space_info_attrs +ffffffff8222de80 d btrfs_attr_space_info_total_bytes_pinned +ffffffff8222dea0 d btrfs_attr_space_info_disk_total +ffffffff8222dec0 d btrfs_attr_space_info_disk_used +ffffffff8222dee0 d btrfs_attr_space_info_bytes_readonly +ffffffff8222df00 d btrfs_attr_space_info_bytes_may_use +ffffffff8222df20 d btrfs_attr_space_info_bytes_reserved +ffffffff8222df40 d btrfs_attr_space_info_bytes_pinned +ffffffff8222df60 d btrfs_attr_space_info_bytes_used +ffffffff8222df80 d btrfs_attr_space_info_total_bytes +ffffffff8222dfa0 d btrfs_attr_space_info_flags +ffffffff8222dfc0 D btrfs_raid_ktype +ffffffff8222dff0 d raid_attributes +ffffffff8222e020 d btrfs_attr_raid_used_bytes +ffffffff8222e040 d btrfs_attr_raid_total_bytes +ffffffff8222e060 d btrfs_attr_allocation_global_rsv_reserved +ffffffff8222e080 d btrfs_attr_allocation_global_rsv_size +ffffffff8222e0a0 d btrfs_supported_feature_attrs +ffffffff8222e100 d btrfs_attr_features_free_space_tree +ffffffff8222e140 d btrfs_attr_features_no_holes +ffffffff8222e180 d btrfs_attr_features_skinny_metadata +ffffffff8222e1c0 d btrfs_attr_features_raid56 +ffffffff8222e200 d btrfs_attr_features_extended_iref +ffffffff8222e240 d btrfs_attr_features_big_metadata +ffffffff8222e280 d btrfs_attr_features_compress_zstd +ffffffff8222e2c0 d btrfs_attr_features_compress_lzo +ffffffff8222e300 d btrfs_attr_features_mixed_groups +ffffffff8222e340 d btrfs_attr_features_default_subvol +ffffffff8222e380 d btrfs_attr_features_mixed_backref +ffffffff8222e3c0 D btrfs_xattr_handlers +ffffffff8222e400 d _rs.51060 +ffffffff8222e440 d _rs.52528 +ffffffff8222e480 d _rs.52281 +ffffffff8222e4c0 d _rs.52278 +ffffffff8222e4f0 d fs_uuids +ffffffff8222e500 D uuid_mutex +ffffffff8222e520 d _rs.49862 +ffffffff8222e560 d _rs.49880 +ffffffff8222e5a0 d _rs.51283 +ffffffff8222e5e0 d _rs.50228 +ffffffff8222e620 d _rs.50225 +ffffffff8222e660 d _rs.51515 +ffffffff8222e6a0 d _rs.50803 +ffffffff8222e6e0 d _rs.50791 +ffffffff8222e720 d _rs.50588 +ffffffff8222e760 d _rs.50385 +ffffffff8222e7a0 d _rs.50458 +ffffffff8222e7e0 d _rs.50447 +ffffffff8222e820 d _rs.50422 +ffffffff8222e860 d _rs.51318 +ffffffff8222e890 d max_key.49896 +ffffffff8222e8c0 d prop_handlers +ffffffff8222e900 D init_ipc_ns +ffffffff8222ec60 d ipc_root_table +ffffffff8222ece0 d ipc_kern_table +ffffffff8222f020 d int_max +ffffffff8222f024 d one +ffffffff8222f040 d mqueue_fs_type +ffffffff8222f080 d mq_sysctl_root +ffffffff8222f100 d mq_sysctl_dir +ffffffff8222f180 d mq_sysctls +ffffffff8222f300 d msg_maxsize_limit_max +ffffffff8222f304 d msg_maxsize_limit_min +ffffffff8222f308 d msg_max_limit_max +ffffffff8222f30c d msg_max_limit_min +ffffffff8222f320 d graveyard.28700 +ffffffff8222f340 D key_type_dead +ffffffff8222f3c8 d key_gc_next_run +ffffffff8222f3e0 d key_gc_timer +ffffffff8222f420 D key_gc_work +ffffffff8222f440 D key_gc_delay +ffffffff8222f460 D key_construction_mutex +ffffffff8222f480 d key_types_sem +ffffffff8222f4b0 d key_types_list +ffffffff8222f4c0 D key_quota_maxbytes +ffffffff8222f4c4 D key_quota_maxkeys +ffffffff8222f4c8 D key_quota_root_maxbytes +ffffffff8222f4cc D key_quota_root_maxkeys +ffffffff8222f4e0 d keyring_serialise_restrict_sem +ffffffff8222f520 d keyring_serialise_link_sem +ffffffff8222f560 D key_type_keyring +ffffffff8222f600 D root_key_user +ffffffff8222f660 d key_user_keyring_mutex +ffffffff8222f680 d key_session_mutex +ffffffff8222f6a0 D key_type_request_key_auth +ffffffff8222f740 D key_type_logon +ffffffff8222f7e0 D key_type_user +ffffffff8222f880 D key_sysctls +ffffffff8222fa00 D dac_mmap_min_addr +ffffffff8222fa20 D crypto_chain +ffffffff8222fa60 D crypto_alg_sem +ffffffff8222fa90 D crypto_alg_list +ffffffff8222faa0 d crypto_template_list +ffffffff8222fac0 d seqiv_tmpl +ffffffff8222fb80 d rsa +ffffffff8222fd80 D rsa_pkcs1pad_tmpl +ffffffff8222fe40 d scomp_lock +ffffffff8222fe60 d cryptomgr_notifier +ffffffff8222fe80 d __compound_literal.10 +ffffffff8222fea0 d __compound_literal.9 +ffffffff8222fec0 d __compound_literal.8 +ffffffff8222fee0 d __compound_literal.7 +ffffffff8222ff00 d __compound_literal.6 +ffffffff8222ff20 d __compound_literal.5 +ffffffff8222ff40 d __compound_literal.4 +ffffffff8222ff42 d __compound_literal.3 +ffffffff8222ff44 d __compound_literal.2 +ffffffff8222ff46 d __compound_literal.1 +ffffffff8222ff48 d __compound_literal.0 +ffffffff8222ff60 d crypto_cmac_tmpl +ffffffff82230020 d hmac_tmpl +ffffffff822300e0 d null_algs +ffffffff822305c0 d digest_null +ffffffff822307c0 d crypto_default_null_skcipher_lock +ffffffff822307e0 d alg +ffffffff822309e0 d sha256_algs +ffffffff82230dc0 d crypto_ecb_tmpl +ffffffff82230e80 d crypto_rfc3686_tmpl +ffffffff82230f40 d crypto_ctr_tmpl +ffffffff82231000 d crypto_rfc4543_tmpl +ffffffff822310c0 d crypto_rfc4106_tmpl +ffffffff82231180 d crypto_gcm_base_tmpl +ffffffff82231240 d crypto_gcm_tmpl +ffffffff82231300 d crypto_cbcmac_tmpl +ffffffff822313c0 d crypto_rfc4309_tmpl +ffffffff82231480 d crypto_ccm_base_tmpl +ffffffff82231540 d crypto_ccm_tmpl +ffffffff82231600 d cryptd_tmpl +ffffffff822316b8 d cryptd_max_cpu_qlen +ffffffff822316c0 d des_algs +ffffffff82231a00 d aes_alg +ffffffff82231ba0 d arc4_algs +ffffffff82231ee0 d alg +ffffffff822320e0 d crypto_authenc_tmpl +ffffffff822321a0 d crypto_authenc_esn_tmpl +ffffffff82232260 d crypto_default_rng_lock +ffffffff82232280 d priority.34801 +ffffffff822322a0 d jent_alg +ffffffff82232460 d ghash_alg +ffffffff82232660 d alg_types_sem +ffffffff82232690 d alg_types +ffffffff822326a0 d alg_proto +ffffffff82232840 d algif_hash_ops_nokey +ffffffff82232900 d algif_hash_ops +ffffffff822329c0 d nist_p256 +ffffffff82232a00 d nist_p256_n +ffffffff82232a20 d nist_p256_p +ffffffff82232a40 d nist_p256_g_y +ffffffff82232a60 d nist_p256_g_x +ffffffff82232a80 d nist_p192 +ffffffff82232ab0 d nist_p192_n +ffffffff82232ad0 d nist_p192_p +ffffffff82232af0 d nist_p192_g_y +ffffffff82232b10 d nist_p192_g_x +ffffffff82232b40 d ecdh +ffffffff82232d20 d xor_block_avx +ffffffff82232d60 d xor_block_sse +ffffffff82232da0 d xor_block_sse_pf64 +ffffffff82232de0 D key_type_asymmetric +ffffffff82232e80 d asymmetric_key_parsers_sem +ffffffff82232eb0 d asymmetric_key_parsers +ffffffff82232ec0 D public_key_subtype +ffffffff82232f00 d x509_key_parser +ffffffff82232f40 d bio_dirty_work +ffffffff82232f60 d bio_slab_lock +ffffffff82232f80 d elv_ktype +ffffffff82232fb0 d elv_list +ffffffff82232fc0 d _rs.40761 +ffffffff82233000 d _rs.41091 +ffffffff82233030 D blk_queue_ida +ffffffff82233040 D blk_queue_ktype +ffffffff82233080 d default_attrs +ffffffff822331a0 d queue_wb_lat_entry +ffffffff822331c0 d queue_dax_entry +ffffffff822331e0 d queue_wc_entry +ffffffff82233200 d queue_poll_delay_entry +ffffffff82233220 d queue_poll_entry +ffffffff82233240 d queue_random_entry +ffffffff82233260 d queue_iostats_entry +ffffffff82233280 d queue_rq_affinity_entry +ffffffff822332a0 d queue_nomerges_entry +ffffffff822332c0 d queue_zoned_entry +ffffffff822332e0 d queue_nonrot_entry +ffffffff82233300 d queue_write_zeroes_max_entry +ffffffff82233320 d queue_write_same_max_entry +ffffffff82233340 d queue_discard_zeroes_data_entry +ffffffff82233360 d queue_discard_max_entry +ffffffff82233380 d queue_discard_max_hw_entry +ffffffff822333a0 d queue_discard_granularity_entry +ffffffff822333c0 d queue_io_opt_entry +ffffffff822333e0 d queue_io_min_entry +ffffffff82233400 d queue_chunk_sectors_entry +ffffffff82233420 d queue_physical_block_size_entry +ffffffff82233440 d queue_logical_block_size_entry +ffffffff82233460 d queue_hw_sector_size_entry +ffffffff82233480 d queue_iosched_entry +ffffffff822334a0 d queue_max_segment_size_entry +ffffffff822334c0 d queue_max_integrity_segments_entry +ffffffff822334e0 d queue_max_discard_segments_entry +ffffffff82233500 d queue_max_segments_entry +ffffffff82233520 d queue_max_hw_sectors_entry +ffffffff82233540 d queue_max_sectors_entry +ffffffff82233560 d queue_ra_entry +ffffffff82233580 d queue_requests_entry +ffffffff822335a0 d blk_mq_hw_ktype +ffffffff822335e0 d blk_mq_ctx_ktype +ffffffff82233620 d blk_mq_ktype +ffffffff82233660 d default_hw_ctx_attrs +ffffffff82233680 d blk_mq_hw_sysfs_cpus +ffffffff822336a0 d blk_mq_hw_sysfs_nr_reserved_tags +ffffffff822336c0 d blk_mq_hw_sysfs_nr_tags +ffffffff822336e0 d disk_events_attrs +ffffffff82233700 d disk_events +ffffffff82233720 d disk_events_mutex +ffffffff82233740 D block_class +ffffffff822337b0 d disk_attr_groups +ffffffff822337c0 d disk_attr_group +ffffffff82233800 d disk_attrs +ffffffff82233880 d dev_attr_badblocks +ffffffff822338a0 d dev_attr_inflight +ffffffff822338c0 d dev_attr_stat +ffffffff822338e0 d dev_attr_capability +ffffffff82233900 d dev_attr_discard_alignment +ffffffff82233920 d dev_attr_alignment_offset +ffffffff82233940 d dev_attr_size +ffffffff82233960 d dev_attr_ro +ffffffff82233980 d dev_attr_hidden +ffffffff822339a0 d dev_attr_removable +ffffffff822339c0 d dev_attr_ext_range +ffffffff822339e0 d dev_attr_range +ffffffff82233a00 d ext_devt_idr +ffffffff82233a20 d block_class_lock +ffffffff82233a40 d dev_attr_whole_disk +ffffffff82233a60 D part_type +ffffffff82233a90 d part_attr_groups +ffffffff82233aa0 d part_attr_group +ffffffff82233ae0 d part_attrs +ffffffff82233b40 d dev_attr_inflight +ffffffff82233b60 d dev_attr_stat +ffffffff82233b80 d dev_attr_discard_alignment +ffffffff82233ba0 d dev_attr_alignment_offset +ffffffff82233bc0 d dev_attr_ro +ffffffff82233be0 d dev_attr_size +ffffffff82233c00 d dev_attr_start +ffffffff82233c20 d dev_attr_partition +ffffffff82233c40 D warn_no_part +ffffffff82233c60 d bsg_minor_idr +ffffffff82233c80 d bsg_mutex +ffffffff82233ca0 d elevator_noop +ffffffff82233dc0 d iosched_cfq +ffffffff82233ee0 d cfq_attrs +ffffffff82234120 d cfq_group_idle +ffffffff82234128 D debug_locks +ffffffff82234140 d seed_timer +ffffffff82234170 d percpu_ref_switch_waitq +ffffffff82234188 d rhnull.25157 +ffffffff82234190 d count.31389 +ffffffff822341a0 d static_bl_desc +ffffffff822341c0 d static_d_desc +ffffffff822341e0 d static_l_desc +ffffffff82234200 d percpu_counters +ffffffff82234220 d _rs.29808 +ffffffff82234260 d _rs.29716 +ffffffff822342a0 d _rs.34484 +ffffffff822342e0 d _rs.34430 +ffffffff82234320 d sg_pools +ffffffff822343c0 d _rs.34553 +ffffffff822343f0 d pci_cfg_wait +ffffffff82234410 d pci_high +ffffffff82234420 d pci_64_bit +ffffffff82234430 d pci_32_bit +ffffffff82234440 d pci_rescan_remove_lock +ffffffff82234460 d pci_default_type0 +ffffffff82234480 d pcibus_class +ffffffff822344f0 d pci_domain_busn_res_list +ffffffff82234500 D pci_root_buses +ffffffff82234520 d busn_resource +ffffffff82234560 d __domain_nr +ffffffff82234580 d bus_attr_resource_alignment +ffffffff822345a0 D pcibios_max_latency +ffffffff822345a4 D pci_dfl_cache_line_size +ffffffff822345a8 D pcie_bus_config +ffffffff822345b0 D pci_hotplug_bus_size +ffffffff822345b8 D pci_hotplug_mem_size +ffffffff822345c0 D pci_hotplug_io_size +ffffffff822345c8 D pci_cardbus_mem_size +ffffffff822345d0 D pci_cardbus_io_size +ffffffff822345d8 D pci_domains_supported +ffffffff822345e0 d pci_pme_work +ffffffff82234640 d pci_pme_list_mutex +ffffffff82234660 d pci_pme_list +ffffffff82234680 D pci_power_names +ffffffff822346c0 D pci_bus_type +ffffffff82234760 d pci_compat_driver +ffffffff82234870 d pci_drv_groups +ffffffff82234880 d pci_drv_attrs +ffffffff822348a0 d driver_attr_remove_id +ffffffff822348c0 d driver_attr_new_id +ffffffff822348e0 D pci_bus_sem +ffffffff82234920 d pci_dev_attr_groups +ffffffff82234950 D pcie_dev_groups +ffffffff82234960 D pci_bridge_groups +ffffffff82234970 D pci_dev_groups +ffffffff82234980 d pci_dev_hp_attrs +ffffffff822349a0 d pci_dev_dev_attrs +ffffffff822349c0 d reset_attr +ffffffff822349e0 d vga_attr +ffffffff82234a00 D pcibus_groups +ffffffff82234a20 d pcibus_attrs +ffffffff82234a40 d pcie_dev_attrs +ffffffff82234a70 d pci_bridge_attrs +ffffffff82234aa0 d pci_dev_attrs +ffffffff82234b40 d dev_attr_driver_override +ffffffff82234b60 d dev_attr_d3cold_allowed +ffffffff82234b80 d dev_attr_rescan +ffffffff82234ba0 d dev_remove_attr +ffffffff82234bc0 d dev_rescan_attr +ffffffff82234be0 D pci_bus_groups +ffffffff82234bf0 d pci_bus_attrs +ffffffff82234c00 d bus_attr_rescan +ffffffff82234c20 d dev_attr_msi_bus +ffffffff82234c40 d dev_attr_consistent_dma_mask_bits +ffffffff82234c60 d dev_attr_dma_mask_bits +ffffffff82234c80 d dev_attr_enable +ffffffff82234ca0 d dev_attr_modalias +ffffffff82234cc0 d dev_attr_ari_enabled +ffffffff82234ce0 d dev_attr_subordinate_bus_number +ffffffff82234d00 d dev_attr_secondary_bus_number +ffffffff82234d20 d dev_attr_current_link_width +ffffffff82234d40 d dev_attr_current_link_speed +ffffffff82234d60 d dev_attr_max_link_width +ffffffff82234d80 d dev_attr_max_link_speed +ffffffff82234da0 d dev_attr_resource +ffffffff82234dc0 d dev_attr_cpulistaffinity +ffffffff82234de0 d dev_attr_cpuaffinity +ffffffff82234e00 d dev_attr_local_cpulist +ffffffff82234e20 d dev_attr_local_cpus +ffffffff82234e40 d dev_attr_broken_parity_status +ffffffff82234e60 d dev_attr_irq +ffffffff82234e80 d dev_attr_class +ffffffff82234ea0 d dev_attr_revision +ffffffff82234ec0 d dev_attr_subsystem_device +ffffffff82234ee0 d dev_attr_subsystem_vendor +ffffffff82234f00 d dev_attr_device +ffffffff82234f20 d dev_attr_vendor +ffffffff82234f40 d pci_realloc_enable +ffffffff82234f60 d pci_slot_ktype +ffffffff82234fa0 d pci_slot_default_attrs +ffffffff82234fc0 d pci_slot_attr_cur_speed +ffffffff82234fe0 d pci_slot_attr_max_speed +ffffffff82235000 d pci_slot_attr_address +ffffffff82235020 d pci_slot_mutex +ffffffff82235040 d via_vlink_dev_hi +ffffffff82235044 d via_vlink_dev_lo +ffffffff82235060 d aspm_policy +ffffffff82235070 d link_list +ffffffff82235080 d aspm_lock +ffffffff822350a0 d aspm_support_enabled +ffffffff822350c0 d pcie_portdriver +ffffffff822351c8 D pcie_ports_auto +ffffffff822351e0 D pcie_port_bus_type +ffffffff82235280 d aerdriver +ffffffff82235340 d pcie_pme_driver +ffffffff82235400 d pci_msi_domain_ops_default +ffffffff82235440 d pci_msi_enable +ffffffff82235460 d acpi_pci_bus +ffffffff822354a0 d acpi_attributes +ffffffff822354c0 d acpi_attr_index +ffffffff822354e0 d acpi_attr_label +ffffffff82235500 d smbios_attributes +ffffffff82235520 d smbios_attr_instance +ffffffff82235540 d smbios_attr_label +ffffffff82235560 d bl_device_groups +ffffffff82235580 d bl_device_attrs +ffffffff822355c0 d dev_attr_actual_brightness +ffffffff822355e0 d dev_attr_max_brightness +ffffffff82235600 d dev_attr_type +ffffffff82235620 d dev_attr_brightness +ffffffff82235640 d dev_attr_bl_power +ffffffff82235660 d fb_notifier_list +ffffffff822356a0 d registration_lock +ffffffff822356c0 d device_attrs +ffffffff82235840 d device_attrs +ffffffff822358a0 d fbcon_event_notifier +ffffffff822358c0 d palette_cmap +ffffffff822358e8 d initial_rotation +ffffffff822358ec d info_idx +ffffffff822358f0 d primary_device +ffffffff822358f4 d fbcon_is_default +ffffffff822358f8 d last_fb_vc +ffffffff822358fc d fbcon_softback_size +ffffffff82235900 d logo_shown +ffffffff82235920 d dnv_cstates +ffffffff82235aa0 d bxt_cstates +ffffffff82235da0 d knl_cstates +ffffffff82235ec0 d avn_cstates +ffffffff82235fe0 d tangier_cstates +ffffffff82236220 d atom_cstates +ffffffff82236400 d skx_cstates +ffffffff82236580 d skl_cstates +ffffffff822368e0 d bdw_cstates +ffffffff82236c40 d hsw_cstates +ffffffff82236fa0 d ivt_cstates_8s +ffffffff82237180 d ivt_cstates_4s +ffffffff82237360 d ivt_cstates +ffffffff82237540 d ivb_cstates +ffffffff82237780 d cht_cstates +ffffffff822379c0 d byt_cstates +ffffffff82237c00 d snb_cstates +ffffffff82237e40 d nehalem_cstates +ffffffff82238020 d lapic_timer_reliable_states +ffffffff82238024 d max_cstate +ffffffff82238040 d intel_idle_driver +ffffffff82238440 d acpi_enforce_resources +ffffffff82238460 d acpi_ioremap_lock +ffffffff82238480 d acpi_ioremaps +ffffffff82238490 D acpi_sci_irq +ffffffff822384a0 d nvs_list +ffffffff822384b0 d nvs_region_list +ffffffff822384c0 d acpi_sleep_syscore_ops +ffffffff82238500 d lps0_handler +ffffffff822385a0 d tts_notifier +ffffffff822385c0 d dev_attr_status +ffffffff822385e0 d dev_attr_hrv +ffffffff82238600 d dev_attr_sun +ffffffff82238620 d dev_attr_description +ffffffff82238640 d dev_attr_path +ffffffff82238660 d dev_attr_adr +ffffffff82238680 d dev_attr_uid +ffffffff822386a0 d dev_attr_hid +ffffffff822386c0 d dev_attr_eject +ffffffff822386e0 d dev_attr_power_state +ffffffff82238700 d dev_attr_real_power_state +ffffffff82238720 d dev_attr_modalias +ffffffff82238740 d acpi_data_node_ktype +ffffffff82238770 d acpi_data_node_default_attrs +ffffffff82238780 d data_node_path +ffffffff822387a0 d acpi_general_pm_domain +ffffffff82238880 d acpi_wakeup_lock +ffffffff822388a0 d acpi_pm_notifier_install_lock +ffffffff822388c0 d acpi_pm_notifier_lock +ffffffff822388e0 d acpi_sb_work.43337 +ffffffff82238900 D acpi_bus_type +ffffffff822389a0 d sb_uuid_str +ffffffff822389e0 d bus_type_sem +ffffffff82238a10 d bus_type_list +ffffffff82238a20 d work.39691 +ffffffff82238a40 d acpi_probe_mutex +ffffffff82238a60 d generic_device_handler +ffffffff82238b00 d acpi_device_del_lock +ffffffff82238b20 d acpi_device_del_list +ffffffff82238b40 d acpi_reconfig_chain +ffffffff82238b80 d acpi_hp_context_lock +ffffffff82238ba0 D acpi_wakeup_device_list +ffffffff82238bc0 D acpi_device_lock +ffffffff82238be0 d acpi_scan_handlers_list +ffffffff82238c00 d acpi_scan_lock +ffffffff82238c20 D acpi_bus_id_list +ffffffff82238c40 d acpi_dep_list_lock +ffffffff82238c60 d acpi_dep_list +ffffffff82238c80 d duplicate_processor_ids +ffffffff82238ca0 d processor_container_handler +ffffffff82238d40 d processor_handler +ffffffff82238de0 d acpi_ec_driver +ffffffff82238f40 d pci_osc_uuid_str +ffffffff82238f80 d pci_osc_control_bit +ffffffff82238fe0 d pci_osc_support_bit +ffffffff82239040 d osc_lock +ffffffff82239060 d pci_root_handler +ffffffff82239100 d irqrouter_syscore_ops +ffffffff82239128 d acpi_irq_balance +ffffffff82239140 d acpi_isa_irq_penalty +ffffffff82239180 d sci_irq +ffffffff822391a0 d acpi_link_lock +ffffffff822391c0 d acpi_link_list +ffffffff822391e0 d pci_link_handler +ffffffff82239280 d lpss_handler +ffffffff82239320 d apd_handler +ffffffff822393c0 d acpi_pnp_handler +ffffffff82239460 d dev_attr_resource_in_use +ffffffff82239480 d power_resource_list_lock +ffffffff822394a0 d acpi_power_resource_list +ffffffff822394c0 d acpi_chain_head +ffffffff82239500 d acpi_hotplug_profile_ktype +ffffffff82239530 d hotplug_profile_attrs +ffffffff82239540 d hotplug_enabled_attr +ffffffff82239560 d interrupt_stats_attr_group +ffffffff82239590 d acpi_table_attr_list +ffffffff822395a0 d cmos_rtc_handler +ffffffff82239640 d dev_attr_low_power_idle_cpu_residency_us +ffffffff82239660 d dev_attr_low_power_idle_system_residency_us +ffffffff82239680 D acpi_gbl_default_address_spaces +ffffffff82239690 d acpi_rs_convert_io_flags +ffffffff822396a0 d acpi_rs_convert_mem_flags +ffffffff822396c0 d acpi_rs_convert_general_flags +ffffffff822396e0 D acpi_rs_convert_ext_address64 +ffffffff82239700 D acpi_rs_convert_address64 +ffffffff82239720 D acpi_rs_convert_address32 +ffffffff82239740 D acpi_rs_convert_address16 +ffffffff82239760 D acpi_gbl_convert_resource_serial_bus_dispatch +ffffffff82239780 D acpi_gbl_get_resource_dispatch +ffffffff822398a0 D acpi_gbl_set_resource_dispatch +ffffffff82239980 D acpi_rs_set_start_dpf +ffffffff822399b0 D acpi_rs_get_start_dpf +ffffffff822399c8 D acpi_rs_convert_end_tag +ffffffff822399d0 D acpi_rs_convert_end_dpf +ffffffff822399e0 D acpi_rs_convert_generic_reg +ffffffff822399f0 D acpi_rs_convert_fixed_io +ffffffff82239a00 D acpi_rs_convert_io +ffffffff82239a20 D acpi_rs_convert_fixed_dma +ffffffff82239a30 D acpi_rs_convert_dma +ffffffff82239a60 D acpi_rs_convert_ext_irq +ffffffff82239aa0 D acpi_rs_set_irq +ffffffff82239ae0 D acpi_rs_get_irq +ffffffff82239b10 D acpi_rs_set_vendor +ffffffff82239b30 D acpi_rs_get_vendor_large +ffffffff82239b40 D acpi_rs_get_vendor_small +ffffffff82239b50 D acpi_rs_convert_fixed_memory32 +ffffffff82239b60 D acpi_rs_convert_memory32 +ffffffff82239b70 D acpi_rs_convert_memory24 +ffffffff82239b80 D acpi_rs_convert_pin_group_config +ffffffff82239bc0 D acpi_rs_convert_pin_group_function +ffffffff82239c00 D acpi_rs_convert_pin_group +ffffffff82239c40 D acpi_rs_convert_pin_config +ffffffff82239c80 D acpi_rs_convert_uart_serial_bus +ffffffff82239ce0 D acpi_rs_convert_spi_serial_bus +ffffffff82239d40 D acpi_rs_convert_i2c_serial_bus +ffffffff82239da0 D acpi_rs_convert_pin_function +ffffffff82239de0 D acpi_rs_convert_gpio +ffffffff82239e40 D acpi_gbl_region_types +ffffffff82239ea0 D acpi_gbl_fixed_event_info +ffffffff82239ec0 D acpi_gbl_bit_register_info +ffffffff82239f20 D acpi_gbl_highest_dstate_names +ffffffff82239f40 D acpi_gbl_lowest_dstate_names +ffffffff82239f80 D acpi_gbl_sleep_state_names +ffffffff82239fb0 D acpi_gbl_db_output_flags +ffffffff82239fb1 D acpi_gbl_early_initialization +ffffffff82239fb2 D acpi_gbl_shutdown +ffffffff82239fb4 D acpi_gbl_fadt_index +ffffffff82239fb8 D acpi_gbl_xfacs_index +ffffffff82239fbc D acpi_gbl_facs_index +ffffffff82239fc0 D acpi_gbl_dsdt_index +ffffffff82239fc4 D acpi_dbg_level +ffffffff82239fc8 D acpi_gbl_trace_dbg_layer +ffffffff82239fcc D acpi_gbl_trace_dbg_level +ffffffff82239fd0 D acpi_gbl_max_loop_iterations +ffffffff82239fd4 D acpi_gbl_runtime_namespace_override +ffffffff82239fd5 D acpi_gbl_use32_bit_facs_addresses +ffffffff82239fd6 D acpi_gbl_group_module_level_code +ffffffff82239fd7 D acpi_gbl_enable_table_validation +ffffffff82239fd8 D acpi_gbl_use_default_register_widths +ffffffff82239fd9 D acpi_gbl_create_osi_method +ffffffff82239fda D acpi_gbl_auto_serialize_methods +ffffffff82239fe0 d acpi_default_supported_interfaces +ffffffff8223a200 d lid_init_state +ffffffff8223a220 d acpi_lid_notifier +ffffffff8223a260 d acpi_button_driver +ffffffff8223a3c0 d acpi_video_bus +ffffffff8223a510 d video_bus_head +ffffffff8223a520 d video_list_lock +ffffffff8223a540 d register_count_mutex +ffffffff8223a560 d only_lcd +ffffffff8223a564 d report_key_events +ffffffff8223a568 d disable_backlight_sysfs_if +ffffffff8223a56c d brightness_switch_enabled +ffffffff8223a580 d init_mutex.39863 +ffffffff8223a5a0 d acpi_backlight_dmi +ffffffff8223a5a4 d acpi_backlight_cmdline +ffffffff8223a5c0 d acpi_processor_driver +ffffffff8223a640 d bm_control_flag.31539 +ffffffff8223a644 d bm_check_flag.31538 +ffffffff8223a660 D acpi_idle_driver +ffffffff8223aa50 d acpi_thermal_cpufreq_notifier_block +ffffffff8223aa80 d acpi_ppc_notifier_block +ffffffff8223aa98 d ignore_ppc +ffffffff8223aaa0 d performance_mutex +ffffffff8223aac0 d container_handler +ffffffff8223ab60 d acpi_thermal_zone_ops +ffffffff8223abe0 d acpi_thermal_driver +ffffffff8223ad40 d memory_device_handler +ffffffff8223ade0 d ioapic_list_lock +ffffffff8223ae00 d ioapic_list +ffffffff8223ae20 D cppc_mbox_cl +ffffffff8223ae60 d cppc_ktype +ffffffff8223aea0 d cppc_attrs +ffffffff8223aee0 d feedback_ctrs +ffffffff8223af00 d wraparound_time +ffffffff8223af20 d reference_perf +ffffffff8223af40 d lowest_nonlinear_perf +ffffffff8223af60 d nominal_perf +ffffffff8223af80 d lowest_perf +ffffffff8223afa0 d highest_perf +ffffffff8223afc0 d acpi_pad_driver +ffffffff8223b120 d dev_attr_idlecpus +ffffffff8223b140 d dev_attr_idlepct +ffffffff8223b160 d dev_attr_rrtime +ffffffff8223b180 d round_robin_time +ffffffff8223b184 d idle_pct +ffffffff8223b190 d tsk_in_cpu +ffffffff8223b1a0 d round_robin_lock +ffffffff8223b1c0 d isolated_cpus_lock +ffffffff8223b1e0 d int340x_thermal_handler +ffffffff8223b280 D pnp_lock +ffffffff8223b2a0 D pnp_global +ffffffff8223b2b0 d pnp_protocols +ffffffff8223b2c0 d dev_attr_card_id +ffffffff8223b2e0 d dev_attr_name +ffffffff8223b300 d pnp_card_drivers +ffffffff8223b310 D pnp_cards +ffffffff8223b320 D pnp_bus_type +ffffffff8223b3c0 d pnp_reserve_mem +ffffffff8223b400 d pnp_reserve_io +ffffffff8223b440 d pnp_reserve_dma +ffffffff8223b460 d pnp_reserve_irq +ffffffff8223b4a0 D pnp_res_mutex +ffffffff8223b4c0 D pnp_dev_groups +ffffffff8223b4e0 d pnp_dev_attrs +ffffffff8223b500 d dev_attr_id +ffffffff8223b520 d dev_attr_resources +ffffffff8223b540 d dev_attr_options +ffffffff8223b560 d pnp_fixups +ffffffff8223b680 d system_pnp_driver +ffffffff8223b740 D pnpacpi_protocol +ffffffff8223ba80 d hp_ccsr_uuid +ffffffff8223baa0 d clocks_mutex +ffffffff8223bac0 d clocks +ffffffff8223bae0 d clk_notifier_list +ffffffff8223bb00 d prepare_lock +ffffffff8223bb20 d gpio_clk_driver +ffffffff8223bbe0 d plt_clk_driver +ffffffff8223bca0 d depr_flags.34221 +ffffffff8223bce0 d _rs.33965 +ffffffff8223bd20 d _rs.33955 +ffffffff8223bd50 d cons_dev_groups +ffffffff8223bd60 d cons_dev_attrs +ffffffff8223bd80 d dev_attr_active +ffffffff8223bda0 D tty_mutex +ffffffff8223bdc0 D tty_drivers +ffffffff8223bde0 D tty_std_termios +ffffffff8223be20 d _rs.33075 +ffffffff8223be60 d _rs.33067 +ffffffff8223bea0 d n_tty_ops +ffffffff8223bf40 d null_ldisc +ffffffff8223bfe0 d devpts_mutex +ffffffff8223c000 d vt_event_waitqueue +ffffffff8223c020 d vt_events +ffffffff8223c030 d inwordLut +ffffffff8223c040 d sel_start +ffffffff8223c060 d buf.33962 +ffffffff8223c080 D keyboard_tasklet +ffffffff8223c0a8 d brl_nbchords +ffffffff8223c0ac d brl_timeout +ffffffff8223c0c0 d kd_mksound_timer +ffffffff8223c0e8 d ledstate +ffffffff8223c0ec d npadch +ffffffff8223c100 d kbd_handler +ffffffff8223c178 d kbd +ffffffff8223c180 d old_offset.33504 +ffffffff8223c190 d con_dev_groups +ffffffff8223c1a0 d con_dev_attrs +ffffffff8223c1c0 d dev_attr_name +ffffffff8223c1e0 d dev_attr_bind +ffffffff8223c200 d vt_dev_groups +ffffffff8223c210 d vt_dev_attrs +ffffffff8223c220 d dev_attr_active +ffffffff8223c240 d default_underline_color +ffffffff8223c244 d default_italic_color +ffffffff8223c248 d default_color +ffffffff8223c260 d vt_console_driver +ffffffff8223c2c0 D default_blu +ffffffff8223c2d0 D default_grn +ffffffff8223c2e0 D default_red +ffffffff8223c2f0 d softcursor_original +ffffffff8223c300 d console_timer +ffffffff8223c328 D want_console +ffffffff8223c340 d con_driver_unregister_work +ffffffff8223c360 d console_work +ffffffff8223c380 d cur_default +ffffffff8223c384 D global_cursor_default +ffffffff8223c388 D default_utf8 +ffffffff8223c3a0 D accent_table_size +ffffffff8223c3c0 D accent_table +ffffffff8223cfc0 D func_table +ffffffff8223d7c0 D funcbufsize +ffffffff8223d7c8 D funcbufptr +ffffffff8223d7e0 D func_buf +ffffffff8223d87c D keymap_count +ffffffff8223d880 D key_maps +ffffffff8223e080 D ctrl_alt_map +ffffffff8223e280 D alt_map +ffffffff8223e480 D shift_ctrl_map +ffffffff8223e680 D ctrl_map +ffffffff8223e880 D altgr_map +ffffffff8223ea80 D shift_map +ffffffff8223ec80 D plain_map +ffffffff8223ee80 d maxwarn.40393 +ffffffff8223eea0 D random_table +ffffffff8223f0a0 d sysctl_poolsize +ffffffff8223f0a4 d random_min_urandom_seed +ffffffff8223f0a8 d max_write_thresh +ffffffff8223f0ac d max_read_thresh +ffffffff8223f0b0 d min_read_thresh +ffffffff8223f0c0 d input_timer_state +ffffffff8223f0e0 d crng_init_wait +ffffffff8223f100 d blocking_pool +ffffffff8223f180 d input_pool +ffffffff8223f1f0 d random_ready_list +ffffffff8223f200 d random_write_wait +ffffffff8223f220 d random_read_wait +ffffffff8223f240 d poolinfo_table +ffffffff8223f290 d random_write_wakeup_bits +ffffffff8223f294 d random_read_wakeup_bits +ffffffff8223f2a0 d misc_mtx +ffffffff8223f2c0 d misc_list +ffffffff8223f2e0 d hpet_misc +ffffffff8223f340 d hpet_acpi_driver +ffffffff8223f4a0 d dev_root +ffffffff8223f520 d hpet_root +ffffffff8223f5a0 d hpet_table +ffffffff8223f620 d hpet_max_freq +ffffffff8223f640 d hpet_mutex +ffffffff8223f660 d rng_dev_groups +ffffffff8223f680 d rng_dev_attrs +ffffffff8223f6a0 d dev_attr_rng_selected +ffffffff8223f6c0 d dev_attr_rng_available +ffffffff8223f6e0 d dev_attr_rng_current +ffffffff8223f700 d rng_miscdev +ffffffff8223f760 d reading_mutex +ffffffff8223f780 d rng_mutex +ffffffff8223f7a0 d rng_list +ffffffff8223f7c0 d intel_rng +ffffffff8223f840 d iommu_group_ktype +ffffffff8223f880 d iommu_group_attr_reserved_regions +ffffffff8223f8a0 d iommu_group_attr_name +ffffffff8223f8c0 d iommu_device_list +ffffffff8223f8d0 d iommu_def_domain_type +ffffffff8223f8e0 d iommu_group_ida +ffffffff8223f900 d iommu_class +ffffffff8223f970 d iommu_dev_groups +ffffffff8223f980 d iova_cache_mutex +ffffffff8223f9a0 d rs.40838 +ffffffff8223f9d0 d dmar_hp_guid +ffffffff8223f9e0 d dmar_pci_bus_nb +ffffffff8223f9f8 d dmar_dev_scope_status +ffffffff8223fa00 D dmar_drhd_units +ffffffff8223fa20 D dmar_global_lock +ffffffff8223fa60 d dumps.43864 +ffffffff8223fa70 D intel_iommu_groups +ffffffff8223fa80 d intel_iommu_group +ffffffff8223fac0 d intel_iommu_attrs +ffffffff8223fb00 d dev_attr_domains_used +ffffffff8223fb20 d dev_attr_domains_supported +ffffffff8223fb40 d dev_attr_ecap +ffffffff8223fb60 d dev_attr_cap +ffffffff8223fb80 d dev_attr_address +ffffffff8223fba0 d dev_attr_version +ffffffff8223fbc0 d device_nb +ffffffff8223fbe0 d iommu_syscore_ops +ffffffff8223fc10 d device_domain_list +ffffffff8223fc20 d intel_iommu_ecs +ffffffff8223fc24 d intel_iommu_superpage +ffffffff8223fc28 d dmar_map_gfx +ffffffff8223fc30 d dmar_rmrr_units +ffffffff8223fc40 d dmar_atsr_units +ffffffff8223fc50 d hw_pass_through +ffffffff8223fc60 d pasid_mutex +ffffffff8223fc80 d intel_ir_chip +ffffffff8223fda0 D intel_irq_remap_ops +ffffffff8223fde0 d _rs.42027 +ffffffff8223fe08 d drm_kms_helper_poll +ffffffff8223fe20 d kernel_fb_helper_lock +ffffffff8223fe40 d kernel_fb_helper_list +ffffffff8223fe50 d drm_fbdev_overalloc +ffffffff8223fe54 d drm_fbdev_emulation +ffffffff8223fe60 D drm_global_mutex +ffffffff8223fe80 d drm_fs_type +ffffffff8223fec0 d connector_dev_groups +ffffffff8223fed0 d connector_bin_attrs +ffffffff8223fee0 d edid_attr +ffffffff8223ff20 d connector_dev_attrs +ffffffff8223ff60 d dev_attr_modes +ffffffff8223ff80 d dev_attr_dpms +ffffffff8223ffa0 d dev_attr_enabled +ffffffff8223ffc0 d dev_attr_status +ffffffff8223ffe0 d class_attr_version +ffffffff82240020 d drm_sysfs_device_minor +ffffffff82240050 d crtc_ww_class +ffffffff82240080 d bridge_list +ffffffff822400a0 d bridge_lock +ffffffff822400c0 d drm_connector_enum_list +ffffffff82240300 d drm_vblank_offdelay +ffffffff82240304 d drm_timestamp_precision +ffffffff82240320 d panel_list +ffffffff82240340 d panel_lock +ffffffff82240360 d ttm_mem_glob_kobj_type +ffffffff822403a0 d ttm_mem_zone_kobj_type +ffffffff822403e0 d ttm_mem_zone_attrs +ffffffff82240410 d ttm_mem_used +ffffffff82240420 d ttm_mem_swap +ffffffff82240430 d ttm_mem_max +ffffffff82240440 d ttm_mem_emer +ffffffff82240450 d ttm_mem_sys +ffffffff82240460 d ttm_bo_glob_kobj_type +ffffffff82240490 d ttm_bo_global_attrs +ffffffff822404a0 d ttm_bo_count +ffffffff822404c0 d ttm_drm_class_device +ffffffff822407a0 d ttm_drm_class_type +ffffffff822407d0 d exit_q +ffffffff82240800 d lock.32845 +ffffffff82240820 d ttm_pool_kobj_type +ffffffff82240860 d ttm_pool_attrs +ffffffff82240880 d ttm_page_pool_alloc_size +ffffffff82240890 d ttm_page_pool_small +ffffffff822408a0 d ttm_page_pool_max +ffffffff822408c0 d ttm_pool_kobj_type +ffffffff82240900 d ttm_pool_attrs +ffffffff82240920 d ttm_page_pool_alloc_size +ffffffff82240930 d ttm_page_pool_small +ffffffff82240940 d ttm_page_pool_max +ffffffff82240960 D nvkm_subdev_name +ffffffff82240b00 d g84_pll_mapping +ffffffff82240b40 d nv50_pll_mapping +ffffffff82240ba0 d nv40_pll_mapping +ffffffff82240be0 d nv04_pll_mapping +ffffffff82240c20 d gk20a_pstates +ffffffff82241760 d gm20b_pstates +ffffffff82242120 d gt215_devinit_mmio_part +ffffffff822421a0 d muid.42745 +ffffffff822421c0 d _mxm_shadow +ffffffff82242200 d gt215_pmu_code +ffffffff82242f00 d gt215_pmu_data +ffffffff82243d00 d gf100_pmu_code +ffffffff82244a00 d gf100_pmu_data +ffffffff82245800 d gf119_pmu_code +ffffffff82246400 d gf119_pmu_data +ffffffff82247200 d gk104_pmu_code +ffffffff82247e00 d gk104_pmu_data +ffffffff82248c00 d gk110_pmu_code +ffffffff82249800 d gk110_pmu_data +ffffffff8224a600 d gk208_pmu_code +ffffffff8224b100 d gk208_pmu_data +ffffffff8224bf00 d gk20a_dvfs_data +ffffffff8224bf20 d gm107_pmu_code +ffffffff8224ca20 d gm107_pmu_data +ffffffff8224d820 D nvkm_secboot_falcon_name +ffffffff8224d880 d nv_board_infos +ffffffff8224e060 d gt215_ce_code +ffffffff8224e660 d gt215_ce_data +ffffffff8224e8c0 d gf100_ce_code +ffffffff8224eec0 d gf100_ce_data +ffffffff8224f100 d nv_devices +ffffffff8224f120 d nv_devices_mutex +ffffffff8224f140 D gf100_gr_gpccs_ucode +ffffffff8224f160 d gf100_grgpc_code +ffffffff8224f860 d gf100_grgpc_data +ffffffff8224f8e0 D gf100_gr_fecs_ucode +ffffffff8224f900 d gf100_grhub_code +ffffffff82250500 d gf100_grhub_data +ffffffff82250820 d gf117_gr_gpccs_ucode +ffffffff82250840 d gf117_grgpc_code +ffffffff82250f40 d gf117_grgpc_data +ffffffff82250fc0 d gf117_gr_fecs_ucode +ffffffff82250fe0 d gf117_grhub_code +ffffffff82251be0 d gf117_grhub_data +ffffffff82251f00 d gk104_gr_gpccs_ucode +ffffffff82251f20 d gk104_grgpc_code +ffffffff82252620 d gk104_grgpc_data +ffffffff822526a0 d gk104_gr_fecs_ucode +ffffffff822526c0 d gk104_grhub_code +ffffffff822532c0 d gk104_grhub_data +ffffffff822535e0 D gk110_gr_gpccs_ucode +ffffffff82253600 d gk110_grgpc_code +ffffffff82253d00 d gk110_grgpc_data +ffffffff82253d80 D gk110_gr_fecs_ucode +ffffffff82253da0 d gk110_grhub_code +ffffffff822549a0 d gk110_grhub_data +ffffffff82254cc0 d gk208_gr_gpccs_ucode +ffffffff82254ce0 d gk208_grgpc_code +ffffffff822552e0 d gk208_grgpc_data +ffffffff82255360 d gk208_gr_fecs_ucode +ffffffff82255380 d gk208_grhub_code +ffffffff82255d80 d gk208_grhub_data +ffffffff822560a0 d gm107_gr_gpccs_ucode +ffffffff822560c0 d gm107_grgpc_code +ffffffff822568c0 d gm107_grgpc_data +ffffffff82256940 d gm107_gr_fecs_ucode +ffffffff82256960 d gm107_grhub_code +ffffffff82257360 d gm107_grhub_data +ffffffff82257680 d g98_sec_code +ffffffff82257c80 d g98_sec_data +ffffffff82257e80 d nouveau_drm_pci_driver +ffffffff82257fa0 d nouveau_drm_pci_table +ffffffff82258000 d nouveau_runtime_pm +ffffffff82258004 D nouveau_modeset +ffffffff82258020 d mthd.53265 +ffffffff82258040 D nouveau_bo_driver +ffffffff822580c0 d nv50_sgdma_backend +ffffffff822580e0 d nv04_sgdma_backend +ffffffff82258100 d scaler_modes +ffffffff82258178 D nouveau_duallink +ffffffff82258180 d dither_depth +ffffffff822581c0 d dither_mode +ffffffff82258240 d underscan +ffffffff82258280 d nouveau_mst +ffffffff822582a0 d nouveau_fbcon_sw_ops +ffffffff82258360 d nouveau_fbcon_ops +ffffffff82258420 d formats +ffffffff82258440 D nv17_tv_norms +ffffffff82259640 d nv04_tv_encoder_info +ffffffff82259700 d __compound_literal.0 +ffffffff82259740 d cdev +ffffffff82259768 d cn_proc_event_id +ffffffff82259780 d masters +ffffffff82259790 d component_list +ffffffff822597a0 d component_mutex +ffffffff822597c0 d gdp_mutex +ffffffff822597e0 d class_dir_ktype +ffffffff82259820 d dev_attr_dev +ffffffff82259840 d dev_attr_online +ffffffff82259860 d dev_attr_uevent +ffffffff82259880 d device_ktype +ffffffff822598c0 d device_hotplug_lock +ffffffff822598e0 d device_links_srcu +ffffffff82259a80 d device_links_lock +ffffffff82259aa0 d bus_attr_uevent +ffffffff82259ac0 d driver_attr_uevent +ffffffff82259ae0 d bus_attr_drivers_autoprobe +ffffffff82259b00 d bus_attr_drivers_probe +ffffffff82259b20 d driver_attr_bind +ffffffff82259b40 d driver_attr_unbind +ffffffff82259b60 d bus_ktype +ffffffff82259ba0 d driver_ktype +ffffffff82259be0 d probe_waitqueue +ffffffff82259c00 d dev_attr_coredump +ffffffff82259c20 d deferred_probe_work +ffffffff82259c40 d deferred_probe_active_list +ffffffff82259c50 d deferred_probe_pending_list +ffffffff82259c60 d deferred_probe_mutex +ffffffff82259c80 d syscore_ops_lock +ffffffff82259ca0 d syscore_ops_list +ffffffff82259cc0 d class_ktype +ffffffff82259d00 D platform_bus_type +ffffffff82259da0 d platform_dev_groups +ffffffff82259db0 d platform_dev_attrs +ffffffff82259de0 d dev_attr_driver_override +ffffffff82259e00 d dev_attr_modalias +ffffffff82259e20 D platform_bus +ffffffff8225a0f0 d platform_devid_ida +ffffffff8225a100 d cpu_root_vulnerabilities_attrs +ffffffff8225a120 d dev_attr_spectre_v2 +ffffffff8225a140 d dev_attr_spectre_v1 +ffffffff8225a160 d dev_attr_meltdown +ffffffff8225a180 d cpu_root_attr_groups +ffffffff8225a1a0 d cpu_root_attr_group +ffffffff8225a1e0 d cpu_root_attrs +ffffffff8225a220 d dev_attr_modalias +ffffffff8225a240 d dev_attr_isolated +ffffffff8225a260 d dev_attr_offline +ffffffff8225a280 d dev_attr_kernel_max +ffffffff8225a2a0 d cpu_attrs +ffffffff8225a320 D cpu_subsys +ffffffff8225a3c0 d attribute_container_mutex +ffffffff8225a3e0 d attribute_container_list +ffffffff8225a400 d default_attrs +ffffffff8225a440 d dev_attr_core_siblings_list +ffffffff8225a460 d dev_attr_core_siblings +ffffffff8225a480 d dev_attr_thread_siblings_list +ffffffff8225a4a0 d dev_attr_thread_siblings +ffffffff8225a4c0 d dev_attr_core_id +ffffffff8225a4e0 d dev_attr_physical_package_id +ffffffff8225a500 D container_subsys +ffffffff8225a5a0 d cache_private_groups +ffffffff8225a5c0 d cache_default_groups +ffffffff8225a5e0 d cache_default_attrs +ffffffff8225a660 d dev_attr_physical_line_partition +ffffffff8225a680 d dev_attr_shared_cpu_list +ffffffff8225a6a0 d dev_attr_shared_cpu_map +ffffffff8225a6c0 d dev_attr_write_policy +ffffffff8225a6e0 d dev_attr_allocation_policy +ffffffff8225a700 d dev_attr_size +ffffffff8225a720 d dev_attr_number_of_sets +ffffffff8225a740 d dev_attr_ways_of_associativity +ffffffff8225a760 d dev_attr_coherency_line_size +ffffffff8225a780 d dev_attr_type +ffffffff8225a7a0 d dev_attr_level +ffffffff8225a7c0 d dev_attr_id +ffffffff8225a7e0 d setup_done +ffffffff8225a800 d dev_fs_type +ffffffff8225a838 d mount_dev +ffffffff8225a840 d pm_qos_flags_attrs +ffffffff8225a850 d pm_qos_latency_tolerance_attrs +ffffffff8225a860 d pm_qos_resume_latency_attrs +ffffffff8225a880 d runtime_attrs +ffffffff8225a8c0 d wakeup_attrs +ffffffff8225a920 d dev_attr_wakeup_prevent_sleep_time_ms +ffffffff8225a940 d dev_attr_wakeup_last_time_ms +ffffffff8225a960 d dev_attr_wakeup_max_time_ms +ffffffff8225a980 d dev_attr_wakeup_total_time_ms +ffffffff8225a9a0 d dev_attr_wakeup_active +ffffffff8225a9c0 d dev_attr_wakeup_expire_count +ffffffff8225a9e0 d dev_attr_wakeup_abort_count +ffffffff8225aa00 d dev_attr_wakeup_active_count +ffffffff8225aa20 d dev_attr_wakeup_count +ffffffff8225aa40 d dev_attr_wakeup +ffffffff8225aa60 d dev_attr_pm_qos_no_power_off +ffffffff8225aa80 d dev_attr_pm_qos_latency_tolerance_us +ffffffff8225aaa0 d dev_attr_pm_qos_resume_latency_us +ffffffff8225aac0 d dev_attr_autosuspend_delay_ms +ffffffff8225aae0 d dev_attr_runtime_status +ffffffff8225ab00 d dev_attr_runtime_suspended_time +ffffffff8225ab20 d dev_attr_runtime_active_time +ffffffff8225ab40 d dev_attr_control +ffffffff8225ab60 d dev_pm_qos_sysfs_mtx +ffffffff8225ab80 d dev_pm_qos_mtx +ffffffff8225aba0 d dev_hotplug_mutex.18518 +ffffffff8225abc0 d dpm_list_mtx +ffffffff8225abe0 d dpm_noirq_list +ffffffff8225abf0 d dpm_late_early_list +ffffffff8225ac00 d dpm_suspended_list +ffffffff8225ac10 d dpm_prepared_list +ffffffff8225ac20 D dpm_list +ffffffff8225ac40 d deleted_ws +ffffffff8225ad00 d wakeup_srcu +ffffffff8225ae90 d wakeup_count_wait_queue +ffffffff8225aeb0 d wakeup_sources +ffffffff8225aec0 d fw_shutdown_nb +ffffffff8225aee0 d fw_syscore_ops +ffffffff8225af10 d fw_cache_domain +ffffffff8225af28 d loading_timeout +ffffffff8225af40 d fw_lock +ffffffff8225af60 D regcache_rbtree_ops +ffffffff8225afa0 D regcache_flat_ops +ffffffff8225afe0 d regmap_i2c_smbus_i2c_block +ffffffff8225b060 d regmap_i2c +ffffffff8225b0e0 d regmap_smbus_word_swapped +ffffffff8225b160 d regmap_smbus_word +ffffffff8225b1e0 d regmap_smbus_byte +ffffffff8225b250 d platform_msi_devid_ida +ffffffff8225b260 d _rs.38188 +ffffffff8225b2a0 d _rs.38198 +ffffffff8225b2e0 d loop_misc +ffffffff8225b340 d loop_attribute_group +ffffffff8225b380 d loop_attrs +ffffffff8225b3c0 d loop_attr_dio +ffffffff8225b3e0 d loop_attr_partscan +ffffffff8225b400 d loop_attr_autoclear +ffffffff8225b420 d loop_attr_sizelimit +ffffffff8225b440 d loop_attr_offset +ffffffff8225b460 d loop_attr_backing_file +ffffffff8225b480 d xfer_funcs +ffffffff8225b520 d xor_funcs +ffffffff8225b560 d loop_index_mutex +ffffffff8225b580 d loop_index_idr +ffffffff8225b5a0 D reservation_ww_class +ffffffff8225b5c0 D scsi_sd_pm_domain +ffffffff8225b5e0 D scsi_sd_probe_domain +ffffffff8225b600 d scsi_host_type +ffffffff8225b630 d shost_eh_deadline +ffffffff8225b640 d shost_class +ffffffff8225b6b0 d host_index_ida +ffffffff8225b6c0 d stu_command.39569 +ffffffff8225b6e0 d _rs.39232 +ffffffff8225b720 d scsi_sense_cache_mutex +ffffffff8225b740 d scsi_target_type +ffffffff8225b770 d scanning_hosts +ffffffff8225b780 d scsi_inq_timeout +ffffffff8225b784 D scsi_scan_type +ffffffff8225b790 d max_scsi_luns +ffffffff8225b7a0 d scsi_sdev_attr_groups +ffffffff8225b7c0 d scsi_sdev_attr_group +ffffffff8225b800 d scsi_sdev_bin_attrs +ffffffff8225b820 d scsi_sdev_attrs +ffffffff8225b920 d dev_attr_queue_ramp_up_period +ffffffff8225b940 d dev_attr_blacklist +ffffffff8225b960 d dev_attr_wwid +ffffffff8225b980 d dev_attr_queue_depth +ffffffff8225b9a0 d dev_attr_evt_lun_change_reported +ffffffff8225b9c0 d dev_attr_evt_mode_parameter_change_reported +ffffffff8225b9e0 d dev_attr_evt_soft_threshold_reached +ffffffff8225ba00 d dev_attr_evt_capacity_change_reported +ffffffff8225ba20 d dev_attr_evt_inquiry_change_reported +ffffffff8225ba40 d dev_attr_evt_media_change +ffffffff8225ba60 d dev_attr_modalias +ffffffff8225ba80 d dev_attr_ioerr_cnt +ffffffff8225baa0 d dev_attr_iodone_cnt +ffffffff8225bac0 d dev_attr_iorequest_cnt +ffffffff8225bae0 d dev_attr_iocounterbits +ffffffff8225bb00 d dev_attr_inquiry +ffffffff8225bb40 d dev_attr_vpd_pg80 +ffffffff8225bb80 d dev_attr_vpd_pg83 +ffffffff8225bbc0 d dev_attr_queue_type +ffffffff8225bbe0 d dev_attr_state +ffffffff8225bc00 d dev_attr_delete +ffffffff8225bc20 d dev_attr_rescan +ffffffff8225bc40 d dev_attr_eh_timeout +ffffffff8225bc60 d dev_attr_timeout +ffffffff8225bc80 d dev_attr_device_blocked +ffffffff8225bca0 d dev_attr_device_busy +ffffffff8225bcc0 d dev_attr_rev +ffffffff8225bce0 d dev_attr_model +ffffffff8225bd00 d dev_attr_vendor +ffffffff8225bd20 d dev_attr_scsi_level +ffffffff8225bd40 d dev_attr_type +ffffffff8225bd60 D scsi_bus_type +ffffffff8225be00 d sdev_class +ffffffff8225be70 D scsi_sysfs_shost_attr_groups +ffffffff8225be80 d scsi_shost_attr_group +ffffffff8225bec0 d scsi_sysfs_shost_attrs +ffffffff8225bf60 d dev_attr_host_busy +ffffffff8225bf80 d dev_attr_proc_name +ffffffff8225bfa0 d dev_attr_prot_guard_type +ffffffff8225bfc0 d dev_attr_prot_capabilities +ffffffff8225bfe0 d dev_attr_unchecked_isa_dma +ffffffff8225c000 d dev_attr_sg_prot_tablesize +ffffffff8225c020 d dev_attr_sg_tablesize +ffffffff8225c040 d dev_attr_can_queue +ffffffff8225c060 d dev_attr_cmd_per_lun +ffffffff8225c080 d dev_attr_unique_id +ffffffff8225c0a0 d dev_attr_use_blk_mq +ffffffff8225c0c0 d dev_attr_eh_deadline +ffffffff8225c0e0 d dev_attr_host_reset +ffffffff8225c100 d dev_attr_active_mode +ffffffff8225c120 d dev_attr_supported_mode +ffffffff8225c140 d dev_attr_hstate +ffffffff8225c160 d dev_attr_scan +ffffffff8225c180 d scsi_dev_type +ffffffff8225c1b0 d scsi_dev_info_list +ffffffff8225c1c0 d scsi_root_table +ffffffff8225c240 d scsi_dir_table +ffffffff8225c2c0 d scsi_table +ffffffff8225c340 d sd_template +ffffffff8225c400 d sd_disk_class +ffffffff8225c470 d sd_disk_groups +ffffffff8225c480 d sd_disk_attrs +ffffffff8225c500 d dev_attr_max_write_same_blocks +ffffffff8225c520 d dev_attr_max_medium_access_timeouts +ffffffff8225c540 d dev_attr_zeroing_mode +ffffffff8225c560 d zeroing_mode +ffffffff8225c580 d dev_attr_provisioning_mode +ffffffff8225c5a0 d lbp_mode +ffffffff8225c5e0 d dev_attr_thin_provisioning +ffffffff8225c600 d dev_attr_app_tag_own +ffffffff8225c620 d dev_attr_protection_mode +ffffffff8225c640 d dev_attr_protection_type +ffffffff8225c660 d dev_attr_FUA +ffffffff8225c680 d dev_attr_cache_type +ffffffff8225c6a0 d dev_attr_allow_restart +ffffffff8225c6c0 d dev_attr_manage_start_stop +ffffffff8225c6e0 d sd_cache_types +ffffffff8225c700 d sd_ref_mutex +ffffffff8225c720 d sd_index_ida +ffffffff8225c740 D ata_dummy_port_ops +ffffffff8225c8c0 d ratelimit +ffffffff8225c900 d ___modver_attr +ffffffff8225c948 d libata_dma_mask +ffffffff8225c94c D atapi_passthru16 +ffffffff8225c950 d atapi_enabled +ffffffff8225c960 D ata_common_sdev_attrs +ffffffff8225c980 D dev_attr_sw_activity +ffffffff8225c9a0 D dev_attr_em_message_type +ffffffff8225c9c0 D dev_attr_em_message +ffffffff8225c9e0 D dev_attr_ncq_prio_enable +ffffffff8225ca00 D dev_attr_unload_heads +ffffffff8225ca20 D dev_attr_link_power_management_policy +ffffffff8225ca40 d ata_dev_class +ffffffff8225cae0 d ata_link_class +ffffffff8225cb80 d ata_port_class +ffffffff8225cc08 D ata_acpi_gtf_filter +ffffffff8225cc20 d ___modver_attr +ffffffff8225cc68 d marvell_enable +ffffffff8225cc80 d ahci_pci_driver +ffffffff8225cda0 d ahci_avn_ops +ffffffff8225cf20 d ahci_p5wdh_ops +ffffffff8225d0a0 d ahci_vt8251_ops +ffffffff8225d220 d ahci_sht +ffffffff8225d380 D ahci_pmp_retry_srst_ops +ffffffff8225d500 D ahci_ops +ffffffff8225d680 D ahci_sdev_attrs +ffffffff8225d6a0 D ahci_shost_attrs +ffffffff8225d700 d dev_attr_em_message_supported +ffffffff8225d720 d dev_attr_em_buffer +ffffffff8225d740 d dev_attr_ahci_port_cmd +ffffffff8225d760 d dev_attr_ahci_host_version +ffffffff8225d780 d dev_attr_ahci_host_cap2 +ffffffff8225d7a0 d dev_attr_ahci_host_caps +ffffffff8225d7c0 D loopback_net_ops +ffffffff8225d800 D iwlwifi_mod_params +ffffffff8225d840 d iwlwifi_opmode_table +ffffffff8225d880 d iwl_cfg80211_rates +ffffffff8225d920 d iwl_cfg80211_rates +ffffffff8225d9c0 d iwl_pci_driver +ffffffff8225dac8 d pos.74323 +ffffffff8225dad0 D iwlmvm_mod_params +ffffffff8225dae0 d temp_notif.74135 +ffffffff8225db00 d tzone_ops +ffffffff8225db80 d usb_bus_nb +ffffffff8225dba0 D usb_device_type +ffffffff8225dbd0 d usb_autosuspend_delay +ffffffff8225dbd8 D usbcore_name +ffffffff8225dbe0 d unreliable_port.35959 +ffffffff8225dc00 d hub_driver +ffffffff8225dd00 D ehci_cf_port_reset_rwsem +ffffffff8225dd28 d use_both_schemes +ffffffff8225dd2c d initial_descriptor_timeout +ffffffff8225dd40 D usb_port_peer_mutex +ffffffff8225dd60 d usb_bus_attrs +ffffffff8225dd80 d dev_attr_interface_authorized_default +ffffffff8225dda0 d dev_attr_authorized_default +ffffffff8225ddc0 d authorized_default +ffffffff8225ddd0 D usb_kill_urb_queue +ffffffff8225de00 D usb_bus_idr_lock +ffffffff8225de20 D usb_bus_idr +ffffffff8225de40 d set_config_list +ffffffff8225de60 D usb_if_device_type +ffffffff8225dea0 D usb_bus_type +ffffffff8225df40 d driver_attr_remove_id +ffffffff8225df60 d driver_attr_new_id +ffffffff8225df80 d init_usb_class_mutex +ffffffff8225dfa0 d minor_rwsem +ffffffff8225dfe0 D usb_interface_groups +ffffffff8225e000 d intf_assoc_attr_grp +ffffffff8225e040 d intf_assoc_attrs +ffffffff8225e080 d intf_attr_grp +ffffffff8225e0c0 d intf_attrs +ffffffff8225e120 d dev_attr_interface_authorized +ffffffff8225e140 d dev_attr_supports_autosuspend +ffffffff8225e160 d dev_attr_modalias +ffffffff8225e180 d dev_attr_interface +ffffffff8225e1a0 d dev_attr_bInterfaceProtocol +ffffffff8225e1c0 d dev_attr_bInterfaceSubClass +ffffffff8225e1e0 d dev_attr_bInterfaceClass +ffffffff8225e200 d dev_attr_bNumEndpoints +ffffffff8225e220 d dev_attr_bAlternateSetting +ffffffff8225e240 d dev_attr_bInterfaceNumber +ffffffff8225e260 d dev_attr_iad_bFunctionProtocol +ffffffff8225e280 d dev_attr_iad_bFunctionSubClass +ffffffff8225e2a0 d dev_attr_iad_bFunctionClass +ffffffff8225e2c0 d dev_attr_iad_bInterfaceCount +ffffffff8225e2e0 d dev_attr_iad_bFirstInterface +ffffffff8225e300 d dev_bin_attr_descriptors +ffffffff8225e340 D usb_device_groups +ffffffff8225e360 d dev_string_attr_grp +ffffffff8225e3a0 d dev_string_attrs +ffffffff8225e3c0 d dev_attr_grp +ffffffff8225e400 d dev_attrs +ffffffff8225e4e0 d dev_attr_remove +ffffffff8225e500 d dev_attr_authorized +ffffffff8225e520 d dev_attr_bMaxPacketSize0 +ffffffff8225e540 d dev_attr_bNumConfigurations +ffffffff8225e560 d dev_attr_bDeviceProtocol +ffffffff8225e580 d dev_attr_bDeviceSubClass +ffffffff8225e5a0 d dev_attr_bDeviceClass +ffffffff8225e5c0 d dev_attr_bcdDevice +ffffffff8225e5e0 d dev_attr_idProduct +ffffffff8225e600 d dev_attr_idVendor +ffffffff8225e620 d power_attr_group +ffffffff8225e660 d power_attrs +ffffffff8225e6a0 d usb3_hardware_lpm_attr_group +ffffffff8225e6d0 d usb3_hardware_lpm_attr +ffffffff8225e700 d usb2_hardware_lpm_attr_group +ffffffff8225e740 d usb2_hardware_lpm_attr +ffffffff8225e760 d dev_attr_usb3_hardware_lpm_u2 +ffffffff8225e780 d dev_attr_usb3_hardware_lpm_u1 +ffffffff8225e7a0 d dev_attr_usb2_lpm_besl +ffffffff8225e7c0 d dev_attr_usb2_lpm_l1_timeout +ffffffff8225e7e0 d dev_attr_usb2_hardware_lpm +ffffffff8225e800 d dev_attr_level +ffffffff8225e820 d dev_attr_autosuspend +ffffffff8225e840 d dev_attr_active_duration +ffffffff8225e860 d dev_attr_connected_duration +ffffffff8225e880 d dev_attr_persist +ffffffff8225e8a0 d dev_attr_ltm_capable +ffffffff8225e8c0 d dev_attr_removable +ffffffff8225e8e0 d dev_attr_urbnum +ffffffff8225e900 d dev_attr_avoid_reset_quirk +ffffffff8225e920 d dev_attr_quirks +ffffffff8225e940 d dev_attr_maxchild +ffffffff8225e960 d dev_attr_version +ffffffff8225e980 d dev_attr_devpath +ffffffff8225e9a0 d dev_attr_devnum +ffffffff8225e9c0 d dev_attr_busnum +ffffffff8225e9e0 d dev_attr_speed +ffffffff8225ea00 d dev_attr_serial +ffffffff8225ea20 d dev_attr_manufacturer +ffffffff8225ea40 d dev_attr_product +ffffffff8225ea60 d dev_attr_bConfigurationValue +ffffffff8225ea80 d dev_attr_configuration +ffffffff8225eaa0 d dev_attr_bMaxPower +ffffffff8225eac0 d dev_attr_bmAttributes +ffffffff8225eae0 d dev_attr_bNumInterfaces +ffffffff8225eb00 D usb_ep_device_type +ffffffff8225eb30 d ep_dev_groups +ffffffff8225eb40 d ep_dev_attr_grp +ffffffff8225eb80 d ep_dev_attrs +ffffffff8225ebe0 d dev_attr_direction +ffffffff8225ec00 d dev_attr_interval +ffffffff8225ec20 d dev_attr_type +ffffffff8225ec40 d dev_attr_wMaxPacketSize +ffffffff8225ec60 d dev_attr_bInterval +ffffffff8225ec80 d dev_attr_bmAttributes +ffffffff8225eca0 d dev_attr_bEndpointAddress +ffffffff8225ecc0 d dev_attr_bLength +ffffffff8225ece0 d usbdev_nb +ffffffff8225ed00 D usbfs_driver +ffffffff8225edf8 d usbfs_memory_mb +ffffffff8225edfc d usbfs_snoop_max +ffffffff8225ee00 D usbfs_mutex +ffffffff8225ee20 d usb_notifier_list +ffffffff8225ee60 D usb_generic_driver +ffffffff8225ef20 d device_event +ffffffff8225ef40 d usb_port_driver +ffffffff8225efc0 D usb_port_device_type +ffffffff8225eff0 d port_dev_usb3_group +ffffffff8225f020 d port_dev_usb3_attr_grp +ffffffff8225f050 d port_dev_usb3_attrs +ffffffff8225f060 d port_dev_group +ffffffff8225f080 d port_dev_attr_grp +ffffffff8225f0b0 d port_dev_attrs +ffffffff8225f0c0 d dev_attr_usb3_lpm_permit +ffffffff8225f0e0 d dev_attr_connect_type +ffffffff8225f100 d companions_rwsem +ffffffff8225f140 d usb_acpi_bus +ffffffff8225f180 d dev_attr_uframe_periodic_max +ffffffff8225f1a0 d dev_attr_companion +ffffffff8225f1c0 d ehci_pci_driver +ffffffff8225f2e0 d _rs.37214 +ffffffff8225f320 d usb_bos_descriptor +ffffffff8225f360 d xhci_pci_driver +ffffffff8225f480 D usb_stor_sense_invalidCDB +ffffffff8225f4a0 d sysfs_device_attr_list +ffffffff8225f4c0 d dev_attr_max_sectors +ffffffff8225f4e0 d usb_storage_driver +ffffffff8225f5e0 d for_dynamic_ids +ffffffff8225f600 d us_unusual_dev_list +ffffffff82261ec0 d delay_use +ffffffff82261ec8 d init_string.36180 +ffffffff82261ee0 d dev_attr_truinst +ffffffff82261f00 d swi_tru_install +ffffffff82261f04 d option_zero_cd +ffffffff82261f20 D usb_storage_usb_ids +ffffffff822647e0 d input_no.27479 +ffffffff82264800 D input_class +ffffffff82264880 d input_dev_attr_groups +ffffffff822648a0 d input_dev_caps_attrs +ffffffff82264900 d dev_attr_sw +ffffffff82264920 d dev_attr_ff +ffffffff82264940 d dev_attr_snd +ffffffff82264960 d dev_attr_led +ffffffff82264980 d dev_attr_msc +ffffffff822649a0 d dev_attr_abs +ffffffff822649c0 d dev_attr_rel +ffffffff822649e0 d dev_attr_key +ffffffff82264a00 d dev_attr_ev +ffffffff82264a20 d input_dev_id_attrs +ffffffff82264a60 d dev_attr_version +ffffffff82264a80 d dev_attr_product +ffffffff82264aa0 d dev_attr_vendor +ffffffff82264ac0 d dev_attr_bustype +ffffffff82264ae0 d input_dev_attrs +ffffffff82264b20 d dev_attr_properties +ffffffff82264b40 d dev_attr_modalias +ffffffff82264b60 d dev_attr_uniq +ffffffff82264b80 d dev_attr_phys +ffffffff82264ba0 d dev_attr_name +ffffffff82264bc0 d input_devices_poll_wait +ffffffff82264be0 d input_mutex +ffffffff82264c00 d input_handler_list +ffffffff82264c10 d input_dev_list +ffffffff82264c20 d input_ida +ffffffff82264c40 d evdev_handler +ffffffff82264cc0 d rtc_ida +ffffffff82264ce0 d rtc_attr_groups +ffffffff82264d00 d rtc_attr_group +ffffffff82264d40 d rtc_attrs +ffffffff82264da0 d dev_attr_offset +ffffffff82264dc0 d dev_attr_wakealarm +ffffffff82264de0 d dev_attr_hctosys +ffffffff82264e00 d dev_attr_max_user_freq +ffffffff82264e20 d dev_attr_since_epoch +ffffffff82264e40 d dev_attr_time +ffffffff82264e60 d dev_attr_date +ffffffff82264e80 d dev_attr_name +ffffffff82264ea0 d cmos_platform_driver +ffffffff82264f60 d cmos_pnp_driver +ffffffff82265020 d nvram +ffffffff82265060 D __i2c_board_list +ffffffff82265080 D __i2c_board_lock +ffffffff822650c0 d _rs.34099 +ffffffff82265100 D i2c_adapter_type +ffffffff82265130 d i2c_adapter_groups +ffffffff82265140 d i2c_adapter_attrs +ffffffff82265160 d dev_attr_delete_device +ffffffff82265180 d dev_attr_new_device +ffffffff822651a0 d dummy_driver +ffffffff822652a0 D i2c_client_type +ffffffff822652e0 D i2c_bus_type +ffffffff82265380 d i2c_dev_groups +ffffffff82265390 d i2c_dev_attrs +ffffffff822653c0 d dev_attr_modalias +ffffffff822653e0 d dev_attr_name +ffffffff82265400 d i2c_adapter_idr +ffffffff82265420 d core_lock +ffffffff82265440 D i2c_acpi_notifier +ffffffff82265460 d smbalert_driver +ffffffff82265560 d i801_driver +ffffffff82265680 d psy_tzd_ops +ffffffff82265700 d power_supply_attr_groups +ffffffff82265720 d power_supply_attr_group +ffffffff82265760 d power_supply_attrs +ffffffff82265fa0 d thermal_pm_nb +ffffffff82265fc0 d thermal_class +ffffffff82266040 d poweroff_lock +ffffffff82266060 d thermal_governor_lock +ffffffff82266080 d thermal_list_lock +ffffffff822660a0 d thermal_governor_list +ffffffff822660b0 d thermal_cdev_list +ffffffff822660c0 d thermal_tz_list +ffffffff822660d0 d thermal_cdev_ida +ffffffff822660e0 d thermal_tz_ida +ffffffff82266100 d cooling_device_attr_groups +ffffffff82266120 d cooling_device_attrs +ffffffff82266140 d dev_attr_cur_state +ffffffff82266160 d dev_attr_max_state +ffffffff82266180 d dev_attr_cdev_type +ffffffff822661a0 d thermal_zone_passive_attribute_group +ffffffff822661d0 d thermal_zone_passive_attrs +ffffffff822661e0 d thermal_zone_mode_attribute_group +ffffffff82266210 d thermal_zone_mode_attrs +ffffffff82266220 d thermal_zone_attribute_group +ffffffff82266260 d thermal_zone_dev_attrs +ffffffff822662e0 d dev_attr_passive +ffffffff82266300 d dev_attr_mode +ffffffff82266320 d dev_attr_sustainable_power +ffffffff82266340 d dev_attr_available_policies +ffffffff82266360 d dev_attr_policy +ffffffff82266380 d dev_attr_temp +ffffffff822663a0 d dev_attr_type +ffffffff822663c0 d dev_attr_offset +ffffffff822663e0 d dev_attr_slope +ffffffff82266400 d dev_attr_integral_cutoff +ffffffff82266420 d dev_attr_k_d +ffffffff82266440 d dev_attr_k_i +ffffffff82266460 d dev_attr_k_pu +ffffffff82266480 d dev_attr_k_po +ffffffff822664a0 d thermal_gov_step_wise +ffffffff822664e0 d intel_pch_thermal_driver +ffffffff82266600 d tzd_ops +ffffffff82266680 d driver_name +ffffffff822666a0 d ___modver_attr +ffffffff82266700 d ___modver_attr +ffffffff82266760 d btusb_driver +ffffffff82266858 d reset +ffffffff82266860 d ___modver_attr +ffffffff822668c0 d regmap_ibt +ffffffff82266940 D edac_layer_name +ffffffff82266970 d mc_devices +ffffffff82266980 d mem_ctls_mutex +ffffffff822669a0 D edac_op_state +ffffffff822669c0 d edac_device_list +ffffffff822669e0 d device_ctls_mutex +ffffffff82266a00 d mci_attr_groups +ffffffff82266a20 d mci_attrs +ffffffff82266a80 d dev_attr_sdram_scrub_rate +ffffffff82266aa0 d dev_attr_max_location +ffffffff82266ac0 d dev_attr_ce_count +ffffffff82266ae0 d dev_attr_ue_count +ffffffff82266b00 d dev_attr_ce_noinfo_count +ffffffff82266b20 d dev_attr_ue_noinfo_count +ffffffff82266b40 d dev_attr_seconds_since_reset +ffffffff82266b60 d dev_attr_size_mb +ffffffff82266b80 d dev_attr_mc_name +ffffffff82266ba0 d dev_attr_reset_counters +ffffffff82266bc0 d dimm_attr_groups +ffffffff82266be0 d dimm_attrs +ffffffff82266c40 d dev_attr_dimm_ue_count +ffffffff82266c60 d dev_attr_dimm_ce_count +ffffffff82266c80 d dev_attr_dimm_edac_mode +ffffffff82266ca0 d dev_attr_dimm_dev_type +ffffffff82266cc0 d dev_attr_dimm_mem_type +ffffffff82266ce0 d dev_attr_size +ffffffff82266d00 d dev_attr_dimm_location +ffffffff82266d20 d dev_attr_dimm_label +ffffffff82266d40 d edac_mc_poll_msec +ffffffff82266d44 d edac_mc_log_ce +ffffffff82266d48 d edac_mc_log_ue +ffffffff82266d60 d edac_subsys +ffffffff82266e00 d ktype_block_ctrl +ffffffff82266e30 d device_block_attr +ffffffff82266e60 d attr_block_ue_count +ffffffff82266ea0 d attr_block_ce_count +ffffffff82266ee0 d ktype_instance_ctrl +ffffffff82266f10 d device_instance_attr +ffffffff82266f40 d attr_instance_ue_count +ffffffff82266f60 d attr_instance_ce_count +ffffffff82266f80 d ktype_device_ctrl +ffffffff82266fc0 d device_ctrl_attr +ffffffff82267000 d attr_ctl_info_poll_msec +ffffffff82267020 d attr_ctl_info_panic_on_ue +ffffffff82267040 d attr_ctl_info_log_ce +ffffffff82267060 d attr_ctl_info_log_ue +ffffffff82267080 d edac_pci_list +ffffffff822670a0 d edac_pci_ctls_mutex +ffffffff822670c0 d ktype_edac_pci_main_kobj +ffffffff82267100 d edac_pci_attr +ffffffff82267140 d edac_pci_attr_pci_nonparity_count +ffffffff82267180 d edac_pci_attr_pci_parity_count +ffffffff822671c0 d edac_pci_attr_edac_pci_panic_on_pe +ffffffff82267200 d edac_pci_attr_edac_pci_log_npe +ffffffff82267240 d edac_pci_attr_edac_pci_log_pe +ffffffff82267280 d edac_pci_attr_check_pci_errors +ffffffff822672c0 d ktype_pci_instance +ffffffff822672f0 d pci_instance_attr +ffffffff82267320 d attr_instance_npe_count +ffffffff82267340 d attr_instance_pe_count +ffffffff82267360 d edac_pci_log_npe +ffffffff82267364 d edac_pci_log_pe +ffffffff82267370 d sbridge_mce_dec +ffffffff82267390 d sbridge_edac_list +ffffffff822673a0 d cpufreq_syscore_ops +ffffffff822673e0 d cpufreq_interface +ffffffff82267420 d ktype_cpufreq +ffffffff82267460 d default_attrs +ffffffff822674c0 d scaling_setspeed +ffffffff822674e0 d scaling_governor +ffffffff82267500 d scaling_max_freq +ffffffff82267520 d scaling_min_freq +ffffffff82267540 d affected_cpus +ffffffff82267560 d related_cpus +ffffffff82267580 d bios_limit +ffffffff822675a0 d scaling_cur_freq +ffffffff822675c0 d scaling_driver +ffffffff822675e0 d scaling_available_governors +ffffffff82267600 d cpuinfo_transition_latency +ffffffff82267620 d cpuinfo_max_freq +ffffffff82267640 d cpuinfo_min_freq +ffffffff82267660 d cpuinfo_cur_freq +ffffffff82267680 d boost +ffffffff822676a0 d cpufreq_fast_switch_lock +ffffffff822676c0 d cpufreq_governor_mutex +ffffffff822676e0 d cpufreq_policy_notifier_list +ffffffff82267710 d cpufreq_governor_list +ffffffff82267720 d cpufreq_policy_list +ffffffff82267740 D cpufreq_generic_attr +ffffffff82267760 D cpufreq_freq_attr_scaling_boost_freqs +ffffffff82267780 D cpufreq_freq_attr_scaling_available_freqs +ffffffff822677a0 d cpufreq_gov_powersave +ffffffff82267820 d min_highest_perf.44192 +ffffffff82267828 d default_driver +ffffffff82267840 d intel_cpufreq +ffffffff82267900 d intel_pstate +ffffffff822679c0 d core_funcs +ffffffff82267a00 d intel_pstate_attributes +ffffffff82267a40 d num_pstates +ffffffff82267a60 d turbo_pct +ffffffff82267a80 d min_perf_pct +ffffffff82267aa0 d max_perf_pct +ffffffff82267ac0 d no_turbo +ffffffff82267ae0 d status +ffffffff82267b00 d hwp_cpufreq_attrs +ffffffff82267b20 d energy_performance_preference +ffffffff82267b40 d energy_performance_available_preferences +ffffffff82267b60 d sched_itmt_work +ffffffff82267b80 d intel_pstate_limits_lock +ffffffff82267ba0 d intel_pstate_driver_lock +ffffffff82267bc0 d cpuidle_latency_notifier +ffffffff82267be0 D cpuidle_detected_devices +ffffffff82267c00 D cpuidle_lock +ffffffff82267c20 D cpuidle_governors +ffffffff82267c40 d ktype_state_cpuidle +ffffffff82267c80 d cpuidle_state_default_attrs +ffffffff82267ce0 d attr_disable +ffffffff82267d00 d attr_time +ffffffff82267d20 d attr_usage +ffffffff82267d40 d attr_power +ffffffff82267d60 d attr_residency +ffffffff82267d80 d attr_latency +ffffffff82267da0 d attr_desc +ffffffff82267dc0 d attr_name +ffffffff82267de0 d ktype_cpuidle +ffffffff82267e20 d cpuidle_attr_group +ffffffff82267e60 d cpuidle_switch_attrs +ffffffff82267e80 d dev_attr_current_governor +ffffffff82267ea0 d dev_attr_available_governors +ffffffff82267ec0 d cpuidle_default_attrs +ffffffff82267ee0 d dev_attr_current_governor_ro +ffffffff82267f00 d dev_attr_current_driver +ffffffff82267f20 d menu_governor +ffffffff82267f80 d bin_attr_DMI +ffffffff82267fc0 d bin_attr_smbios_entry_point +ffffffff82268000 d dmi_devices +ffffffff82268020 d dmi_class +ffffffff82268090 d sys_dmi_attribute_groups +ffffffff822680a0 d sys_dmi_attribute_group +ffffffff822680e0 d sys_dmi_modalias_attr +ffffffff82268100 d sys_dmi_chassis_asset_tag_attr +ffffffff82268140 d sys_dmi_chassis_serial_attr +ffffffff82268180 d sys_dmi_chassis_version_attr +ffffffff822681c0 d sys_dmi_chassis_type_attr +ffffffff82268200 d sys_dmi_chassis_vendor_attr +ffffffff82268240 d sys_dmi_board_asset_tag_attr +ffffffff82268280 d sys_dmi_board_serial_attr +ffffffff822682c0 d sys_dmi_board_version_attr +ffffffff82268300 d sys_dmi_board_name_attr +ffffffff82268340 d sys_dmi_board_vendor_attr +ffffffff82268380 d sys_dmi_product_family_attr +ffffffff822683c0 d sys_dmi_product_uuid_attr +ffffffff82268400 d sys_dmi_product_serial_attr +ffffffff82268440 d sys_dmi_product_version_attr +ffffffff82268480 d sys_dmi_product_name_attr +ffffffff822684c0 d sys_dmi_sys_vendor_attr +ffffffff82268500 d sys_dmi_bios_date_attr +ffffffff82268540 d sys_dmi_bios_version_attr +ffffffff82268580 d sys_dmi_bios_vendor_attr +ffffffff822685c0 d efi_subsys_attrs +ffffffff82268600 d efi_attr_fw_platform_size +ffffffff82268620 d efi_attr_config_table +ffffffff82268640 d efi_attr_runtime +ffffffff82268660 d efi_attr_fw_vendor +ffffffff82268680 d efi_attr_systab +ffffffff822686a0 D efivar_work +ffffffff822686c0 d efivar_wq_enabled +ffffffff822686d0 d efivars_lock +ffffffff822686e8 D efi_reboot_quirk_mode +ffffffff82268700 d capsule_reboot_nb +ffffffff82268720 d capsule_mutex +ffffffff82268740 d efi_reset_type +ffffffff82268760 d esrt_attrs +ffffffff82268780 d esrt_fw_resource_version +ffffffff822687a0 d esrt_fw_resource_count_max +ffffffff822687c0 d esrt_fw_resource_count +ffffffff822687e0 d esre1_ktype +ffffffff82268820 d esre1_attrs +ffffffff82268860 d esre_last_attempt_status +ffffffff82268880 d esre_last_attempt_version +ffffffff822688a0 d esre_capsule_flags +ffffffff822688c0 d esre_lowest_supported_fw_version +ffffffff822688e0 d esre_fw_version +ffffffff82268900 d esre_fw_type +ffffffff82268920 d esre_fw_class +ffffffff82268940 d entry_list +ffffffff82268960 d _rs.35822 +ffffffff82268990 d efi_runtime_lock +ffffffff822689c0 d clocksource_acpi_pm +ffffffff82268a80 D i8253_clockevent +ffffffff82268b80 D hid_bus_type +ffffffff82268c20 d hid_dev_groups +ffffffff82268c30 d hid_dev_bin_attrs +ffffffff82268c40 d hid_dev_attrs +ffffffff82268c60 d dev_attr_modalias +ffffffff82268c80 d hid_drv_groups +ffffffff82268c90 d hid_drv_attrs +ffffffff82268ca0 d driver_attr_new_id +ffffffff82268cc0 d dev_bin_attr_report_desc +ffffffff82268d00 d dquirks_lock +ffffffff82268d20 d dquirks_list +ffffffff82268d40 D uhid_hid_driver +ffffffff82268da0 d uhid_misc +ffffffff82268e00 d hid_generic +ffffffff82268f40 d hid_driver +ffffffff82269040 D usb_hid_driver +ffffffff822690a0 d hiddev_class +ffffffff822690c0 d wmi_type_data +ffffffff82269100 d wmi_type_method +ffffffff82269140 d wmi_type_event +ffffffff82269180 d wmi_bus_type +ffffffff82269220 d wmi_bus_class +ffffffff82269290 d wmi_method_groups +ffffffff822692a0 d wmi_method_attrs +ffffffff822692b0 d wmi_data_groups +ffffffff822692c0 d wmi_data_attrs +ffffffff822692e0 d dev_attr_setable +ffffffff82269300 d dev_attr_object_id +ffffffff82269320 d wmi_event_groups +ffffffff82269330 d wmi_event_attrs +ffffffff82269340 d dev_attr_notify_id +ffffffff82269360 d wmi_groups +ffffffff82269380 d wmi_attrs +ffffffff822693c0 d dev_attr_expensive +ffffffff822693e0 d dev_attr_instance_count +ffffffff82269400 d dev_attr_guid +ffffffff82269420 d dev_attr_modalias +ffffffff82269440 d acpi_wmi_driver +ffffffff82269500 d wmi_block_list +ffffffff82269520 d smartconnect_driver +ffffffff82269680 d cht_func_dis_2_map +ffffffff822696c0 d cht_d3_sts_1_map +ffffffff82269700 d byt_d3_sts_1_map +ffffffff82269760 d con_mutex +ffffffff82269780 d mbox_cons +ffffffff822697a0 D pcc_mbox_driver +ffffffff82269860 d sound_mutex +ffffffff82269880 d cards_limit +ffffffff82269884 d major +ffffffff822698a0 d card_dev_attrs +ffffffff822698c0 d dev_attr_number +ffffffff822698e0 d dev_attr_id +ffffffff82269900 d snd_card_mutex +ffffffff82269920 d shutdown_files +ffffffff82269940 d ops.33250 +ffffffff82269960 d snd_control_ioctls +ffffffff82269980 d snd_ioctl_rwsem +ffffffff822699b0 d ops.25892 +ffffffff822699e0 d ops.27050 +ffffffff82269a00 d register_mutex +ffffffff82269a20 d snd_hwdep_devices +ffffffff82269a40 d ops.29102 +ffffffff82269a60 d register_mutex +ffffffff82269a80 d snd_timer_slave_list +ffffffff82269a90 d snd_timer_list +ffffffff82269aa0 d timer_tstamp_monotonic +ffffffff82269aa4 d timer_limit +ffffffff82269ac0 d ops.31225 +ffffffff82269ae0 d internal_ops.31226 +ffffffff82269b00 d pcm_dev_attr_groups +ffffffff82269b10 d pcm_dev_attrs +ffffffff82269b20 d dev_attr_pcm_class +ffffffff82269b40 d register_mutex +ffffffff82269b60 d snd_pcm_devices +ffffffff82269b80 d snd_pcm_link_rwsem +ffffffff82269bc0 d pow2_sizes.33378 +ffffffff82269c40 d pcm_formats +ffffffff82269ebc d maximum_substreams +ffffffff82269ec0 d preallocate_dma +ffffffff82269ee0 d ops.29343 +ffffffff82269f00 d register_mutex +ffffffff82269f20 d snd_rawmidi_devices +ffffffff82269f40 d dev_ops.35695 +ffffffff82269f60 D snd_hda_pcm_type_name +ffffffff82269f80 d dig_in_ctls +ffffffff8226a080 d dig_mixes +ffffffff8226a220 D snd_hda_dev_attr_groups +ffffffff8226a240 d hda_dev_attrs +ffffffff8226a2c0 d dev_attr_driver_pin_configs +ffffffff8226a2e0 d dev_attr_init_pin_configs +ffffffff8226a300 d dev_attr_modelname +ffffffff8226a320 d dev_attr_chip_name +ffffffff8226a340 d dev_attr_vendor_name +ffffffff8226a360 d dev_attr_mfg +ffffffff8226a380 d dev_attr_afg +ffffffff8226a3a0 d dev_attr_revision_id +ffffffff8226a3c0 d dev_attr_subsystem_id +ffffffff8226a3e0 d dev_attr_vendor_id +ffffffff8226a400 d dev_attr_power_off_acct +ffffffff8226a420 d dev_attr_power_on_acct +ffffffff8226a440 d _rs.36215 +ffffffff8226a480 d azx_pcm_hw +ffffffff8226a4e0 d hdmi_driver +ffffffff8226a5a0 d ops.41779 +ffffffff8226a5c0 d azx_driver +ffffffff8226a6e0 d power_save_blacklist +ffffffff8226a720 d msi_black_list +ffffffff8226a7c0 d probe_mask_list +ffffffff8226a840 d position_fix_list +ffffffff8226a900 d card_list +ffffffff8226a920 d card_list_lock +ffffffff8226a940 d hda_snoop +ffffffff8226a944 d align_buffer_size +ffffffff8226a948 d power_save_controller +ffffffff8226a949 d pm_blacklist +ffffffff8226a94c d enable_msi +ffffffff8226a950 d single_cmd +ffffffff8226a960 d probe_mask +ffffffff8226a980 d bdl_pos_adj +ffffffff8226a9a0 d position_fix +ffffffff8226a9c0 d enable +ffffffff8226a9e0 d index +ffffffff8226aa00 d ops.35575 +ffffffff8226aa18 d __compound_literal.407 +ffffffff8226aa1c d __compound_literal.403 +ffffffff8226aa20 d __compound_literal.395 +ffffffff8226aa30 d __compound_literal.387 +ffffffff8226aa40 d __compound_literal.382 +ffffffff8226aa44 d __compound_literal.380 +ffffffff8226aa48 d __compound_literal.376 +ffffffff8226aa4c d __compound_literal.374 +ffffffff8226aa50 d __compound_literal.344 +ffffffff8226aa58 d __compound_literal.340 +ffffffff8226aa60 d __compound_literal.304 +ffffffff8226aa70 d __compound_literal.302 +ffffffff8226aa80 d __compound_literal.298 +ffffffff8226aa90 d __compound_literal.296 +ffffffff8226aaa0 d __compound_literal.292 +ffffffff8226aab0 d __compound_literal.290 +ffffffff8226aac0 d __compound_literal.286 +ffffffff8226aad0 d __compound_literal.284 +ffffffff8226aae0 d __compound_literal.246 +ffffffff8226aae4 d __compound_literal.244 +ffffffff8226aae8 d __compound_literal.239 +ffffffff8226aaec d __compound_literal.237 +ffffffff8226ab00 d usb_audio_driver +ffffffff8226ac00 d register_mutex +ffffffff8226ac20 d autoclock +ffffffff8226ac40 d pid +ffffffff8226ac60 d vid +ffffffff8226ac80 d enable +ffffffff8226aca0 d index +ffffffff8226acc0 d default_value_info.29726 +ffffffff8226acf0 d default_info.29727 +ffffffff8226ad10 d dev_ops.29943 +ffffffff8226ad40 d extunits +ffffffff8226adc0 d soft_limit_xu_info +ffffffff8226ae00 d spdif_format_xu_info +ffffffff8226ae40 d clock_source_xu_info +ffffffff8226ae80 d clock_rate_xu_info +ffffffff8226aec0 d procunits +ffffffff8226af80 d dcr_proc_info +ffffffff8226b040 d chorus_proc_info +ffffffff8226b0c0 d reverb_proc_info +ffffffff8226b140 d threed_enh_proc_info +ffffffff8226b1a0 d prologic_proc_info +ffffffff8226b200 d updown_proc_info +ffffffff8226b248 D snd_usb_feature_unit_ctl +ffffffff8226b260 d usb_feature_unit_ctl +ffffffff8226b2c0 d iterm_names +ffffffff8226b520 d usbmix_ctl_maps +ffffffff8226b860 d bose_companion5_map +ffffffff8226b8a0 d bose_companion5_dB +ffffffff8226b8c0 d gamecom780_map +ffffffff8226b900 d hercules_usb51_map +ffffffff8226b9e0 d ebox44_map +ffffffff8226baa0 d scratch_live_map +ffffffff8226bb00 d aureon_51_2_map +ffffffff8226bc00 d justlink_map +ffffffff8226bcc0 d maya44_map +ffffffff8226bd60 d linex_map +ffffffff8226bda0 d live24ext_map +ffffffff8226bde0 d audigy2nx_selectors +ffffffff8226be20 d __compound_literal.3 +ffffffff8226be30 d __compound_literal.2 +ffffffff8226be50 d __compound_literal.1 +ffffffff8226be80 d c400_selectors +ffffffff8226bea0 d __compound_literal.0 +ffffffff8226bec0 d mbox1_map +ffffffff8226bf00 d audigy2nx_map +ffffffff8226c120 d mp3plus_map +ffffffff8226c240 d mp3plus_dB_2 +ffffffff8226c248 d mp3plus_dB_1 +ffffffff8226c260 d extigy_map +ffffffff8226c4e0 d template.30784 +ffffffff8226c540 d snd_soundblaster_e1_input_switch +ffffffff8226c5a0 d snd_microii_mixer_spdif +ffffffff8226c6a0 d ebox44_table +ffffffff8226c7e0 d snd_nativeinstruments_ta10_mixers +ffffffff8226ca60 d snd_nativeinstruments_ta6_mixers +ffffffff8226cba0 d snd_mbox1_switch +ffffffff8226cc00 d snd_xonar_u1_output_switch +ffffffff8226cc60 d snd_emu0204_control +ffffffff8226ccc0 d sample_rate_buffer.29095 +ffffffff8226cce0 d s18i20_info +ffffffff8226ce40 d s18i8_info +ffffffff8226cfa0 d s18i6_info +ffffffff8226d100 d s8i6_info +ffffffff8226d260 d s6i6_info +ffffffff8226d3c0 d snd_us16x08_meter_ctl +ffffffff8226d420 d snd_us16x08_eq_switch_ctl +ffffffff8226d480 d snd_us16x08_eq_high_freq_ctl +ffffffff8226d4e0 d snd_us16x08_eq_mid_width_ctl +ffffffff8226d540 d snd_us16x08_eq_mid_freq_ctl +ffffffff8226d5a0 d snd_us16x08_eq_low_freq_ctl +ffffffff8226d600 d snd_us16x08_eq_gain_ctl +ffffffff8226d660 d snd_us16x08_comp_release_ctl +ffffffff8226d6c0 d snd_us16x08_comp_attack_ctl +ffffffff8226d720 d snd_us16x08_comp_gain_ctl +ffffffff8226d780 d snd_us16x08_comp_ratio_ctl +ffffffff8226d7e0 d snd_us16x08_comp_threshold_ctl +ffffffff8226d840 d snd_us16x08_compswitch_ctl +ffffffff8226d8a0 d snd_us16x08_bus_ctl +ffffffff8226d900 d snd_us16x08_route_ctl +ffffffff8226d960 d snd_us16x08_master_ctl +ffffffff8226d9c0 d snd_us16x08_pan_int_ctl +ffffffff8226da20 d snd_us16x08_ch_int_ctl +ffffffff8226da80 d snd_us16x08_ch_boolean_ctl +ffffffff8226dae0 d uac1_maps.33520 +ffffffff8226db20 d uac2_maps.33521 +ffffffff8226dba0 d snd_usbmidi_port_info +ffffffff8226e3e0 D snd_hda_bus_type +ffffffff8226e480 d hda_vendor_ids +ffffffff8226e5e0 d widget_afg_attrs +ffffffff8226e620 d widget_node_attrs +ffffffff8226e680 d wid_attr_connections +ffffffff8226e6a0 d wid_attr_gpio_caps +ffffffff8226e6c0 d wid_attr_power_caps +ffffffff8226e6e0 d wid_attr_amp_out_caps +ffffffff8226e700 d wid_attr_amp_in_caps +ffffffff8226e720 d wid_attr_pcm_formats +ffffffff8226e740 d wid_attr_pcm_caps +ffffffff8226e760 d wid_attr_pin_cfg +ffffffff8226e780 d wid_attr_pin_caps +ffffffff8226e7a0 d wid_attr_caps +ffffffff8226e7c0 d widget_ktype +ffffffff8226e7f0 D hdac_dev_attr_groups +ffffffff8226e800 d hdac_dev_attr_group +ffffffff8226e840 d hdac_dev_attrs +ffffffff8226e8a0 d dev_attr_modalias +ffffffff8226e8c0 d dev_attr_chip_name +ffffffff8226e8e0 d dev_attr_vendor_name +ffffffff8226e900 d dev_attr_mfg +ffffffff8226e920 d dev_attr_afg +ffffffff8226e940 d dev_attr_revision_id +ffffffff8226e960 d dev_attr_subsystem_id +ffffffff8226e980 d dev_attr_vendor_id +ffffffff8226e9a0 d dev_attr_type +ffffffff8226e9c0 d _rs.20413 +ffffffff8226ea00 d map_tables +ffffffff8226eaa0 d channel_allocations +ffffffff8226f340 d hdmi_channel_mapping +ffffffff8226f980 d pcibios_fwaddrmappings +ffffffff8226f9a0 D pci_mmcfg_list +ffffffff8226f9c0 d pci_mmcfg_lock +ffffffff8226f9e0 d quirk_pcie_aspm_ops +ffffffff8226fa20 d acpi_pci_root_ops +ffffffff8226fa40 d pci_use_crs +ffffffff8226fa60 D pcibios_disable_irq +ffffffff8226fa68 D pcibios_enable_irq +ffffffff8226fa80 d pirq_penalty +ffffffff8226fac0 D pcibios_irq_mask +ffffffff8226fae0 d dma_domain_list +ffffffff8226fb00 D pci_root_ops +ffffffff8226fb28 D pcibios_last_bus +ffffffff8226fb2c D pci_probe +ffffffff8226fb30 D pci_root_infos +ffffffff8226fb40 d bsp_pm_callback_nb.40749 +ffffffff8226fb60 d dlci_ioctl_mutex +ffffffff8226fb80 d vlan_ioctl_mutex +ffffffff8226fba0 d br_ioctl_mutex +ffffffff8226fbc0 d sock_fs_type +ffffffff8226fc00 d sockfs_xattr_handlers +ffffffff8226fc20 d proto_net_ops +ffffffff8226fc60 d net_inuse_ops +ffffffff8226fca0 d proto_list +ffffffff8226fcc0 d proto_list_mutex +ffffffff8226fd00 d net_generic_ids +ffffffff8226fd20 d net_ns_ops +ffffffff8226fd60 d net_cleanup_work +ffffffff8226fd80 d cleanup_list +ffffffff8226fda0 d net_defaults_ops +ffffffff8226fdd8 d max_gen_ptrs +ffffffff8226fe00 D init_net +ffffffff82270b00 D net_namespace_list +ffffffff82270b20 D net_mutex +ffffffff82270b40 d first_device +ffffffff82270b50 d pernet_list +ffffffff82270b60 d ___once_key.56527 +ffffffff82270b70 d ___once_key.56538 +ffffffff82270b80 d ___once_key.60742 +ffffffff82270ba0 d sock_flow_mutex.55895 +ffffffff82270bc0 d sysctl_core_ops +ffffffff82270c00 d netns_core_table +ffffffff82270c80 d net_core_table +ffffffff82271280 d flow_limit_update_mutex +ffffffff822712a0 d max_skb_frags +ffffffff822712a4 d min_rcvbuf +ffffffff822712a8 d min_sndbuf +ffffffff822712ac d one +ffffffff822712c0 d default_device_ops +ffffffff82271300 d netdev_net_ops +ffffffff82271340 D netdev_unregistering_wq +ffffffff82271360 d net_todo_list +ffffffff82271380 d xps_map_mutex +ffffffff822713a0 d netstamp_work +ffffffff822713c0 d dev_boot_phase +ffffffff822713c4 d napi_gen_id +ffffffff822713e0 d ifalias_mutex +ffffffff82271400 d ___once_key.47155 +ffffffff82271410 d unres_qlen_max +ffffffff82271414 d int_max +ffffffff82271420 d rtnetlink_net_ops +ffffffff82271460 d rtnetlink_dev_notifier +ffffffff82271480 d rtnl_af_ops +ffffffff82271490 d link_ops +ffffffff822714a0 d rtnl_mutex +ffffffff822714c0 D net_ratelimit_state +ffffffff82271500 d lweventlist +ffffffff82271520 d linkwatch_work +ffffffff82271580 d diag_net_ops +ffffffff822715c0 d sock_diag_mutex +ffffffff822715e0 d sock_diag_table_mutex +ffffffff82271600 d fib_notifier_net_ops +ffffffff82271640 d rps_map_mutex.56627 +ffffffff82271660 d dev_attr_rx_nohandler +ffffffff82271680 d dev_attr_tx_compressed +ffffffff822716a0 d dev_attr_rx_compressed +ffffffff822716c0 d dev_attr_tx_window_errors +ffffffff822716e0 d dev_attr_tx_heartbeat_errors +ffffffff82271700 d dev_attr_tx_fifo_errors +ffffffff82271720 d dev_attr_tx_carrier_errors +ffffffff82271740 d dev_attr_tx_aborted_errors +ffffffff82271760 d dev_attr_rx_missed_errors +ffffffff82271780 d dev_attr_rx_fifo_errors +ffffffff822717a0 d dev_attr_rx_frame_errors +ffffffff822717c0 d dev_attr_rx_crc_errors +ffffffff822717e0 d dev_attr_rx_over_errors +ffffffff82271800 d dev_attr_rx_length_errors +ffffffff82271820 d dev_attr_collisions +ffffffff82271840 d dev_attr_multicast +ffffffff82271860 d dev_attr_tx_dropped +ffffffff82271880 d dev_attr_rx_dropped +ffffffff822718a0 d dev_attr_tx_errors +ffffffff822718c0 d dev_attr_rx_errors +ffffffff822718e0 d dev_attr_tx_bytes +ffffffff82271900 d dev_attr_rx_bytes +ffffffff82271920 d dev_attr_tx_packets +ffffffff82271940 d dev_attr_rx_packets +ffffffff82271960 d net_class_groups +ffffffff82271980 d dev_attr_phys_switch_id +ffffffff822719a0 d dev_attr_phys_port_name +ffffffff822719c0 d dev_attr_phys_port_id +ffffffff822719e0 d dev_attr_proto_down +ffffffff82271a00 d dev_attr_netdev_group +ffffffff82271a20 d dev_attr_ifalias +ffffffff82271a40 d dev_attr_gro_flush_timeout +ffffffff82271a60 d dev_attr_tx_queue_len +ffffffff82271a80 d dev_attr_flags +ffffffff82271aa0 d dev_attr_mtu +ffffffff82271ac0 d dev_attr_carrier_down_count +ffffffff82271ae0 d dev_attr_carrier_up_count +ffffffff82271b00 d dev_attr_carrier_changes +ffffffff82271b20 d dev_attr_operstate +ffffffff82271b40 d dev_attr_dormant +ffffffff82271b60 d dev_attr_duplex +ffffffff82271b80 d dev_attr_speed +ffffffff82271ba0 d dev_attr_carrier +ffffffff82271bc0 d dev_attr_broadcast +ffffffff82271be0 d dev_attr_address +ffffffff82271c00 d dev_attr_name_assign_type +ffffffff82271c20 d dev_attr_iflink +ffffffff82271c40 d dev_attr_link_mode +ffffffff82271c60 d dev_attr_type +ffffffff82271c80 d dev_attr_ifindex +ffffffff82271ca0 d dev_attr_addr_len +ffffffff82271cc0 d dev_attr_addr_assign_type +ffffffff82271ce0 d dev_attr_dev_port +ffffffff82271d00 d dev_attr_dev_id +ffffffff82271d20 d dev_mc_net_ops +ffffffff82271d60 d dev_proc_ops +ffffffff82271dc0 D noop_qdisc +ffffffff82271f40 d noop_netdev_queue +ffffffff82272080 D default_qdisc_ops +ffffffff822720a0 d netlink_net_ops +ffffffff822720e0 d netlink_proto +ffffffff82272280 d netlink_tap_net_ops +ffffffff822722c0 d netlink_chain +ffffffff822722f0 d nl_table_wait +ffffffff82272320 d genl_pernet_ops +ffffffff82272358 d mc_groups_longs +ffffffff82272360 d mc_groups +ffffffff82272368 d mc_group_start +ffffffff82272370 d genl_fam_idr +ffffffff82272390 D genl_sk_destructing_waitq +ffffffff822723c0 d cb_lock +ffffffff82272400 d genl_mutex +ffffffff82272420 d netfilter_net_ops +ffffffff82272460 d nf_hook_mutex +ffffffff82272480 d nf_log_net_ops +ffffffff822724c0 d nf_log_sysctl_ftable +ffffffff82272540 d emergency_ptr +ffffffff82272560 d nf_log_mutex +ffffffff82272580 d nf_sockopts +ffffffff822725a0 d nf_sockopt_mutex +ffffffff822725c0 d nfnetlink_net_ops +ffffffff82272600 d ___once_key.58022 +ffffffff82272620 d nf_conntrack_net_ops +ffffffff82272660 d nf_ct_netfilter_table +ffffffff822726e0 d nf_ct_sysctl_table +ffffffff822728a0 d ___once_key.57519 +ffffffff822728c0 d nf_ct_helper_expectfn_list +ffffffff822728e0 d helper_sysctl_table +ffffffff82272960 d nf_ct_helper_mutex +ffffffff82272980 d nf_ct_proto_mutex +ffffffff822729a0 d generic_sysctl_table +ffffffff82272a20 d tcp_sysctl_table +ffffffff82272da0 d udp_sysctl_table +ffffffff82272e60 d nf_ct_ext_type_mutex +ffffffff82272e80 d acct_sysctl_table +ffffffff82272f00 d nf_tables_net_ops +ffffffff82272f40 d nf_tables_flowtable_notifier +ffffffff82272f60 d nf_tables_set_types +ffffffff82272f70 d nf_tables_flowtables +ffffffff82272f80 d nf_tables_objects +ffffffff82272f90 d nf_tables_expressions +ffffffff82272fa0 d ___once_key.55680 +ffffffff82272fc0 d ___once_key.62213 +ffffffff82272fd0 d ___once_key.62093 +ffffffff82272fe0 d ipv4_inetpeer_ops +ffffffff82273020 d rt_genid_ops +ffffffff82273060 d sysctl_route_ops +ffffffff822730a0 d ipv4_route_flush_table +ffffffff82273120 d ipv4_route_table +ffffffff82273540 d ipv4_dst_blackhole_ops +ffffffff82273600 d ip_rt_proc_ops +ffffffff82273640 d ipv4_dst_ops +ffffffff82273700 d ___once_key.55138 +ffffffff82273720 d ip4_frags_ops +ffffffff82273760 d ip4_frags_ctl_table +ffffffff822737e0 d ip4_frags_ns_ctl_table +ffffffff82273920 d ___once_key.56997 +ffffffff82273940 d tcp_sk_ops +ffffffff82273980 D tcp_prot +ffffffff82273b20 d tcp4_net_ops +ffffffff82273b60 d tcp4_seq_afinfo +ffffffff82273ba0 d tcp_timewait_sock_ops +ffffffff82273be0 D tcp_reno +ffffffff82273c80 d tcp_cong_list +ffffffff82273ca0 d tcp_net_metrics_ops +ffffffff82273ce0 d tcp_ulp_list +ffffffff82273d00 d raw_net_ops +ffffffff82273d40 D raw_prot +ffffffff82273ee0 d ___once_key.62984 +ffffffff82273ef0 d ___once_key.60152 +ffffffff82273f00 d udp4_net_ops +ffffffff82273f40 d udp4_seq_afinfo +ffffffff82273f80 D udp_prot +ffffffff82274120 d udplite4_net_ops +ffffffff82274160 d udplite4_seq_afinfo +ffffffff822741a0 d udplite4_protosw +ffffffff822741e0 D udplite_prot +ffffffff82274380 d arp_net_ops +ffffffff822743c0 d arp_netdev_notifier +ffffffff822743e0 D arp_tbl +ffffffff822745c0 d icmp_sk_ops +ffffffff82274600 d devinet_ops +ffffffff82274640 d ctl_forward_entry +ffffffff822746c0 d devinet_sysctl +ffffffff82274ed0 d ip_netdev_notifier +ffffffff82274f00 d check_lifetime_work +ffffffff82274f60 d inetaddr_validator_chain +ffffffff82274fa0 d inetaddr_chain +ffffffff82274fe0 d ipv4_devconf_dflt +ffffffff82275080 d ipv4_devconf +ffffffff82275120 d af_inet_ops +ffffffff82275160 d ipv4_mib_ops +ffffffff822751a0 d udp_protocol +ffffffff822751e0 d tcp_protocol +ffffffff82275220 d inetsw_array +ffffffff822752e0 d igmp_notifier +ffffffff82275300 d igmp_net_ops +ffffffff82275340 d fib_net_ops +ffffffff82275380 d fib_netdev_notifier +ffffffff822753a0 d fib_inetaddr_notifier +ffffffff822753c0 d ping_v4_net_ops +ffffffff82275400 d ping_v4_seq_afinfo +ffffffff82275440 D ping_prot +ffffffff822755e0 d _rs.57999 +ffffffff82275620 d ipv4_sysctl_ops +ffffffff82275660 d ipv4_net_table +ffffffff82276a20 d ipv4_table +ffffffff82276de0 d ip_ping_group_range_max +ffffffff82276de8 d tcp_syn_retries_max +ffffffff82276dec d tcp_syn_retries_min +ffffffff82276df0 d ip_ttl_max +ffffffff82276df4 d ip_ttl_min +ffffffff82276df8 d ip_privileged_port_max +ffffffff82276dfc d tcp_adv_win_scale_max +ffffffff82276e00 d tcp_adv_win_scale_min +ffffffff82276e08 d ip_local_port_range_max +ffffffff82276e10 d ip_local_port_range_min +ffffffff82276e18 d tcp_retr1_max +ffffffff82276e1c d gso_max_segs +ffffffff82276e20 d thousand +ffffffff82276e24 d four +ffffffff82276e28 d one +ffffffff82276e40 d ip_proc_ops +ffffffff82276e80 d ipv4_net_ops +ffffffff82276ec0 d so_getorigdst +ffffffff82276f00 d register_ipv4_hooks +ffffffff82276f20 d icmp_sysctl_table +ffffffff82276fa0 d defrag4_net_ops +ffffffff82276fe0 d defrag4_mutex +ffffffff82277000 d ordernum.52426 +ffffffff82277020 d unix_net_ops +ffffffff82277060 d unix_proto +ffffffff822771f0 d unix_gc_wait +ffffffff82277210 d gc_candidates +ffffffff82277220 d gc_inflight_list +ffffffff82277240 d unix_table +ffffffff822772c0 d inet6_net_ops +ffffffff822772f8 D ipv6_defaults +ffffffff82277300 d addrconf_ops +ffffffff82277338 d minus_one +ffffffff82277340 d if6_proc_net_ops +ffffffff82277380 d ipv6_dev_notf +ffffffff822773a0 d addr_chk_work +ffffffff82277400 d ipv6_addr_label_ops +ffffffff82277440 d __compound_literal.6 +ffffffff82277450 d __compound_literal.5 +ffffffff82277460 d __compound_literal.4 +ffffffff82277470 d __compound_literal.3 +ffffffff82277480 d __compound_literal.2 +ffffffff82277490 d __compound_literal.1 +ffffffff822774a0 d __compound_literal.0 +ffffffff822774c0 d ___once_key.61499 +ffffffff822774d0 d ip6_route_dev_notifier +ffffffff82277500 d ip6_route_net_late_ops +ffffffff82277540 d ipv6_inetpeer_ops +ffffffff82277580 d ip6_route_net_ops +ffffffff822775c0 D ipv6_route_table_template +ffffffff82277880 d ip6_dst_blackhole_ops +ffffffff82277940 d ip6_dst_ops_template +ffffffff82277a00 d fib6_net_ops +ffffffff82277a40 d ndisc_net_ops +ffffffff82277a80 d ndisc_netdev_notifier +ffffffff82277aa0 D nd_tbl +ffffffff82277c80 d ___once_key.59553 +ffffffff82277c90 d ___once_key.59545 +ffffffff82277ca0 d udpv6_protosw +ffffffff82277ce0 D udpv6_prot +ffffffff82277e80 d udp6_seq_afinfo +ffffffff82277ec0 d udpv6_protocol +ffffffff82277f00 d udplite6_net_ops +ffffffff82277f40 d udplite6_seq_afinfo +ffffffff82277f80 d udplite6_protosw +ffffffff82277fc0 D udplitev6_prot +ffffffff82278160 d rawv6_protosw +ffffffff822781a0 d raw6_net_ops +ffffffff822781e0 D rawv6_prot +ffffffff82278380 d ipv6_icmp_table_template +ffffffff82278400 d icmpv6_sk_ops +ffffffff82278440 d igmp6_net_ops +ffffffff82278480 d igmp6_netdev_notifier +ffffffff822784a0 d mld2_all_mcr +ffffffff822784c0 d ___once_key.55306 +ffffffff822784e0 d ip6_frags_ops +ffffffff82278520 d ip6_frags_ctl_table +ffffffff822785a0 d ip6_frags_ns_ctl_table +ffffffff822786a0 d tcpv6_net_ops +ffffffff822786e0 d tcpv6_protosw +ffffffff82278720 d tcpv6_protocol +ffffffff82278760 D tcpv6_prot +ffffffff82278900 d tcp6_seq_afinfo +ffffffff82278940 d tcp6_timewait_sock_ops +ffffffff82278980 d ping_v6_net_ops +ffffffff822789c0 d ping_v6_seq_afinfo +ffffffff82278a00 d pingv6_protosw +ffffffff82278a40 D pingv6_prot +ffffffff82278be0 d ip6_flowlabel_net_ops +ffffffff82278c20 d ip6_fl_gc_timer +ffffffff82278c60 d ip6_segments_ops +ffffffff82278ca0 d ipv6_sysctl_net_ops +ffffffff82278ce0 d ipv6_rotable +ffffffff82278da0 d ipv6_table_template +ffffffff82279160 d auto_flowlabels_max +ffffffff82279164 d one +ffffffff82279180 d ipv6_proc_ops +ffffffff822791c0 d ipv6_net_ops +ffffffff82279200 d so_getorigdst6 +ffffffff82279240 d register_ipv6_hooks +ffffffff82279260 d icmpv6_sysctl_table +ffffffff822792e0 d defrag6_net_ops +ffffffff82279320 d defrag6_mutex +ffffffff82279340 d ___once_key.54521 +ffffffff82279360 d nf_ct_net_ops +ffffffff822793a0 d nf_ct_frag6_sysctl_table +ffffffff822794a0 d __compound_literal.2 +ffffffff822794e0 d inet6addr_validator_chain +ffffffff82279510 d ___once_key.55574 +ffffffff82279520 d ___once_key.55559 +ffffffff82279530 d ___once_key.55220 +ffffffff82279540 d ___once_key.55212 +ffffffff82279560 d packet_net_ops +ffffffff822795a0 d packet_netdev_notifier +ffffffff822795c0 d packet_proto +ffffffff82279750 d fanout_list +ffffffff82279760 D fanout_mutex +ffffffff82279780 d ___modver_attr +ffffffff822797e0 d hci_index_ida +ffffffff82279800 D hci_cb_list_lock +ffffffff82279820 D hci_cb_list +ffffffff82279830 D hci_dev_list +ffffffff82279840 d chan +ffffffff82279880 d hci_sk_proto +ffffffff82279a10 d sock_cookie_ida +ffffffff82279a20 d mgmt_chan_list_lock +ffffffff82279a40 d mgmt_chan_list +ffffffff82279a60 d l2cap_cb +ffffffff82279aa0 d chan_list +ffffffff82279ac0 d l2cap_proto +ffffffff82279c60 d _rs.51154 +ffffffff82279ca0 d sco_cb +ffffffff82279ce0 d sco_proto +ffffffff82279e80 d amp_mgr_list_lock +ffffffff82279ea0 d amp_mgr_list +ffffffff82279ec0 d ___modver_attr +ffffffff82279f20 d rfcomm_cb +ffffffff82279f60 d rfcomm_wq +ffffffff82279f80 d session_list +ffffffff82279fa0 d rfcomm_mutex +ffffffff82279fc0 d l2cap_mtu +ffffffff82279fc4 d channel_mtu +ffffffff82279fe0 d rfcomm_proto +ffffffff8227a180 d ___modver_attr +ffffffff8227a1e0 D hidp_hid_driver +ffffffff8227a238 d hidp_mkeyspat +ffffffff8227a240 d hidp_session_list +ffffffff8227a250 d hidp_session_wq +ffffffff8227a280 d hidp_session_sem +ffffffff8227a2c0 d hidp_proto +ffffffff8227a460 d cfg80211_pernet_ops +ffffffff8227a4a0 d cfg80211_netdev_notifier +ffffffff8227a4c0 D cfg80211_rdev_list +ffffffff8227a4e0 D ieee80211_class +ffffffff8227a550 d ieee80211_groups +ffffffff8227a560 d ieee80211_attrs +ffffffff8227a5a0 d dev_attr_addresses +ffffffff8227a5c0 d dev_attr_name +ffffffff8227a5e0 d dev_attr_address_mask +ffffffff8227a600 d dev_attr_macaddress +ffffffff8227a620 d dev_attr_index +ffffffff8227a640 d crda_timeout +ffffffff8227a6a0 d reg_regdb_work +ffffffff8227a6c0 d reg_regdb_apply_mutex +ffffffff8227a6e0 d reg_regdb_apply_list +ffffffff8227a6f0 d ieee80211_regdom +ffffffff8227a6f8 d cfg80211_world_regdom +ffffffff8227a700 d reg_work +ffffffff8227a720 d reg_check_chans +ffffffff8227a780 d reg_beacon_list +ffffffff8227a790 d reg_pending_beacons +ffffffff8227a7a0 d reg_requests_list +ffffffff8227a7b0 d last_request +ffffffff8227a7c0 d core_request_world +ffffffff8227a800 d bss_entries_limit +ffffffff8227a810 d nl80211_netlink_notifier +ffffffff8227a840 d cfg80211_disconnect_work +ffffffff8227a860 D shipped_regdb_certs_len +ffffffff8227a870 d mac80211_netdev_notifier +ffffffff8227a8a0 d ieee80211_default_rc_algo +ffffffff8227a8c0 d rate_ctrl_mutex +ffffffff8227a8e0 d rate_ctrl_algs +ffffffff8227a8f0 d probe_wait_ms +ffffffff8227a8f4 d beacon_loss_count +ffffffff8227a8f8 d max_probe_tries +ffffffff8227a8fc d max_nullfunc_tries +ffffffff8227a900 d sysctl_pernet_ops +ffffffff8227a940 d net_sysctl_root +ffffffff8227a9b8 d dump_lock +ffffffff8227a9c0 d klist_remove_waiters +ffffffff8227a9e0 d kset_ktype +ffffffff8227aa20 d dynamic_kobj_ktype +ffffffff8227aa60 d uevent_net_ops +ffffffff8227aaa0 d uevent_sock_mutex +ffffffff8227aac0 d uevent_sock_list +ffffffff8227aae0 d random_ready +ffffffff8227ab00 d delay_fn +ffffffff8227ab08 D initial_code +ffffffff8227ab10 D initial_gs +ffffffff8227ab18 D initial_stack +ffffffff8227ab20 D e820_table_firmware +ffffffff8227ab28 D e820_table_kexec +ffffffff8227ab30 D e820_table +ffffffff8227ab38 D x86_cpu_to_acpiid_early_ptr +ffffffff8227ab40 D x86_bios_cpu_apicid_early_ptr +ffffffff8227ab48 D x86_cpu_to_apicid_early_ptr +ffffffff8227ab80 D contig_page_data +ffffffff8227c040 D __end_once +ffffffff8227c040 D __start___jump_table +ffffffff8227c040 D __start_once +ffffffff8227d048 D __start___verbose +ffffffff8227d048 D __stop___jump_table +ffffffff8227d048 D __stop___verbose +ffffffff8227d080 D static_key_initialized +ffffffff8227d084 D system_state +ffffffff8227d088 D early_boot_irqs_disabled +ffffffff8227d08c D vdso64_enabled +ffffffff8227d090 D vclocks_used +ffffffff8227d0a0 D hw_cache_extra_regs +ffffffff8227d200 D hw_cache_event_ids +ffffffff8227d360 D x86_pmu +ffffffff8227d580 d intel_glm_extra_regs +ffffffff8227d5e0 d intel_slm_extra_regs +ffffffff8227d640 d intel_skl_extra_regs +ffffffff8227d6e0 d intel_snbep_extra_regs +ffffffff8227d760 d intel_snb_extra_regs +ffffffff8227d7e0 d intel_knl_extra_regs +ffffffff8227d840 d intel_slm_event_constraints +ffffffff8227d8e0 d intel_gen_event_constraints +ffffffff8227d980 d intel_v1_event_constraints +ffffffff8227d9c0 d intel_westmere_extra_regs +ffffffff8227da40 d intel_ivb_event_constraints +ffffffff8227dd20 d intel_snb_event_constraints +ffffffff8227dfe0 d intel_westmere_event_constraints +ffffffff8227e120 d intel_nehalem_extra_regs +ffffffff8227e180 d intel_nehalem_event_constraints +ffffffff8227e360 d intel_core2_event_constraints +ffffffff8227e5a0 d intel_core_event_constraints +ffffffff8227e6c0 d intel_perfmon_event_map +ffffffff8227e710 d __print_once.30941 +ffffffff8227e714 d ignore_nmis +ffffffff8227e720 D boot_cpu_data +ffffffff8227e810 D iommu_pass_through +ffffffff8227e814 D iommu_detected +ffffffff8227e818 D no_iommu +ffffffff8227e81c D iommu_merge +ffffffff8227e820 D force_iommu +ffffffff8227e824 D panic_on_overflow +ffffffff8227e828 d iommu_sac_force +ffffffff8227e82c d forbid_dac +ffffffff8227e830 D alternatives_patched +ffffffff8227e834 d tsc_disabled +ffffffff8227e838 d tsc_unstable +ffffffff8227e83c D tsc_khz +ffffffff8227e840 D cpu_khz +ffffffff8227e844 D io_delay_type +ffffffff8227e848 d __print_once.41925 +ffffffff8227e84c D mxcsr_feature_mask +ffffffff8227e880 D init_fpstate +ffffffff8227f880 D xfeatures_mask +ffffffff8227f888 d __print_once.37035 +ffffffff8227f889 d __print_once.37024 +ffffffff8227f88c D elf_hwcap2 +ffffffff8227f890 D tlb_lld_1g +ffffffff8227f892 D tlb_lld_4m +ffffffff8227f894 D tlb_lld_2m +ffffffff8227f896 D tlb_lld_4k +ffffffff8227f898 D tlb_lli_4m +ffffffff8227f89a D tlb_lli_2m +ffffffff8227f89c D tlb_lli_4k +ffffffff8227f89e d __print_once.5759 +ffffffff8227f89f d __print_once.19795 +ffffffff8227f8a0 d __print_once.19792 +ffffffff8227f8a1 d ring3mwait_disabled +ffffffff8227f8b0 D mca_cfg +ffffffff8227f8d0 D mce_flags +ffffffff8227f8d8 D mce_banks +ffffffff8227f8e0 d __print_once.20451 +ffffffff8227f8e1 d __print_once.20448 +ffffffff8227f8e4 d __print_once.21686 +ffffffff8227f8e8 d lvtthmr_init +ffffffff8227f8ec d __print_once.28392 +ffffffff8227f8ed d __print_once.28389 +ffffffff8227f8ee d __print_once.28214 +ffffffff8227f900 d isa_irq_to_gsi +ffffffff8227f940 D __max_smt_threads +ffffffff8227f944 d logical_packages +ffffffff8227f948 D __max_logical_packages +ffffffff8227f94c d __print_once.15214 +ffffffff8227f94d D tsc_async_resets +ffffffff8227f950 d __print_once.45048 +ffffffff8227f954 d disabled_cpu_apicid +ffffffff8227f960 d lapic_chip +ffffffff8227fa80 d ioapic_ir_chip +ffffffff8227fba0 d ioapic_chip +ffffffff8227fcb0 D swiotlb +ffffffff8227fcb4 d sched_itmt_capable +ffffffff8227fcb8 D sysctl_sched_itmt_enabled +ffffffff8227fcbc d __print_once.28665 +ffffffff8227fcbd d __print_once.28662 +ffffffff8227fcbe d __print_once.28654 +ffffffff8227fcbf d __print_once.28650 +ffffffff8227fcc0 d __print_once.28646 +ffffffff8227fcc1 d __print_once.28640 +ffffffff8227fcc2 d __print_once.28636 +ffffffff8227fcc3 d __print_once.28632 +ffffffff8227fcc4 d __print_once.28628 +ffffffff8227fcc5 d __print_once.28624 +ffffffff8227fcc6 d __print_once.28563 +ffffffff8227fcc7 d __print_once.28557 +ffffffff8227fcc8 d __print_once.28554 +ffffffff8227fcc9 d __print_once.28522 +ffffffff8227fcca d __print_once.28519 +ffffffff8227fcd0 D __supported_pte_mask +ffffffff8227fcd8 d __print_once.30109 +ffffffff8227fcd9 d __print_once.30101 +ffffffff8227fd00 D va_align +ffffffff8227fd40 d init_cm_done +ffffffff8227fd41 d pat_initialized +ffffffff8227fd42 d pat_disabled +ffffffff8227fd43 d boot_cpu_done +ffffffff8227fd44 d __print_once.34160 +ffffffff8227fd48 d tlb_single_page_flush_ceiling +ffffffff8227fd50 d __print_once.42849 +ffffffff8227fd54 D arch_task_struct_size +ffffffff8227fd58 D panic_on_warn +ffffffff8227fd60 D __cpu_active_mask +ffffffff8227fd68 D __cpu_present_mask +ffffffff8227fd70 D __cpu_online_mask +ffffffff8227fd78 D __cpu_possible_mask +ffffffff8227fd80 d __print_once.72390 +ffffffff8227fd81 d __print_once.38604 +ffffffff8227fd82 d __print_once.38592 +ffffffff8227fd84 D print_fatal_signals +ffffffff8227fd88 D system_freezable_power_efficient_wq +ffffffff8227fd90 D system_power_efficient_wq +ffffffff8227fd98 D system_freezable_wq +ffffffff8227fda0 D system_unbound_wq +ffffffff8227fda8 D system_long_wq +ffffffff8227fdb0 D system_highpri_wq +ffffffff8227fdb8 D system_wq +ffffffff8227fdc0 d task_group_cache +ffffffff8227fdc8 D sched_smp_initialized +ffffffff8227fdcc D scheduler_running +ffffffff8227fdd0 d __gtod_offset +ffffffff8227fdd8 D __sched_clock_offset +ffffffff8227fde0 D sched_clock_running +ffffffff8227fde8 d max_load_balance_interval +ffffffff8227fdf0 D sysctl_sched_child_runs_first +ffffffff8227fdf4 d __print_once.32109 +ffffffff8227fdf5 d __print_once.32121 +ffffffff8227fdf8 d cpu_idle_force_poll +ffffffff8227fdfc D sysctl_sched_autogroup_enabled +ffffffff8227fe00 D freeze_timeout_msecs +ffffffff8227fe04 D s2idle_state +ffffffff8227fe08 d keep_bootcon +ffffffff8227fe0c D printk_delay_msec +ffffffff8227fe10 d ignore_loglevel +ffffffff8227fe11 d __print_once.40881 +ffffffff8227fe14 d devkmsg_log +ffffffff8227fe18 d printk_safe_irq_ready +ffffffff8227fe1c d __print_once.29371 +ffffffff8227fe1d D force_irqthreads +ffffffff8227fe20 D noirqdebug +ffffffff8227fe24 d irqfixup +ffffffff8227fe28 d __print_once.24351 +ffffffff8227fe2c d rcu_task_stall_timeout +ffffffff8227fe30 d rcu_cpu_stall_timeout +ffffffff8227fe34 D rcu_cpu_stall_suppress +ffffffff8227fe38 d rcu_scheduler_fully_active +ffffffff8227fe3c D sysctl_panic_on_rcu_stall +ffffffff8227fe40 D rcu_num_nodes +ffffffff8227fe44 D rcu_num_lvls +ffffffff8227fe48 D rcu_scheduler_active +ffffffff8227fe60 d cookies +ffffffff8227fee0 d __print_once.39789 +ffffffff8227fee4 D hrtimer_resolution +ffffffff8227fee8 d hrtimer_hres_enabled +ffffffff8227feec d __print_once.32775 +ffffffff8227fef0 D timekeeping_suspended +ffffffff8227fef4 d __print_once.38249 +ffffffff8227fef8 D tick_do_timer_cpu +ffffffff8227fefc d __print_once.23514 +ffffffff8227fefd d __print_once.23508 +ffffffff8227ff00 d __print_once.35193 +ffffffff8227ff08 D tick_nohz_active +ffffffff8227ff10 D tick_nohz_enabled +ffffffff8227ff20 d __futex_data +ffffffff8227ff30 D futex_cmpxchg_enabled +ffffffff8227ff34 D nr_cpu_ids +ffffffff8227ff38 d use_task_css_set_links +ffffffff8227ff3a d have_canfork_callback +ffffffff8227ff3c d have_free_callback +ffffffff8227ff3e d have_exit_callback +ffffffff8227ff40 d have_fork_callback +ffffffff8227ff48 d user_ns_cachep +ffffffff8227ff50 D delayacct_on +ffffffff8227ff54 D sysctl_unprivileged_bpf_disabled +ffffffff8227ff58 D sysctl_perf_cpu_time_max_percent +ffffffff8227ff5c d perf_sample_allowed_ns +ffffffff8227ff60 d perf_sample_period_ns +ffffffff8227ff64 d max_samples_per_tick +ffffffff8227ff68 D sysctl_perf_event_sample_rate +ffffffff8227ff6c D sysctl_perf_event_mlock +ffffffff8227ff70 D sysctl_perf_event_paranoid +ffffffff8227ff74 d nr_switch_events +ffffffff8227ff78 d nr_freq_events +ffffffff8227ff7c d nr_task_events +ffffffff8227ff80 d nr_namespaces_events +ffffffff8227ff84 d nr_comm_events +ffffffff8227ff88 d nr_mmap_events +ffffffff8227ff8c D sysctl_perf_event_max_contexts_per_stack +ffffffff8227ff90 D sysctl_perf_event_max_stack +ffffffff8227ff94 d oom_killer_disabled +ffffffff8227ffa0 D page_group_by_mobility_disabled +ffffffff8227ffa4 D gfp_allowed_mask +ffffffff8227ffa8 D totalcma_pages +ffffffff8227ffb0 D totalreserve_pages +ffffffff8227ffb8 D totalram_pages +ffffffff8227ffc0 D node_states +ffffffff8227ffe8 D shmem_huge +ffffffff8227fff0 D sysctl_admin_reserve_kbytes +ffffffff8227fff8 D sysctl_user_reserve_kbytes +ffffffff82280000 D sysctl_max_map_count +ffffffff82280008 D sysctl_overcommit_kbytes +ffffffff82280010 D sysctl_overcommit_ratio +ffffffff82280014 D sysctl_overcommit_memory +ffffffff82280018 D sysctl_stat_interval +ffffffff8228001c d pcpu_async_enabled +ffffffff82280020 D sysctl_compact_unevictable_allowed +ffffffff82280024 d bucket_order +ffffffff82280028 d fault_around_bytes +ffffffff82280030 D highest_memmap_pfn +ffffffff82280038 D zero_pfn +ffffffff82280040 D randomize_va_space +ffffffff82280044 d __print_once.47981 +ffffffff82280045 d __print_once.47881 +ffffffff82280048 D mmap_rnd_bits +ffffffff8228004c d __print_once.41607 +ffffffff8228004d d vmap_initialized +ffffffff8228004e d __print_once.27523 +ffffffff82280050 D huge_zero_page +ffffffff82280058 D transparent_hugepage_flags +ffffffff82280060 d khugepaged_thread.37679 +ffffffff82280068 d mm_slot_cache +ffffffff82280080 d mm_slots_hash +ffffffff82282080 d khugepaged_max_ptes_swap +ffffffff82282084 d khugepaged_max_ptes_none +ffffffff82282088 d khugepaged_alloc_sleep_millisecs +ffffffff8228208c d khugepaged_scan_sleep_millisecs +ffffffff82282090 d khugepaged_pages_to_scan +ffffffff82282098 d cleancache_ops +ffffffff822820a0 d filp_cachep +ffffffff822820a8 d pipe_mnt +ffffffff822820b0 D sysctl_protected_hardlinks +ffffffff822820b4 D sysctl_protected_symlinks +ffffffff822820b8 d fasync_cache +ffffffff822820c0 D names_cachep +ffffffff822820c8 d dentry_hashtable +ffffffff822820d0 d d_hash_shift +ffffffff822820d8 d dentry_cache +ffffffff822820e0 D sysctl_vfs_cache_pressure +ffffffff822820e8 d inode_cachep +ffffffff822820f0 d inode_hashtable +ffffffff822820f8 d i_hash_shift +ffffffff822820fc d i_hash_mask +ffffffff82282100 D sysctl_nr_open +ffffffff82282108 d mnt_cache +ffffffff82282110 d mountpoint_hashtable +ffffffff82282118 d mount_hashtable +ffffffff82282120 d mp_hash_shift +ffffffff82282124 d mp_hash_mask +ffffffff82282128 d m_hash_shift +ffffffff8228212c d m_hash_mask +ffffffff82282130 D sysctl_mount_max +ffffffff82282138 d bh_cachep +ffffffff82282140 D blockdev_superblock +ffffffff82282148 d bdev_cachep +ffffffff82282150 d blkdev_dio_pool +ffffffff82282158 d dio_cache +ffffffff82282160 D inotify_inode_mark_cachep +ffffffff82282168 d inotify_max_queued_events +ffffffff82282170 D fanotify_perm_event_cachep +ffffffff82282178 D fanotify_event_cachep +ffffffff82282180 D fanotify_mark_cache +ffffffff82282188 d pwq_cache +ffffffff82282190 d epi_cache +ffffffff82282198 d max_user_watches +ffffffff822821a0 d anon_inode_mnt +ffffffff822821a8 d filelock_cache +ffffffff822821b0 d flctx_cache +ffffffff822821b8 d __print_once.38169 +ffffffff822821b9 d __print_once.29161 +ffffffff822821ba d __print_once.48748 +ffffffff822821bb d __print_once.39248 +ffffffff822821bc d __print_once.18352 +ffffffff822821bd d __print_once.57151 +ffffffff822821be d __print_once.57142 +ffffffff822821bf d __print_once.40323 +ffffffff822821c0 d bvec_slabs +ffffffff82282250 d __print_once.3349 +ffffffff82282254 D percpu_counter_batch +ffffffff82282258 d __print_once.41359 +ffffffff82282259 d __print_once.39118 +ffffffff82282260 d ofonly +ffffffff82282280 d video_options +ffffffff82282380 D num_registered_fb +ffffffff822823a0 D registered_fb +ffffffff822824a0 d blue16 +ffffffff822824c0 d green16 +ffffffff822824e0 d red16 +ffffffff82282500 d blue8 +ffffffff82282510 d green8 +ffffffff82282520 d red8 +ffffffff82282530 d blue4 +ffffffff82282538 d green4 +ffffffff82282540 d red4 +ffffffff82282548 d blue2 +ffffffff8228254c d green2 +ffffffff82282550 d red2 +ffffffff82282554 d __print_once.29564 +ffffffff82282555 d __print_once.29561 +ffffffff82282558 D errata +ffffffff82282564 d ec_no_wakeup +ffffffff82282565 d ec_freeze_events +ffffffff82282568 d ec_storm_threshold +ffffffff8228256c d ec_event_clearing +ffffffff82282570 d ec_polling_guard +ffffffff82282574 d ec_busy_polling +ffffffff82282578 d ec_max_queries +ffffffff8228257c d ec_delay +ffffffff82282580 d __print_once.30425 +ffffffff82282588 d lid_report_interval +ffffffff82282590 d latency_factor +ffffffff82282594 d bm_check_disable +ffffffff82282598 d nocst +ffffffff8228259c d max_cstate +ffffffff822825a0 d __print_once.34110 +ffffffff822825a1 d print_once.40276 +ffffffff822825a2 d __print_once.44351 +ffffffff822825a4 d eim_mode +ffffffff822825a8 d dp_aux_i2c_transfer_size +ffffffff822825ac d dp_aux_i2c_speed_khz +ffffffff822825b0 d edid_fixup +ffffffff822825b4 d pm_abort_suspend +ffffffff822825b8 D pm_wakeup_irq +ffffffff822825bc D events_check_enabled +ffffffff822825c0 d devslp_idle_timeout +ffffffff822825c4 d ahci_em_messages +ffffffff822825c5 d __print_once.33150 +ffffffff822825e0 d ehci_pci_hc_driver +ffffffff82282740 d xhci_pci_hc_driver +ffffffff822828a0 d __print_once.35970 +ffffffff822828a4 d off +ffffffff822828c0 d intel_pstate_driver +ffffffff822828c8 d per_cpu_limits +ffffffff822828cc d hwp_active +ffffffff822828e0 d pstate_funcs +ffffffff82282920 d initialized +ffffffff82282924 d off +ffffffff82282940 d __print_once.39640 +ffffffff82282941 d __print_once.39637 +ffffffff82282960 D efi +ffffffff82282ab8 D pmtmr_ioport +ffffffff82282ac0 D raw_pci_ext_ops +ffffffff82282ac8 D raw_pci_ops +ffffffff82282ae0 d __print_once.62382 +ffffffff82282ae8 d sock_mnt +ffffffff82282af0 d sock_inode_cachep +ffffffff82282b00 d net_families +ffffffff82282c60 D sysctl_net_busy_poll +ffffffff82282c64 D sysctl_net_busy_read +ffffffff82282c68 d warned.60137 +ffffffff82282c6c D sysctl_tstamp_allow_data +ffffffff82282c70 D sysctl_optmem_max +ffffffff82282c74 D sysctl_rmem_default +ffffffff82282c78 D sysctl_wmem_default +ffffffff82282c7c D sysctl_rmem_max +ffffffff82282c80 D sysctl_wmem_max +ffffffff82282c88 D sysctl_max_skb_frags +ffffffff82282c90 d skbuff_fclone_cache +ffffffff82282c98 D skbuff_head_cache +ffffffff82282ca0 D crc32c_csum_stub +ffffffff82282cb0 d ts_secret +ffffffff82282cc0 d net_secret +ffffffff82282ce0 D flow_keys_buf_dissector +ffffffff82282d20 D flow_keys_dissector +ffffffff82282d60 d flow_keys_dissector_symmetric +ffffffff82282d90 d hashrnd +ffffffff82282da0 d __print_once.71161 +ffffffff82282da1 d __print_once.71136 +ffffffff82282db0 d generic_xdp_needed +ffffffff82282dc0 D netdev_flow_limit_table_len +ffffffff82282dd0 D rfs_needed +ffffffff82282de0 D rps_needed +ffffffff82282df0 D rps_cpu_mask +ffffffff82282df8 D rps_sock_flow_table +ffffffff82282e00 D dev_tx_weight +ffffffff82282e04 D dev_rx_weight +ffffffff82282e08 D dev_weight_tx_bias +ffffffff82282e0c D dev_weight_rx_bias +ffffffff82282e10 D weight_p +ffffffff82282e14 D netdev_budget_usecs +ffffffff82282e18 D netdev_budget +ffffffff82282e1c D netdev_tstamp_prequeue +ffffffff82282e20 D netdev_max_backlog +ffffffff82282e30 d netstamp_needed +ffffffff82282e40 d ingress_needed +ffffffff82282e60 d napi_hash +ffffffff82283660 d offload_base +ffffffff82283670 D ptype_all +ffffffff82283680 D ptype_base +ffffffff82283780 D netdev_rss_key +ffffffff822837c0 d neigh_sysctl_template +ffffffff82283d10 d neigh_tables +ffffffff82283d40 d eth_packet_offload +ffffffff82283d80 D pfifo_fast_ops +ffffffff82283e40 D noqueue_qdisc_ops +ffffffff82283f00 D noop_qdisc_ops +ffffffff82283fc0 D mq_qdisc_ops +ffffffff82284068 D nl_table +ffffffff82284070 D nf_ct_destroy +ffffffff82284078 D ip_ct_attach +ffffffff82284080 D nfnl_ct_hook +ffffffff82284088 D nf_ipv6_ops +ffffffff822840a0 d __print_once.53172 +ffffffff822840c0 d loggers +ffffffff82284190 D sysctl_nf_log_all_netns +ffffffff82284198 d nf_conntrack_hash_rnd +ffffffff8228419c D nf_conntrack_generation +ffffffff822841a0 D nf_conntrack_max +ffffffff822841a4 D nf_conntrack_htable_size +ffffffff822841a8 d nf_conntrack_locks_all +ffffffff822841ac d nf_conntrack_locks_all_lock +ffffffff822841b0 d nf_conntrack_cachep +ffffffff822841b8 D nf_conntrack_hash +ffffffff822841c0 D nfnetlink_parse_nat_setup_hook +ffffffff822841c8 d nf_conntrack_htable_size_user +ffffffff822841cc d log_invalid_proto_max +ffffffff822841d0 d log_invalid_proto_min +ffffffff822841d8 d nf_ct_expect_hashrnd +ffffffff822841e0 d nf_ct_expect_cachep +ffffffff822841e8 D nf_ct_expect_max +ffffffff822841f0 D nf_ct_expect_hash +ffffffff822841f8 D nf_ct_expect_hsize +ffffffff82284200 d nf_ct_auto_assign_helper +ffffffff82284204 d nf_ct_helper_count +ffffffff82284208 D nf_ct_helper_hsize +ffffffff82284210 D nf_ct_helper_hash +ffffffff82284220 D nf_ct_l3protos +ffffffff822842a0 d nf_ct_protos +ffffffff82284320 D nf_conntrack_l3proto_generic +ffffffff82284358 d nf_ct_tcp_max_retrans +ffffffff8228435c d nf_ct_tcp_loose +ffffffff82284360 d nf_ct_tcp_be_liberal +ffffffff82284364 d nf_ct_acct +ffffffff82284380 D nft_imm_type +ffffffff822843c0 D nft_cmp_type +ffffffff82284400 D nft_range_type +ffffffff82284440 D nft_bitwise_type +ffffffff82284480 D nft_byteorder_type +ffffffff822844c0 D nft_payload_type +ffffffff82284500 D nft_lookup_type +ffffffff82284540 D nft_dynset_type +ffffffff82284580 d nft_meta_type +ffffffff822845c0 d nft_rt_type +ffffffff82284600 d nft_ct_helper_obj_type +ffffffff82284640 d nft_notrack_type +ffffffff82284680 d nft_ct_type +ffffffff822846c0 d nft_limit_obj_type +ffffffff82284700 d nft_limit_type +ffffffff82284740 d nft_reject_inet_type +ffffffff82284780 d nft_rbtree_ops +ffffffff82284800 d nft_rbtree_type +ffffffff82284840 d nft_counter_type +ffffffff82284880 d nft_counter_obj_type +ffffffff822848c0 d nft_log_type +ffffffff82284900 d nft_hash_type +ffffffff82284940 d ip_min_valid_pmtu +ffffffff82284944 d ip_rt_gc_elasticity +ffffffff82284948 d ip_rt_gc_min_interval +ffffffff8228494c d ip_rt_gc_interval +ffffffff82284950 d fnhe_hashrnd.62209 +ffffffff82284954 d ip_idents_hashrnd.62088 +ffffffff82284958 d ip_tstamps +ffffffff82284960 d ip_idents +ffffffff82284968 d ip_rt_gc_timeout +ffffffff8228496c d ip_rt_min_advmss +ffffffff82284970 d ip_rt_min_pmtu +ffffffff82284974 d ip_rt_mtu_expires +ffffffff82284978 d ip_rt_error_burst +ffffffff8228497c d ip_rt_error_cost +ffffffff82284980 d ip_rt_redirect_silence +ffffffff82284984 d ip_rt_redirect_load +ffffffff82284988 d ip_rt_redirect_number +ffffffff82284990 D inet_peer_maxttl +ffffffff82284994 D inet_peer_minttl +ffffffff82284998 D inet_peer_threshold +ffffffff822849a0 d peer_cachep +ffffffff822849c0 D inet_offloads +ffffffff822851c0 D inet_protos +ffffffff822859c0 d inet_ehash_secret.56994 +ffffffff822859d0 d __print_once.61911 +ffffffff822859d1 d __print_once.61839 +ffffffff822859d8 D tcp_memory_pressure +ffffffff822859e0 D sysctl_tcp_mem +ffffffff822859f8 d __once.56974 +ffffffff822859fc D sysctl_tcp_max_orphans +ffffffff82285a00 D tcp_request_sock_ops +ffffffff82285a40 d tcp_metrics_hash_log +ffffffff82285a48 d tcp_metrics_hash +ffffffff82285a50 d __print_once.59135 +ffffffff82285a60 d hashrnd.62981 +ffffffff82285a70 d udp_encap_needed +ffffffff82285a80 d udp_busylocks +ffffffff82285a88 d udp_busylocks_log +ffffffff82285a8c d udp_ehash_secret.60149 +ffffffff82285a90 D sysctl_udp_wmem_min +ffffffff82285a94 D sysctl_udp_rmem_min +ffffffff82285aa0 D sysctl_udp_mem +ffffffff82285ac0 D udp_table +ffffffff82285ae0 D udplite_table +ffffffff82285b00 d arp_packet_type +ffffffff82285b38 D sysctl_icmp_msgs_burst +ffffffff82285b3c D sysctl_icmp_msgs_per_sec +ffffffff82285b40 d inet_af_ops +ffffffff82285ba0 d ip_packet_type +ffffffff82285be0 d ip_packet_offload +ffffffff82285c10 d trie_leaf_kmem +ffffffff82285c18 d fn_alias_kmem +ffffffff82285c20 D ip6tun_encaps +ffffffff82285c60 D iptun_encaps +ffffffff82285ca0 d sysctl_tcp_low_latency +ffffffff82285ca4 d conntrack4_net_id +ffffffff82285cc0 d nft_reject_ipv4_type +ffffffff82285d00 d tcp_bbr_cong_ops +ffffffff82285da0 d ipv6_packet_type +ffffffff82285de0 d inet6_ops +ffffffff82285e40 d ipv6_devconf_dflt +ffffffff82285f20 d ipv6_devconf +ffffffff82285fe8 d seed.61495 +ffffffff82285ff0 d fib6_node_kmem +ffffffff82286000 d udpv6_encap_needed +ffffffff82286010 d udp_ipv6_hash_secret.59540 +ffffffff82286014 d udp6_ehash_secret.59539 +ffffffff82286018 D sysctl_mld_qrv +ffffffff8228601c D sysctl_mld_max_msf +ffffffff82286020 D tcp6_request_sock_ops +ffffffff82286060 d nft_reject_ipv6_type +ffffffff822860a0 D ipv6_stub +ffffffff822860a8 d ip6_idents_hashrnd.55570 +ffffffff822860ac d ip6_proxy_idents_hashrnd.55553 +ffffffff822860c0 D inet6_offloads +ffffffff822868c0 D inet6_protos +ffffffff822870c0 d ipv6_packet_offload +ffffffff822870f0 d ipv6_hash_secret.55207 +ffffffff822870f4 d inet6_ehash_secret.55206 +ffffffff822870f8 d __print_once.58213 +ffffffff822870f9 d __print_once.58146 +ffffffff82287100 d sample_table +ffffffff82287150 d ioremap_huge_disabled +ffffffff82287154 d ioremap_pmd_capable +ffffffff82287158 d ioremap_pud_capable +ffffffff82287160 d backtrace_mask +ffffffff82287180 d height_to_maxnodes +ffffffff822871e0 d ptr_key +ffffffff822871f0 d have_filled_random_ptr_key +ffffffff822871f4 D kptr_restrict +ffffffff82287200 D _edata +ffffffff82287290 R __start_orc_unwind_ip +ffffffff823b0eec R __stop_orc_unwind_ip +ffffffff823b0eee R __start_orc_unwind +ffffffff8256f978 R __stop_orc_unwind +ffffffff8256f978 R orc_lookup +ffffffff8259fa04 R orc_lookup_end +ffffffff825a0000 D __vvar_beginning_hack +ffffffff825a0000 A __vvar_page +ffffffff825a0080 D vsyscall_gtod_data +ffffffff825a1000 A __init_begin +ffffffff825a1000 A __per_cpu_load +ffffffff825a1000 D init_per_cpu__irq_stack_union +ffffffff825a9000 D init_per_cpu__gdt_page +ffffffff825c2000 T _sinittext +ffffffff825c2000 T early_idt_handler_array +ffffffff825c2120 t early_idt_handler_common +ffffffff825c216c t reset_early_page_tables +ffffffff825c21b2 t copy_bootdata +ffffffff825c2253 T __early_make_pgtable +ffffffff825c23df T x86_64_start_reservations +ffffffff825c23ff T x86_64_start_kernel +ffffffff825c246b T early_make_pgtable +ffffffff825c2488 T reserve_bios_regions +ffffffff825c24db T x86_early_init_platform_quirks +ffffffff825c2565 t set_reset_devices +ffffffff825c2575 t debug_kernel +ffffffff825c2582 t quiet_kernel +ffffffff825c258f t init_setup +ffffffff825c25b5 t rdinit_setup +ffffffff825c25db t do_early_param +ffffffff825c2664 t initcall_blacklist +ffffffff825c2673 t loglevel +ffffffff825c26a4 t set_debug_rodata +ffffffff825c26b0 t repair_env_string +ffffffff825c2701 t set_init_arg +ffffffff825c2751 t unknown_bootoption +ffffffff825c28e3 T load_default_modules +ffffffff825c28e8 T parse_early_options +ffffffff825c290b T parse_early_param +ffffffff825c2944 W smp_setup_processor_id +ffffffff825c2945 W thread_stack_cache_init +ffffffff825c2946 W mem_encrypt_init +ffffffff825c2947 T start_kernel +ffffffff825c2c76 T do_one_initcall +ffffffff825c2d5b t kernel_init_freeable +ffffffff825c2ee7 t rootwait_setup +ffffffff825c2efe t root_data_setup +ffffffff825c2f0b t fs_names_setup +ffffffff825c2f18 t load_ramdisk +ffffffff825c2f30 t root_delay_setup +ffffffff825c2f45 t root_dev_setup +ffffffff825c2f5f t readonly +ffffffff825c2f73 t readwrite +ffffffff825c2f87 T init_rootfs +ffffffff825c2feb T mount_block_root +ffffffff825c3272 T mount_root +ffffffff825c32d4 T prepare_namespace +ffffffff825c342c t default_rootfs +ffffffff825c348b t lpj_setup +ffffffff825c34a1 t vdso_setup +ffffffff825c34b3 T init_vdso_image +ffffffff825c34d7 t init_vdso +ffffffff825c3506 T merge_attr +ffffffff825c358b t init_hw_perf_events +ffffffff825c3ad0 t amd_ibs_init +ffffffff825c3c00 t msr_init +ffffffff825c3ca5 t intel_ht_bug +ffffffff825c3cce t intel_clovertown_quirk +ffffffff825c3ced t intel_nehalem_quirk +ffffffff825c3d1a t intel_arch_events_quirk +ffffffff825c3d82 t get_hsw_events_attrs +ffffffff825c3dab t intel_sandybridge_quirk +ffffffff825c3dc5 t fixup_ht_bug +ffffffff825c3e58 T intel_pmu_init +ffffffff825c50a7 t bts_init +ffffffff825c515d T intel_pmu_pebs_data_source_nhm +ffffffff825c5183 T intel_pmu_pebs_data_source_skl +ffffffff825c51f3 T intel_ds_init +ffffffff825c5335 T knc_pmu_init +ffffffff825c5439 T intel_pmu_lbr_init_core +ffffffff825c5465 T intel_pmu_lbr_init_nhm +ffffffff825c54a7 T intel_pmu_lbr_init_snb +ffffffff825c54e9 T intel_pmu_lbr_init_skl +ffffffff825c552b T intel_pmu_lbr_init_atom +ffffffff825c5575 T intel_pmu_lbr_init_slm +ffffffff825c55c2 T p4_pmu_init +ffffffff825c573d t p6_pmu_rdpmc_quirk +ffffffff825c575e T p6_pmu_init +ffffffff825c58ad t pt_init +ffffffff825c5ba1 t init_real_mode +ffffffff825c5d3f T set_real_mode_mem +ffffffff825c5d62 T reserve_real_mode +ffffffff825c5dd0 T trap_init +ffffffff825c5e2d T idt_setup_early_traps +ffffffff825c5e52 T idt_setup_traps +ffffffff825c5e6f T idt_setup_early_pf +ffffffff825c5e8c T idt_setup_ist_traps +ffffffff825c5ea9 T idt_setup_debugidt_traps +ffffffff825c5ed6 T idt_setup_apic_and_irq_gates +ffffffff825c5fa5 T idt_setup_early_handler +ffffffff825c5fcf T update_intr_gate +ffffffff825c5fe1 t x86_late_time_init +ffffffff825c5ff8 T hpet_time_init +ffffffff825c6025 T time_init +ffffffff825c6031 t code_bytes_setup +ffffffff825c6074 t setup_unknown_nmi_panic +ffffffff825c6084 t nmi_warning_debugfs +ffffffff825c6087 t parse_reservelow +ffffffff825c60c6 t register_kernel_offset_dumper +ffffffff825c60dc T extend_brk +ffffffff825c612a T reserve_standard_io_resources +ffffffff825c615e T setup_arch +ffffffff825c68d9 T x86_init_uint_noop +ffffffff825c68da T iommu_init_noop +ffffffff825c68dd T bool_x86_init_noop +ffffffff825c68e0 t i8259A_init_ops +ffffffff825c68fc T init_ISA_irqs +ffffffff825c694b T init_IRQ +ffffffff825c6993 T native_init_IRQ +ffffffff825c69cd T arch_jump_label_transform_static +ffffffff825c6aec t romsignature +ffffffff825c6b16 t romchecksum +ffffffff825c6b6b T probe_roms +ffffffff825c6d45 t control_va_addr_alignment +ffffffff825c6e03 t boot_params_ksysfs_init +ffffffff825c704e t sbf_init +ffffffff825c7114 t cpcompare +ffffffff825c714d t e820_print_type +ffffffff825c71d1 t e820__register_nvs_regions +ffffffff825c7204 t __e820__range_add +ffffffff825c723d t __e820__range_update +ffffffff825c73d4 t e820_end_pfn.constprop.2 +ffffffff825c7444 T e820__mapped_all +ffffffff825c74cb T e820__range_add +ffffffff825c74df t __append_e820_table +ffffffff825c751a T e820__print_table +ffffffff825c7583 T e820__update_table +ffffffff825c7787 T e820__range_update +ffffffff825c779e T e820__range_remove +ffffffff825c78dc t parse_memopt +ffffffff825c7944 t parse_memmap_opt +ffffffff825c7a7b T e820__update_table_print +ffffffff825c7aa4 T e820__setup_pci_gap +ffffffff825c7b46 T e820__reallocate_tables +ffffffff825c7bf7 T e820__memory_setup_extended +ffffffff825c7c78 T e820__register_nosave_regions +ffffffff825c7c79 T e820__memblock_alloc_reserved +ffffffff825c7cc8 T e820__end_of_ram_pfn +ffffffff825c7cd7 T e820__end_of_low_ram_pfn +ffffffff825c7ce1 T e820__reserve_setup_data +ffffffff825c7d88 T e820__finish_early_params +ffffffff825c7dc6 T e820__reserve_resources +ffffffff825c7f22 T e820__reserve_resources_late +ffffffff825c7ff9 T e820__memory_setup_default +ffffffff825c808a T e820__memory_setup +ffffffff825c80d6 T e820__memblock_setup +ffffffff825c8131 t pci_iommu_init +ffffffff825c816b t iommu_setup +ffffffff825c83da T pci_iommu_alloc +ffffffff825c8441 T early_platform_quirks +ffffffff825c847d t enable_cpu0_hotplug +ffffffff825c848d t topology_init +ffffffff825c84bb t arch_kdebugfs_init +ffffffff825c84c9 t debug_alt +ffffffff825c84d9 t setup_noreplace_smp +ffffffff825c84e9 t add_nops +ffffffff825c851e t optimize_nops +ffffffff825c85c4 T arch_init_ideal_nops +ffffffff825c861f T alternatives_smp_module_del +ffffffff825c868a T text_poke_early +ffffffff825c8698 T apply_alternatives +ffffffff825c89de T alternatives_smp_module_add +ffffffff825c8b08 T alternative_instructions +ffffffff825c8bbc T setup_pit_timer +ffffffff825c8bd2 T notsc_setup +ffffffff825c8bee t cpufreq_register_tsc_scaling +ffffffff825c8c18 t init_tsc_clocksource +ffffffff825c8cda t tsc_setup +ffffffff825c8d1e T tsc_early_delay_calibrate +ffffffff825c8d6f T tsc_init +ffffffff825c8fca t io_delay_param +ffffffff825c906b t dmi_io_delay_0xed_port +ffffffff825c9091 T io_delay_init +ffffffff825c90a7 t add_rtc_cmos +ffffffff825c916b t find_dependents_of +ffffffff825c918a T sort_iommu_table +ffffffff825c9226 T check_iommu_entries +ffffffff825c92bb t idle_setup +ffffffff825c935a T arch_post_acpi_subsys_init +ffffffff825c93a5 T fpu__get_supported_xfeatures_mask +ffffffff825c93ab T fpu__init_system +ffffffff825c95aa T fpu__init_check_bugs +ffffffff825c95f5 t setup_xstate_comp +ffffffff825c96de t print_xstate_feature +ffffffff825c9725 T fpu__init_system_xstate +ffffffff825c9be5 T update_regset_xstate_info +ffffffff825c9bf6 t setup_clearcpuid +ffffffff825c9bfc t setup_disable_smap +ffffffff825c9c0c t setup_noclflush +ffffffff825c9c26 t setup_disable_pku +ffffffff825c9c3f t setup_disable_smep +ffffffff825c9c5b t init_cpu_syscore +ffffffff825c9c6a t x86_mpx_setup +ffffffff825c9c9f t x86_nopcid_setup +ffffffff825c9cd3 t x86_noinvpcid_setup +ffffffff825c9d08 T setup_cpu_local_masks +ffffffff825c9d09 T early_cpu_init +ffffffff825c9eee T identify_boot_cpu +ffffffff825c9f5d t x86_rdrand_setup +ffffffff825c9f77 T check_bugs +ffffffff825ca23b t forcempx_setup +ffffffff825ca24b t ring3mwait_disable +ffffffff825ca255 t mcheck_disable +ffffffff825ca262 t mcheck_enable +ffffffff825ca3fa t mcheck_late_init +ffffffff825ca420 t mcheck_init_device +ffffffff825ca542 T mcheck_init +ffffffff825ca5ba T mcheck_vendor_init_severity +ffffffff825ca5cf t int_pln_enable_setup +ffffffff825ca5dc t thermal_throttle_init_device +ffffffff825ca619 T mcheck_intel_therm_init +ffffffff825ca642 t mtrr_init_finialize +ffffffff825ca67c T set_mtrr_ops +ffffffff825ca67d T mtrr_bp_init +ffffffff825ca815 t mtrr_if_init +ffffffff825ca86e t print_fixed_last.part.2 +ffffffff825ca8a3 t print_fixed +ffffffff825ca90f T mtrr_state_warn +ffffffff825ca96a T mtrr_bp_pat_init +ffffffff825ca981 T get_mtrr_state +ffffffff825cabe5 t disable_mtrr_cleanup_setup +ffffffff825cabf2 t enable_mtrr_cleanup_setup +ffffffff825cabff t mtrr_cleanup_debug_setup +ffffffff825cac0c t disable_mtrr_trim_setup +ffffffff825cac19 t parse_mtrr_chunk_size_opt +ffffffff825cac3b t parse_mtrr_gran_size_opt +ffffffff825cac5d t mtrr_print_out_one_result +ffffffff825cad61 t x86_get_mtrr_mem_range +ffffffff825cae70 t set_var_mtrr_all +ffffffff825caeee t real_trim_memory +ffffffff825caf08 t range_to_mtrr +ffffffff825caf85 t range_to_mtrr_with_hole +ffffffff825cb0d8 t parse_mtrr_spare_reg +ffffffff825cb0f0 t x86_setup_var_mtrrs.constprop.3 +ffffffff825cb22d t mtrr_calc_range_state.constprop.2 +ffffffff825cb367 T mtrr_cleanup +ffffffff825cb6e3 T amd_special_default_mtrr +ffffffff825cb71b T mtrr_trim_uncached_memory +ffffffff825cb9f3 t save_microcode_in_initrd +ffffffff825cba44 T microcode_init +ffffffff825cbc14 T load_ucode_bsp +ffffffff825cbd27 T init_intel_microcode +ffffffff825cbd7d T load_ucode_intel_bsp +ffffffff825cbda5 T save_microcode_in_initrd_intel +ffffffff825cbe3d t acpi_parse_sbf +ffffffff825cbe4a t parse_acpi_skip_timer_override +ffffffff825cbe57 t parse_acpi_use_timer_override +ffffffff825cbe64 t hpet_insert_resource +ffffffff825cbe82 t acpi_parse_madt +ffffffff825cbede t acpi_parse_lapic_addr_ovr +ffffffff825cbf10 t acpi_parse_lapic_nmi +ffffffff825cbf4c t acpi_parse_x2apic_nmi +ffffffff825cbf88 t acpi_parse_nmi_src +ffffffff825cbfa9 t acpi_parse_ioapic +ffffffff825cc01c t mp_register_ioapic_irq +ffffffff825cc0a3 t mp_override_legacy_irq +ffffffff825cc10d t acpi_sci_ioapic_setup +ffffffff825cc183 t acpi_parse_int_src_ovr +ffffffff825cc242 t parse_pci +ffffffff825cc26e t disable_acpi_pci +ffffffff825cc29e t disable_acpi_irq +ffffffff825cc2c4 t dmi_disable_acpi +ffffffff825cc30c t acpi_parse_fadt +ffffffff825cc3a3 t dmi_ignore_irq0_timer_override +ffffffff825cc3c9 t acpi_parse_lapic +ffffffff825cc40d t acpi_parse_sapic +ffffffff825cc44f t acpi_parse_x2apic +ffffffff825cc47c t acpi_parse_hpet +ffffffff825cc58e t parse_acpi +ffffffff825cc69c t setup_acpi_sci +ffffffff825cc739 T __acpi_map_table +ffffffff825cc74b T __acpi_unmap_table +ffffffff825cc75b T acpi_pic_sci_set_trigger +ffffffff825cc7d9 T acpi_boot_table_init +ffffffff825cc853 T early_acpi_boot_init +ffffffff825cc93a T acpi_boot_init +ffffffff825ccdb6 T acpi_mps_check +ffffffff825ccddb T arch_reserve_mem_area +ffffffff825ccdea t acpi_sleep_setup +ffffffff825ccf0c t ffh_cstate_init +ffffffff825ccf31 t reboot_init +ffffffff825ccf69 t set_acpi_reboot +ffffffff825ccf96 t set_bios_reboot +ffffffff825ccfc3 t set_pci_reboot +ffffffff825ccff0 t set_kbd_reboot +ffffffff825cd01d t via_bugs +ffffffff825cd01e t nvidia_hpet_check +ffffffff825cd021 t gen9_stolen_size +ffffffff825cd05a t chv_stolen_size +ffffffff825cd0a9 t gen8_stolen_size +ffffffff825cd0c6 t gen6_stolen_size +ffffffff825cd0e7 t gen3_stolen_size +ffffffff825cd1a8 t i830_stolen_size +ffffffff825cd1e6 t early_pci_scan_bus +ffffffff825cd2fd t i85x_stolen_base +ffffffff825cd341 t i845_tseg_size +ffffffff825cd375 t i865_stolen_base +ffffffff825cd397 t i845_stolen_base +ffffffff825cd3c4 t force_disable_hpet +ffffffff825cd3d7 t gen3_stolen_base +ffffffff825cd3f2 t ati_bugs_contd +ffffffff825cd496 t intel_graphics_quirks +ffffffff825cd56b t intel_remapping_check +ffffffff825cd5c4 t fix_hypertransport_config +ffffffff825cd643 t apple_airport_reset +ffffffff825cd7e1 t ati_bugs +ffffffff825cd8c3 t nvidia_bugs +ffffffff825cd90a t i830_stolen_base +ffffffff825cd95e T early_quirks +ffffffff825cd96f t nonmi_ipi_setup +ffffffff825cd97c t cpu_init_udelay +ffffffff825cd994 t _setup_possible_cpus +ffffffff825cd9ac t disable_smp +ffffffff825cda30 T smp_store_boot_cpu_info +ffffffff825cda70 T native_smp_prepare_cpus +ffffffff825cdc7e T native_smp_prepare_boot_cpu +ffffffff825cdca0 T calculate_max_logical_packages +ffffffff825cdcdf T native_smp_cpus_done +ffffffff825cdd7b T prefill_possible_map +ffffffff825cdeba t pcpu_cpu_distance +ffffffff825cdec0 t pcpup_populate_pte +ffffffff825cdec5 t pcpu_fc_free +ffffffff825cdeec t pcpu_fc_alloc +ffffffff825cdf26 T setup_per_cpu_areas +ffffffff825ce0f8 t parse_lapic_timer_c2_ok +ffffffff825ce105 t parse_disable_apic_timer +ffffffff825ce112 t parse_lapic +ffffffff825ce139 t setup_disableapic +ffffffff825ce150 t setup_nolapic +ffffffff825ce167 t setup_apicpmtimer +ffffffff825ce171 t lapic_cal_handler +ffffffff825ce227 t validate_x2apic +ffffffff825ce249 t init_lapic_sysfs +ffffffff825ce265 t lapic_insert_resource +ffffffff825ce29f t apic_set_disabled_cpu_apicid +ffffffff825ce2c7 t apic_set_extnmi +ffffffff825ce35c t apic_set_verbosity +ffffffff825ce3c6 t parse_nolapic_timer +ffffffff825ce3d3 T apic_set_eoi_write +ffffffff825ce3fa T setup_boot_APIC_clock +ffffffff825ce8ed T sync_Arb_IDs +ffffffff825ce95c T init_bsp_APIC +ffffffff825ce9e0 T enable_IR_x2apic +ffffffff825cea4b T register_lapic_address +ffffffff825ceae3 T init_apic_mappings +ffffffff825cebfe T apic_bsp_setup +ffffffff825cec73 T apic_intr_mode_init +ffffffff825cedfb t print_APIC_field +ffffffff825cee4c t setup_show_lapic +ffffffff825cee9d t print_local_APIC +ffffffff825cf0ec t print_ICs +ffffffff825cf1ce T arch_probe_nr_irqs +ffffffff825cf21f T lapic_assign_system_vectors +ffffffff825cf2b5 T arch_early_irq_init +ffffffff825cf345 t register_nmi_cpu_backtrace_handler +ffffffff825cf356 t parse_noapic +ffffffff825cf377 t notimercheck +ffffffff825cf387 t disable_timer_pin_setup +ffffffff825cf394 t find_isa_irq_pin +ffffffff825cf3e6 t find_isa_irq_apic +ffffffff825cf459 t timer_irq_works +ffffffff825cf52e t ioapic_init_ops +ffffffff825cf53d T io_apic_init_mappings +ffffffff825cf6ac T arch_early_ioapic_init +ffffffff825cf6ec T print_IO_APICs +ffffffff825cf9b8 T enable_IO_APIC +ffffffff825cfaaa T ioapic_insert_resources +ffffffff825cfafc T setup_IO_APIC +ffffffff825d023e T arch_init_msi_domain +ffffffff825d02a6 T default_setup_apic_routing +ffffffff825d0310 T default_acpi_madt_oem_check +ffffffff825d037c t disable_hpet +ffffffff825d0389 t hpet_setup +ffffffff825d042d T hpet_enable +ffffffff825d06ec t hpet_late_init +ffffffff825d07f8 T pci_swiotlb_detect_override +ffffffff825d0812 T pci_swiotlb_detect_4gb +ffffffff825d0839 t pci_xen_swiotlb_detect +ffffffff825d083c T pci_swiotlb_init +ffffffff825d0858 T pci_swiotlb_late_init +ffffffff825d0877 t sysfb_init +ffffffff825d08ec t efifb_set_system +ffffffff825d0a85 T sysfb_apply_efi_quirks +ffffffff825d0aa4 T unwind_init +ffffffff825d0c19 t set_check_enable_amd_mmconf +ffffffff825d0c26 T vsmp_init +ffffffff825d0cea t parse_direct_gbpages_on +ffffffff825d0cf7 t parse_direct_gbpages_off +ffffffff825d0d04 T early_alloc_pgt_buf +ffffffff825d0d4c t init_range_memory_mapping +ffffffff825d0e3d t memory_map_bottom_up +ffffffff825d0ea5 T init_mem_mapping +ffffffff825d11d7 T memblock_find_dma_reserve +ffffffff825d132d T zone_sizes_init +ffffffff825d137a t __init_extra_mapping +ffffffff825d150e t nonx32_setup +ffffffff825d1552 T populate_extra_pmd +ffffffff825d157b T populate_extra_pte +ffffffff825d1590 T init_extra_mapping_wb +ffffffff825d1597 T init_extra_mapping_uc +ffffffff825d15a1 T cleanup_highmap +ffffffff825d161b T initmem_init +ffffffff825d162f T paging_init +ffffffff825d1643 T mem_init +ffffffff825d165e T arch_ioremap_pud_supported +ffffffff825d166d T arch_ioremap_pmd_supported +ffffffff825d1673 T early_memremap_pgprot_adjust +ffffffff825d1677 T is_early_ioremap_ptep +ffffffff825d168e T early_ioremap_init +ffffffff825d17f1 T __early_set_fixmap +ffffffff825d18af T early_fixup_exception +ffffffff825d18fb t pat_debug_setup +ffffffff825d1908 t nopat +ffffffff825d1929 t setup_userpte +ffffffff825d1951 T reserve_top_address +ffffffff825d1952 t noexec_setup +ffffffff825d19ad T x86_report_nx +ffffffff825d19e8 t create_tlb_single_page_flush_ceiling +ffffffff825d19eb t cea_map_percpu_pages +ffffffff825d1a42 T setup_cpu_entry_areas +ffffffff825d1be0 t create_init_pkru_value +ffffffff825d1be3 t setup_init_pkru +ffffffff825d1c05 T kernel_randomize_memory +ffffffff825d1d61 t aes_init +ffffffff825d1d6d t des3_ede_x86_init +ffffffff825d1dab t aesni_init +ffffffff825d1faa T crypto_fpu_init +ffffffff825d1fb6 t crc32c_intel_mod_init +ffffffff825d2005 t sha1_ssse3_mod_init +ffffffff825d20b1 t sha256_ssse3_mod_init +ffffffff825d218a t setup_storage_paranoia +ffffffff825d2194 T efi_apply_memmap_quirks +ffffffff825d21c9 T efi_reuse_config +ffffffff825d2316 T efi_arch_mem_reserve +ffffffff825d246d T efi_reserve_boot_services +ffffffff825d2529 T efi_free_boot_services +ffffffff825d269a t setup_add_efi_memmap +ffffffff825d26a7 t efi_clean_memmap +ffffffff825d2827 t arch_parse_efi_cmdline +ffffffff825d285c T efi_set_executable +ffffffff825d2899 T efi_memblock_x86_reserve_range +ffffffff825d29b5 T efi_print_memmap +ffffffff825d2a45 T efi_memory_uc +ffffffff825d2a71 T old_map_region +ffffffff825d2aed T runtime_code_page_mkexec +ffffffff825d2b2a T efi_find_mirror +ffffffff825d2ba9 T efi_init +ffffffff825d2fd8 T efi_enter_virtual_mode +ffffffff825d3387 t efi_update_mappings +ffffffff825d3413 t efi_update_mem_attr +ffffffff825d343f t early_code_mapping_set_exec +ffffffff825d348d t __map_region +ffffffff825d34e0 T efi_ioremap +ffffffff825d3552 T efi_call_phys_prolog +ffffffff825d3767 T efi_call_phys_epilog +ffffffff825d38fa T efi_map_region +ffffffff825d39ad T efi_map_region_fixed +ffffffff825d39c7 T efi_alloc_page_tables +ffffffff825d3a77 T efi_setup_page_tables +ffffffff825d3b30 T efi_runtime_update_mappings +ffffffff825d3bec T efi_dump_pagetable +ffffffff825d3bed T parse_efi_setup +ffffffff825d3bf9 t coredump_filter_setup +ffffffff825d3c18 W arch_task_cache_init +ffffffff825d3c19 T fork_init +ffffffff825d3d0f T proc_caches_init +ffffffff825d3df8 t proc_execdomains_init +ffffffff825d3e12 t oops_setup +ffffffff825d3e3a t alloc_frozen_cpus +ffffffff825d3e3d t cpu_hotplug_pm_sync_init +ffffffff825d3e4c t cpuhp_sysfs_init +ffffffff825d3eb4 T cpuhp_threads_init +ffffffff825d3eda T boot_cpu_init +ffffffff825d3f0e T boot_cpu_state_init +ffffffff825d3f2f t spawn_ksoftirqd +ffffffff825d3f6a T softirq_init +ffffffff825d3fe5 t ioresources_init +ffffffff825d4016 t strict_iomem +ffffffff825d405a t reserve_setup +ffffffff825d4142 T reserve_region_with_split +ffffffff825d42b2 T sysctl_init +ffffffff825d42c1 t file_caps_disable +ffffffff825d42d1 t uid_cache_init +ffffffff825d435d t setup_print_fatal_signals +ffffffff825d4378 T signals_init +ffffffff825d439e t wq_sysfs_init +ffffffff825d43c4 T workqueue_init +ffffffff825d4528 T workqueue_init_early +ffffffff825d4802 T pid_idr_init +ffffffff825d48a0 T sort_main_extable +ffffffff825d48d9 t locate_module_kobject +ffffffff825d4972 t param_sysfs_init +ffffffff825d4c67 T nsproxy_cache_init +ffffffff825d4c8f t ksysfs_init +ffffffff825d4d1d T cred_init +ffffffff825d4d40 t reboot_setup +ffffffff825d4e20 T idle_thread_set_boot_cpu +ffffffff825d4e47 T idle_threads_init +ffffffff825d4ec9 t user_namespace_sysctl_init +ffffffff825d4ef8 t migration_init +ffffffff825d4f27 T sched_init_smp +ffffffff825d4f85 T sched_init +ffffffff825d536a t sched_clock_init_late +ffffffff825d53d9 T init_sched_fair_class +ffffffff825d5404 T init_sched_rt_class +ffffffff825d543e T init_sched_dl_class +ffffffff825d5478 T wait_bit_init +ffffffff825d54b1 t setup_relax_domain_level +ffffffff825d54d5 t setup_autogroup +ffffffff825d54e5 T autogroup_init +ffffffff825d552c t housekeeping_setup +ffffffff825d55ed t housekeeping_nohz_full_setup +ffffffff825d55f7 t housekeeping_isolcpus_setup +ffffffff825d5684 T housekeeping_init +ffffffff825d569a t pm_qos_power_init +ffffffff825d5700 t pm_init +ffffffff825d5762 t mem_sleep_default_setup +ffffffff825d579e T pm_states_init +ffffffff825d57c0 T pm_autosleep_init +ffffffff825d581a t console_suspend_disable +ffffffff825d5827 t log_buf_len_update +ffffffff825d5853 t log_buf_len_setup +ffffffff825d586b t console_msg_format_setup +ffffffff825d58ad t control_devkmsg +ffffffff825d58f5 t console_setup +ffffffff825d59b3 T setup_log_buf +ffffffff825d5b2b t ignore_loglevel_setup +ffffffff825d5b41 t keep_bootcon_setup +ffffffff825d5b5a T console_init +ffffffff825d5b7d t printk_late_init +ffffffff825d5c8e T dump_stack_set_arch_desc +ffffffff825d5ce3 T printk_safe_init +ffffffff825d5d5b t irq_affinity_setup +ffffffff825d5d84 t irq_sysfs_init +ffffffff825d5e13 T early_irq_init +ffffffff825d5ebe t setup_forced_irqthreads +ffffffff825d5ec8 t irqfixup_setup +ffffffff825d5ef0 t irqpoll_setup +ffffffff825d5f18 t irq_pm_init_ops +ffffffff825d5f27 T irq_alloc_matrix +ffffffff825d5f92 t rcu_set_runtime_mode +ffffffff825d5f9f t check_cpu_stall_init +ffffffff825d5fb5 t rcu_spawn_tasks_kthread +ffffffff825d5ff4 T rcupdate_announce_bootup_oddness +ffffffff825d6089 t srcu_bootup_announce +ffffffff825d60b4 t rcu_spawn_gp_kthread +ffffffff825d61ac t rcu_init_one +ffffffff825d6447 T rcu_init +ffffffff825d6752 t kcmp_cookies_init +ffffffff825d6785 T init_timers +ffffffff825d6805 t setup_hrtimer_hres +ffffffff825d681a T hrtimers_init +ffffffff825d6899 t timekeeping_init_ops +ffffffff825d68a8 T timekeeping_init +ffffffff825d6a28 t ntp_tick_adj_setup +ffffffff825d6a48 T ntp_init +ffffffff825d6a4d t clocksource_done_booting +ffffffff825d6a8a t boot_override_clocksource +ffffffff825d6ac6 t init_clocksource_sysfs +ffffffff825d6b2a t boot_override_clock +ffffffff825d6b6c t init_jiffies_clocksource +ffffffff825d6b7f W clocksource_default_clock +ffffffff825d6b87 t init_timer_list_procfs +ffffffff825d6bab t alarmtimer_init +ffffffff825d6cb5 t init_posix_timers +ffffffff825d6cda t clockevents_init_sysfs +ffffffff825d6d9e T tick_init +ffffffff825d6da3 T tick_broadcast_init +ffffffff825d6de6 t setup_tick_nohz +ffffffff825d6dfb t skew_tick +ffffffff825d6e13 t futex_init +ffffffff825d6ed8 t nrcpus +ffffffff825d6f0a T setup_nr_cpu_ids +ffffffff825d6f24 T smp_init +ffffffff825d6fce T call_function_init +ffffffff825d7014 t nosmp +ffffffff825d7026 t maxcpus +ffffffff825d704c t cgroup_disable +ffffffff825d70e9 t cgroup_sysfs_init +ffffffff825d70fc t cgroup_wq_init +ffffffff825d7125 t cgroup_init_subsys +ffffffff825d727f T cgroup_init_early +ffffffff825d732d T cgroup_init +ffffffff825d769e T cgroup_stat_boot +ffffffff825d76ea t cgroup_namespaces_init +ffffffff825d76ed t cgroup_no_v1 +ffffffff825d77b2 t cgroup1_wq_init +ffffffff825d77db t user_namespaces_init +ffffffff825d7803 t pid_namespaces_init +ffffffff825d783e t cpu_stop_init +ffffffff825d78c6 t seccomp_sysctl_init +ffffffff825d78ed t utsname_sysctl_init +ffffffff825d78fc t delayacct_setup_disable +ffffffff825d790c t taskstats_init +ffffffff825d793e T taskstats_init_early +ffffffff825d79b8 t bpf_init +ffffffff825d79fd t dev_map_init +ffffffff825d7a0c t bpf_offload_init +ffffffff825d7a1b t perf_event_sysfs_init +ffffffff825d7a80 T perf_event_init +ffffffff825d7bd2 T init_hw_breakpoint +ffffffff825d7cdc T jump_label_init +ffffffff825d7dae T jump_label_invalidate_initmem +ffffffff825d7de3 t system_trusted_keyring_init +ffffffff825d7e3f t load_system_certificate_list +ffffffff825d7f24 T pagecache_init +ffffffff825d7f61 t oom_init +ffffffff825d7f8c t find_min_pfn_for_node +ffffffff825d8001 t cmdline_parse_kernelcore +ffffffff825d804a t cmdline_parse_movablecore +ffffffff825d8070 t build_all_zonelists_init +ffffffff825d80ec T page_alloc_init_late +ffffffff825d811d T __free_pages_bootmem +ffffffff825d818e T setup_per_cpu_pageset +ffffffff825d81ea T free_bootmem_with_active_regions +ffffffff825d8278 T sparse_memory_present_with_active_regions +ffffffff825d82d9 T absent_pages_in_range +ffffffff825d82e9 T node_map_pfn_alignment +ffffffff825d83a7 T find_min_pfn_with_active_regions +ffffffff825d83b1 T free_area_init_nodes +ffffffff825d8890 T mem_init_print_info +ffffffff825d8a46 T set_dma_reserve +ffffffff825d8a4e T free_area_init +ffffffff825d8a88 T page_alloc_init +ffffffff825d8aa7 T alloc_large_system_hash +ffffffff825d8cbb T page_writeback_init +ffffffff825d8d17 T swap_setup +ffffffff825d8d3a t kswapd_init +ffffffff825d8d69 T shmem_init +ffffffff825d8e39 T init_mm_internals +ffffffff825d8ff0 t bdi_class_init +ffffffff825d901f t default_bdi_init +ffffffff825d90c8 t mm_compute_batch_init +ffffffff825d9117 t mm_sysfs_init +ffffffff825d913b t percpu_enable_async +ffffffff825d9145 t pcpu_alloc_first_chunk +ffffffff825d93a3 t percpu_alloc_setup +ffffffff825d9400 T pcpu_alloc_alloc_info +ffffffff825d9470 t pcpu_build_alloc_info +ffffffff825d97d1 T pcpu_free_alloc_info +ffffffff825d97fc T pcpu_setup_first_chunk +ffffffff825d9e94 T pcpu_embed_first_chunk +ffffffff825da14a T pcpu_page_first_chunk +ffffffff825da4bc t setup_slab_nomerge +ffffffff825da4c9 T create_boot_cache +ffffffff825da556 T create_kmalloc_cache +ffffffff825da5e5 t new_kmalloc_cache +ffffffff825da614 T setup_kmalloc_cache_index_table +ffffffff825da615 T create_kmalloc_caches +ffffffff825da709 t kcompactd_init +ffffffff825da74b t workingset_init +ffffffff825da7c8 t disable_randmaps +ffffffff825da7d8 t init_zero_pfn +ffffffff825da80b t cmdline_parse_stack_guard_gap +ffffffff825da831 T mmap_init +ffffffff825da84b T anon_vma_init +ffffffff825da897 t proc_vmalloc_init +ffffffff825da8b4 T vmalloc_init +ffffffff825da9a5 T vm_area_add_early +ffffffff825da9f5 T vm_area_register_early +ffffffff825daa36 t __alloc_memory_core_early +ffffffff825daad9 t ___alloc_bootmem_nopanic +ffffffff825dab2e t ___alloc_bootmem.part.1 +ffffffff825dab2e t ___alloc_bootmem_node.part.3 +ffffffff825dab49 T free_bootmem_late +ffffffff825dab95 T reset_all_zones_managed_pages +ffffffff825dabdd T free_all_bootmem +ffffffff825dad45 T free_bootmem_node +ffffffff825dad50 T free_bootmem +ffffffff825dad55 T __alloc_bootmem_nopanic +ffffffff825dad5e T __alloc_bootmem +ffffffff825dad7a T ___alloc_bootmem_node_nopanic +ffffffff825dadd9 T __alloc_bootmem_node_nopanic +ffffffff825dae21 T __alloc_bootmem_node +ffffffff825dae77 T __alloc_bootmem_node_high +ffffffff825dae79 T __alloc_bootmem_low +ffffffff825dae96 T __alloc_bootmem_low_nopanic +ffffffff825daea0 T __alloc_bootmem_low_node +ffffffff825daef9 t early_memblock +ffffffff825daf1c t memblock_alloc_range_nid +ffffffff825daf52 T memblock_alloc_range +ffffffff825daf5b t memblock_virt_alloc_internal +ffffffff825db06e T memblock_alloc_nid +ffffffff825db0b0 T __memblock_alloc_base +ffffffff825db0c1 T memblock_alloc_base +ffffffff825db0f1 T memblock_alloc +ffffffff825db0f5 T memblock_alloc_try_nid +ffffffff825db116 T memblock_virt_alloc_try_nid_raw +ffffffff825db175 T memblock_virt_alloc_try_nid_nopanic +ffffffff825db1ea T memblock_virt_alloc_try_nid +ffffffff825db280 T __memblock_free_early +ffffffff825db2c5 T __memblock_free_late +ffffffff825db33f T memblock_discard +ffffffff825db3e6 T memblock_mem_size +ffffffff825db43a T memblock_enforce_memory_limit +ffffffff825db478 T memblock_cap_memory_range +ffffffff825db558 T memblock_mem_limit_remove_map +ffffffff825db573 T memblock_is_reserved +ffffffff825db58f T memblock_allow_resize +ffffffff825db59a t alloc_usemap_and_memmap +ffffffff825db745 t sparse_early_mem_maps_alloc_node +ffffffff825db74a t sparse_early_usemaps_alloc_node +ffffffff825db7d2 T node_memmap_size_bytes +ffffffff825db86a T memory_present +ffffffff825db966 T sparse_init +ffffffff825dbb6a T sparse_mem_maps_populate_node +ffffffff825dbce0 t setup_slub_min_order +ffffffff825dbcfb t setup_slub_max_order +ffffffff825dbd2f t setup_slub_min_objects +ffffffff825dbd4a T kmem_cache_init_late +ffffffff825dbd4b t bootstrap +ffffffff825dbe11 T kmem_cache_init +ffffffff825dbef6 t slab_sysfs_init +ffffffff825dbfeb t hugepage_init +ffffffff825dc11a t setup_transparent_hugepage +ffffffff825dc1ae T khugepaged_init +ffffffff825dc1fd T khugepaged_destroy +ffffffff825dc209 t init_cleancache +ffffffff825dc20c t early_ioremap_debug_setup +ffffffff825dc20f t check_early_ioremap_leak +ffffffff825dc231 t __early_ioremap +ffffffff825dc30a W early_ioremap_shutdown +ffffffff825dc30b T early_ioremap_reset +ffffffff825dc31b T early_ioremap_setup +ffffffff825dc374 T early_iounmap +ffffffff825dc3fd T early_ioremap +ffffffff825dc40c T early_memremap +ffffffff825dc433 T early_memremap_ro +ffffffff825dc45a T copy_from_early_mem +ffffffff825dc4cd T early_memunmap +ffffffff825dc4d2 T files_init +ffffffff825dc50e T files_maxfiles_init +ffffffff825dc568 T chrdev_init +ffffffff825dc583 t init_pipe_fs +ffffffff825dc5c5 t fcntl_init +ffffffff825dc5ea t set_dhash_entries +ffffffff825dc60e T vfs_caches_init_early +ffffffff825dc678 T vfs_caches_init +ffffffff825dc6f2 t set_ihash_entries +ffffffff825dc716 T inode_init +ffffffff825dc73d T inode_init_early +ffffffff825dc77c t proc_filesystems_init +ffffffff825dc796 T get_filesystem_list +ffffffff825dc811 t set_mhash_entries +ffffffff825dc835 t set_mphash_entries +ffffffff825dc859 T mnt_init +ffffffff825dca27 t start_dirtytime_writeback +ffffffff825dca4c T nsfs_init +ffffffff825dca82 T buffer_init +ffffffff825dcae1 t blkdev_init +ffffffff825dcb06 T bdev_cache_init +ffffffff825dcb76 t dio_init +ffffffff825dcb9e t fsnotify_init +ffffffff825dcbe2 t inotify_user_setup +ffffffff825dcc25 t fanotify_user_setup +ffffffff825dcc72 t eventpoll_init +ffffffff825dcd11 t anon_inode_init +ffffffff825dcd67 t aio_setup +ffffffff825dcddd t proc_locks_init +ffffffff825dcdf7 t filelock_init +ffffffff825dce7e t init_script_binfmt +ffffffff825dce8f t init_elf_binfmt +ffffffff825dcea0 t mbcache_init +ffffffff825dcecc T proc_init_inodecache +ffffffff825dcef3 T proc_root_init +ffffffff825dcf80 T set_proc_pid_nlink +ffffffff825dcfdb T proc_tty_init +ffffffff825dd045 t proc_cmdline_init +ffffffff825dd05f t proc_consoles_init +ffffffff825dd079 t proc_cpuinfo_init +ffffffff825dd093 t proc_devices_init +ffffffff825dd0ad t proc_interrupts_init +ffffffff825dd0c7 t proc_loadavg_init +ffffffff825dd0e1 t proc_meminfo_init +ffffffff825dd0fb t proc_stat_init +ffffffff825dd115 t proc_uptime_init +ffffffff825dd12f t proc_version_init +ffffffff825dd149 t proc_softirqs_init +ffffffff825dd163 T proc_self_init +ffffffff825dd16f T proc_thread_self_init +ffffffff825dd17b T proc_sys_init +ffffffff825dd1a5 T proc_net_init +ffffffff825dd1c6 t proc_kmsg_init +ffffffff825dd1e3 T kernfs_init +ffffffff825dd206 T sysfs_init +ffffffff825dd254 t init_devpts_fs +ffffffff825dd277 T ext4_init_system_zone +ffffffff825dd2a3 T ext4_init_es +ffffffff825dd2cf T ext4_init_mballoc +ffffffff825dd38b T ext4_init_pageio +ffffffff825dd3ba t ext4_init_fs +ffffffff825dd55d T ext4_init_sysfs +ffffffff825dd644 T jbd2_journal_init_transaction_cache +ffffffff825dd67c T jbd2_journal_init_revoke_caches +ffffffff825dd6fc t journal_init +ffffffff825dd803 T init_ramfs_fs +ffffffff825dd81e T fat_cache_init +ffffffff825dd84e t init_fat_fs +ffffffff825dd893 t init_vfat_fs +ffffffff825dd89f t init_nls_cp437 +ffffffff825dd8ad t init_nls_cp932 +ffffffff825dd8bb t init_nls_euc_jp +ffffffff825dd8fd t init_nls_cp936 +ffffffff825dd90b t init_nls_cp950 +ffffffff825dd919 t init_nls_ascii +ffffffff825dd927 t init_nls_iso8859_1 +ffffffff825dd935 t init_nls_utf8 +ffffffff825dd956 t init_ntfs_fs +ffffffff825ddb17 t init_autofs4_fs +ffffffff825ddb38 T autofs_dev_ioctl_init +ffffffff825ddb71 t init_btrfs_fs +ffffffff825ddc95 T btrfs_end_io_wq_init +ffffffff825ddcc1 T btrfs_init_cachep +ffffffff825ddd6f T btrfs_auto_defrag_init +ffffffff825ddd9b T extent_map_init +ffffffff825dddc7 T btrfs_init_sysfs +ffffffff825ddf44 T ordered_data_init +ffffffff825ddf70 T extent_io_init +ffffffff825de01b T btrfs_init_compress +ffffffff825de135 T btrfs_delayed_ref_init +ffffffff825de1df T btrfs_delayed_inode_init +ffffffff825de20b T btrfs_prelim_ref_init +ffffffff825de237 T btrfs_props_init +ffffffff825de2be T btrfs_hash_init +ffffffff825de2e4 t ipc_init +ffffffff825de303 T ipc_init_proc_interface +ffffffff825de376 T msg_init +ffffffff825de3d7 T sem_init +ffffffff825de432 t ipc_ns_init +ffffffff825de469 T shm_init +ffffffff825de488 t ipc_sysctl_init +ffffffff825de497 t init_mqueue_fs +ffffffff825de582 T key_init +ffffffff825de67e t init_root_keyring +ffffffff825de683 t key_proc_init +ffffffff825de6d6 t init_mmap_min_addr +ffffffff825de6e7 t crypto_wq_init +ffffffff825de713 t crypto_algapi_init +ffffffff825de71b T crypto_init_proc +ffffffff825de732 t seqiv_module_init +ffffffff825de73e t cryptomgr_init +ffffffff825de74a t crypto_cmac_module_init +ffffffff825de756 t hmac_module_init +ffffffff825de762 t crypto_null_mod_init +ffffffff825de7a5 t sha1_generic_mod_init +ffffffff825de7b1 t sha256_generic_mod_init +ffffffff825de7c2 t crypto_ecb_module_init +ffffffff825de7ce t crypto_ctr_module_init +ffffffff825de805 t crypto_gcm_module_init +ffffffff825de8b9 t crypto_ccm_module_init +ffffffff825de92a t cryptd_init +ffffffff825de9e9 t des_generic_mod_init +ffffffff825de9fa t aes_init +ffffffff825dea06 t arc4_init +ffffffff825dea17 t crc32c_mod_init +ffffffff825dea23 t crypto_authenc_module_init +ffffffff825dea2f t crypto_authenc_esn_module_init +ffffffff825dea3b t drbg_init +ffffffff825dec07 t jent_mod_init +ffffffff825dec30 t ghash_mod_init +ffffffff825dec3c t af_alg_init +ffffffff825dec75 t algif_hash_init +ffffffff825dec81 t do_xor_speed +ffffffff825ded49 t calibrate_xor_blocks +ffffffff825dee67 t asymmetric_key_init +ffffffff825dee73 t ca_keys_setup +ffffffff825def19 t x509_key_init +ffffffff825def25 t init_bio +ffffffff825defcb t elevator_setup +ffffffff825defe5 T load_default_elevator_module +ffffffff825df015 T blk_dev_init +ffffffff825df08c t blk_settings_init +ffffffff825df0b1 t blk_ioc_init +ffffffff825df0d6 t blk_softirq_init +ffffffff825df142 t blk_mq_init +ffffffff825df167 t proc_genhd_init +ffffffff825df198 t genhd_device_init +ffffffff825df209 T printk_all_partitions +ffffffff825df42f t force_gpt_fn +ffffffff825df43f t blk_scsi_ioctl_init +ffffffff825df7d3 t bsg_init +ffffffff825df937 t noop_init +ffffffff825df943 t cfq_init +ffffffff825df99d t prandom_init +ffffffff825dfa53 t prandom_reseed +ffffffff825dfa7d T raid6_select_algo +ffffffff825dfd6b t percpu_counter_startup +ffffffff825dfdb0 t setup_io_tlb_npages +ffffffff825dfe3a T swiotlb_exit +ffffffff825dffb9 T swiotlb_update_mem_attributes +ffffffff825e0034 T swiotlb_init_with_tbl +ffffffff825e01a4 T swiotlb_init +ffffffff825e0247 t sg_pool_init +ffffffff825e0320 t pcibus_class_init +ffffffff825e0333 t pci_sort_bf_cmp +ffffffff825e0387 T pci_sort_breadthfirst +ffffffff825e039a t pci_resource_alignment_sysfs_init +ffffffff825e03ad t pcie_port_pm_setup +ffffffff825e03ef t pci_setup +ffffffff825e0756 T pci_register_set_vga_state +ffffffff825e075e t pci_driver_init +ffffffff825e076a t pci_sysfs_init +ffffffff825e07b5 T pci_realloc_get_opt +ffffffff825e07fe T pci_assign_unassigned_resources +ffffffff825e0872 t pci_proc_init +ffffffff825e08d3 t pci_apply_final_quirks +ffffffff825e09c8 t pcie_aspm_disable +ffffffff825e0a35 t pciehp_setup +ffffffff825e0a57 t dmi_pcie_pme_disable_msi +ffffffff825e0a71 t pcie_port_setup +ffffffff825e0ae8 t pcie_portdrv_init +ffffffff825e0b52 t aer_service_init +ffffffff825e0b76 t pcie_pme_setup +ffffffff825e0b98 t pcie_pme_service_init +ffffffff825e0ba4 t acpi_pci_init +ffffffff825e0bf7 t backlight_class_init +ffffffff825e0c98 t video_setup +ffffffff825e0d10 t fbmem_init +ffffffff825e0de0 t fb_console_setup +ffffffff825e1046 T fb_console_init +ffffffff825e1159 t intel_idle_init +ffffffff825e161e t acpi_force_table_verification_setup +ffffffff825e1628 t acpi_force_32bit_fadt_addr +ffffffff825e163e t acpi_parse_apic_instance +ffffffff825e1675 T acpi_table_parse_entries_array +ffffffff825e181a T acpi_table_parse_entries +ffffffff825e184f T acpi_table_parse_madt +ffffffff825e1865 T acpi_table_parse +ffffffff825e18e9 T acpi_table_init +ffffffff825e199f T acpi_blacklisted +ffffffff825e1a17 T acpi_osi_setup +ffffffff825e1b19 t acpi_osi_setup_linux +ffffffff825e1b50 t acpi_osi_setup_darwin +ffffffff825e1ba2 t osi_setup +ffffffff825e1c30 t dmi_disable_osi_win8 +ffffffff825e1c4f t dmi_disable_osi_win7 +ffffffff825e1c6e t dmi_disable_osi_vista +ffffffff825e1ca5 t dmi_enable_osi_linux +ffffffff825e1ccb T early_acpi_osi_init +ffffffff825e1d0e T acpi_osi_init +ffffffff825e1dbf t acpi_request_region +ffffffff825e1dff t acpi_reserve_resources +ffffffff825e1ee5 t acpi_no_auto_serialize_setup +ffffffff825e1efe t acpi_no_static_ssdt_setup +ffffffff825e1f14 t acpi_disable_return_repair +ffffffff825e1f2d t acpi_os_name_setup +ffffffff825e1f8a t acpi_enforce_resources_setup +ffffffff825e200b T acpi_os_initialize +ffffffff825e2087 T acpi_os_get_root_pointer +ffffffff825e20d1 T acpi_os_initialize1 +ffffffff825e2158 t acpi_backlight +ffffffff825e2172 T acpi_wakeup_device_init +ffffffff825e21d9 t init_nvs_save_s3 +ffffffff825e21e3 t init_old_suspend_ordering +ffffffff825e21ed t init_nvs_nosave +ffffffff825e21f7 t init_no_lps0 +ffffffff825e2201 T acpi_old_suspend_ordering +ffffffff825e2209 T acpi_nvs_nosave +ffffffff825e2211 T acpi_nvs_nosave_s3 +ffffffff825e2219 T acpi_sleep_no_blacklist +ffffffff825e2221 T acpi_sleep_init +ffffffff825e2366 T acpi_sleep_proc_init +ffffffff825e2385 t acpi_init +ffffffff825e26a4 T acpi_early_init +ffffffff825e27a1 T acpi_subsystem_init +ffffffff825e27e3 T init_acpi_device_notify +ffffffff825e281a t acpi_match_madt +ffffffff825e285c T acpi_scan_init +ffffffff825e2a7b T __acpi_probe_device_table +ffffffff825e2b0d t acpi_hwp_native_thermal_lvt_osc +ffffffff825e2bd2 t acpi_processor_ids_walk +ffffffff825e2d19 T acpi_early_processor_osc +ffffffff825e2d5d T acpi_processor_init +ffffffff825e2db4 T acpi_map_madt_entry +ffffffff825e2dfd t set_no_mwait +ffffffff825e2e1b t early_init_pdc +ffffffff825e2ec3 T acpi_early_processor_set_pdc +ffffffff825e2f07 T acpi_ec_dsdt_probe +ffffffff825e2f73 T acpi_ec_ecdt_probe +ffffffff825e301e T acpi_ec_init +ffffffff825e30f1 T acpi_pci_root_init +ffffffff825e3113 t acpi_irq_nobalance_set +ffffffff825e3123 t acpi_irq_balance_set +ffffffff825e3133 t acpi_irq_penalty_update +ffffffff825e3190 t acpi_irq_isa +ffffffff825e3197 t acpi_irq_pci +ffffffff825e319b T acpi_irq_penalty_init +ffffffff825e31f9 T acpi_pci_link_init +ffffffff825e3236 T acpi_lpss_init +ffffffff825e3242 T acpi_apd_init +ffffffff825e324e T acpi_pnp_init +ffffffff825e325a t acpi_event_init +ffffffff825e3282 t acpi_gpe_set_masked_gpes +ffffffff825e32af T acpi_gpe_apply_masked_gpes +ffffffff825e3311 T acpi_sysfs_init +ffffffff825e3505 T acpi_cmos_rtc_init +ffffffff825e3511 T acpi_tb_parse_root_table +ffffffff825e36a2 T acpi_reallocate_root_table +ffffffff825e3784 T acpi_initialize_tables +ffffffff825e37d4 T acpi_install_table +ffffffff825e37f0 T acpi_load_tables +ffffffff825e3870 T acpi_find_root_pointer +ffffffff825e39b1 T acpi_terminate +ffffffff825e39c0 T acpi_initialize_subsystem +ffffffff825e3a60 T acpi_enable_subsystem +ffffffff825e3aea T acpi_initialize_objects +ffffffff825e3b34 t acpi_button_driver_init +ffffffff825e3b40 t acpi_video_init +ffffffff825e3bbb t acpi_processor_driver_init +ffffffff825e3c4e T acpi_container_init +ffffffff825e3c5a t acpi_thermal_init +ffffffff825e3cd4 T acpi_memory_hotplug_init +ffffffff825e3ce0 T acpi_parse_spcr +ffffffff825e3fa2 t acpi_pad_init +ffffffff825e405d T acpi_int340x_thermal_init +ffffffff825e4069 t pnp_init +ffffffff825e4075 t pnp_setup_reserve_irq +ffffffff825e40a9 t pnp_setup_reserve_dma +ffffffff825e40dd t pnp_setup_reserve_io +ffffffff825e4111 t pnp_setup_reserve_mem +ffffffff825e4145 t pnp_system_init +ffffffff825e4151 t pnpacpi_setup +ffffffff825e417b t ispnpidacpi +ffffffff825e41fa t pnpacpi_add_device_handler +ffffffff825e440d t pnpacpi_init +ffffffff825e4476 t pnpacpi_option_resource +ffffffff825e47a8 T pnpacpi_parse_resource_option_data +ffffffff825e4806 t clk_ignore_unused_setup +ffffffff825e4813 t gpio_clk_driver_init +ffffffff825e4821 t plt_clk_driver_init +ffffffff825e482f t tty_class_init +ffffffff825e485e T tty_init +ffffffff825e496c T n_tty_init +ffffffff825e497a t n_null_init +ffffffff825e4994 t pty_init +ffffffff825e4b7b T vcs_init +ffffffff825e4c09 T kbd_init +ffffffff825e4cc7 t vtconsole_class_init +ffffffff825e4d9a t con_init +ffffffff825e4fc9 T vty_init +ffffffff825e5115 t chr_dev_init +ffffffff825e51b9 t misc_init +ffffffff825e526b t hpet_init +ffffffff825e52cb t hwrng_modinit +ffffffff825e5339 t intel_rng_hw_init +ffffffff825e53e8 t mod_init +ffffffff825e55ad t iommu_set_def_domain_type +ffffffff825e55e0 t iommu_init +ffffffff825e5606 t iommu_dev_init +ffffffff825e5619 t dmar_parse_one_andd +ffffffff825e5662 t dmar_table_detect +ffffffff825e56a0 T detect_intel_iommu +ffffffff825e5765 t dmar_free_unused_resources +ffffffff825e5819 T dmar_dev_scope_init +ffffffff825e5a68 T dmar_table_init +ffffffff825e5ba1 T enable_drhd_fault_handling +ffffffff825e5c02 T dmar_ir_support +ffffffff825e5c17 t intel_iommu_setup +ffffffff825e5e23 T dmar_parse_one_rmrr +ffffffff825e5ed6 t dev_prepare_static_identity_mapping +ffffffff825e5f43 T intel_iommu_init +ffffffff825e6f9c t ir_dev_scope_init +ffffffff825e6fca t intel_cleanup_irq_remapping +ffffffff825e700e t intel_enable_irq_remapping +ffffffff825e70d7 t intel_prepare_irq_remapping +ffffffff825e7236 t setup_nointremap +ffffffff825e7243 t setup_irqremap +ffffffff825e736d T irq_remapping_prepare +ffffffff825e7395 T irq_remapping_enable +ffffffff825e73c1 T irq_remap_enable_fault_handling +ffffffff825e73e3 t drm_kms_helper_init +ffffffff825e73f3 T drm_fb_helper_modinit +ffffffff825e73f6 t drm_core_init +ffffffff825e7496 t ttm_init +ffffffff825e74f1 t nouveau_drm_init +ffffffff825e76a5 t cn_proc_init +ffffffff825e76d6 T devices_init +ffffffff825e777e T buses_init +ffffffff825e77cd T classes_init +ffffffff825e77ee T __platform_driver_probe +ffffffff825e78dc T __platform_create_bundle +ffffffff825e7986 T early_platform_driver_register +ffffffff825e7ae3 T early_platform_add_devices +ffffffff825e7b6b T early_platform_driver_register_all +ffffffff825e7b70 T early_platform_driver_probe +ffffffff825e7d9e T early_platform_cleanup +ffffffff825e7dfb T platform_bus_init +ffffffff825e7e37 T cpu_dev_init +ffffffff825e7e82 T firmware_init +ffffffff825e7ea1 T driver_init +ffffffff825e7ec9 T container_dev_init +ffffffff825e7ef1 t cacheinfo_sysfs_init +ffffffff825e7f18 t mount_param +ffffffff825e7f2d T devtmpfs_init +ffffffff825e7fee t wakeup_sources_debugfs_init +ffffffff825e7ff1 t firmware_class_init +ffffffff825e80d0 t regmap_initcall +ffffffff825e80d3 t loop_init +ffffffff825e81f7 t max_loop_setup +ffffffff825e820c t dma_buf_init +ffffffff825e823e t init_scsi +ffffffff825e82ac T scsi_init_queue +ffffffff825e82e6 T scsi_init_devinfo +ffffffff825e841e T scsi_init_sysctl +ffffffff825e843b t init_sd +ffffffff825e8583 t ata_init +ffffffff825e8847 T libata_transport_init +ffffffff825e889a t ahci_pci_driver_init +ffffffff825e88af t probe_list2 +ffffffff825e88f5 t net_olddevs_init +ffffffff825e894d t iwl_drv_init +ffffffff825e89ab t iwl_mvm_init +ffffffff825e89f2 t usb_init +ffffffff825e8aed T usb_init_pool_max +ffffffff825e8aee T usb_devio_init +ffffffff825e8b7a t ehci_hcd_init +ffffffff825e8bcc t ehci_pci_init +ffffffff825e8c2c t xhci_hcd_init +ffffffff825e8c3b t xhci_pci_init +ffffffff825e8c79 t usb_storage_driver_init +ffffffff825e8ca3 t input_init +ffffffff825e8d9b t evdev_init +ffffffff825e8da7 t rtc_init +ffffffff825e8dee T rtc_dev_init +ffffffff825e8e19 t cmos_init +ffffffff825e8e80 t cmos_platform_probe +ffffffff825e8ed1 t i2c_init +ffffffff825e8f4f t smbalert_driver_init +ffffffff825e8f5d t i2c_i801_init +ffffffff825e8ffc t power_supply_class_init +ffffffff825e9037 t thermal_init +ffffffff825e90db t intel_pch_thermal_driver_init +ffffffff825e90f0 t hci_uart_init +ffffffff825e91b4 T h4_init +ffffffff825e91c0 t btusb_driver_init +ffffffff825e91d5 T edac_mc_sysfs_init +ffffffff825e9256 t edac_init +ffffffff825e92c1 t sbridge_init +ffffffff825ea99b t init_cpufreq_transition_notifier_list +ffffffff825ea9aa t cpufreq_core_init +ffffffff825ea9f1 t cpufreq_gov_powersave_init +ffffffff825ea9fd t copy_cpu_funcs +ffffffff825eaa55 t intel_pstate_setup +ffffffff825eab55 t intel_pstate_init +ffffffff825eae2a t cpuidle_init +ffffffff825eae60 t cpuidle_sysfs_setup +ffffffff825eae70 t init_menu +ffffffff825eae7c t dmi_string_nosave +ffffffff825eaedc t dmi_string +ffffffff825eaf29 t dmi_walk_early +ffffffff825eaf7f t count_mem_devices +ffffffff825eaf8b t save_mem_devices +ffffffff825eb004 t dmi_save_ident +ffffffff825eb036 t dmi_save_dev_pciaddr.part.3 +ffffffff825eb0d2 t print_filtered +ffffffff825eb13f t dmi_init +ffffffff825eb24e t dmi_format_ids.constprop.10 +ffffffff825eb371 t dmi_smbios3_present +ffffffff825eb441 t dmi_present +ffffffff825eb5b0 T dmi_memdev_walk +ffffffff825eb5f9 T dmi_scan_machine +ffffffff825eb7cd T dmi_set_dump_stack_arch_desc +ffffffff825eb7e0 t dmi_save_one_device +ffffffff825eb85b t dmi_decode +ffffffff825ebc92 t dmi_id_init +ffffffff825ebfa5 t setup_noefi +ffffffff825ebfaf t parse_efi_cmdline +ffffffff825ec003 t efivar_ssdt_setup +ffffffff825ec03d t efivar_ssdt_iter +ffffffff825ec0e7 t match_config_table.part.0 +ffffffff825ec1e7 t efisubsys_init +ffffffff825ec46e T efi_md_typeattr_format +ffffffff825ec5d5 T efi_mem_desc_lookup +ffffffff825ec6ad T efi_mem_desc_end +ffffffff825ec6bb T efi_mem_reserve +ffffffff825ec6e4 T efi_config_parse_tables +ffffffff825ec884 T efi_config_init +ffffffff825ec917 t efi_shutdown_init +ffffffff825ec94e T efi_memattr_init +ffffffff825ec9d8 T efi_memattr_apply_permissions +ffffffff825ecc39 T efi_tpm_eventlog_init +ffffffff825ecca0 t capsule_reboot_register +ffffffff825eccac t __efi_memmap_init +ffffffff825ecd53 T efi_memmap_alloc +ffffffff825ecdb0 T efi_memmap_init_early +ffffffff825ecdb7 T efi_memmap_init_late +ffffffff825ecdee T efi_memmap_unmap +ffffffff825ece2d T efi_memmap_install +ffffffff825ece78 T efi_memmap_split_count +ffffffff825ecebe T efi_memmap_insert +ffffffff825ed001 t esrt_sysfs_init +ffffffff825ed298 T efi_esrt_init +ffffffff825ed484 t acpi_pm_good_setup +ffffffff825ed494 t parse_pmtmr +ffffffff825ed4cf t init_acpi_pm_clocksource +ffffffff825ed5a5 T clockevent_i8253_init +ffffffff825ed605 t hid_init +ffffffff825ed63d t uhid_misc_init +ffffffff825ed649 t hid_generic_init +ffffffff825ed65e t hid_init +ffffffff825ed6b2 t acpi_wmi_init +ffffffff825ed728 t mxm_wmi_init +ffffffff825ed72b t smartconnect_driver_init +ffffffff825ed737 t pmc_atom_init +ffffffff825ed8d6 t pcc_init +ffffffff825edbc0 t ras_init +ffffffff825edbc3 t parse_ras_param +ffffffff825edbc9 T ras_add_daemon_trace +ffffffff825edbd7 T ras_debugfs_init +ffffffff825edbe3 t init_soundcore +ffffffff825edc12 t alsa_sound_init +ffffffff825edc74 t alsa_hwdep_init +ffffffff825edc83 t alsa_timer_init +ffffffff825edddb t snd_hrtimer_init +ffffffff825edebe t alsa_pcm_init +ffffffff825edecd t alsa_rawmidi_init +ffffffff825ededc t hdmi_driver_init +ffffffff825edef1 t azx_driver_init +ffffffff825edf06 t usb_audio_driver_init +ffffffff825edf1b t hda_bus_init +ffffffff825edf27 t alsa_sound_last_init +ffffffff825edf7f t pcibios_assign_resources +ffffffff825ee03a T pcibios_resource_survey +ffffffff825ee096 t pci_arch_init +ffffffff825ee0f7 T pci_mmcfg_arch_free +ffffffff825ee117 T pci_mmcfg_arch_init +ffffffff825ee154 t pci_sanity_check.isra.0 +ffffffff825ee1ff T pci_direct_init +ffffffff825ee25c T pci_direct_probe +ffffffff825ee3ed t free_all_mmcfg +ffffffff825ee45c t pci_mmconfig_add +ffffffff825ee4c3 t pci_mmcfg_intel_945 +ffffffff825ee556 t pci_mmcfg_e7520 +ffffffff825ee5b6 t pci_mmcfg_amd_fam10h +ffffffff825ee65b t pci_mmcfg_nvidia_mcp55 +ffffffff825ee74a t pci_parse_mcfg +ffffffff825ee880 t __pci_mmcfg_init +ffffffff825ee925 t pci_mmcfg_late_insert_resources +ffffffff825ee971 T pci_mmcfg_early_init +ffffffff825eea72 T pci_mmcfg_late_init +ffffffff825eeaa4 t set_use_crs +ffffffff825eeaae t set_nouse_crs +ffffffff825eeab8 t set_ignore_seg +ffffffff825eead2 T pci_acpi_init +ffffffff825eeb59 T pci_acpi_crs_quirks +ffffffff825eebf7 T pci_legacy_init +ffffffff825eec1c t pci_subsys_init +ffffffff825eec7e t via_router_probe +ffffffff825eed0b t vlsi_router_probe +ffffffff825eed32 t serverworks_router_probe +ffffffff825eed5c t sis_router_probe +ffffffff825eed81 t cyrix_router_probe +ffffffff825eeda7 t opti_router_probe +ffffffff825eedce t ite_router_probe +ffffffff825eedf5 t ali_router_probe +ffffffff825eee23 t amd_router_probe +ffffffff825eee6a t pico_router_probe +ffffffff825eeeb4 t pirq_peer_trick +ffffffff825eef3c t fix_acer_tm360_irqrouting +ffffffff825eef62 t fix_broken_hp_bios_irq9 +ffffffff825eef88 t intel_router_probe +ffffffff825ef1a1 T pcibios_irq_init +ffffffff825ef40a T pcibios_fixup_irqs +ffffffff825ef4cb t set_scan_all +ffffffff825ef4e5 t can_skip_ioresource_align +ffffffff825ef502 t find_sort_method +ffffffff825ef514 t set_bf_sort +ffffffff825ef53a t read_dmi_type_b1 +ffffffff825ef552 T dmi_check_pciprobe +ffffffff825ef55e T dmi_check_skip_isa_align +ffffffff825ef56a T pcibios_set_cache_line_size +ffffffff825ef5a7 T pcibios_init +ffffffff825ef5e4 T pcibios_setup +ffffffff825ef988 T alloc_pci_root_info +ffffffff825efa1e t bsp_pm_check_init +ffffffff825efa2d t sock_init +ffffffff825efab4 t proto_init +ffffffff825efac0 t net_inuse_init +ffffffff825efadf T skb_init +ffffffff825efb30 t net_defaults_init +ffffffff825efb4f t net_ns_init +ffffffff825efc84 t init_default_flow_dissectors +ffffffff825efccf t sysctl_core_init +ffffffff825efcf5 T netdev_boot_setup +ffffffff825efdc5 t net_dev_init +ffffffff825effa5 t neigh_init +ffffffff825f0020 T rtnetlink_init +ffffffff825f01b4 t sock_diag_init +ffffffff825f01e3 t fib_notifier_init +ffffffff825f01ef T netdev_kobject_init +ffffffff825f020e T dev_proc_init +ffffffff825f022b t eth_offload_init +ffffffff825f023a t netlink_proto_init +ffffffff825f038b t genl_init +ffffffff825f03bc T netfilter_init +ffffffff825f03f0 T netfilter_log_init +ffffffff825f03fc t nfnetlink_init +ffffffff825f0457 t nf_conntrack_standalone_init +ffffffff825f04d8 T nf_tables_core_module_init +ffffffff825f052a t nf_tables_module_init +ffffffff825f059d t nf_tables_inet_init +ffffffff825f05a9 t nft_meta_module_init +ffffffff825f05b5 t nft_rt_module_init +ffffffff825f05c1 t nft_ct_module_init +ffffffff825f0618 t nft_limit_module_init +ffffffff825f0653 t nft_reject_inet_module_init +ffffffff825f065f t nft_rbtree_module_init +ffffffff825f066b t nft_counter_module_init +ffffffff825f06df t nft_log_module_init +ffffffff825f06eb t nft_hash_module_init +ffffffff825f06f7 T ip_rt_init +ffffffff825f0896 T ip_static_sysctl_init +ffffffff825f08b0 T inet_initpeers +ffffffff825f0922 T ipfrag_init +ffffffff825f09b1 T ip_init +ffffffff825f09bb T inet_hashinfo2_init +ffffffff825f0a1a t set_thash_entries +ffffffff825f0a38 T tcp_init +ffffffff825f0cc2 T tcp_tasklet_init +ffffffff825f0d14 T tcp4_proc_init +ffffffff825f0d20 T tcp_v4_init +ffffffff825f0d3d t tcp_congestion_default +ffffffff825f0d50 t set_tcpmhash_entries +ffffffff825f0d6e T tcp_metrics_init +ffffffff825f0da7 T tcpv4_offload_init +ffffffff825f0db8 T raw_proc_init +ffffffff825f0dc4 T raw_proc_exit +ffffffff825f0dd0 t set_uhash_entries +ffffffff825f0e0f T udp4_proc_init +ffffffff825f0e1b T udp_table_init +ffffffff825f0ece T udp_init +ffffffff825f0f91 T udplite4_register +ffffffff825f101d T udpv4_offload_init +ffffffff825f102e T arp_init +ffffffff825f1070 T icmp_init +ffffffff825f107c T devinet_init +ffffffff825f1155 t ipv4_offload_init +ffffffff825f11c4 t inet_init +ffffffff825f1400 T igmp_mc_init +ffffffff825f1437 T ip_fib_init +ffffffff825f14b1 T fib_trie_init +ffffffff825f14f6 T ping_proc_init +ffffffff825f1502 T ping_init +ffffffff825f152b T ip_tunnel_core_init +ffffffff825f152c t gre_offload_init +ffffffff825f1570 t sysctl_ipv4_init +ffffffff825f15b7 T ip_misc_proc_init +ffffffff825f15c3 t nf_conntrack_l3proto_ipv4_init +ffffffff825f166b t nf_defrag_init +ffffffff825f1677 t nf_tables_ipv4_init +ffffffff825f1683 t nft_chain_route_init +ffffffff825f168f t nft_reject_ipv4_module_init +ffffffff825f169b t bbr_register +ffffffff825f16a7 t af_unix_init +ffffffff825f16f0 t inet6_init +ffffffff825f1a28 T if6_proc_init +ffffffff825f1a34 T addrconf_init +ffffffff825f1ca1 T ipv6_addr_label_init +ffffffff825f1cad T ipv6_addr_label_rtnl_register +ffffffff825f1d1d T ip6_route_init_special_entries +ffffffff825f1d6b T ip6_route_init +ffffffff825f1f37 T fib6_init +ffffffff825f1fc2 T ndisc_init +ffffffff825f2013 T ndisc_late_init +ffffffff825f201f T udpv6_init +ffffffff825f205e T udplitev6_init +ffffffff825f209d T udplite6_proc_init +ffffffff825f20a9 T raw6_proc_init +ffffffff825f20b5 T rawv6_init +ffffffff825f20c1 T icmpv6_init +ffffffff825f212f T igmp6_init +ffffffff825f213b T igmp6_late_init +ffffffff825f2147 T ipv6_frag_init +ffffffff825f2221 T tcpv6_init +ffffffff825f227e T pingv6_init +ffffffff825f22dd T ipv6_exthdrs_init +ffffffff825f2349 T seg6_init +ffffffff825f238c T ipv6_netfilter_init +ffffffff825f239a T ipv6_misc_proc_init +ffffffff825f23a6 t nf_conntrack_l3proto_ipv6_init +ffffffff825f2440 t nf_defrag_init +ffffffff825f2481 t nf_tables_ipv6_init +ffffffff825f248d t nft_chain_route_init +ffffffff825f2499 t nft_reject_ipv6_module_init +ffffffff825f24a5 t ipv6_offload_init +ffffffff825f251f T tcpv6_offload_init +ffffffff825f2530 T ipv6_exthdrs_offload_init +ffffffff825f2574 t packet_init +ffffffff825f25b1 t bt_init +ffffffff825f2647 T hci_sock_init +ffffffff825f26db T bt_sysfs_init +ffffffff825f2706 T l2cap_init +ffffffff825f271e T l2cap_init_sockets +ffffffff825f27ac T sco_init +ffffffff825f2850 t rfcomm_init +ffffffff825f28d6 T rfcomm_init_sockets +ffffffff825f296a t hidp_init +ffffffff825f2982 T hidp_init_sockets +ffffffff825f2a16 t cfg80211_init +ffffffff825f2ab7 T regulatory_init +ffffffff825f2b2d t regulatory_init_db +ffffffff825f2cb9 T nl80211_init +ffffffff825f2cee t ieee80211_init +ffffffff825f2d1e T rc80211_minstrel_init +ffffffff825f2d2a T rc80211_minstrel_ht_init +ffffffff825f2d95 T net_sysctl_init +ffffffff825f2de7 t set_nohugeiomap +ffffffff825f2df4 T ioremap_huge_init +ffffffff825f2e24 t kobject_uevent_init +ffffffff825f2e30 T radix_tree_init +ffffffff825f2f37 t initialize_ptr_random +ffffffff825f2f6d t save_mr +ffffffff825f2fa5 t phys_pte_init +ffffffff825f309c t phys_pmd_init +ffffffff825f3301 t phys_pud_init +ffffffff825f3626 T kernel_physical_mapping_init +ffffffff825f3860 T vmemmap_populate +ffffffff825f3a38 T vmemmap_populate_print_last +ffffffff825f3a63 T init_trampoline +ffffffff825f3b2b t adjust_zone_range_for_zone_movable.isra.3 +ffffffff825f3b86 T __early_pfn_to_nid +ffffffff825f3bc8 T early_pfn_to_nid +ffffffff825f3c01 T reserve_bootmem_region +ffffffff825f3c76 T alloc_pages_exact_nid +ffffffff825f3cd4 T memmap_init_zone +ffffffff825f3ea3 T setup_zone_pageset +ffffffff825f3f05 T init_currently_empty_zone +ffffffff825f3f62 T get_pfn_range_for_nid +ffffffff825f3ff9 T __absent_pages_in_range +ffffffff825f409e T set_pageblock_order +ffffffff825f409f T free_area_init_node +ffffffff825f453f T zero_resv_unavail +ffffffff825f464c T init_per_zone_wmark_min +ffffffff825f46b2 t init_reserve_notifier +ffffffff825f46b5 t __find_max_addr +ffffffff825f46ed t memblock_dump +ffffffff825f47b9 t memblock_search.isra.0 +ffffffff825f47ed t memblock_insert_region +ffffffff825f4857 t memblock_merge_regions.isra.2 +ffffffff825f48db t memblock_remove_region +ffffffff825f4952 T choose_memblock_flags +ffffffff825f4963 T memblock_overlaps_region +ffffffff825f499b T __next_reserved_mem_region +ffffffff825f49da T __next_mem_range +ffffffff825f4b5e T __next_mem_range_rev +ffffffff825f4d03 T memblock_find_in_range_node +ffffffff825f4f1b T memblock_find_in_range +ffffffff825f4f78 t memblock_double_array +ffffffff825f51c3 T memblock_add_range +ffffffff825f5338 T memblock_add_node +ffffffff825f534f T memblock_add +ffffffff825f53a8 T memblock_reserve +ffffffff825f5401 t memblock_isolate_range +ffffffff825f553a t memblock_remove_range +ffffffff825f5578 T memblock_remove +ffffffff825f5587 T memblock_free +ffffffff825f55d8 t memblock_setclr_flag +ffffffff825f5666 T memblock_mark_hotplug +ffffffff825f5675 T memblock_clear_hotplug +ffffffff825f5681 T memblock_mark_mirror +ffffffff825f5697 T memblock_mark_nomap +ffffffff825f56a6 T memblock_clear_nomap +ffffffff825f56b2 T __next_mem_pfn_range +ffffffff825f5723 T memblock_set_node +ffffffff825f5783 T memblock_phys_mem_size +ffffffff825f578b T memblock_reserved_size +ffffffff825f5793 T memblock_start_of_DRAM +ffffffff825f579e T memblock_end_of_DRAM +ffffffff825f57bd T memblock_is_memory +ffffffff825f57d9 T memblock_is_map_memory +ffffffff825f5812 T memblock_search_pfn_nid +ffffffff825f5871 T memblock_is_region_memory +ffffffff825f58c1 T memblock_is_region_reserved +ffffffff825f58dd T memblock_trim_memory +ffffffff825f5969 T memblock_set_current_limit +ffffffff825f5971 T memblock_get_current_limit +ffffffff825f5979 T memblock_reserved_memory_within +ffffffff825f59bd T __memblock_dump_all +ffffffff825f59fb T mminit_validate_memmodel_limits +ffffffff825f5a1b T vmemmap_alloc_block +ffffffff825f5aeb t vmemmap_alloc_block_zero.constprop.3 +ffffffff825f5b0f T vmemmap_alloc_block_buf +ffffffff825f5b43 T altmap_alloc_block_buf +ffffffff825f5c0a T vmemmap_verify +ffffffff825f5c48 T vmemmap_pte_populate +ffffffff825f5ce2 T vmemmap_pmd_populate +ffffffff825f5d5f T vmemmap_pud_populate +ffffffff825f5dc8 T vmemmap_p4d_populate +ffffffff825f5e13 T vmemmap_pgd_populate +ffffffff825f5e27 T vmemmap_populate_basepages +ffffffff825f5ebd T sparse_mem_map_populate +ffffffff825f5eef T _einittext +ffffffff825f7000 T early_recursion_flag +ffffffff825f8000 T early_top_pgt +ffffffff825f9000 T early_dynamic_pgts +ffffffff82639000 t next_early_pgt +ffffffff82639020 t initcall_level_names +ffffffff82639060 t initcall_levels +ffffffff826390c0 t tmp_cmdline.53187 +ffffffff826398c0 t done.53186 +ffffffff826398e0 t kthreadd_done +ffffffff82639900 T late_time_init +ffffffff82639920 T boot_command_line +ffffffff8263a120 t root_delay +ffffffff8263a128 t root_fs_names +ffffffff8263a130 t root_mount_data +ffffffff8263a140 t saved_root_name +ffffffff8263a180 t root_device_name +ffffffff8263a188 T rd_doload +ffffffff8263a190 t __quirk.37813 +ffffffff8263a1a0 t __quirk.37807 +ffffffff8263a1b0 t __quirk.37802 +ffffffff8263a1c0 t __quirk.37801 +ffffffff8263a1d0 t __quirk.37782 +ffffffff8263a1e0 t __quirk.37773 +ffffffff8263a1f0 t __quirk.37769 +ffffffff8263a200 t __quirk.35704 +ffffffff8263b000 T real_mode_blob +ffffffff82641244 T real_mode_blob_end +ffffffff82641244 T real_mode_relocs +ffffffff826412e0 t builtin_cmdline +ffffffff82641ae0 t command_line +ffffffff826422e0 t _brk_start +ffffffff82642300 T x86_init +ffffffff826423f0 t jlstate +ffffffff826423f4 T sbf_port +ffffffff82642400 t e820_res +ffffffff82642408 t userdef +ffffffff82642420 t new_entries +ffffffff82642e60 t overlap_list +ffffffff82643280 t change_point +ffffffff82643ac0 t change_point_list +ffffffff82644b20 t e820_table_firmware_init +ffffffff82645560 t e820_table_kexec_init +ffffffff82645fa0 t e820_table_init +ffffffff826469e0 t debug_alternative +ffffffff826469e4 t io_delay_override +ffffffff82646a00 t fxregs.26254 +ffffffff82646c00 t y +ffffffff82646c08 t x +ffffffff82646c10 t xsave_cpuid_features +ffffffff82646c24 T changed_by_mtrr_cleanup +ffffffff82646c28 t last_fixed_type +ffffffff82646c2c t last_fixed_end +ffffffff82646c30 t last_fixed_start +ffffffff82646c40 t range_new.32654 +ffffffff82647c40 t range_sums +ffffffff82647c60 t min_loss_pfn +ffffffff82648460 t result +ffffffff82649560 t nr_mtrr_spare_reg +ffffffff82649568 t mtrr_gran_size +ffffffff82649570 t mtrr_chunk_size +ffffffff82649578 t enable_mtrr_cleanup +ffffffff8264957c t debug_print +ffffffff82649580 t range_state +ffffffff8264ad80 t nr_range +ffffffff8264ada0 t range +ffffffff8264bda0 t hpet_res +ffffffff8264bda8 t acpi_lapic_addr +ffffffff8264bdb0 T acpi_fix_pin2_polarity +ffffffff8264bdb4 T acpi_use_timer_override +ffffffff8264bdb8 T acpi_skip_timer_override +ffffffff8264bdbc T acpi_sci_override_gsi +ffffffff8264bdc0 T acpi_sci_flags +ffffffff8264bdc4 t acpi_force +ffffffff8264bde0 t early_qrk +ffffffff8264bf60 t setup_possible_cpus +ffffffff8264bf70 t lapic_cal_j2 +ffffffff8264bf78 t lapic_cal_j1 +ffffffff8264bf80 t lapic_cal_pm2 +ffffffff8264bf88 t lapic_cal_pm1 +ffffffff8264bf90 t lapic_cal_tsc2 +ffffffff8264bf98 t lapic_cal_tsc1 +ffffffff8264bfa0 t lapic_cal_t2 +ffffffff8264bfa8 t lapic_cal_t1 +ffffffff8264bfb0 t lapic_cal_loops +ffffffff8264bfb4 t disable_apic_timer +ffffffff8264bfc0 T x86_cpu_to_acpiid_early_map +ffffffff8264bfd0 T x86_bios_cpu_apicid_early_map +ffffffff8264bfd8 T x86_cpu_to_apicid_early_map +ffffffff8264bfe0 t show_lapic +ffffffff8264bfe4 t disable_timer_pin_1 +ffffffff8264bfe8 T no_timer_check +ffffffff8264bff0 t can_use_brk_pgt +ffffffff8264bff8 t pgt_buf_top +ffffffff8264c000 t pgt_buf_end +ffffffff8264c020 t kaslr_regions +ffffffff8264c060 t add_efi_memmap +ffffffff8264c080 t arch_tables +ffffffff8264c0a0 t efi_systab +ffffffff8264c120 t efi_phys +ffffffff8264c278 T main_extable_sort_needed +ffffffff8264c280 t new_log_buf_len +ffffffff8264c2a0 t cgroup_disable_mask +ffffffff8264c2c0 t opts.56677 +ffffffff8264c2e8 t required_movablecore +ffffffff8264c2f0 t required_kernelcore +ffffffff8264c300 t group_cnt.29146 +ffffffff8264c310 t group_map.29145 +ffffffff8264c320 T pcpu_chosen_fc +ffffffff8264c328 t vm_init_off.32246 +ffffffff8264c330 t vmlist +ffffffff8264c338 t reset_managed_pages_done +ffffffff8264c340 t boot_kmem_cache_node.37849 +ffffffff8264c440 t boot_kmem_cache.37848 +ffffffff8264c540 t slot_virt +ffffffff8264c580 t prev_size +ffffffff8264c5c0 t prev_map +ffffffff8264c600 t after_paging_init +ffffffff8264c608 t dhash_entries +ffffffff8264c610 t ihash_entries +ffffffff8264c618 t mphash_entries +ffffffff8264c620 t mhash_entries +ffffffff8264c628 t template_list +ffffffff8264c640 t acpi_verify_table_checksum +ffffffff8264c644 t acpi_apic_instance +ffffffff8264c660 t initial_tables +ffffffff8264d660 t acpi_blacklist +ffffffff8264d780 t osi_setup_entries +ffffffff8264db90 t unique_processor_ids +ffffffff8264dba0 t nr_unique_ids +ffffffff8264dbc0 t acpi_masked_gpes_map +ffffffff8264dbe0 T pnpacpi_disabled +ffffffff8264dc00 t warning.33676 +ffffffff8264dcf4 t no_fwh_detect +ffffffff8264dcf8 T dmar_tbl +ffffffff8264dd00 t early_platform_device_list +ffffffff8264dd10 t early_platform_driver_list +ffffffff8264dd20 t scsi_static_device_list +ffffffff8264f480 t ata_force_param_buf +ffffffff82650480 t m68k_probes +ffffffff82650490 t isa_probes +ffffffff826504a0 t plat_info +ffffffff82650820 t force_load +ffffffff82650824 t hwp_only +ffffffff82650828 t no_hwp +ffffffff8265082c t no_load +ffffffff82650840 t dmi_ids_string +ffffffff826508c0 t dmi_ver +ffffffff826508e0 t memory_type_name +ffffffff82650a20 t common_tables +ffffffff82650be0 t efivar_ssdt +ffffffff82650bf0 t tbl_size +ffffffff82650bf4 t known_bridge +ffffffff82650bf8 t mcp55_checked +ffffffff82650c00 t pirq_routers +ffffffff82650cc0 t pirq_440gx.38168 +ffffffff82650d20 t thash_entries +ffffffff82650d28 t uhash_entries +ffffffff82650d30 t node_start +ffffffff82650d38 t p_end +ffffffff82650d40 t p_start +ffffffff82650d60 t early_pfnnid_cache +ffffffff82650d78 t zone_movable_pfn +ffffffff82650d80 t arch_zone_highest_possible_pfn +ffffffff82650da0 t arch_zone_lowest_possible_pfn +ffffffff82650dc0 t dma_reserve +ffffffff82650dc8 t nr_all_pages +ffffffff82650dd0 t nr_kernel_pages +ffffffff82650de0 t memblock_reserved_in_slab +ffffffff82650de4 t memblock_memory_in_slab +ffffffff82650de8 t memblock_can_resize +ffffffff82650dec t system_has_some_mirror +ffffffff82650df0 T memblock_debug +ffffffff82650e00 T memblock +ffffffff82650e60 t memblock_reserved_init_regions +ffffffff82651e60 t memblock_memory_init_regions +ffffffff82652e60 t __setup_str_set_debug_rodata +ffffffff82652e68 t __setup_str_initcall_blacklist +ffffffff82652e7c t __setup_str_rdinit_setup +ffffffff82652e84 t __setup_str_init_setup +ffffffff82652e8a t __setup_str_loglevel +ffffffff82652e93 t __setup_str_quiet_kernel +ffffffff82652e99 t __setup_str_debug_kernel +ffffffff82652e9f t __setup_str_set_reset_devices +ffffffff82652ead t __setup_str_root_delay_setup +ffffffff82652eb8 t __setup_str_fs_names_setup +ffffffff82652ec4 t __setup_str_root_data_setup +ffffffff82652ecf t __setup_str_rootwait_setup +ffffffff82652ed8 t __setup_str_root_dev_setup +ffffffff82652ede t __setup_str_readwrite +ffffffff82652ee1 t __setup_str_readonly +ffffffff82652ee4 t __setup_str_load_ramdisk +ffffffff82652ef2 t __setup_str_lpj_setup +ffffffff82652ef7 t __setup_str_vdso_setup +ffffffff82652f00 t intel_arch_events_map +ffffffff82652f80 t knl_hw_cache_extra_regs +ffffffff826530e0 t glp_hw_cache_extra_regs +ffffffff82653240 t glp_hw_cache_event_ids +ffffffff826533a0 t glm_hw_cache_extra_regs +ffffffff82653500 t glm_hw_cache_event_ids +ffffffff82653660 t slm_hw_cache_event_ids +ffffffff826537c0 t slm_hw_cache_extra_regs +ffffffff82653920 t atom_hw_cache_event_ids +ffffffff82653a80 t core2_hw_cache_event_ids +ffffffff82653be0 t nehalem_hw_cache_event_ids +ffffffff82653d40 t nehalem_hw_cache_extra_regs +ffffffff82653ea0 t westmere_hw_cache_event_ids +ffffffff82654000 t hsw_hw_cache_extra_regs +ffffffff82654160 t hsw_hw_cache_event_ids +ffffffff826542c0 t snb_hw_cache_event_ids +ffffffff82654420 t snb_hw_cache_extra_regs +ffffffff82654580 t skl_hw_cache_extra_regs +ffffffff826546e0 t skl_hw_cache_event_ids +ffffffff82654840 t knc_hw_cache_event_ids +ffffffff826549a0 t p4_hw_cache_event_ids +ffffffff82654b00 t p6_hw_cache_event_ids +ffffffff82654c60 t ist_idts +ffffffff82654cc0 t dbg_idts +ffffffff82654ce0 t early_pf_idts +ffffffff82654d00 t apic_idts +ffffffff82654e80 t def_idts +ffffffff82655040 t early_idts +ffffffff82655070 t __setup_str_code_bytes_setup +ffffffff8265507c t __setup_str_setup_unknown_nmi_panic +ffffffff826550a0 t __setup_str_parse_reservelow +ffffffff826550c0 t bad_pages.50290 +ffffffff826550e8 t snb_ids.50280 +ffffffff826550f6 t __setup_str_control_va_addr_alignment +ffffffff82655104 t __setup_str_parse_memmap_opt +ffffffff8265510b t __setup_str_parse_memopt +ffffffff8265510f t __setup_str_iommu_setup +ffffffff82655115 t __setup_str_enable_cpu0_hotplug +ffffffff82655122 t __setup_str_setup_noreplace_smp +ffffffff82655130 t __setup_str_debug_alt +ffffffff82655142 t __setup_str_tsc_setup +ffffffff82655147 t __setup_str_notsc_setup +ffffffff82655160 t __setup_str_io_delay_param +ffffffff82655180 t io_delay_0xed_port_dmi_table +ffffffff82655990 t __setup_str_idle_setup +ffffffff826559a0 t __setup_str_setup_clearcpuid +ffffffff826559ac t __setup_str_setup_noclflush +ffffffff826559c0 t cpu_no_meltdown +ffffffff826559e0 t cpu_no_speculation +ffffffff82655a80 t __setup_str_setup_disable_pku +ffffffff82655a86 t __setup_str_setup_disable_smap +ffffffff82655a8d t __setup_str_setup_disable_smep +ffffffff82655a94 t __setup_str_x86_noinvpcid_setup +ffffffff82655a9e t __setup_str_x86_nopcid_setup +ffffffff82655aa5 t __setup_str_x86_mpx_setup +ffffffff82655aab t __setup_str_x86_rdrand_setup +ffffffff82655ab4 t __setup_str_ring3mwait_disable +ffffffff82655ac7 t __setup_str_forcempx_setup +ffffffff82655ae8 t __setup_str_mcheck_disable +ffffffff82655aee t __setup_str_mcheck_enable +ffffffff82655af2 t __setup_str_int_pln_enable_setup +ffffffff82655b01 t __setup_str_disable_mtrr_trim_setup +ffffffff82655b13 t __setup_str_parse_mtrr_spare_reg +ffffffff82655b25 t __setup_str_parse_mtrr_gran_size_opt +ffffffff82655b34 t __setup_str_parse_mtrr_chunk_size_opt +ffffffff82655b44 t __setup_str_mtrr_cleanup_debug_setup +ffffffff82655b57 t __setup_str_enable_mtrr_cleanup_setup +ffffffff82655b6b t __setup_str_disable_mtrr_cleanup_setup +ffffffff82655b80 t __setup_str_setup_acpi_sci +ffffffff82655b89 t __setup_str_parse_acpi_use_timer_override +ffffffff82655ba1 t __setup_str_parse_acpi_skip_timer_override +ffffffff82655bba t __setup_str_parse_pci +ffffffff82655bbe t __setup_str_parse_acpi +ffffffff82655be0 t acpi_dmi_table_late +ffffffff82656400 t acpi_dmi_table +ffffffff82656d68 t __setup_str_acpi_sleep_setup +ffffffff82656d80 t reboot_dmi_table +ffffffff82659de0 t intel_early_ids +ffffffff8265b8e0 t chv_early_ops +ffffffff8265b8f0 t gen9_early_ops +ffffffff8265b900 t gen8_early_ops +ffffffff8265b910 t gen6_early_ops +ffffffff8265b920 t gen3_early_ops +ffffffff8265b930 t i865_early_ops +ffffffff8265b940 t i85x_early_ops +ffffffff8265b950 t i845_early_ops +ffffffff8265b960 t i830_early_ops +ffffffff8265b970 t __setup_str_nonmi_ipi_setup +ffffffff8265b97a t __setup_str__setup_possible_cpus +ffffffff8265b988 t __setup_str_cpu_init_udelay +ffffffff8265b998 t __setup_str_apic_set_extnmi +ffffffff8265b9a4 t __setup_str_apic_set_disabled_cpu_apicid +ffffffff8265b9b7 t __setup_str_apic_set_verbosity +ffffffff8265b9bc t __setup_str_parse_nolapic_timer +ffffffff8265b9ca t __setup_str_parse_disable_apic_timer +ffffffff8265b9d6 t __setup_str_parse_lapic_timer_c2_ok +ffffffff8265b9e8 t __setup_str_setup_nolapic +ffffffff8265b9f0 t __setup_str_setup_disableapic +ffffffff8265b9fc t __setup_str_setup_apicpmtimer +ffffffff8265ba08 t __setup_str_parse_lapic +ffffffff8265ba0e t __setup_str_setup_show_lapic +ffffffff8265ba1a t __setup_str_disable_timer_pin_setup +ffffffff8265ba2e t __setup_str_notimercheck +ffffffff8265ba3d t __setup_str_parse_noapic +ffffffff8265ba44 t __setup_str_disable_hpet +ffffffff8265ba4b t __setup_str_hpet_setup +ffffffff8265ba60 t efifb_dmi_system_table +ffffffff8265ed80 t mmconf_dmi_table +ffffffff8265f030 t __setup_str_parse_direct_gbpages_off +ffffffff8265f03a t __setup_str_parse_direct_gbpages_on +ffffffff8265f042 t __setup_str_nonx32_setup +ffffffff8265f04c t __setup_str_pat_debug_setup +ffffffff8265f055 t __setup_str_nopat +ffffffff8265f05b t __setup_str_setup_userpte +ffffffff8265f063 t __setup_str_noexec_setup +ffffffff8265f06a t __setup_str_setup_init_pkru +ffffffff8265f075 t __setup_str_setup_storage_paranoia +ffffffff8265f08d t __setup_str_arch_parse_efi_cmdline +ffffffff8265f091 t __setup_str_setup_add_efi_memmap +ffffffff8265f0a0 t __setup_str_coredump_filter_setup +ffffffff8265f0b1 t __setup_str_oops_setup +ffffffff8265f0b6 t __setup_str_strict_iomem +ffffffff8265f0bd t __setup_str_reserve_setup +ffffffff8265f0c6 t __setup_str_file_caps_disable +ffffffff8265f0d3 t __setup_str_setup_print_fatal_signals +ffffffff8265f0e8 t __setup_str_reboot_setup +ffffffff8265f0f0 t __setup_str_setup_relax_domain_level +ffffffff8265f104 t __setup_str_setup_autogroup +ffffffff8265f110 t __setup_str_housekeeping_isolcpus_setup +ffffffff8265f11a t __setup_str_housekeeping_nohz_full_setup +ffffffff8265f125 t __setup_str_mem_sleep_default_setup +ffffffff8265f138 t __setup_str_keep_bootcon_setup +ffffffff8265f145 t __setup_str_console_suspend_disable +ffffffff8265f158 t __setup_str_console_setup +ffffffff8265f161 t __setup_str_console_msg_format_setup +ffffffff8265f175 t __setup_str_ignore_loglevel_setup +ffffffff8265f185 t __setup_str_log_buf_len_setup +ffffffff8265f191 t __setup_str_control_devkmsg +ffffffff8265f1a1 t __setup_str_irq_affinity_setup +ffffffff8265f1ae t __setup_str_setup_forced_irqthreads +ffffffff8265f1b9 t __setup_str_irqpoll_setup +ffffffff8265f1c1 t __setup_str_irqfixup_setup +ffffffff8265f1ca t __setup_str_noirqdebug_setup +ffffffff8265f1d5 t __setup_str_setup_hrtimer_hres +ffffffff8265f1de t __setup_str_ntp_tick_adj_setup +ffffffff8265f1ec t __setup_str_boot_override_clock +ffffffff8265f1f3 t __setup_str_boot_override_clocksource +ffffffff8265f200 t __setup_str_skew_tick +ffffffff8265f20a t __setup_str_setup_tick_nohz +ffffffff8265f210 t __setup_str_maxcpus +ffffffff8265f218 t __setup_str_nrcpus +ffffffff8265f220 t __setup_str_nosmp +ffffffff8265f226 t __setup_str_cgroup_disable +ffffffff8265f236 t __setup_str_cgroup_no_v1 +ffffffff8265f244 t __setup_str_delayacct_setup_disable +ffffffff8265f250 t __cert_list_end +ffffffff8265f250 t __cert_list_start +ffffffff8265f250 T system_certificate_list +ffffffff8265f250 T system_certificate_list_size +ffffffff8265f258 t __setup_str_cmdline_parse_movablecore +ffffffff8265f264 t __setup_str_cmdline_parse_kernelcore +ffffffff8265f270 t __setup_str_percpu_alloc_setup +ffffffff8265f280 T pcpu_fc_names +ffffffff8265f2a0 T kmalloc_info +ffffffff8265f450 t __setup_str_setup_slab_nomerge +ffffffff8265f45d t __setup_str_slub_nomerge +ffffffff8265f46a t __setup_str_disable_randmaps +ffffffff8265f475 t __setup_str_cmdline_parse_stack_guard_gap +ffffffff8265f486 t __setup_str_early_memblock +ffffffff8265f48f t __setup_str_setup_slub_min_objects +ffffffff8265f4a1 t __setup_str_setup_slub_max_order +ffffffff8265f4b1 t __setup_str_setup_slub_min_order +ffffffff8265f4c1 t __setup_str_setup_transparent_hugepage +ffffffff8265f4d7 t __setup_str_early_ioremap_debug_setup +ffffffff8265f4eb t __setup_str_set_dhash_entries +ffffffff8265f4fa t __setup_str_set_ihash_entries +ffffffff8265f509 t __setup_str_set_mphash_entries +ffffffff8265f519 t __setup_str_set_mhash_entries +ffffffff8265f528 t __setup_str_ca_keys_setup +ffffffff8265f531 t __setup_str_elevator_setup +ffffffff8265f53b t __setup_str_force_gpt_fn +ffffffff8265f53f t __setup_str_setup_io_tlb_npages +ffffffff8265f547 t __setup_str_pci_setup +ffffffff8265f54b t __setup_str_pcie_port_pm_setup +ffffffff8265f559 t __setup_str_pcie_aspm_disable +ffffffff8265f564 t __setup_str_pciehp_setup +ffffffff8265f580 t pcie_portdrv_dmi_table +ffffffff8265f830 t __setup_str_pcie_port_setup +ffffffff8265f83c t __setup_str_pcie_pme_setup +ffffffff8265f846 t __setup_str_video_setup +ffffffff8265f84d t __setup_str_fb_console_setup +ffffffff8265f860 t intel_idle_ids +ffffffff8265fab0 t __setup_str_acpi_force_32bit_fadt_addr +ffffffff8265facb t __setup_str_acpi_force_table_verification_setup +ffffffff8265fae9 t __setup_str_acpi_parse_apic_instance +ffffffff8265fb00 t acpi_rev_dmi_table +ffffffff8265fc60 t acpi_osi_dmi_table +ffffffff82661490 t __setup_str_osi_setup +ffffffff8266149a t __setup_str_acpi_disable_return_repair +ffffffff826614b2 t __setup_str_acpi_no_static_ssdt_setup +ffffffff826614c6 t __setup_str_acpi_enforce_resources_setup +ffffffff826614de t __setup_str_acpi_no_auto_serialize_setup +ffffffff826614f5 t __setup_str_acpi_os_name_setup +ffffffff82661503 t __setup_str_acpi_backlight +ffffffff82661520 t acpisleep_dmi_table +ffffffff82663560 t acpi_quirks_dmi_table +ffffffff82663ac0 t processor_idle_dmi_table +ffffffff82663d80 t ec_dmi_table +ffffffff826646e8 t __setup_str_acpi_irq_balance_set +ffffffff826646f9 t __setup_str_acpi_irq_nobalance_set +ffffffff8266470c t __setup_str_acpi_irq_pci +ffffffff8266471a t __setup_str_acpi_irq_isa +ffffffff82664728 t __setup_str_acpi_gpe_set_masked_gpes +ffffffff82664740 t thermal_dmi_table +ffffffff82664df8 t __setup_str_pnp_setup_reserve_mem +ffffffff82664e09 t __setup_str_pnp_setup_reserve_io +ffffffff82664e19 t __setup_str_pnp_setup_reserve_dma +ffffffff82664e2a t __setup_str_pnp_setup_reserve_irq +ffffffff82664e3b t __setup_str_pnpacpi_setup +ffffffff82664e44 t __setup_str_clk_ignore_unused_setup +ffffffff82664e56 t __setup_str_iommu_set_def_domain_type +ffffffff82664e68 t __setup_str_intel_iommu_setup +ffffffff82664e75 t __setup_str_setup_irqremap +ffffffff82664e7e t __setup_str_setup_nointremap +ffffffff82664e89 t __setup_str_mount_param +ffffffff82664e99 t __setup_str_max_loop_setup +ffffffff82664ec0 t force_tbl.51446 +ffffffff82665710 t pci_overrides +ffffffff82665730 t xhci_pci_overrides +ffffffff82665760 t __setup_str_intel_pstate_setup +ffffffff82665780 t hwp_support_ids +ffffffff826657a0 t intel_pstate_cpu_oob_ids +ffffffff826657e0 t __setup_str_cpuidle_sysfs_setup +ffffffff826657f5 t __setup_str_efivar_ssdt_setup +ffffffff82665802 t __setup_str_parse_efi_cmdline +ffffffff82665806 t __setup_str_setup_noefi +ffffffff8266580c t __setup_str_parse_pmtmr +ffffffff82665813 t __setup_str_acpi_pm_good_setup +ffffffff82665820 t __setup_str_parse_ras_param +ffffffff82665840 t pci_mmcfg_probes +ffffffff826658c0 t extcfg_base_mask.38269 +ffffffff826658d0 t extcfg_sizebus.38268 +ffffffff826658e0 t pci_crs_quirks +ffffffff82666660 t pciirq_dmi_table +ffffffff82666a80 t pciprobe_dmi_table +ffffffff82668c20 t can_skip_pciprobe_dmi_table +ffffffff82669180 t __setup_str_netdev_boot_setup +ffffffff82669188 t __setup_str_netdev_boot_setup +ffffffff8266918f t __setup_str_set_thash_entries +ffffffff8266919e t __setup_str_set_tcpmhash_entries +ffffffff826691b0 t __setup_str_set_uhash_entries +ffffffff826691bf t __setup_str_set_nohugeiomap +ffffffff826691d0 T __clk_of_table +ffffffff826691d0 T __cpu_method_of_table +ffffffff826691d0 T __cpuidle_method_of_table +ffffffff826691e0 T __dtb_end +ffffffff826691e0 T __dtb_start +ffffffff826691e0 T __iort_acpi_probe_table +ffffffff826691e0 T __iort_acpi_probe_table_end +ffffffff826691e0 T __irqchip_acpi_probe_table +ffffffff826691e0 T __irqchip_acpi_probe_table_end +ffffffff826691e0 t __setup_set_debug_rodata +ffffffff826691e0 T __setup_start +ffffffff826691e0 T __timer_acpi_probe_table +ffffffff826691e0 T __timer_acpi_probe_table_end +ffffffff826691f8 t __setup_initcall_blacklist +ffffffff82669210 t __setup_rdinit_setup +ffffffff82669228 t __setup_init_setup +ffffffff82669240 t __setup_loglevel +ffffffff82669258 t __setup_quiet_kernel +ffffffff82669270 t __setup_debug_kernel +ffffffff82669288 t __setup_set_reset_devices +ffffffff826692a0 t __setup_root_delay_setup +ffffffff826692b8 t __setup_fs_names_setup +ffffffff826692d0 t __setup_root_data_setup +ffffffff826692e8 t __setup_rootwait_setup +ffffffff82669300 t __setup_root_dev_setup +ffffffff82669318 t __setup_readwrite +ffffffff82669330 t __setup_readonly +ffffffff82669348 t __setup_load_ramdisk +ffffffff82669360 t __setup_lpj_setup +ffffffff82669378 t __setup_vdso_setup +ffffffff82669390 t __setup_code_bytes_setup +ffffffff826693a8 t __setup_setup_unknown_nmi_panic +ffffffff826693c0 t __setup_parse_reservelow +ffffffff826693d8 t __setup_control_va_addr_alignment +ffffffff826693f0 t __setup_parse_memmap_opt +ffffffff82669408 t __setup_parse_memopt +ffffffff82669420 t __setup_iommu_setup +ffffffff82669438 t __setup_enable_cpu0_hotplug +ffffffff82669450 t __setup_setup_noreplace_smp +ffffffff82669468 t __setup_debug_alt +ffffffff82669480 t __setup_tsc_setup +ffffffff82669498 t __setup_notsc_setup +ffffffff826694b0 t __setup_io_delay_param +ffffffff826694c8 t __setup_idle_setup +ffffffff826694e0 t __setup_setup_clearcpuid +ffffffff826694f8 t __setup_setup_noclflush +ffffffff82669510 t __setup_setup_disable_pku +ffffffff82669528 t __setup_setup_disable_smap +ffffffff82669540 t __setup_setup_disable_smep +ffffffff82669558 t __setup_x86_noinvpcid_setup +ffffffff82669570 t __setup_x86_nopcid_setup +ffffffff82669588 t __setup_x86_mpx_setup +ffffffff826695a0 t __setup_x86_rdrand_setup +ffffffff826695b8 t __setup_ring3mwait_disable +ffffffff826695d0 t __setup_forcempx_setup +ffffffff826695e8 t __setup_mcheck_disable +ffffffff82669600 t __setup_mcheck_enable +ffffffff82669618 t __setup_int_pln_enable_setup +ffffffff82669630 t __setup_disable_mtrr_trim_setup +ffffffff82669648 t __setup_parse_mtrr_spare_reg +ffffffff82669660 t __setup_parse_mtrr_gran_size_opt +ffffffff82669678 t __setup_parse_mtrr_chunk_size_opt +ffffffff82669690 t __setup_mtrr_cleanup_debug_setup +ffffffff826696a8 t __setup_enable_mtrr_cleanup_setup +ffffffff826696c0 t __setup_disable_mtrr_cleanup_setup +ffffffff826696d8 t __setup_setup_acpi_sci +ffffffff826696f0 t __setup_parse_acpi_use_timer_override +ffffffff82669708 t __setup_parse_acpi_skip_timer_override +ffffffff82669720 t __setup_parse_pci +ffffffff82669738 t __setup_parse_acpi +ffffffff82669750 t __setup_acpi_sleep_setup +ffffffff82669768 t __setup_nonmi_ipi_setup +ffffffff82669780 t __setup__setup_possible_cpus +ffffffff82669798 t __setup_cpu_init_udelay +ffffffff826697b0 t __setup_apic_set_extnmi +ffffffff826697c8 t __setup_apic_set_disabled_cpu_apicid +ffffffff826697e0 t __setup_apic_set_verbosity +ffffffff826697f8 t __setup_parse_nolapic_timer +ffffffff82669810 t __setup_parse_disable_apic_timer +ffffffff82669828 t __setup_parse_lapic_timer_c2_ok +ffffffff82669840 t __setup_setup_nolapic +ffffffff82669858 t __setup_setup_disableapic +ffffffff82669870 t __setup_setup_apicpmtimer +ffffffff82669888 t __setup_parse_lapic +ffffffff826698a0 t __setup_setup_show_lapic +ffffffff826698b8 t __setup_disable_timer_pin_setup +ffffffff826698d0 t __setup_notimercheck +ffffffff826698e8 t __setup_parse_noapic +ffffffff82669900 t __setup_disable_hpet +ffffffff82669918 t __setup_hpet_setup +ffffffff82669930 t __setup_parse_direct_gbpages_off +ffffffff82669948 t __setup_parse_direct_gbpages_on +ffffffff82669960 t __setup_nonx32_setup +ffffffff82669978 t __setup_pat_debug_setup +ffffffff82669990 t __setup_nopat +ffffffff826699a8 t __setup_setup_userpte +ffffffff826699c0 t __setup_noexec_setup +ffffffff826699d8 t __setup_setup_init_pkru +ffffffff826699f0 t __setup_setup_storage_paranoia +ffffffff82669a08 t __setup_arch_parse_efi_cmdline +ffffffff82669a20 t __setup_setup_add_efi_memmap +ffffffff82669a38 t __setup_coredump_filter_setup +ffffffff82669a50 t __setup_oops_setup +ffffffff82669a68 t __setup_strict_iomem +ffffffff82669a80 t __setup_reserve_setup +ffffffff82669a98 t __setup_file_caps_disable +ffffffff82669ab0 t __setup_setup_print_fatal_signals +ffffffff82669ac8 t __setup_reboot_setup +ffffffff82669ae0 t __setup_setup_relax_domain_level +ffffffff82669af8 t __setup_setup_autogroup +ffffffff82669b10 t __setup_housekeeping_isolcpus_setup +ffffffff82669b28 t __setup_housekeeping_nohz_full_setup +ffffffff82669b40 t __setup_mem_sleep_default_setup +ffffffff82669b58 t __setup_keep_bootcon_setup +ffffffff82669b70 t __setup_console_suspend_disable +ffffffff82669b88 t __setup_console_setup +ffffffff82669ba0 t __setup_console_msg_format_setup +ffffffff82669bb8 t __setup_ignore_loglevel_setup +ffffffff82669bd0 t __setup_log_buf_len_setup +ffffffff82669be8 t __setup_control_devkmsg +ffffffff82669c00 t __setup_irq_affinity_setup +ffffffff82669c18 t __setup_setup_forced_irqthreads +ffffffff82669c30 t __setup_irqpoll_setup +ffffffff82669c48 t __setup_irqfixup_setup +ffffffff82669c60 t __setup_noirqdebug_setup +ffffffff82669c78 t __setup_setup_hrtimer_hres +ffffffff82669c90 t __setup_ntp_tick_adj_setup +ffffffff82669ca8 t __setup_boot_override_clock +ffffffff82669cc0 t __setup_boot_override_clocksource +ffffffff82669cd8 t __setup_skew_tick +ffffffff82669cf0 t __setup_setup_tick_nohz +ffffffff82669d08 t __setup_maxcpus +ffffffff82669d20 t __setup_nrcpus +ffffffff82669d38 t __setup_nosmp +ffffffff82669d50 t __setup_cgroup_disable +ffffffff82669d68 t __setup_cgroup_no_v1 +ffffffff82669d80 t __setup_delayacct_setup_disable +ffffffff82669d98 t __setup_cmdline_parse_movablecore +ffffffff82669db0 t __setup_cmdline_parse_kernelcore +ffffffff82669dc8 t __setup_percpu_alloc_setup +ffffffff82669de0 t __setup_setup_slab_nomerge +ffffffff82669df8 t __setup_slub_nomerge +ffffffff82669e10 t __setup_disable_randmaps +ffffffff82669e28 t __setup_cmdline_parse_stack_guard_gap +ffffffff82669e40 t __setup_early_memblock +ffffffff82669e58 t __setup_setup_slub_min_objects +ffffffff82669e70 t __setup_setup_slub_max_order +ffffffff82669e88 t __setup_setup_slub_min_order +ffffffff82669ea0 t __setup_setup_transparent_hugepage +ffffffff82669eb8 t __setup_early_ioremap_debug_setup +ffffffff82669ed0 t __setup_set_dhash_entries +ffffffff82669ee8 t __setup_set_ihash_entries +ffffffff82669f00 t __setup_set_mphash_entries +ffffffff82669f18 t __setup_set_mhash_entries +ffffffff82669f30 t __setup_ca_keys_setup +ffffffff82669f48 t __setup_elevator_setup +ffffffff82669f60 t __setup_force_gpt_fn +ffffffff82669f78 t __setup_setup_io_tlb_npages +ffffffff82669f90 t __setup_pci_setup +ffffffff82669fa8 t __setup_pcie_port_pm_setup +ffffffff82669fc0 t __setup_pcie_aspm_disable +ffffffff82669fd8 t __setup_pciehp_setup +ffffffff82669ff0 t __setup_pcie_port_setup +ffffffff8266a008 t __setup_pcie_pme_setup +ffffffff8266a020 t __setup_video_setup +ffffffff8266a038 t __setup_fb_console_setup +ffffffff8266a050 t __setup_acpi_force_32bit_fadt_addr +ffffffff8266a068 t __setup_acpi_force_table_verification_setup +ffffffff8266a080 t __setup_acpi_parse_apic_instance +ffffffff8266a098 t __setup_osi_setup +ffffffff8266a0b0 t __setup_acpi_disable_return_repair +ffffffff8266a0c8 t __setup_acpi_no_static_ssdt_setup +ffffffff8266a0e0 t __setup_acpi_enforce_resources_setup +ffffffff8266a0f8 t __setup_acpi_no_auto_serialize_setup +ffffffff8266a110 t __setup_acpi_os_name_setup +ffffffff8266a128 t __setup_acpi_backlight +ffffffff8266a140 t __setup_acpi_irq_balance_set +ffffffff8266a158 t __setup_acpi_irq_nobalance_set +ffffffff8266a170 t __setup_acpi_irq_pci +ffffffff8266a188 t __setup_acpi_irq_isa +ffffffff8266a1a0 t __setup_acpi_gpe_set_masked_gpes +ffffffff8266a1b8 t __setup_pnp_setup_reserve_mem +ffffffff8266a1d0 t __setup_pnp_setup_reserve_io +ffffffff8266a1e8 t __setup_pnp_setup_reserve_dma +ffffffff8266a200 t __setup_pnp_setup_reserve_irq +ffffffff8266a218 t __setup_pnpacpi_setup +ffffffff8266a230 t __setup_clk_ignore_unused_setup +ffffffff8266a248 t __setup_iommu_set_def_domain_type +ffffffff8266a260 t __setup_intel_iommu_setup +ffffffff8266a278 t __setup_setup_irqremap +ffffffff8266a290 t __setup_setup_nointremap +ffffffff8266a2a8 t __setup_mount_param +ffffffff8266a2c0 t __setup_max_loop_setup +ffffffff8266a2d8 t __setup_intel_pstate_setup +ffffffff8266a2f0 t __setup_cpuidle_sysfs_setup +ffffffff8266a308 t __setup_efivar_ssdt_setup +ffffffff8266a320 t __setup_parse_efi_cmdline +ffffffff8266a338 t __setup_setup_noefi +ffffffff8266a350 t __setup_parse_pmtmr +ffffffff8266a368 t __setup_acpi_pm_good_setup +ffffffff8266a380 t __setup_parse_ras_param +ffffffff8266a398 t __setup_netdev_boot_setup +ffffffff8266a3b0 t __setup_netdev_boot_setup +ffffffff8266a3c8 t __setup_set_thash_entries +ffffffff8266a3e0 t __setup_set_tcpmhash_entries +ffffffff8266a3f8 t __setup_set_uhash_entries +ffffffff8266a410 t __setup_set_nohugeiomap +ffffffff8266a428 t __initcall_init_hw_perf_eventsearly +ffffffff8266a428 T __initcall_start +ffffffff8266a428 T __setup_end +ffffffff8266a430 t __initcall_init_real_modeearly +ffffffff8266a438 t __initcall_validate_x2apicearly +ffffffff8266a440 t __initcall_register_nmi_cpu_backtrace_handlerearly +ffffffff8266a448 t __initcall_spawn_ksoftirqdearly +ffffffff8266a450 t __initcall_migration_initearly +ffffffff8266a458 t __initcall_check_cpu_stall_initearly +ffffffff8266a460 t __initcall_srcu_bootup_announceearly +ffffffff8266a468 t __initcall_rcu_spawn_gp_kthreadearly +ffffffff8266a470 t __initcall_cpu_stop_initearly +ffffffff8266a478 t __initcall_rand_initializeearly +ffffffff8266a480 t __initcall_initialize_ptr_randomearly +ffffffff8266a488 T __initcall0_start +ffffffff8266a488 t __initcall_ipc_ns_init0 +ffffffff8266a490 t __initcall_init_mmap_min_addr0 +ffffffff8266a498 t __initcall_init_cpufreq_transition_notifier_list0 +ffffffff8266a4a0 t __initcall_net_ns_init0 +ffffffff8266a4a8 T __initcall1_start +ffffffff8266a4a8 t __initcall_e820__register_nvs_regions1 +ffffffff8266a4b0 t __initcall_cpufreq_register_tsc_scaling1 +ffffffff8266a4b8 t __initcall_init_cpu_syscore1 +ffffffff8266a4c0 t __initcall_reboot_init1 +ffffffff8266a4c8 t __initcall_init_lapic_sysfs1 +ffffffff8266a4d0 t __initcall_cpu_hotplug_pm_sync_init1 +ffffffff8266a4d8 t __initcall_alloc_frozen_cpus1 +ffffffff8266a4e0 t __initcall_wq_sysfs_init1 +ffffffff8266a4e8 t __initcall_ksysfs_init1 +ffffffff8266a4f0 t __initcall_pm_init1 +ffffffff8266a4f8 t __initcall_rcu_spawn_tasks_kthread1 +ffffffff8266a500 t __initcall_rcu_set_runtime_mode1 +ffffffff8266a508 t __initcall_init_jiffies_clocksource1 +ffffffff8266a510 t __initcall_futex_init1 +ffffffff8266a518 t __initcall_cgroup_wq_init1 +ffffffff8266a520 t __initcall_cgroup1_wq_init1 +ffffffff8266a528 t __initcall_init_per_zone_wmark_min1 +ffffffff8266a530 t __initcall_init_zero_pfn1 +ffffffff8266a538 t __initcall_fsnotify_init1 +ffffffff8266a540 t __initcall_filelock_init1 +ffffffff8266a548 t __initcall_init_script_binfmt1 +ffffffff8266a550 t __initcall_init_elf_binfmt1 +ffffffff8266a558 t __initcall_calibrate_xor_blocks1 +ffffffff8266a560 t __initcall_prandom_init1 +ffffffff8266a568 t __initcall_iommu_init1 +ffffffff8266a570 t __initcall_cpufreq_core_init1 +ffffffff8266a578 t __initcall_cpuidle_init1 +ffffffff8266a580 t __initcall_capsule_reboot_register1 +ffffffff8266a588 t __initcall_bsp_pm_check_init1 +ffffffff8266a590 t __initcall_sock_init1 +ffffffff8266a598 t __initcall_net_inuse_init1 +ffffffff8266a5a0 t __initcall_net_defaults_init1 +ffffffff8266a5a8 t __initcall_init_default_flow_dissectors1 +ffffffff8266a5b0 t __initcall_netlink_proto_init1 +ffffffff8266a5b8 T __initcall2_start +ffffffff8266a5b8 t __initcall_irq_sysfs_init2 +ffffffff8266a5c0 t __initcall_bdi_class_init2 +ffffffff8266a5c8 t __initcall_mm_sysfs_init2 +ffffffff8266a5d0 t __initcall_pcibus_class_init2 +ffffffff8266a5d8 t __initcall_pci_driver_init2 +ffffffff8266a5e0 t __initcall_backlight_class_init2 +ffffffff8266a5e8 t __initcall_tty_class_init2 +ffffffff8266a5f0 t __initcall_vtconsole_class_init2 +ffffffff8266a5f8 t __initcall_iommu_dev_init2 +ffffffff8266a600 t __initcall_wakeup_sources_debugfs_init2 +ffffffff8266a608 t __initcall_regmap_initcall2 +ffffffff8266a610 t __initcall_i2c_init2 +ffffffff8266a618 t __initcall_init_menu2 +ffffffff8266a620 t __initcall_pcc_init2 +ffffffff8266a628 t __initcall_kobject_uevent_init2 +ffffffff8266a630 T __initcall3_start +ffffffff8266a630 t __initcall_bts_init3 +ffffffff8266a638 t __initcall_pt_init3 +ffffffff8266a640 t __initcall_boot_params_ksysfs_init3 +ffffffff8266a648 t __initcall_sbf_init3 +ffffffff8266a650 t __initcall_arch_kdebugfs_init3 +ffffffff8266a658 t __initcall_mtrr_if_init3 +ffffffff8266a660 t __initcall_ffh_cstate_init3 +ffffffff8266a668 t __initcall_kcmp_cookies_init3 +ffffffff8266a670 t __initcall_acpi_pci_init3 +ffffffff8266a678 t __initcall_dmi_id_init3 +ffffffff8266a680 t __initcall_pci_arch_init3 +ffffffff8266a688 T __initcall4_start +ffffffff8266a688 t __initcall_init_vdso4 +ffffffff8266a690 t __initcall_fixup_ht_bug4 +ffffffff8266a698 t __initcall_topology_init4 +ffffffff8266a6a0 t __initcall_mtrr_init_finialize4 +ffffffff8266a6a8 t __initcall_uid_cache_init4 +ffffffff8266a6b0 t __initcall_param_sysfs_init4 +ffffffff8266a6b8 t __initcall_user_namespace_sysctl_init4 +ffffffff8266a6c0 t __initcall_cgroup_sysfs_init4 +ffffffff8266a6c8 t __initcall_cgroup_namespaces_init4 +ffffffff8266a6d0 t __initcall_user_namespaces_init4 +ffffffff8266a6d8 t __initcall_dev_map_init4 +ffffffff8266a6e0 t __initcall_bpf_offload_init4 +ffffffff8266a6e8 t __initcall_oom_init4 +ffffffff8266a6f0 t __initcall_default_bdi_init4 +ffffffff8266a6f8 t __initcall_percpu_enable_async4 +ffffffff8266a700 t __initcall_kcompactd_init4 +ffffffff8266a708 t __initcall_init_reserve_notifier4 +ffffffff8266a710 t __initcall_init_admin_reserve4 +ffffffff8266a718 t __initcall_init_user_reserve4 +ffffffff8266a720 t __initcall_hugepage_init4 +ffffffff8266a728 t __initcall_crypto_wq_init4 +ffffffff8266a730 t __initcall_cryptomgr_init4 +ffffffff8266a738 t __initcall_cryptd_init4 +ffffffff8266a740 t __initcall_init_bio4 +ffffffff8266a748 t __initcall_blk_settings_init4 +ffffffff8266a750 t __initcall_blk_ioc_init4 +ffffffff8266a758 t __initcall_blk_softirq_init4 +ffffffff8266a760 t __initcall_blk_mq_init4 +ffffffff8266a768 t __initcall_genhd_device_init4 +ffffffff8266a770 t __initcall_raid6_select_algo4 +ffffffff8266a778 t __initcall_pci_slot_init4 +ffffffff8266a780 t __initcall_fbmem_init4 +ffffffff8266a788 t __initcall_acpi_init4 +ffffffff8266a790 t __initcall_pnp_init4 +ffffffff8266a798 t __initcall_misc_init4 +ffffffff8266a7a0 t __initcall_cn_init4 +ffffffff8266a7a8 t __initcall_dma_buf_init4 +ffffffff8266a7b0 t __initcall_init_scsi4 +ffffffff8266a7b8 t __initcall_ata_init4 +ffffffff8266a7c0 t __initcall_usb_init4 +ffffffff8266a7c8 t __initcall_input_init4 +ffffffff8266a7d0 t __initcall_rtc_init4 +ffffffff8266a7d8 t __initcall_power_supply_class_init4 +ffffffff8266a7e0 t __initcall_edac_init4 +ffffffff8266a7e8 t __initcall_dmi_init4 +ffffffff8266a7f0 t __initcall_efisubsys_init4 +ffffffff8266a7f8 t __initcall_ras_init4 +ffffffff8266a800 t __initcall_init_soundcore4 +ffffffff8266a808 t __initcall_alsa_sound_init4 +ffffffff8266a810 t __initcall_hda_bus_init4 +ffffffff8266a818 t __initcall_pci_subsys_init4 +ffffffff8266a820 t __initcall_proto_init4 +ffffffff8266a828 t __initcall_net_dev_init4 +ffffffff8266a830 t __initcall_neigh_init4 +ffffffff8266a838 t __initcall_fib_notifier_init4 +ffffffff8266a840 t __initcall_genl_init4 +ffffffff8266a848 t __initcall_bt_init4 +ffffffff8266a850 t __initcall_ieee80211_init4 +ffffffff8266a858 t __initcall_acpi_wmi_init4s +ffffffff8266a860 T __initcall5_start +ffffffff8266a860 t __initcall_nmi_warning_debugfs5 +ffffffff8266a868 t __initcall_save_microcode_in_initrd5 +ffffffff8266a870 t __initcall_hpet_late_init5 +ffffffff8266a878 t __initcall_clocksource_done_booting5 +ffffffff8266a880 t __initcall_bpf_init5 +ffffffff8266a888 t __initcall_init_pipe_fs5 +ffffffff8266a890 t __initcall_inotify_user_setup5 +ffffffff8266a898 t __initcall_eventpoll_init5 +ffffffff8266a8a0 t __initcall_anon_inode_init5 +ffffffff8266a8a8 t __initcall_proc_locks_init5 +ffffffff8266a8b0 t __initcall_proc_cmdline_init5 +ffffffff8266a8b8 t __initcall_proc_consoles_init5 +ffffffff8266a8c0 t __initcall_proc_cpuinfo_init5 +ffffffff8266a8c8 t __initcall_proc_devices_init5 +ffffffff8266a8d0 t __initcall_proc_interrupts_init5 +ffffffff8266a8d8 t __initcall_proc_loadavg_init5 +ffffffff8266a8e0 t __initcall_proc_meminfo_init5 +ffffffff8266a8e8 t __initcall_proc_stat_init5 +ffffffff8266a8f0 t __initcall_proc_uptime_init5 +ffffffff8266a8f8 t __initcall_proc_version_init5 +ffffffff8266a900 t __initcall_proc_softirqs_init5 +ffffffff8266a908 t __initcall_proc_kmsg_init5 +ffffffff8266a910 t __initcall_init_ramfs_fs5 +ffffffff8266a918 t __initcall_blk_scsi_ioctl_init5 +ffffffff8266a920 t __initcall_acpi_event_init5 +ffffffff8266a928 t __initcall_pnp_system_init5 +ffffffff8266a930 t __initcall_pnpacpi_init5 +ffffffff8266a938 t __initcall_chr_dev_init5 +ffffffff8266a940 t __initcall_firmware_class_init5 +ffffffff8266a948 t __initcall_thermal_init5 +ffffffff8266a950 t __initcall_cpufreq_gov_powersave_init5 +ffffffff8266a958 t __initcall_init_acpi_pm_clocksource5 +ffffffff8266a960 t __initcall_pcibios_assign_resources5 +ffffffff8266a968 t __initcall_sysctl_core_init5 +ffffffff8266a970 t __initcall_eth_offload_init5 +ffffffff8266a978 t __initcall_inet_init5 +ffffffff8266a980 t __initcall_ipv4_offload_init5 +ffffffff8266a988 t __initcall_af_unix_init5 +ffffffff8266a990 t __initcall_ipv6_offload_init5 +ffffffff8266a998 t __initcall_cfg80211_init5 +ffffffff8266a9a0 t __initcall_pci_apply_final_quirks5s +ffffffff8266a9a8 t __initcall_acpi_reserve_resources5s +ffffffff8266a9b0 t __initcall_default_rootfsrootfs +ffffffff8266a9b0 T __initcallrootfs_start +ffffffff8266a9b8 t __initcall_pci_iommu_initrootfs +ffffffff8266a9c0 t __initcall_ir_dev_scope_initrootfs +ffffffff8266a9c8 T __initcall6_start +ffffffff8266a9c8 t __initcall_amd_ibs_init6 +ffffffff8266a9d0 t __initcall_msr_init6 +ffffffff8266a9d8 t __initcall_register_kernel_offset_dumper6 +ffffffff8266a9e0 t __initcall_i8259A_init_ops6 +ffffffff8266a9e8 t __initcall_init_tsc_clocksource6 +ffffffff8266a9f0 t __initcall_add_rtc_cmos6 +ffffffff8266a9f8 t __initcall_thermal_throttle_init_device6 +ffffffff8266aa00 t __initcall_ioapic_init_ops6 +ffffffff8266aa08 t __initcall_sysfb_init6 +ffffffff8266aa10 t __initcall_aes_init6 +ffffffff8266aa18 t __initcall_des3_ede_x86_init6 +ffffffff8266aa20 t __initcall_crc32c_intel_mod_init6 +ffffffff8266aa28 t __initcall_sha1_ssse3_mod_init6 +ffffffff8266aa30 t __initcall_sha256_ssse3_mod_init6 +ffffffff8266aa38 t __initcall_proc_execdomains_init6 +ffffffff8266aa40 t __initcall_cpuhp_sysfs_init6 +ffffffff8266aa48 t __initcall_ioresources_init6 +ffffffff8266aa50 t __initcall_irq_pm_init_ops6 +ffffffff8266aa58 t __initcall_timekeeping_init_ops6 +ffffffff8266aa60 t __initcall_init_clocksource_sysfs6 +ffffffff8266aa68 t __initcall_init_timer_list_procfs6 +ffffffff8266aa70 t __initcall_alarmtimer_init6 +ffffffff8266aa78 t __initcall_init_posix_timers6 +ffffffff8266aa80 t __initcall_clockevents_init_sysfs6 +ffffffff8266aa88 t __initcall_pid_namespaces_init6 +ffffffff8266aa90 t __initcall_seccomp_sysctl_init6 +ffffffff8266aa98 t __initcall_utsname_sysctl_init6 +ffffffff8266aaa0 t __initcall_perf_event_sysfs_init6 +ffffffff8266aaa8 t __initcall_system_trusted_keyring_init6 +ffffffff8266aab0 t __initcall_kswapd_init6 +ffffffff8266aab8 t __initcall_mm_compute_batch_init6 +ffffffff8266aac0 t __initcall_workingset_init6 +ffffffff8266aac8 t __initcall_proc_vmalloc_init6 +ffffffff8266aad0 t __initcall_slab_sysfs_init6 +ffffffff8266aad8 t __initcall_init_cleancache6 +ffffffff8266aae0 t __initcall_fcntl_init6 +ffffffff8266aae8 t __initcall_proc_filesystems_init6 +ffffffff8266aaf0 t __initcall_start_dirtytime_writeback6 +ffffffff8266aaf8 t __initcall_blkdev_init6 +ffffffff8266ab00 t __initcall_dio_init6 +ffffffff8266ab08 t __initcall_fanotify_user_setup6 +ffffffff8266ab10 t __initcall_aio_setup6 +ffffffff8266ab18 t __initcall_mbcache_init6 +ffffffff8266ab20 t __initcall_init_devpts_fs6 +ffffffff8266ab28 t __initcall_ext4_init_fs6 +ffffffff8266ab30 t __initcall_journal_init6 +ffffffff8266ab38 t __initcall_init_fat_fs6 +ffffffff8266ab40 t __initcall_init_vfat_fs6 +ffffffff8266ab48 t __initcall_init_nls_cp4376 +ffffffff8266ab50 t __initcall_init_nls_cp9326 +ffffffff8266ab58 t __initcall_init_nls_euc_jp6 +ffffffff8266ab60 t __initcall_init_nls_cp9366 +ffffffff8266ab68 t __initcall_init_nls_cp9506 +ffffffff8266ab70 t __initcall_init_nls_ascii6 +ffffffff8266ab78 t __initcall_init_nls_iso8859_16 +ffffffff8266ab80 t __initcall_init_nls_utf86 +ffffffff8266ab88 t __initcall_init_ntfs_fs6 +ffffffff8266ab90 t __initcall_init_autofs4_fs6 +ffffffff8266ab98 t __initcall_ipc_init6 +ffffffff8266aba0 t __initcall_ipc_sysctl_init6 +ffffffff8266aba8 t __initcall_init_mqueue_fs6 +ffffffff8266abb0 t __initcall_key_proc_init6 +ffffffff8266abb8 t __initcall_crypto_algapi_init6 +ffffffff8266abc0 t __initcall_seqiv_module_init6 +ffffffff8266abc8 t __initcall_rsa_init6 +ffffffff8266abd0 t __initcall_crypto_cmac_module_init6 +ffffffff8266abd8 t __initcall_hmac_module_init6 +ffffffff8266abe0 t __initcall_crypto_null_mod_init6 +ffffffff8266abe8 t __initcall_sha1_generic_mod_init6 +ffffffff8266abf0 t __initcall_sha256_generic_mod_init6 +ffffffff8266abf8 t __initcall_crypto_ecb_module_init6 +ffffffff8266ac00 t __initcall_crypto_ctr_module_init6 +ffffffff8266ac08 t __initcall_crypto_gcm_module_init6 +ffffffff8266ac10 t __initcall_crypto_ccm_module_init6 +ffffffff8266ac18 t __initcall_des_generic_mod_init6 +ffffffff8266ac20 t __initcall_aes_init6 +ffffffff8266ac28 t __initcall_arc4_init6 +ffffffff8266ac30 t __initcall_crc32c_mod_init6 +ffffffff8266ac38 t __initcall_crypto_authenc_module_init6 +ffffffff8266ac40 t __initcall_crypto_authenc_esn_module_init6 +ffffffff8266ac48 t __initcall_drbg_init6 +ffffffff8266ac50 t __initcall_jent_mod_init6 +ffffffff8266ac58 t __initcall_ghash_mod_init6 +ffffffff8266ac60 t __initcall_af_alg_init6 +ffffffff8266ac68 t __initcall_algif_hash_init6 +ffffffff8266ac70 t __initcall_ecdh_init6 +ffffffff8266ac78 t __initcall_asymmetric_key_init6 +ffffffff8266ac80 t __initcall_x509_key_init6 +ffffffff8266ac88 t __initcall_proc_genhd_init6 +ffffffff8266ac90 t __initcall_bsg_init6 +ffffffff8266ac98 t __initcall_noop_init6 +ffffffff8266aca0 t __initcall_cfq_init6 +ffffffff8266aca8 t __initcall_percpu_counter_startup6 +ffffffff8266acb0 t __initcall_sg_pool_init6 +ffffffff8266acb8 t __initcall_pci_proc_init6 +ffffffff8266acc0 t __initcall_pcie_portdrv_init6 +ffffffff8266acc8 t __initcall_aer_service_init6 +ffffffff8266acd0 t __initcall_pcie_pme_service_init6 +ffffffff8266acd8 t __initcall_intel_idle_init6 +ffffffff8266ace0 t __initcall_acpi_button_driver_init6 +ffffffff8266ace8 t __initcall_acpi_video_init6 +ffffffff8266acf0 t __initcall_acpi_processor_driver_init6 +ffffffff8266acf8 t __initcall_acpi_thermal_init6 +ffffffff8266ad00 t __initcall_acpi_pad_init6 +ffffffff8266ad08 t __initcall_gpio_clk_driver_init6 +ffffffff8266ad10 t __initcall_plt_clk_driver_init6 +ffffffff8266ad18 t __initcall_n_null_init6 +ffffffff8266ad20 t __initcall_pty_init6 +ffffffff8266ad28 t __initcall_hpet_init6 +ffffffff8266ad30 t __initcall_hwrng_modinit6 +ffffffff8266ad38 t __initcall_mod_init6 +ffffffff8266ad40 t __initcall_drm_kms_helper_init6 +ffffffff8266ad48 t __initcall_drm_core_init6 +ffffffff8266ad50 t __initcall_ttm_init6 +ffffffff8266ad58 t __initcall_nouveau_drm_init6 +ffffffff8266ad60 t __initcall_cn_proc_init6 +ffffffff8266ad68 t __initcall_topology_sysfs_init6 +ffffffff8266ad70 t __initcall_cacheinfo_sysfs_init6 +ffffffff8266ad78 t __initcall_loop_init6 +ffffffff8266ad80 t __initcall_init_sd6 +ffffffff8266ad88 t __initcall_ahci_pci_driver_init6 +ffffffff8266ad90 t __initcall_net_olddevs_init6 +ffffffff8266ad98 t __initcall_iwl_drv_init6 +ffffffff8266ada0 t __initcall_iwl_mvm_init6 +ffffffff8266ada8 t __initcall_ehci_hcd_init6 +ffffffff8266adb0 t __initcall_ehci_pci_init6 +ffffffff8266adb8 t __initcall_xhci_hcd_init6 +ffffffff8266adc0 t __initcall_xhci_pci_init6 +ffffffff8266adc8 t __initcall_usb_storage_driver_init6 +ffffffff8266add0 t __initcall_evdev_init6 +ffffffff8266add8 t __initcall_cmos_init6 +ffffffff8266ade0 t __initcall_smbalert_driver_init6 +ffffffff8266ade8 t __initcall_i2c_i801_init6 +ffffffff8266adf0 t __initcall_intel_pch_thermal_driver_init6 +ffffffff8266adf8 t __initcall_hci_uart_init6 +ffffffff8266ae00 t __initcall_btusb_driver_init6 +ffffffff8266ae08 t __initcall_sbridge_init6 +ffffffff8266ae10 t __initcall_intel_pstate_init6 +ffffffff8266ae18 t __initcall_esrt_sysfs_init6 +ffffffff8266ae20 t __initcall_hid_init6 +ffffffff8266ae28 t __initcall_uhid_misc_init6 +ffffffff8266ae30 t __initcall_hid_generic_init6 +ffffffff8266ae38 t __initcall_hid_init6 +ffffffff8266ae40 t __initcall_mxm_wmi_init6 +ffffffff8266ae48 t __initcall_smartconnect_driver_init6 +ffffffff8266ae50 t __initcall_pmc_atom_init6 +ffffffff8266ae58 t __initcall_alsa_hwdep_init6 +ffffffff8266ae60 t __initcall_alsa_timer_init6 +ffffffff8266ae68 t __initcall_snd_hrtimer_init6 +ffffffff8266ae70 t __initcall_alsa_pcm_init6 +ffffffff8266ae78 t __initcall_alsa_rawmidi_init6 +ffffffff8266ae80 t __initcall_hdmi_driver_init6 +ffffffff8266ae88 t __initcall_azx_driver_init6 +ffffffff8266ae90 t __initcall_usb_audio_driver_init6 +ffffffff8266ae98 t __initcall_pm_check_save_msr6 +ffffffff8266aea0 t __initcall_sock_diag_init6 +ffffffff8266aea8 t __initcall_nfnetlink_init6 +ffffffff8266aeb0 t __initcall_nf_conntrack_standalone_init6 +ffffffff8266aeb8 t __initcall_nf_tables_module_init6 +ffffffff8266aec0 t __initcall_nf_tables_inet_init6 +ffffffff8266aec8 t __initcall_nft_meta_module_init6 +ffffffff8266aed0 t __initcall_nft_rt_module_init6 +ffffffff8266aed8 t __initcall_nft_ct_module_init6 +ffffffff8266aee0 t __initcall_nft_limit_module_init6 +ffffffff8266aee8 t __initcall_nft_reject_inet_module_init6 +ffffffff8266aef0 t __initcall_nft_rbtree_module_init6 +ffffffff8266aef8 t __initcall_nft_counter_module_init6 +ffffffff8266af00 t __initcall_nft_log_module_init6 +ffffffff8266af08 t __initcall_nft_hash_module_init6 +ffffffff8266af10 t __initcall_gre_offload_init6 +ffffffff8266af18 t __initcall_sysctl_ipv4_init6 +ffffffff8266af20 t __initcall_nf_conntrack_l3proto_ipv4_init6 +ffffffff8266af28 t __initcall_nf_defrag_init6 +ffffffff8266af30 t __initcall_nf_tables_ipv4_init6 +ffffffff8266af38 t __initcall_nft_chain_route_init6 +ffffffff8266af40 t __initcall_nft_reject_ipv4_module_init6 +ffffffff8266af48 t __initcall_bbr_register6 +ffffffff8266af50 t __initcall_inet6_init6 +ffffffff8266af58 t __initcall_nf_conntrack_l3proto_ipv6_init6 +ffffffff8266af60 t __initcall_nf_defrag_init6 +ffffffff8266af68 t __initcall_nf_tables_ipv6_init6 +ffffffff8266af70 t __initcall_nft_chain_route_init6 +ffffffff8266af78 t __initcall_nft_reject_ipv6_module_init6 +ffffffff8266af80 t __initcall_packet_init6 +ffffffff8266af88 t __initcall_rfcomm_init6 +ffffffff8266af90 t __initcall_hidp_init6 +ffffffff8266af98 t __initcall_mcheck_init_device6s +ffffffff8266afa0 T __initcall7_start +ffffffff8266afa0 t __initcall_mcheck_late_init7 +ffffffff8266afa8 t __initcall_microcode_init7 +ffffffff8266afb0 t __initcall_hpet_insert_resource7 +ffffffff8266afb8 t __initcall_lapic_insert_resource7 +ffffffff8266afc0 t __initcall_print_ICs7 +ffffffff8266afc8 t __initcall_create_tlb_single_page_flush_ceiling7 +ffffffff8266afd0 t __initcall_create_init_pkru_value7 +ffffffff8266afd8 t __initcall_aesni_init7 +ffffffff8266afe0 t __initcall_init_oops_id7 +ffffffff8266afe8 t __initcall_sched_clock_init_late7 +ffffffff8266aff0 t __initcall_pm_qos_power_init7 +ffffffff8266aff8 t __initcall_printk_late_init7 +ffffffff8266b000 t __initcall_taskstats_init7 +ffffffff8266b008 t __initcall_load_system_certificate_list7 +ffffffff8266b010 t __initcall_check_early_ioremap_leak7 +ffffffff8266b018 t __initcall_init_btrfs_fs7 +ffffffff8266b020 t __initcall_init_root_keyring7 +ffffffff8266b028 t __initcall_prandom_reseed7 +ffffffff8266b030 t __initcall_pci_resource_alignment_sysfs_init7 +ffffffff8266b038 t __initcall_pci_sysfs_init7 +ffffffff8266b040 t __initcall_dmar_free_unused_resources7 +ffffffff8266b048 t __initcall_deferred_probe_initcall7 +ffffffff8266b050 t __initcall_efi_shutdown_init7 +ffffffff8266b058 t __initcall_pci_mmcfg_late_insert_resources7 +ffffffff8266b060 t __initcall_tcp_congestion_default7 +ffffffff8266b068 t __initcall_regulatory_init_db7 +ffffffff8266b070 t __initcall_clk_disable_unused7s +ffffffff8266b078 t __initcall_alsa_sound_last_init7s +ffffffff8266b080 T __con_initcall_start +ffffffff8266b080 t __initcall_con_init +ffffffff8266b080 T __initcall_end +ffffffff8266b088 T __con_initcall_end +ffffffff8266b088 r __cpu_dev_intel_cpu_dev +ffffffff8266b088 T __security_initcall_end +ffffffff8266b088 T __security_initcall_start +ffffffff8266b088 R __x86_cpu_dev_start +ffffffff8266b090 R __alt_instructions +ffffffff8266b090 A __parainstructions +ffffffff8266b090 A __parainstructions_end +ffffffff8266b090 R __x86_cpu_dev_end +ffffffff8266e852 R __alt_instructions_end +ffffffff8266fa18 r __iommu_entry_pci_swiotlb_detect_4gb +ffffffff8266fa18 R __iommu_table +ffffffff8266fa40 r __iommu_entry_pci_swiotlb_detect_override +ffffffff8266fa68 r __iommu_entry_detect_intel_iommu +ffffffff8266fa90 D __apicdrivers +ffffffff8266fa90 d __apicdrivers_apic_physflatapic_flat +ffffffff8266fa90 R __iommu_table_end +ffffffff8266faa0 D __apicdrivers_end +ffffffff8266faa0 t exit_amd_microcode +ffffffff8266faa1 t exit_amd_microcode +ffffffff8266faa2 t exit_amd_microcode +ffffffff8266faa3 t exit_amd_microcode +ffffffff8266faa4 t exit_amd_microcode +ffffffff8266faa5 t microcode_dev_exit +ffffffff8266fab1 t exit_amd_microcode +ffffffff8266fab2 t ffh_cstate_exit +ffffffff8266faca t exit_amd_microcode +ffffffff8266facb t aes_fini +ffffffff8266fad7 t des3_ede_x86_fini +ffffffff8266fae8 t aesni_exit +ffffffff8266fb48 t crc32c_intel_mod_fini +ffffffff8266fb54 t sha1_ssse3_mod_fini +ffffffff8266fb92 t sha256_ssse3_mod_fini +ffffffff8266fbf8 t exit_script_binfmt +ffffffff8266fc04 t exit_elf_binfmt +ffffffff8266fc10 t mbcache_exit +ffffffff8266fc1c t ext4_exit_fs +ffffffff8266fc85 t jbd2_remove_jbd_stats_proc_entry +ffffffff8266fc9e t journal_exit +ffffffff8266fca8 t fat_destroy_inodecache +ffffffff8266fcb9 t exit_fat_fs +ffffffff8266fcc0 t exit_vfat_fs +ffffffff8266fccc t exit_nls_cp437 +ffffffff8266fcd8 t exit_nls_cp932 +ffffffff8266fce4 t exit_nls_euc_jp +ffffffff8266fcfc t exit_nls_cp936 +ffffffff8266fd08 t exit_nls_cp950 +ffffffff8266fd14 t exit_nls_ascii +ffffffff8266fd20 t exit_nls_iso8859_1 +ffffffff8266fd2c t exit_nls_utf8 +ffffffff8266fd38 t exit_ntfs_fs +ffffffff8266fd85 t exit_autofs4_fs +ffffffff8266fd96 t exit_btrfs_fs +ffffffff8266fdef t crypto_wq_exit +ffffffff8266fdfb t crypto_algapi_exit +ffffffff8266fe00 T crypto_exit_proc +ffffffff8266fe0e t seqiv_module_exit +ffffffff8266fe1a t cryptomgr_exit +ffffffff8266fe2d t crypto_cmac_module_exit +ffffffff8266fe39 t hmac_module_exit +ffffffff8266fe45 t crypto_null_mod_fini +ffffffff8266fe62 t sha1_generic_mod_fini +ffffffff8266fe6e t sha256_generic_mod_fini +ffffffff8266fe7f t crypto_ecb_module_exit +ffffffff8266fe8b t crypto_ctr_module_exit +ffffffff8266fea3 t crypto_gcm_module_exit +ffffffff8266fedf t crypto_ccm_module_exit +ffffffff8266ff0f t cryptd_exit +ffffffff8266ff20 t des_generic_mod_fini +ffffffff8266ff31 t aes_fini +ffffffff8266ff3d t arc4_exit +ffffffff8266ff4e t crc32c_mod_fini +ffffffff8266ff5a t crypto_authenc_module_exit +ffffffff8266ff66 t crypto_authenc_esn_module_exit +ffffffff8266ff72 t drbg_exit +ffffffff8266ff83 t jent_mod_exit +ffffffff8266ff8f t ghash_mod_exit +ffffffff8266ff9b t af_alg_exit +ffffffff8266ffb1 t algif_hash_exit +ffffffff8266ffc4 t xor_exit +ffffffff8266ffc5 t asymmetric_key_cleanup +ffffffff8266ffd1 t x509_key_exit +ffffffff8266ffdd t noop_exit +ffffffff8266ffe9 t cfq_exit +ffffffff82670001 t sg_pool_exit +ffffffff8267003d t backlight_class_exit +ffffffff82670049 t interrupt_stats_exit +ffffffff82670061 t acpi_button_driver_exit +ffffffff8267006d t acpi_video_exit +ffffffff82670077 T acpi_video_detect_exit +ffffffff8267008d t acpi_processor_driver_exit +ffffffff826700c6 t acpi_thermal_exit +ffffffff826700de t acpi_pad_exit +ffffffff826700ea t n_null_exit +ffffffff826700f4 t unregister_miscdev +ffffffff82670100 t hwrng_modexit +ffffffff8267013e t mod_exit +ffffffff8267015b t drm_kms_helper_exit +ffffffff8267015c t ttm_exit +ffffffff826701be t nouveau_drm_exit +ffffffff826701d9 t firmware_class_exit +ffffffff826701fd t loop_exit +ffffffff82670264 t dma_buf_deinit +ffffffff82670265 t exit_scsi +ffffffff8267028a t exit_sd +ffffffff826702f3 t ata_exit +ffffffff82670310 T libata_transport_exit +ffffffff82670334 t ahci_pci_driver_exit +ffffffff82670340 t iwl_drv_exit +ffffffff82670345 t iwl_mvm_exit +ffffffff82670356 t usb_exit +ffffffff826703b7 t ehci_hcd_cleanup +ffffffff826703c0 t ehci_pci_cleanup +ffffffff826703cc t xhci_hcd_fini +ffffffff826703cd t xhci_debugfs_remove_root +ffffffff826703ce t xhci_debugfs_remove_root +ffffffff826703cf t xhci_pci_exit +ffffffff826703db t usb_storage_driver_exit +ffffffff826703e7 t input_exit +ffffffff82670407 t evdev_exit +ffffffff82670413 T rtc_dev_exit +ffffffff82670428 t cmos_exit +ffffffff82670453 t i2c_exit +ffffffff8267048f t smbalert_driver_exit +ffffffff8267049b t i2c_i801_exit +ffffffff826704a7 t power_supply_class_exit +ffffffff826704b3 t thermal_exit +ffffffff826704f4 t intel_pch_thermal_driver_exit +ffffffff82670500 t hci_uart_exit +ffffffff82670522 T h4_deinit +ffffffff8267052e t btusb_driver_exit +ffffffff8267053a t edac_exit +ffffffff82670550 t sbridge_exit +ffffffff82670581 t cpufreq_gov_powersave_exit +ffffffff8267058d t hid_exit +ffffffff826705a3 t uhid_misc_exit +ffffffff826705af t hid_generic_exit +ffffffff826705bb t hid_exit +ffffffff826705d1 t acpi_wmi_exit +ffffffff826705f5 t mxm_wmi_exit +ffffffff826705f6 t smartconnect_driver_exit +ffffffff82670602 t cleanup_soundcore +ffffffff8267060e t alsa_sound_exit +ffffffff82670627 t alsa_hwdep_exit +ffffffff82670633 t alsa_timer_exit +ffffffff82670650 t snd_hrtimer_exit +ffffffff8267066d t alsa_pcm_exit +ffffffff82670679 t alsa_rawmidi_exit +ffffffff82670685 t hdmi_driver_exit +ffffffff82670691 t azx_driver_exit +ffffffff8267069d t usb_audio_driver_exit +ffffffff826706a9 t hda_bus_exit +ffffffff826706b5 t nfnetlink_exit +ffffffff826706c1 t nf_conntrack_standalone_fini +ffffffff826706e3 t nf_tables_module_exit +ffffffff8267071d t nf_tables_inet_exit +ffffffff82670729 t nft_meta_module_exit +ffffffff82670735 t nft_rt_module_exit +ffffffff82670741 t nft_ct_module_exit +ffffffff82670765 t nft_limit_module_exit +ffffffff8267077d t nft_reject_inet_module_exit +ffffffff82670789 t nft_rbtree_module_exit +ffffffff82670795 t nft_counter_module_exit +ffffffff826707ad t nft_log_module_exit +ffffffff826707b9 t nft_hash_module_exit +ffffffff826707c5 t nf_conntrack_l3proto_ipv4_fini +ffffffff826707ff t nf_defrag_fini +ffffffff8267080b t nf_tables_ipv4_exit +ffffffff82670817 t nft_chain_route_exit +ffffffff82670823 t nft_reject_ipv4_module_exit +ffffffff8267082f t bbr_unregister +ffffffff8267083b t af_unix_exit +ffffffff8267085d t nf_conntrack_l3proto_ipv6_fini +ffffffff82670897 t nf_defrag_fini +ffffffff826708a8 t nf_tables_ipv6_exit +ffffffff826708b4 t nft_chain_route_exit +ffffffff826708c0 t nft_reject_ipv6_module_exit +ffffffff826708cc t packet_exit +ffffffff826708fa t bt_exit +ffffffff8267091d t rfcomm_exit +ffffffff8267093a T rfcomm_cleanup_sockets +ffffffff82670963 t hidp_exit +ffffffff82670968 T hidp_cleanup_sockets +ffffffff82670991 t cfg80211_exit +ffffffff826709c4 t ieee80211_exit +ffffffff82671000 A __init_end +ffffffff82671000 R __smp_locks +ffffffff82679000 B __bss_start +ffffffff82679000 D __nosave_begin +ffffffff82679000 D __nosave_end +ffffffff82679000 R __smp_locks_end +ffffffff82679000 B empty_zero_page +ffffffff8267a000 B debug_idt_table +ffffffff8267b000 B idt_table +ffffffff8267c000 b bm_pte +ffffffff8267d000 B initcall_debug +ffffffff8267d004 B reset_devices +ffffffff8267d008 B saved_command_line +ffffffff8267d010 b panic_param +ffffffff8267d018 b panic_later +ffffffff8267d020 b ramdisk_execute_command +ffffffff8267d028 b execute_command +ffffffff8267d030 b initcall_command_line +ffffffff8267d038 b static_command_line +ffffffff8267d040 B Version_266240 +ffffffff8267d048 B ROOT_DEV +ffffffff8267d050 b once.68121 +ffffffff8267d058 b is_tmpfs +ffffffff8267d05c b root_wait +ffffffff8267d060 B preset_lpj +ffffffff8267d068 B lpj_fine +ffffffff8267d070 b printed.10653 +ffffffff8267d080 B unconstrained +ffffffff8267d0c0 B emptyconstraint +ffffffff8267d0f0 B rdpmc_always_available +ffffffff8267d100 b empty_attrs +ffffffff8267d108 b pmc_refcount +ffffffff8267d10c b active_events +ffffffff8267d110 b ibs_caps +ffffffff8267d120 b events_attrs +ffffffff8267d180 b warned.36786 +ffffffff8267d190 b pmu_name_str +ffffffff8267d1c0 b bts_pmu +ffffffff8267d2c0 B lbr_from_quirk_key +ffffffff8267d2e0 b pt_pmu +ffffffff8267d418 B trampoline_pgd_entry +ffffffff8267d420 B trampoline_cr4_features +ffffffff8267d428 B real_mode_header +ffffffff8267d440 B system_vectors +ffffffff8267d460 B x86_platform_ipi_callback +ffffffff8267d468 B irq_err_count +ffffffff8267d46c B sysctl_panic_on_stackoverflow +ffffffff8267d470 B panic_on_io_nmi +ffffffff8267d474 B panic_on_unrecovered_nmi +ffffffff8267d478 b die_nest_count +ffffffff8267d47c b die_lock +ffffffff8267d480 b die_counter +ffffffff8267d484 B unknown_nmi_panic +ffffffff8267d488 b nmi_reason_lock +ffffffff8267d4a0 B relocated_ramdisk +ffffffff8267d4a8 B saved_video_mode +ffffffff8267d4c0 B edid_info +ffffffff8267d540 B screen_info +ffffffff8267d580 B bootloader_version +ffffffff8267d584 B bootloader_type +ffffffff8267d5a0 B boot_params +ffffffff8267e5a0 B max_pfn_mapped +ffffffff8267e5a8 B max_low_pfn_mapped +ffffffff8267e5b0 B io_apic_irqs +ffffffff8267e5b8 B i8259A_lock +ffffffff8267e5bc b spurious_irq_mask.33049 +ffffffff8267e5c0 b irq_trigger +ffffffff8267e5c4 b i8259A_auto_eoi +ffffffff8267e5c8 B x86_apple_machine +ffffffff8267e5d0 B force_hpet_address +ffffffff8267e5d8 b cached_dev +ffffffff8267e5e0 b rcba_base +ffffffff8267e5e8 b force_hpet_resume_type +ffffffff8267e5ec b cpu0_hotpluggable +ffffffff8267e5f0 B arch_debugfs_dir +ffffffff8267e5f8 b bp_int3_addr +ffffffff8267e600 b bp_int3_handler +ffffffff8267e608 b bp_patching_in_progress +ffffffff8267e609 b uniproc_patched +ffffffff8267e60c b noreplace_smp +ffffffff8267e610 B global_clock_event +ffffffff8267e620 B art_related_clocksource +ffffffff8267e628 B tsc_clocksource_reliable +ffffffff8267e630 b ref_start.21850 +ffffffff8267e638 b hpet.21851 +ffffffff8267e640 b tsc_khz_ref +ffffffff8267e648 b loops_per_jiffy_ref +ffffffff8267e650 b ref_freq +ffffffff8267e658 b cyc2ns_suspend +ffffffff8267e660 b art_to_tsc_offset +ffffffff8267e668 b art_to_tsc_denominator +ffffffff8267e66c b art_to_tsc_numerator +ffffffff8267e670 b __use_tsc +ffffffff8267e680 B rtc_lock +ffffffff8267e688 B boot_option_idle_override +ffffffff8267e690 b x86_idle +ffffffff8267e698 B fpu_kernel_xstate_size +ffffffff8267e6a0 b fx_sw_reserved +ffffffff8267e6e0 B fpu_user_xstate_size +ffffffff8267e700 b xstate_comp_offsets +ffffffff8267e800 B xstate_fx_sw_bytes +ffffffff8267e830 b is_initialized.32163 +ffffffff8267e834 b num_cache_leaves +ffffffff8267e836 b printed.17831 +ffffffff8267e840 B cpu_caps_set +ffffffff8267e8a0 B cpu_caps_cleared +ffffffff8267e8f0 B cpu_sibling_setup_mask +ffffffff8267e8f8 B cpu_callin_mask +ffffffff8267e900 B cpu_callout_mask +ffffffff8267e908 B cpu_initialized_mask +ffffffff8267e910 b printed.37004 +ffffffff8267e920 b cpu_devs +ffffffff8267e968 b pku_disabled +ffffffff8267e96c b spectre_v2_bad_module +ffffffff8267e970 b spectre_v2_enabled +ffffffff8267e974 b forcempx +ffffffff8267e980 B mcsafe_key +ffffffff8267e990 B mce_banks_ce_disabled +ffffffff8267e998 b mce_device_initialized +ffffffff8267e9a0 b global_nwo +ffffffff8267e9a4 b mce_callin +ffffffff8267e9a8 b mce_executing +ffffffff8267e9ac b mce_panicked +ffffffff8267e9b0 b num_notifiers +ffffffff8267e9b8 b quirk_no_way_out +ffffffff8267e9c0 b mce_irq_work +ffffffff8267e9e0 b mce_work +ffffffff8267ea00 b cpu_missing +ffffffff8267ea08 b mce_need_notify +ffffffff8267ea20 b gen_pool_buf +ffffffff82680a20 b mce_event_llist +ffffffff82680a28 b mce_evt_pool +ffffffff82680a30 b cmci_storm_on_cpus +ffffffff82680a34 b cmci_discover_lock +ffffffff82680a38 B platform_thermal_package_rate_control +ffffffff82680a40 B platform_thermal_package_notify +ffffffff82680a48 B platform_thermal_notify +ffffffff82680a50 b int_pln_enable +ffffffff82680a54 b therm_throt_en +ffffffff82680a60 B mtrr_if +ffffffff82680a68 B size_and_mask +ffffffff82680a70 B size_or_mask +ffffffff82680a80 B mtrr_usage_table +ffffffff82680e80 B num_var_ranges +ffffffff82680ea0 b mtrr_value +ffffffff826826a0 b mtrr_aps_delayed_init +ffffffff826826a1 b __mtrr_enabled +ffffffff826826c0 B mtrr_state +ffffffff82683720 B mtrr_tom2 +ffffffff82683728 b set_atomicity_lock +ffffffff82683730 b cr4 +ffffffff82683738 b deftype_hi +ffffffff8268373c b deftype_lo +ffffffff82683740 b mtrr_state_set +ffffffff82683748 b smp_changes_mask +ffffffff82683750 b disable_mtrr_trim +ffffffff82683760 B ucode_cpu_info +ffffffff826837c0 B initrd_gone +ffffffff826837c4 b late_cpus_out +ffffffff826837c8 b late_cpus_in +ffffffff826837d0 b microcode_pdev +ffffffff826837d8 b update_lock +ffffffff826837e0 b microcode_ops +ffffffff826837e8 b path.28235 +ffffffff826837f0 b prev_rev.28305 +ffffffff826837f8 b prev.28287 +ffffffff82683804 b llc_size_per_core +ffffffff82683808 b intel_ucode_patch +ffffffff82683810 b evntsel_nmi_owner +ffffffff82683820 b perfctr_nmi_owner +ffffffff82683830 B __acpi_unregister_gsi +ffffffff82683838 B acpi_irq_model +ffffffff8268383c B acpi_disable_cmcff +ffffffff82683840 B acpi_strict +ffffffff82683844 B acpi_ioapic +ffffffff82683848 B acpi_lapic +ffffffff8268384c B acpi_pci_disabled +ffffffff82683850 B acpi_noirq +ffffffff82683854 B acpi_disabled +ffffffff82683860 B acpi_realmode_flags +ffffffff82683880 b temp_stack +ffffffff82684880 b mwait_supported +ffffffff82684890 b cpu_cstate_entry +ffffffff82684898 B port_cf9_safe +ffffffff826848a0 B pm_power_off +ffffffff826848a8 b crash_ipi_issued +ffffffff826848ac b waiting_for_crash_ipi +ffffffff826848b0 b shootdown_callback +ffffffff826848b8 b reboot_emergency +ffffffff826848bc b smp_no_nmi_ipi +ffffffff826848c0 B x86_topology_update +ffffffff826848c4 b node_width.34551 +ffffffff826848c8 b width.34550 +ffffffff826848cc b enable_start_cpu0 +ffffffff826848d0 b cpu0_logical_apicid +ffffffff826848d8 b random_warps +ffffffff826848dc b nr_warps +ffffffff826848e0 b max_warp +ffffffff826848e8 b last_tsc +ffffffff826848f0 b sync_lock +ffffffff826848f4 b test_runs +ffffffff826848f8 b skip_test +ffffffff826848fc b stop_count +ffffffff82684900 b start_count +ffffffff82684920 B apic_intr_mode +ffffffff82684924 B lapic_timer_frequency +ffffffff82684928 B smp_found_config +ffffffff8268492c B pic_mode +ffffffff82684930 B apic_verbosity +ffffffff82684934 B local_apic_timer_c2_ok +ffffffff82684938 B disable_apic +ffffffff82684940 B mp_lapic_addr +ffffffff82684960 B phys_cpu_present_map +ffffffff82685960 B boot_cpu_apic_version +ffffffff82685964 B disabled_cpus +ffffffff82685968 B num_processors +ffffffff8268596c b multi +ffffffff82685970 b multi_checked +ffffffff82685980 b apic_pm_state +ffffffff826859c0 b eilvt_offsets +ffffffff826859d0 b apic_phys +ffffffff826859d8 b apic_extnmi +ffffffff826859dc b max_physical_apicid +ffffffff826859e0 B x86_vector_domain +ffffffff826859e8 b vector_matrix +ffffffff826859f0 b vector_searchmask +ffffffff826859f8 b vector_lock +ffffffff82685a00 B irq_mis_count +ffffffff82685a04 B skip_ioapic_setup +ffffffff82685a20 B mp_bus_not_pci +ffffffff82685a40 B mp_irq_entries +ffffffff82685a60 B mp_irqs +ffffffff82687a60 B gsi_top +ffffffff82687a64 B nr_ioapics +ffffffff82687a68 b ioapic_resources +ffffffff82687a80 b ioapics +ffffffff82689e80 b ioapic_initialized +ffffffff82689e84 b ioapic_dynirq_base +ffffffff82689e88 b ioapic_lock +ffffffff82689e90 b dmar_domain.39196 +ffffffff82689e98 b msi_default_domain +ffffffff82689ea0 B hpet_force_user +ffffffff82689ea1 B boot_hpet_disable +ffffffff82689ea2 B hpet_msi_disable +ffffffff82689ea3 B hpet_blockid +ffffffff82689ea8 B hpet_address +ffffffff82689eb0 b __key.9491 +ffffffff82689eb0 b irq_handler +ffffffff82689eb8 b hpet_pie_limit +ffffffff82689ec0 b hpet_pie_delta +ffffffff82689ec4 b hpet_default_delta +ffffffff82689ec8 b hpet_t1_cmp +ffffffff82689ed0 b hpet_pie_count +ffffffff82689ee0 b hpet_alarm_time +ffffffff82689f04 b hpet_prev_update_sec +ffffffff82689f08 b hpet_rtc_flags +ffffffff82689f10 b hpet_boot_cfg +ffffffff82689f18 b hpet_domain +ffffffff82689f20 b hpet_devs +ffffffff82689f28 b hpet_freq +ffffffff82689f30 b hpet_legacy_int_enabled +ffffffff82689f31 b hpet_verbose +ffffffff82689f38 b hpet_virt_address +ffffffff82689f40 b hpet_num_timers +ffffffff82689f48 b itmt_sysctl_header +ffffffff82689f50 b zero +ffffffff82689f54 B orc_init +ffffffff82689f58 B lookup_num_blocks +ffffffff82689f60 b fam10h_pci_mmconf_base +ffffffff82689f80 B nr_pfn_mapped +ffffffff82689fa0 B pfn_mapped +ffffffff8268a7d0 B after_bootmem +ffffffff8268a7d4 b page_size_mask +ffffffff8268a7d8 b min_pfn_mapped +ffffffff8268a7e0 B kernel_set_to_readonly +ffffffff8268a7e4 B force_personality32 +ffffffff8268a7e8 b memory_block_size_probed +ffffffff8268a7f0 B pgd_lock +ffffffff8268a800 b direct_pages_count +ffffffff8268a828 b cpa_lock +ffffffff8268a82c B pat_debug_enable +ffffffff8268a830 b memtype_lock +ffffffff8268a834 B fixmaps_set +ffffffff8268a838 b disable_nx +ffffffff8268a840 b memtype_rbroot +ffffffff8268a848 b force +ffffffff8268a860 b aesni_simd_skciphers +ffffffff8268a880 b aesni_gcm_dec_tfm +ffffffff8268a888 b aesni_gcm_enc_tfm +ffffffff8268a890 b aesni_ctr_enc_tfm +ffffffff8268a898 b efi_no_storage_paranoia +ffffffff8268a8a0 B efi_setup +ffffffff8268a8c0 B efi_scratch +ffffffff8268a8e8 b efi_pgd +ffffffff8268a8f0 B vm_area_cachep +ffffffff8268a8f8 B fs_cachep +ffffffff8268a900 B files_cachep +ffffffff8268a908 B sighand_cachep +ffffffff8268a910 B max_threads +ffffffff8268a914 B nr_threads +ffffffff8268a918 B total_forks +ffffffff8268a920 b __key.48379 +ffffffff8268a920 b __key.55174 +ffffffff8268a920 b __key.55360 +ffffffff8268a920 b __key.55362 +ffffffff8268a920 b __key.55642 +ffffffff8268a920 b __key.9240 +ffffffff8268a920 b mm_cachep +ffffffff8268a928 b signal_cachep +ffffffff8268a930 b task_struct_cachep +ffffffff8268a940 B panic_blink +ffffffff8268a950 B panic_notifier_list +ffffffff8268a960 B crash_kexec_post_notifiers +ffffffff8268a964 B panic_on_oops +ffffffff8268a968 b spin_counter.31852 +ffffffff8268a970 b buf.31820 +ffffffff8268a9a0 b buf.31755 +ffffffff8268ada0 b cpus_stopped.31703 +ffffffff8268ada8 b oops_id +ffffffff8268adb0 b pause_on_oops_lock +ffffffff8268adb4 b pause_on_oops_flag +ffffffff8268adb8 b pause_on_oops +ffffffff8268adc0 b tainted_mask +ffffffff8268adc8 B __boot_cpu_id +ffffffff8268adcc B cpuhp_tasks_frozen +ffffffff8268adcd b __key.9867 +ffffffff8268add0 b frozen_cpus +ffffffff8268add8 b cpu_hotplug_disabled +ffffffff8268ade0 b reserve.28515 +ffffffff8268aee0 b reserved.28514 +ffffffff8268aee4 b strict_iomem_checks +ffffffff8268aee8 b bootmem_resource_lock +ffffffff8268aef0 b bootmem_resource_free +ffffffff8268aef8 b resource_lock +ffffffff8268af00 B sysctl_legacy_va_layout +ffffffff8268af20 b dev_table +ffffffff8268af60 b min_extfrag_threshold +ffffffff8268af64 b minolduid +ffffffff8268af68 b zero +ffffffff8268af80 b warn_once_bitmap +ffffffff8268afa0 B uidhash_table +ffffffff8268b3a0 b uidhash_lock +ffffffff8268b3a8 b uid_cachep +ffffffff8268b3b0 b sigqueue_cachep +ffffffff8268b3b8 b running_helpers +ffffffff8268b3bc b umh_sysctl_lock +ffffffff8268b3c0 b cpumask.39405 +ffffffff8268b3c8 b __key.14007 +ffffffff8268b3c8 b __key.38744 +ffffffff8268b3c8 b printed_dbg_warning.36044 +ffffffff8268b3c9 b __key.37253 +ffffffff8268b3d0 b ordered_wq_attrs +ffffffff8268b3e0 b unbound_std_wq_attrs +ffffffff8268b400 b unbound_pool_hash +ffffffff8268b600 b wq_debug_force_rr_cpu +ffffffff8268b608 b wq_unbound_cpumask +ffffffff8268b610 b workqueue_freezing +ffffffff8268b614 b wq_mayday_lock +ffffffff8268b618 b wq_online +ffffffff8268b619 b wq_power_efficient +ffffffff8268b61a b wq_disable_numa +ffffffff8268b620 b pwq_cache +ffffffff8268b630 b work_exited +ffffffff8268b640 B module_sysfs_initialized +ffffffff8268b648 B module_kset +ffffffff8268b650 b kmalloced_params_lock +ffffffff8268b658 B kthreadd_task +ffffffff8268b660 b __key.15089 +ffffffff8268b660 b kthread_create_lock +ffffffff8268b668 b nsproxy_cachep +ffffffff8268b670 b __key.28574 +ffffffff8268b670 b die_chain +ffffffff8268b680 B kernel_kobj +ffffffff8268b688 B rcu_normal +ffffffff8268b68c B rcu_expedited +ffffffff8268b690 b cred_jar +ffffffff8268b6a0 B pm_power_off_prepare +ffffffff8268b6a8 B reboot_force +ffffffff8268b6ac B reboot_cpu +ffffffff8268b6b0 B reboot_mode +ffffffff8268b6b8 B cad_pid +ffffffff8268b6c0 b poweroff_force +ffffffff8268b6d0 b restart_handler_list +ffffffff8268b6e0 b entry_count +ffffffff8268b6e4 b async_lock +ffffffff8268b6e8 b tmp.28477 +ffffffff8268b700 b empty.16884 +ffffffff8268b740 b zero +ffffffff8268b744 b ucounts_lock +ffffffff8268b760 b ucounts_hashtable +ffffffff8268d780 B root_task_group +ffffffff8268d9c0 B sched_numa_balancing +ffffffff8268d9d0 b task_group_lock +ffffffff8268d9d4 b num_cpus_frozen +ffffffff8268d9e0 B avenrun +ffffffff8268d9f8 B calc_load_update +ffffffff8268da00 B calc_load_tasks +ffffffff8268da08 b calc_load_idx +ffffffff8268da10 b calc_load_nohz +ffffffff8268da20 b __sched_clock_stable +ffffffff8268da40 b balancing +ffffffff8268da80 b nohz +ffffffff8268daa0 b __cfs_bandwidth_used +ffffffff8268dac0 B def_rt_bandwidth +ffffffff8268db20 B def_dl_bandwidth +ffffffff8268db38 b __key.16211 +ffffffff8268db40 B sched_domain_level_max +ffffffff8268db60 B def_root_domain +ffffffff8268e278 B sched_domains_tmpmask2 +ffffffff8268e280 B sched_domains_tmpmask +ffffffff8268e288 b fallback_doms +ffffffff8268e290 b dattr_cur +ffffffff8268e298 b ndoms_cur +ffffffff8268e2a0 b doms_cur +ffffffff8268e2c0 b __key.36684 +ffffffff8268e2c0 b __key.36716 +ffffffff8268e2c0 b autogroup_seq_nr +ffffffff8268e2e0 b autogroup_default +ffffffff8268e330 B housekeeping_overriden +ffffffff8268e340 b housekeeping_flags +ffffffff8268e348 b housekeeping_mask +ffffffff8268e350 b prev_max.16229 +ffffffff8268e360 b null_pm_qos +ffffffff8268e3c0 b pm_qos_lock +ffffffff8268e3c8 B pm_wq +ffffffff8268e3d0 B power_kobj +ffffffff8268e3d8 b orig_kmsg +ffffffff8268e3dc b orig_fgconsole +ffffffff8268e3e0 B pm_suspend_global_flags +ffffffff8268e3e4 B pm_suspend_target_state +ffffffff8268e400 B mem_sleep_states +ffffffff8268e420 B pm_states +ffffffff8268e440 b s2idle_lock +ffffffff8268e448 b s2idle_ops +ffffffff8268e450 b suspend_ops +ffffffff8268e458 b autosleep_ws +ffffffff8268e460 b autosleep_wq +ffffffff8268e468 b autosleep_state +ffffffff8268e480 B dmesg_restrict +ffffffff8268e484 B logbuf_lock +ffffffff8268e488 B console_set_on_cmdline +ffffffff8268e490 B console_drivers +ffffffff8268e498 B oops_in_progress +ffffffff8268e49c b has_preferred.41627 +ffffffff8268e4a0 b ext_text.41557 +ffffffff826904a0 b text.41558 +ffffffff826908a0 b seen_seq.41559 +ffffffff826908c0 b textbuf.41376 +ffffffff82690ca0 b __key.40987 +ffffffff82690ca0 b dump_stack_arch_desc_str +ffffffff82690d20 b always_kmsg_dump +ffffffff82690d24 b dump_list_lock +ffffffff82690d40 b cont +ffffffff82691140 b console_waiter +ffffffff82691148 b console_owner +ffffffff82691150 b console_owner_lock +ffffffff82691154 b printk_time +ffffffff82691158 b __log_buf +ffffffff826b1158 b clear_idx +ffffffff826b1160 b clear_seq +ffffffff826b1168 b console_idx +ffffffff826b1170 b console_seq +ffffffff826b1178 b log_next_idx +ffffffff826b1180 b log_next_seq +ffffffff826b1188 b log_first_idx +ffffffff826b1190 b log_first_seq +ffffffff826b1198 b syslog_partial +ffffffff826b11a0 b syslog_idx +ffffffff826b11a8 b syslog_seq +ffffffff826b11b0 b console_msg_format +ffffffff826b11c0 b console_cmdline +ffffffff826b12c0 b exclusive_console +ffffffff826b12c8 b console_suspended +ffffffff826b12cc b console_locked +ffffffff826b12d0 b nr_ext_console_drivers +ffffffff826b12d4 b read_lock.10152 +ffffffff826b12e0 b __key.21891 +ffffffff826b12e0 b irq_kobj_base +ffffffff826b1300 b allocated_irqs +ffffffff826b1928 B irq_default_affinity +ffffffff826b1930 b __key.29707 +ffffffff826b1930 b mask.29455 +ffffffff826b1938 b mask_lock.29453 +ffffffff826b193c b irq_poll_active +ffffffff826b1940 b irq_poll_cpu +ffffffff826b1960 B irqchip_fwnode_ops +ffffffff826b19d8 b __key.32729 +ffffffff826b19d8 b unknown_domains.32705 +ffffffff826b19e0 b irq_default_domain +ffffffff826b19e8 B no_irq_affinity +ffffffff826b19ec b prec.26777 +ffffffff826b19f0 b root_irq_dir +ffffffff826b19f8 b __key.11643 +ffffffff826b19f8 b rcu_tasks_kthread_ptr +ffffffff826b1a00 b rcu_tasks_cbs_lock +ffffffff826b1a08 b rcu_tasks_cbs_head +ffffffff826b1a10 b rcu_normal_after_boot +ffffffff826b1a14 b __key.10205 +ffffffff826b1a14 b __key.13804 +ffffffff826b1a14 b __key.18304 +ffffffff826b1a14 b __key.18305 +ffffffff826b1a14 b __key.18306 +ffffffff826b1a18 B rcutorture_vernum +ffffffff826b1a20 B rcutorture_testseq +ffffffff826b1a28 b ___rfd_beenhere.40325 +ffffffff826b1a28 b __key.10121 +ffffffff826b1a28 b __key.42304 +ffffffff826b1a28 b __key.42305 +ffffffff826b1a28 b __key.42306 +ffffffff826b1a28 b __key.42307 +ffffffff826b1a28 b __key.42315 +ffffffff826b1a28 b __key.42316 +ffffffff826b1a2c b rcu_kick_kthreads +ffffffff826b1a30 b gp_cleanup_delay +ffffffff826b1a34 b gp_init_delay +ffffffff826b1a38 b gp_preinit_delay +ffffffff826b1a3c b kthread_prio +ffffffff826b1a40 b dump_tree +ffffffff826b1a41 b rcu_fanout_exact +ffffffff826b1a44 B pm_nosig_freezing +ffffffff826b1a45 B pm_freezing +ffffffff826b1a48 B system_freezing_cnt +ffffffff826b1a4c b freezer_lock +ffffffff826b1a50 B sys_tz +ffffffff826b1a60 B timers_migration_enabled +ffffffff826b1a70 b timers_nohz_active +ffffffff826b1a80 B persistent_clock_is_local +ffffffff826b1aa0 b tkr_dummy.32348 +ffffffff826b1ae0 b old_delta.32697 +ffffffff826b1af0 b timekeeping_suspend_time +ffffffff826b1b00 b persistent_clock_exists +ffffffff826b1b01 b sleeptime_injected +ffffffff826b1b08 b pvclock_gtod_chain +ffffffff826b1b10 b cycles_at_suspend +ffffffff826b1b20 b shadow_timekeeper +ffffffff826b1c20 b timekeeper_lock +ffffffff826b1c40 b tk_core +ffffffff826b1d48 B tick_nsec +ffffffff826b1d50 b no_cmos.32383 +ffffffff826b1d58 b ntp_tick_adj +ffffffff826b1d60 b time_adjust +ffffffff826b1d68 b time_reftime +ffffffff826b1d70 b time_freq +ffffffff826b1d78 b time_offset +ffffffff826b1d80 b time_state +ffffffff826b1d88 b tick_length_base +ffffffff826b1d90 b tick_length +ffffffff826b1da0 b watchdog_reset_pending +ffffffff826b1da4 b watchdog_running +ffffffff826b1da8 b watchdog_lock +ffffffff826b1dc0 b watchdog_timer +ffffffff826b1de8 b watchdog +ffffffff826b1df0 b finished_booting +ffffffff826b1e00 b override_name +ffffffff826b1e20 b curr_clocksource +ffffffff826b1e40 B refined_jiffies +ffffffff826b1f00 b rtcdev_lock +ffffffff826b1f08 b rtcdev +ffffffff826b1f20 b rtctimer +ffffffff826b1f60 b ws +ffffffff826b1f68 b freezer_delta_lock +ffffffff826b1f70 b freezer_delta +ffffffff826b1f80 b alarm_bases +ffffffff826b1fe0 b hash_lock +ffffffff826b2000 b posix_timers_hashtable +ffffffff826b3000 b posix_timers_cache +ffffffff826b3020 b zero_it.29619 +ffffffff826b3040 b __key.37881 +ffffffff826b3040 b clockevents_lock +ffffffff826b3048 B tick_period +ffffffff826b3050 B tick_next_period +ffffffff826b3058 b tick_freeze_depth +ffffffff826b305c b tick_freeze_lock +ffffffff826b3060 b tick_broadcast_force_mask +ffffffff826b3068 b tick_broadcast_pending_mask +ffffffff826b3070 b tick_broadcast_oneshot_mask +ffffffff826b3078 b tick_broadcast_forced +ffffffff826b3080 b tmpmask +ffffffff826b3088 b tick_broadcast_on +ffffffff826b3090 b tick_broadcast_mask +ffffffff826b30a0 b tick_broadcast_device +ffffffff826b30c0 b bctimer +ffffffff826b3100 b ratelimit.35248 +ffffffff826b3104 b sched_skew_tick +ffffffff826b3108 b last_jiffies_update +ffffffff826b3110 b __key.11805 +ffffffff826b3110 b warned.18044 +ffffffff826b3111 b __key.43143 +ffffffff826b3111 b __key.43258 +ffffffff826b3111 b __key.9240 +ffffffff826b3120 B cgroup_threadgroup_rwsem +ffffffff826b31a0 B css_set_lock +ffffffff826b31a4 b __key.55399 +ffffffff826b31a4 b __key.55403 +ffffffff826b31a4 b rwsem_key.56704 +ffffffff826b31c0 b css_set_table +ffffffff826b35c0 b cgroup_root_count +ffffffff826b35c4 b cgrp_dfl_threaded_ss_mask +ffffffff826b35c6 b cgrp_dfl_implicit_ss_mask +ffffffff826b35c8 b cgrp_dfl_inhibit_ss_mask +ffffffff826b35ca b cgrp_dfl_visible +ffffffff826b35d0 b cgroup_destroy_wq +ffffffff826b35d8 b cgroup_file_kn_lock +ffffffff826b35dc b cgroup_idr_lock +ffffffff826b35e0 b release_agent_path_lock +ffffffff826b35e8 b cgroup_pidlist_destroy_wq +ffffffff826b35f0 b cgroup_no_v1_mask +ffffffff826b35f8 b zero +ffffffff826b3600 b pid_ns_cachep +ffffffff826b3608 b __key.7324 +ffffffff826b3608 b stop_cpus_in_progress +ffffffff826b3609 b stop_machine_initialized +ffffffff826b3610 B delayacct_cache +ffffffff826b3618 B taskstats_cache +ffffffff826b3620 b __key.40737 +ffffffff826b3620 b family_registered +ffffffff826b3640 V bpf_sock_map_update_proto +ffffffff826b38e8 b ___done.48774 +ffffffff826b38f0 b empty_prog_array +ffffffff826b3908 b map_idr_lock +ffffffff826b390c b prog_idr_lock +ffffffff826b3910 b insn_state +ffffffff826b3918 b cur_stack +ffffffff826b3920 b insn_stack +ffffffff826b3928 b dev_map_lock +ffffffff826b3930 B cgroup_bpf_enabled_key +ffffffff826b3940 B perf_swevent_enabled +ffffffff826b39f0 B perf_guest_cbs +ffffffff826b3a00 B perf_sched_events +ffffffff826b3a10 b __key.57208 +ffffffff826b3a10 b __key.60050 +ffffffff826b3a10 b __key.60051 +ffffffff826b3a10 b __key.60052 +ffffffff826b3a10 b __key.60618 +ffffffff826b3a10 b __key.60631 +ffffffff826b3a10 b hw_context_taken.59931 +ffffffff826b3a14 b pmu_bus_running +ffffffff826b3a20 b pmu_idr +ffffffff826b3a38 b __empty_callchain +ffffffff826b3a40 b perf_event_id +ffffffff826b3a48 b __report_allowed +ffffffff826b3a50 b __report_avg +ffffffff826b3a58 b perf_online_mask +ffffffff826b3a60 b pmus_srcu +ffffffff826b3bf0 b perf_sched_count +ffffffff826b3bf8 b callchain_cpus_entries +ffffffff826b3c00 b nr_callchain_events +ffffffff826b3c04 b constraints_initialized +ffffffff826b3c08 b nr_slots +ffffffff826b3c10 b builtin_trusted_keys +ffffffff826b3c18 b __key.36147 +ffffffff826b3c18 b __key.40518 +ffffffff826b3c18 B sysctl_oom_kill_allocating_task +ffffffff826b3c1c B sysctl_panic_on_oom +ffffffff826b3c20 b oom_reaper_lock +ffffffff826b3c28 b oom_reaper_list +ffffffff826b3c30 b oom_victims +ffffffff826b3c40 B debug_guardpage_ops +ffffffff826b3c60 B movable_zone +ffffffff826b3c64 B percpu_pagelist_fraction +ffffffff826b3c68 b lock.44362 +ffffffff826b3c6c b __key.44034 +ffffffff826b3c6c b __key.44035 +ffffffff826b3c6c b __key.44036 +ffffffff826b3c6c b lock.43692 +ffffffff826b3c70 b cpus_with_pcps.42933 +ffffffff826b3c78 b nr_unshown.42369 +ffffffff826b3c80 b resume.42367 +ffffffff826b3c88 b nr_shown.42368 +ffffffff826b3c90 b early_pfn_lock.42567 +ffffffff826b3c94 b mirrored_kernelcore +ffffffff826b3c98 b saved_gfp_mask +ffffffff826b3c9c b managed_page_count_lock +ffffffff826b3ca0 B global_wb_domain +ffffffff826b3d18 B laptop_mode +ffffffff826b3d1c B block_dump +ffffffff826b3d20 B vm_dirty_bytes +ffffffff826b3d28 B vm_highmem_is_dirtyable +ffffffff826b3d30 B dirty_background_bytes +ffffffff826b3d38 b bdi_min_ratio +ffffffff826b3d40 B page_cluster +ffffffff826b3d48 b has_work.37681 +ffffffff826b3d50 B vm_total_pages +ffffffff826b3d58 b lock.47051 +ffffffff826b3d5c b __key.47148 +ffffffff826b3d60 b shmem_inode_cachep +ffffffff826b3d68 b shm_mnt +ffffffff826b3d80 B vm_committed_as +ffffffff826b3da8 B mm_percpu_wq +ffffffff826b3db0 B bdi_wq +ffffffff826b3db8 B bdi_lock +ffffffff826b3dbc b __key.37412 +ffffffff826b3dbc b __key.37439 +ffffffff826b3dbc b __key.37484 +ffffffff826b3dc0 b nr_wb_congested +ffffffff826b3dc8 b bdi_class +ffffffff826b3dd0 B mm_kobj +ffffffff826b3de0 B pcpu_nr_empty_pop_pages +ffffffff826b3de4 B pcpu_lock +ffffffff826b3de8 b pages.28408 +ffffffff826b3e00 b vm.29266 +ffffffff826b3e40 b pcpu_atomic_alloc_failed +ffffffff826b3e60 B kmalloc_dma_caches +ffffffff826b3ee0 B kmalloc_caches +ffffffff826b3f50 B kmem_cache +ffffffff826b3f58 B slab_state +ffffffff826b3f5c B sysctl_compact_memory +ffffffff826b3f60 b shadow_nodes +ffffffff826b3f60 b shadow_nodes_key +ffffffff826b3f68 B high_memory +ffffffff826b3f70 B mem_map +ffffffff826b3f78 B max_mapnr +ffffffff826b3f80 b nr_unshown.38032 +ffffffff826b3f88 b resume.38030 +ffffffff826b3f90 b nr_shown.38031 +ffffffff826b3f98 b shmlock_user_lock +ffffffff826b3f9c b __key.48119 +ffffffff826b3f9c b ignore_rlimit_data +ffffffff826b3fa0 b __key.38400 +ffffffff826b3fa0 b anon_vma_chain_cachep +ffffffff826b3fa8 b anon_vma_cachep +ffffffff826b3fb0 b vmap_block_tree_lock +ffffffff826b3fb4 b vmap_lazy_nr +ffffffff826b3fb8 b vmap_area_pcpu_hole +ffffffff826b3fc0 b cached_align +ffffffff826b3fc8 b cached_vstart +ffffffff826b3fd0 b cached_hole_size +ffffffff826b3fd8 b free_vmap_cache +ffffffff826b3fe0 b vmap_area_root +ffffffff826b3fe8 b vmap_purge_list +ffffffff826b3ff0 b vmap_area_lock +ffffffff826b3ff8 B max_possible_pfn +ffffffff826b4000 B max_pfn +ffffffff826b4008 B min_low_pfn +ffffffff826b4010 B max_low_pfn +ffffffff826b4018 B __highest_present_section_nr +ffffffff826b4020 B mem_section +ffffffff826b4028 b warned.27502 +ffffffff826b4030 b vmemmap_buf_end +ffffffff826b4038 b vmemmap_buf +ffffffff826b4040 b alias_list +ffffffff826b4048 b slab_kset +ffffffff826b4050 b kmem_cache_node +ffffffff826b4058 b slub_min_objects +ffffffff826b405c b slub_min_order +ffffffff826b4060 b huge_zero_refcount +ffffffff826b4068 b khugepaged_node_load +ffffffff826b406c b khugepaged_mm_lock +ffffffff826b4070 b khugepaged_sleep_expire +ffffffff826b4078 b khugepaged_full_scans +ffffffff826b407c b khugepaged_pages_collapsed +ffffffff826b4080 b cleancache_invalidates +ffffffff826b4088 b cleancache_puts +ffffffff826b4090 b cleancache_failed_gets +ffffffff826b4098 b cleancache_succ_gets +ffffffff826b40a0 b old_max.36299 +ffffffff826b40a8 b __key.36305 +ffffffff826b40a8 b __key.36367 +ffffffff826b40a8 b delayed_fput_list +ffffffff826b40c0 b bdi_seq.38813 +ffffffff826b40e0 b default_op.38405 +ffffffff826b4190 b __key.38407 +ffffffff826b4190 b __key.38412 +ffffffff826b4190 b __key.38413 +ffffffff826b4190 b __key.38416 +ffffffff826b4190 b __key.38417 +ffffffff826b4190 b unnamed_dev_lock +ffffffff826b4194 b sb_lock +ffffffff826b41a0 b cdev_lock +ffffffff826b41c0 b chrdevs +ffffffff826b49b8 b cdev_map +ffffffff826b49c0 B suid_dumpable +ffffffff826b49c8 b binfmt_lock +ffffffff826b49d0 B pipe_user_pages_hard +ffffffff826b49d8 b __key.39692 +ffffffff826b49d8 b __key.39693 +ffffffff826b49d8 b fasync_lock +ffffffff826b49e0 b in_lookup_hashtable +ffffffff826b6a00 B inodes_stat +ffffffff826b6a38 b counter.41369 +ffffffff826b6a3c b iunique_lock.41367 +ffffffff826b6a40 b shared_last_ino.41290 +ffffffff826b6a44 b __key.40765 +ffffffff826b6a44 b __key.40898 +ffffffff826b6a80 b empty_iops.40760 +ffffffff826b6b40 b __key.37513 +ffffffff826b6b40 b file_systems_lock +ffffffff826b6b48 b file_systems +ffffffff826b6b50 B fs_kobj +ffffffff826b6b58 b __key.39326 +ffffffff826b6b58 b __key.41008 +ffffffff826b6b58 b unmounted +ffffffff826b6b60 b delayed_mntput_list +ffffffff826b6b68 b mnt_id_start +ffffffff826b6b6c b mnt_id_lock +ffffffff826b6b70 b event +ffffffff826b6b78 b __key.26070 +ffffffff826b6b78 b __key.34612 +ffffffff826b6b78 b simple_transaction_lock.34575 +ffffffff826b6b7c b pin_fs_lock +ffffffff826b6b80 b list +ffffffff826b6b88 b mp +ffffffff826b6b90 b dest_master +ffffffff826b6b98 b last_source +ffffffff826b6ba0 b first_source +ffffffff826b6ba8 b last_dest +ffffffff826b6bb0 b user_ns +ffffffff826b6bb8 b pin_lock +ffffffff826b6bc0 b nsfs_mnt +ffffffff826b6bc8 B buffer_heads_over_limit +ffffffff826b6bcc b msg_count.46078 +ffffffff826b6bd0 b max_buffer_heads +ffffffff826b6bd8 b __key.38785 +ffffffff826b6bd8 b __key.38786 +ffffffff826b6bd8 b fsnotify_sync_cookie +ffffffff826b6bdc b __key.28039 +ffffffff826b6bdc b __key.28040 +ffffffff826b6be0 B fsnotify_mark_connector_cachep +ffffffff826b6c00 B fsnotify_mark_srcu +ffffffff826b6d90 b connector_destroy_list +ffffffff826b6d98 b destroy_lock +ffffffff826b6d9c b warned.21699 +ffffffff826b6da0 b zero +ffffffff826b6da4 b __key.39214 +ffffffff826b6db0 b __key.60247 +ffffffff826b6db0 b __key.60248 +ffffffff826b6db0 b __key.60249 +ffffffff826b6db0 b path_count +ffffffff826b6dc8 b zero +ffffffff826b6dd0 b poll_loop_ncalls +ffffffff826b6de8 b anon_inode_inode +ffffffff826b6df0 b __key.37896 +ffffffff826b6df0 b cancel_lock +ffffffff826b6df4 b __key.37538 +ffffffff826b6df8 B aio_nr +ffffffff826b6e00 b __key.45707 +ffffffff826b6e00 b __key.45708 +ffffffff826b6e00 b __key.9867 +ffffffff826b6e00 b aio_mnt +ffffffff826b6e08 b kioctx_cachep +ffffffff826b6e10 b kiocb_cachep +ffffffff826b6e18 b aio_nr_lock +ffffffff826b6e20 b __key.38905 +ffffffff826b6e20 b blocked_lock_lock +ffffffff826b6e40 b blocked_hash +ffffffff826b7240 b mb_entry_cache +ffffffff826b7248 B sysctl_drop_caches +ffffffff826b724c b stfu.25521 +ffffffff826b7250 b proc_subdir_lock +ffffffff826b7258 b proc_tty_driver +ffffffff826b7260 B sysctl_mount_point +ffffffff826b72a0 b __key.11132 +ffffffff826b72a0 b sysctl_lock +ffffffff826b72a8 B kernfs_node_cache +ffffffff826b72c0 b __key.27469 +ffffffff826b72c0 b kernfs_idr_lock +ffffffff826b72e0 b kernfs_pr_cont_buf +ffffffff826b82e0 b kernfs_rename_lock +ffffffff826b82e4 b __key.30756 +ffffffff826b82e4 b __key.30779 +ffffffff826b82e4 b __key.30780 +ffffffff826b82e4 b __key.30783 +ffffffff826b82e4 b kernfs_notify_lock +ffffffff826b82e8 b kernfs_open_node_lock +ffffffff826b82ec B sysfs_symlink_target_lock +ffffffff826b82f0 B sysfs_root_kn +ffffffff826b82f8 b sysfs_root +ffffffff826b8300 b pty_count +ffffffff826b8304 b pty_limit_min +ffffffff826b8308 b ext4_system_zone_cachep +ffffffff826b8310 b __key.42832 +ffffffff826b8310 b __key.42834 +ffffffff826b8310 b ext4_es_cachep +ffffffff826b8320 b __key.46962 +ffffffff826b8320 b __key.47031 +ffffffff826b8320 b ext4_groupinfo_caches +ffffffff826b8360 b ext4_free_data_cachep +ffffffff826b8368 b ext4_ac_cachep +ffffffff826b8370 b ext4_pspace_cachep +ffffffff826b8378 b io_end_cachep +ffffffff826b8380 B ext4__ioend_wq +ffffffff826b86f8 b __key.48147 +ffffffff826b86f8 b __key.48148 +ffffffff826b86f8 b __key.48149 +ffffffff826b86f8 b __key.48618 +ffffffff826b86f8 b __key.48771 +ffffffff826b86f8 b __key.48783 +ffffffff826b86f8 b __key.48786 +ffffffff826b86f8 b __key.48788 +ffffffff826b86f8 b __key.48790 +ffffffff826b86f8 b __key.48974 +ffffffff826b86f8 b __key.48975 +ffffffff826b86f8 b ext4_lazyinit_task +ffffffff826b86f8 b rwsem_key.48792 +ffffffff826b8700 b ext4_inode_cachep +ffffffff826b8720 b ext4_mount_msg_ratelimit +ffffffff826b8760 b ext4_li_mtx +ffffffff826b8780 b ext4_li_info +ffffffff826b8788 b __key.9867 +ffffffff826b8788 b ext4_feat +ffffffff826b8790 b ext4_kset +ffffffff826b8798 b ext4_proc_root +ffffffff826b87a0 b mnt_count.39818 +ffffffff826b87a8 b transaction_cache +ffffffff826b87b0 b jbd2_revoke_table_cache +ffffffff826b87b8 b jbd2_revoke_record_cache +ffffffff826b87c0 B jbd2_inode_cache +ffffffff826b87c8 B jbd2_handle_cache +ffffffff826b87d0 b __key.39563 +ffffffff826b87d0 b __key.39564 +ffffffff826b87d0 b __key.39565 +ffffffff826b87d0 b __key.39566 +ffffffff826b87d0 b __key.39567 +ffffffff826b87d0 b __key.39568 +ffffffff826b87d0 b __key.39569 +ffffffff826b87d0 b jbd2_journal_head_cache +ffffffff826b87e0 b jbd2_slab +ffffffff826b8820 b proc_jbd2_stats +ffffffff826b8828 b once.35590 +ffffffff826b8840 b nohit.28213 +ffffffff826b8860 b fat_cache_cachep +ffffffff826b8868 b __key.32851 +ffffffff826b8868 b fat12_entry_lock +ffffffff826b8870 b __key.37918 +ffffffff826b8870 b __key.38175 +ffffffff826b8870 b __key.38179 +ffffffff826b8870 b fat_inode_cachep +ffffffff826b8878 b nls_lock +ffffffff826b8880 b p_nls +ffffffff826b88a0 b identity +ffffffff826b89a0 b ntfs_cb_lock +ffffffff826b89a8 b ntfs_compression_buffer +ffffffff826b89b0 b __key.30210 +ffffffff826b89b0 b __key.31684 +ffffffff826b89b0 b __key.31685 +ffffffff826b89b0 B ntfs_index_ctx_cache +ffffffff826b89b8 B ntfs_attr_ctx_cache +ffffffff826b89c0 B ntfs_big_inode_cache +ffffffff826b89c8 B ntfs_inode_cache +ffffffff826b89d0 B ntfs_name_cache +ffffffff826b89d8 b __key.38534 +ffffffff826b89d8 b __key.38535 +ffffffff826b89d8 b ntfs_nr_upcase_users +ffffffff826b89e0 b default_upcase +ffffffff826b89e8 b ntfs_nr_compression_users +ffffffff826b89f0 b __key.23058 +ffffffff826b89f0 b __key.30102 +ffffffff826b89f0 b __key.30103 +ffffffff826b89f0 b __key.9867 +ffffffff826b89f0 b now +ffffffff826b89f8 b __key.16152 +ffffffff826b89f8 b __key.48334 +ffffffff826b89f8 b __key.49441 +ffffffff826b89f8 b __key.50348 +ffffffff826b89f8 b __key.50349 +ffffffff826b89f8 b __key.50363 +ffffffff826b89f8 b __key.51381 +ffffffff826b89f8 b __key.51386 +ffffffff826b89f8 b __key.51388 +ffffffff826b89f8 b __key.51794 +ffffffff826b89f8 b __key.52341 +ffffffff826b89f8 b __key.52343 +ffffffff826b89f8 b __key.52361 +ffffffff826b89f8 b __key.52362 +ffffffff826b89f8 b __key.52363 +ffffffff826b89f8 b __key.52364 +ffffffff826b89f8 b __key.52365 +ffffffff826b89f8 b __key.52366 +ffffffff826b89f8 b __key.52367 +ffffffff826b89f8 b __key.52433 +ffffffff826b89f8 b __key.52628 +ffffffff826b89f8 b __key.52629 +ffffffff826b89f8 b __key.52634 +ffffffff826b89f8 b __key.52635 +ffffffff826b89f8 b __key.52643 +ffffffff826b89f8 b __key.52645 +ffffffff826b89f8 b __key.52646 +ffffffff826b89f8 b __key.52651 +ffffffff826b89f8 b __key.52654 +ffffffff826b89f8 b __key.52706 +ffffffff826b89f8 b __key.52709 +ffffffff826b89f8 b __key.52712 +ffffffff826b89f8 b __key.52726 +ffffffff826b89f8 b __key.52727 +ffffffff826b89f8 b __key.52728 +ffffffff826b89f8 b __key.52729 +ffffffff826b89f8 b __key.52730 +ffffffff826b89f8 b __key.52743 +ffffffff826b89f8 b __key.52744 +ffffffff826b89f8 b __key.52745 +ffffffff826b89f8 b __key.52746 +ffffffff826b89f8 b __key.52747 +ffffffff826b89f8 b __key.52748 +ffffffff826b89f8 b __key.52749 +ffffffff826b89f8 b __key.52750 +ffffffff826b89f8 b __key.52751 +ffffffff826b89f8 b __key.52752 +ffffffff826b89f8 b __key.52753 +ffffffff826b89f8 b __key.52754 +ffffffff826b89f8 b __key.52755 +ffffffff826b89f8 b __key.52756 +ffffffff826b89f8 b __key.53054 +ffffffff826b89f8 b __key.53055 +ffffffff826b89f8 b __key.9867 +ffffffff826b89f8 b btrfs_end_io_wq_cache +ffffffff826b8a00 b __key.49996 +ffffffff826b8a00 b __key.49997 +ffffffff826b8a00 b __key.49998 +ffffffff826b8a00 b __key.50013 +ffffffff826b8a00 B btrfs_free_space_cachep +ffffffff826b8a08 B btrfs_path_cachep +ffffffff826b8a10 B btrfs_trans_handle_cachep +ffffffff826b8a18 b __key.54514 +ffffffff826b8a18 b __key.54515 +ffffffff826b8a18 b __key.54516 +ffffffff826b8a18 b xattr_default.53171 +ffffffff826b8a20 b xattr_access.53170 +ffffffff826b8a28 b __key.9867 +ffffffff826b8a28 b btrfs_inode_cachep +ffffffff826b8a30 b btrfs_inode_defrag_cachep +ffffffff826b8a38 b extent_map_cache +ffffffff826b8a40 B btrfs_debugfs_test +ffffffff826b8a48 b __key.14013 +ffffffff826b8a48 b btrfs_kset +ffffffff826b8a60 b btrfs_feature_attrs +ffffffff826bae60 b btrfs_unknown_feature_names +ffffffff826bb820 b __key.49436 +ffffffff826bb820 b __key.9240 +ffffffff826bb820 b btrfs_ordered_extent_cache +ffffffff826bb828 b __key.50406 +ffffffff826bb828 b __key.51835 +ffffffff826bb828 b __key.51836 +ffffffff826bb828 b btrfs_bioset +ffffffff826bb830 b extent_buffer_cache +ffffffff826bb838 b extent_state_cache +ffffffff826bb840 b __key.50362 +ffffffff826bb840 b __key.51143 +ffffffff826bb840 b warned.53638 +ffffffff826bb841 b __key.50557 +ffffffff826bb860 b __key.51262 +ffffffff826bb860 b __key.51264 +ffffffff826bb860 b btrfs_heuristic_ws +ffffffff826bb8a0 b btrfs_comp_ws +ffffffff826bb948 B btrfs_delayed_extent_op_cachep +ffffffff826bb950 B btrfs_delayed_data_ref_cachep +ffffffff826bb958 B btrfs_delayed_tree_ref_cachep +ffffffff826bb960 B btrfs_delayed_ref_head_cachep +ffffffff826bb968 b __key.49235 +ffffffff826bb968 b __key.49377 +ffffffff826bb968 b delayed_node_cache +ffffffff826bb970 b __key.49897 +ffffffff826bb970 b __key.50160 +ffffffff826bb970 b __key.50264 +ffffffff826bb970 b __key.50267 +ffffffff826bb970 b btrfs_prelim_ref_cache +ffffffff826bb978 b __key.14013 +ffffffff826bb980 b prop_handlers_ht +ffffffff826bc180 b tfm +ffffffff826bc188 b __key.30622 +ffffffff826bc188 B mq_lock +ffffffff826bc18c b zero +ffffffff826bc190 b __key.57177 +ffffffff826bc190 b mq_sysctl_table +ffffffff826bc198 b mqueue_inode_cachep +ffffffff826bc1a0 b gc_state.28701 +ffffffff826bc1a8 b key_gc_flags +ffffffff826bc1b0 b key_gc_dead_keytype +ffffffff826bc1b8 B key_user_lock +ffffffff826bc1c0 B key_user_tree +ffffffff826bc1c8 B key_serial_lock +ffffffff826bc1d0 B key_serial_tree +ffffffff826bc1d8 B key_jar +ffffffff826bc1e0 b __key.28890 +ffffffff826bc1e0 b __key.28944 +ffffffff826bc1e0 b keyring_name_lock +ffffffff826bc200 b keyring_name_hash +ffffffff826bc400 b zero +ffffffff826bc404 b warned.41987 +ffffffff826bc408 B mmap_min_addr +ffffffff826bc410 b __key.9240 +ffffffff826bc410 B kcrypto_wq +ffffffff826bc418 b scomp_scratch_users +ffffffff826bc420 b scomp_dst_scratches +ffffffff826bc428 b scomp_src_scratches +ffffffff826bc440 b __key.9240 +ffffffff826bc440 b alg_test_descs_checked +ffffffff826bc460 b zeroed_string +ffffffff826bc490 b notests +ffffffff826bc498 b crypto_default_null_skcipher_refcnt +ffffffff826bc4a0 b crypto_default_null_skcipher +ffffffff826bc4a8 b __key.9267 +ffffffff826bc4a8 b gcm_zeroes +ffffffff826bc4b0 b queue +ffffffff826bc4b8 B crypto_default_rng +ffffffff826bc4c0 b crypto_default_rng_refcnt +ffffffff826bc4e0 b __key.34754 +ffffffff826bc4e0 b drbg_algs +ffffffff826beb60 b alg_memory_allocated +ffffffff826beb68 b __key.9240 +ffffffff826beb68 b active_template +ffffffff826beb70 b cakey +ffffffff826beb80 b ca_keyid +ffffffff826beb88 b use_builtin_keys +ffffffff826beb89 b __key.9409 +ffffffff826beb90 B fs_bio_set +ffffffff826beb98 b bio_dirty_list +ffffffff826beba0 b bio_dirty_lock +ffffffff826beba4 b bio_slab_max +ffffffff826beba8 b bio_slab_nr +ffffffff826bebb0 b bio_slabs +ffffffff826bebc0 b printed.40162 +ffffffff826bebc4 b __key.38780 +ffffffff826bebd0 b chosen_elevator +ffffffff826bebe0 b elv_list_lock +ffffffff826bebe8 B blk_requestq_cachep +ffffffff826bebf0 B request_cachep +ffffffff826bebf8 b __key.40940 +ffffffff826bebf8 b __key.40941 +ffffffff826bebf8 b __key.41002 +ffffffff826bebf8 b __key.41004 +ffffffff826bebf8 b kblockd_workqueue +ffffffff826bec00 B blk_max_pfn +ffffffff826bec08 B blk_max_low_pfn +ffffffff826bec10 b iocontext_cachep +ffffffff826bec18 b __key.41849 +ffffffff826bec18 b default_ctx_attrs +ffffffff826bec20 B block_depr +ffffffff826bec28 b __key.38024 +ffffffff826bec28 b __key.38660 +ffffffff826bec28 b __key.38977 +ffffffff826bec28 b disk_events_dfl_poll_msecs +ffffffff826bec30 b bdev_map +ffffffff826bec40 b major_names +ffffffff826bf438 b ext_devt_lock +ffffffff826bf43c b force_gpt +ffffffff826bf440 b blk_default_cmd_filter +ffffffff826bf480 b __key.36130 +ffffffff826bf480 b __key.36131 +ffffffff826bf480 b __key.36284 +ffffffff826bf480 b bsg_cdev +ffffffff826bf4e8 b bsg_cmd_cachep +ffffffff826bf4f0 b bsg_major +ffffffff826bf4f8 b bsg_class +ffffffff826bf500 b bsg_device_list +ffffffff826bf540 b cfq_pool +ffffffff826bf548 b __key.36726 +ffffffff826bf548 B debug_locks_silent +ffffffff826bf54c b latch.13987 +ffffffff826bf550 b lock.13988 +ffffffff826bf560 B uuid_null +ffffffff826bf570 B guid_null +ffffffff826bf580 b percpu_ref_switch_lock +ffffffff826bf584 b __key.25094 +ffffffff826bf584 b __key.26127 +ffffffff826bf584 b once_lock +ffffffff826bf5a0 b static_init_done.3356 +ffffffff826bf5c0 b base_dist +ffffffff826bf640 b base_length +ffffffff826bf6c0 b length_code +ffffffff826bf7c0 b dist_code +ffffffff826bf9c0 b static_dtree +ffffffff826bfa40 b static_ltree +ffffffff826bff00 B raid6_datap_recov +ffffffff826bff08 B raid6_2data_recov +ffffffff826bff20 B raid6_call +ffffffff826c0000 B raid6_empty_zero_page +ffffffff826c1000 b percpu_counters_lock +ffffffff826c1008 B max_segment +ffffffff826c100c B swiotlb_force +ffffffff826c1010 b no_iotlb_memory +ffffffff826c1014 b late_alloc +ffffffff826c1018 b io_tlb_lock +ffffffff826c1020 b io_tlb_orig_addr +ffffffff826c1028 b io_tlb_index +ffffffff826c1030 b io_tlb_list +ffffffff826c1038 b io_tlb_overflow_buffer +ffffffff826c1040 b io_tlb_nslabs +ffffffff826c1048 b io_tlb_end +ffffffff826c1050 b io_tlb_start +ffffffff826c1058 b do_once.27197 +ffffffff826c1059 b __key.22295 +ffffffff826c105c B pci_lock +ffffffff826c1060 b __key.34735 +ffffffff826c1060 b __key.40213 +ffffffff826c1060 B pci_cache_line_size +ffffffff826c1064 B pci_pm_d3_delay +ffffffff826c1068 B pci_pci_problems +ffffffff826c106c B isa_dma_bridge_buggy +ffffffff826c1070 b resource_alignment_lock +ffffffff826c1080 b resource_alignment_param +ffffffff826c1880 b arch_set_vga_state +ffffffff826c1888 b pci_acs_enable +ffffffff826c1890 b pci_platform_pm +ffffffff826c1898 b pci_bridge_d3_force +ffffffff826c1899 b pci_bridge_d3_disable +ffffffff826c189a b pcie_ari_disabled +ffffffff826c189c b sysfs_initialized +ffffffff826c18a0 B pci_flags +ffffffff826c18a8 b proc_bus_pci_dir +ffffffff826c18b0 b proc_initialized +ffffffff826c18b8 B pci_slots_kset +ffffffff826c18c0 b pci_apply_fixup_final_quirks +ffffffff826c18c8 b asus_rcba_base +ffffffff826c18d0 b asus_hides_smbus +ffffffff826c18d4 b aspm_force +ffffffff826c18d8 b aspm_disabled +ffffffff826c18dc B pciehp_msi_disabled +ffffffff826c18dd B pcie_ports_disabled +ffffffff826c18e0 b __key.38257 +ffffffff826c18e0 b pcie_aer_disable +ffffffff826c18e4 B pcie_pme_msi_disabled +ffffffff826c18e8 B pci_msi_ignore_mask +ffffffff826c18f0 b msi_default_affd.39728 +ffffffff826c18f8 b pci_msi_get_fwnode_cb +ffffffff826c1900 b __key.27015 +ffffffff826c1900 b __key.27016 +ffffffff826c1900 b __key.27083 +ffffffff826c1900 b __key.27085 +ffffffff826c1900 b __key.27086 +ffffffff826c1900 b backlight_class +ffffffff826c1920 b backlight_notifier +ffffffff826c1960 b backlight_dev_list_mutex +ffffffff826c1980 b backlight_dev_list +ffffffff826c1990 B fb_mode_option +ffffffff826c1998 B fb_class +ffffffff826c19a0 b __key.35656 +ffffffff826c19a0 b __key.35657 +ffffffff826c19a0 b __key.35692 +ffffffff826c19a0 b lockless_register_fb +ffffffff826c19a1 b __key.36293 +ffffffff826c19c0 b palette_blue +ffffffff826c19e0 b palette_green +ffffffff826c1a00 b palette_red +ffffffff826c1a20 b scrollback_current +ffffffff826c1a24 b scrollback_max +ffffffff826c1a28 b scrollback_phys_max +ffffffff826c1a30 b fbcon_device +ffffffff826c1a38 b fbcon_cursor_noblink +ffffffff826c1a3c b margin_color +ffffffff826c1a40 b fontname +ffffffff826c1a68 b map_override +ffffffff826c1a6c b fbcon_has_console_bind +ffffffff826c1a70 b fbcon_has_exited +ffffffff826c1a74 b first_fb_vc +ffffffff826c1a78 b softback_lines +ffffffff826c1a80 b softback_end +ffffffff826c1a88 b softback_top +ffffffff826c1a90 b softback_in +ffffffff826c1a98 b softback_curr +ffffffff826c1aa0 b softback_buf +ffffffff826c1aa8 b logo_lines +ffffffff826c1ac0 b con2fb_map_boot +ffffffff826c1b00 b con2fb_map +ffffffff826c1b40 b fb_display +ffffffff826c3ac0 b cpuidle_state_table +ffffffff826c3ac8 b intel_idle_cpuidle_devices +ffffffff826c3ad0 b icpu +ffffffff826c3ad8 b mwait_substates +ffffffff826c3adc b osi_config +ffffffff826c3ae0 B acpi_permanent_mmap +ffffffff826c3b00 b buffer.40848 +ffffffff826c3d00 b acpi_os_name +ffffffff826c3d64 b acpi_os_initialized +ffffffff826c3d68 b kacpi_hotplug_wq +ffffffff826c3d70 b kacpi_notify_wq +ffffffff826c3d78 b kacpid_wq +ffffffff826c3d80 b acpi_irq_context +ffffffff826c3d88 b acpi_irq_handler +ffffffff826c3d90 b __acpi_os_prepare_sleep +ffffffff826c3da0 B acpi_video_backlight_string +ffffffff826c3db0 B acpi_no_s5 +ffffffff826c3db4 b saved_bm_rld +ffffffff826c3db8 b lpi_constraints_table_size +ffffffff826c3dc0 b lpi_constraints_table +ffffffff826c3dc8 b lps0_dsm_func_mask +ffffffff826c3dd0 b lps0_dsm_guid +ffffffff826c3de0 b lps0_device_handle +ffffffff826c3de8 b s2idle_wakeup +ffffffff826c3de9 b s2idle_in_progress +ffffffff826c3dea b ignore_blacklist +ffffffff826c3deb b acpi_sleep_no_lps0 +ffffffff826c3dec b old_suspend_ordering +ffffffff826c3ded b nvs_nosave_s3 +ffffffff826c3dee b nvs_nosave +ffffffff826c3def b pwr_btn_event_pending +ffffffff826c3df0 b acpi_target_sleep_state +ffffffff826c3df4 b sleep_states +ffffffff826c3dfa b __key.9392 +ffffffff826c3e00 B acpi_kobj +ffffffff826c3e08 B osc_pc_lpi_support_confirmed +ffffffff826c3e09 B osc_sb_apei_support_acked +ffffffff826c3e10 B acpi_root_dir +ffffffff826c3e18 B acpi_root +ffffffff826c3e20 b __key.39724 +ffffffff826c3e20 b acpi_probe_count +ffffffff826c3e28 b ape +ffffffff826c3e30 b acpi_scan_initialized +ffffffff826c3e38 b spcr_uart_addr +ffffffff826c3e40 b cpu0_initialized.39436 +ffffffff826c3e44 b nr_duplicate_ids +ffffffff826c3e48 b acpi_hwp_native_thermal_lvt_set +ffffffff826c3e50 b madt.30674 +ffffffff826c3e58 b read_madt.30675 +ffffffff826c3e60 B first_ec +ffffffff826c3e68 B boot_ec +ffffffff826c3e70 b EC_FLAGS_IGNORE_DSDT_GPE +ffffffff826c3e70 b __key.32035 +ffffffff826c3e70 b __key.32036 +ffffffff826c3e74 b EC_FLAGS_CORRECT_ECDT +ffffffff826c3e78 b ec_query_wq +ffffffff826c3e80 b boot_ec_is_ecdt +ffffffff826c3e84 b sci_penalty +ffffffff826c3e88 b __key.30060 +ffffffff826c3e88 b attrs +ffffffff826c3e90 b acpi_event_seqnum +ffffffff826c3e98 B acpi_irq_not_handled +ffffffff826c3e9c B acpi_irq_handled +ffffffff826c3ea0 b counter_attrs +ffffffff826c3ea8 b acpi_gpe_count +ffffffff826c3eb0 b all_attrs +ffffffff826c3eb8 b num_counters +ffffffff826c3ebc b num_gpes +ffffffff826c3ec0 b all_counters +ffffffff826c3ec8 b hotplug_kobj +ffffffff826c3ed0 b dynamic_tables_kobj +ffffffff826c3ed8 b tables_data_kobj +ffffffff826c3ee0 b tables_kobj +ffffffff826c3f00 B acpi_static_fwnode_ops +ffffffff826c3f80 b residency_info_ffh +ffffffff826c3fa0 b residency_info_mem +ffffffff826c3fc0 b acpi_gbl_trace_method_object +ffffffff826c3fe0 B acpi_gbl_original_dbg_layer +ffffffff826c3fe4 B acpi_gbl_original_dbg_level +ffffffff826c3ff0 B acpi_fixed_event_count +ffffffff826c4004 B acpi_sci_count +ffffffff826c4008 B acpi_gpe_count +ffffffff826c400c B acpi_method_count +ffffffff826c4020 B acpi_gbl_fixed_event_handlers +ffffffff826c4070 B acpi_gbl_global_event_handler_context +ffffffff826c4078 B acpi_gbl_global_event_handler +ffffffff826c4080 B acpi_gbl_gpe_fadt_blocks +ffffffff826c4090 B acpi_gbl_gpe_xrupt_list_head +ffffffff826c4098 B acpi_gbl_all_gpes_initialized +ffffffff826c4099 B acpi_gbl_sleep_type_b +ffffffff826c409a B acpi_gbl_sleep_type_a +ffffffff826c40a0 B acpi_gbl_last_list_head +ffffffff826c40a8 B acpi_gbl_capture_comments +ffffffff826c40b0 B acpi_gbl_current_scope +ffffffff826c40b8 B acpi_gbl_current_walk_list +ffffffff826c40c0 B acpi_gbl_cm_single_step +ffffffff826c40c8 B acpi_gbl_module_code_list +ffffffff826c40d0 B acpi_gbl_fadt_gpe_device +ffffffff826c40d8 B acpi_gbl_root_node +ffffffff826c40e0 B acpi_gbl_root_node_struct +ffffffff826c4110 B acpi_gbl_address_range_list +ffffffff826c4120 B acpi_gbl_supported_interfaces +ffffffff826c4128 B acpi_gbl_events_initialized +ffffffff826c4129 B acpi_gbl_acpi_hardware_present +ffffffff826c412a B acpi_gbl_step_to_next_call +ffffffff826c412b B acpi_gbl_debugger_configuration +ffffffff826c412c B acpi_gbl_pm1_enable_register_save +ffffffff826c4130 B acpi_gbl_ps_find_count +ffffffff826c4134 B acpi_gbl_ns_lookup_count +ffffffff826c4138 B acpi_gbl_original_mode +ffffffff826c413c B acpi_gbl_namespace_initialized +ffffffff826c413d B acpi_gbl_next_owner_id_offset +ffffffff826c413e B acpi_gbl_last_owner_id_index +ffffffff826c4140 B acpi_gbl_owner_id_mask +ffffffff826c4160 B acpi_gbl_sci_handler_list +ffffffff826c4168 B acpi_gbl_interface_handler +ffffffff826c4170 B acpi_gbl_table_handler_context +ffffffff826c4178 B acpi_gbl_table_handler +ffffffff826c4180 B acpi_gbl_init_handler +ffffffff826c4188 B acpi_gbl_exception_handler +ffffffff826c41a0 B acpi_gbl_global_notify +ffffffff826c41c0 B acpi_gbl_startup_flags +ffffffff826c41c8 B acpi_gbl_operand_cache +ffffffff826c41d0 B acpi_gbl_ps_node_ext_cache +ffffffff826c41d8 B acpi_gbl_ps_node_cache +ffffffff826c41e0 B acpi_gbl_state_cache +ffffffff826c41e8 B acpi_gbl_namespace_cache +ffffffff826c41f0 B acpi_gbl_namespace_rw_lock +ffffffff826c4208 B acpi_gbl_osi_mutex +ffffffff826c4210 B acpi_gbl_reference_count_lock +ffffffff826c4218 B acpi_gbl_hardware_lock +ffffffff826c4220 B acpi_gbl_gpe_lock +ffffffff826c4228 B acpi_gbl_global_lock_pending +ffffffff826c4229 B acpi_gbl_global_lock_present +ffffffff826c422a B acpi_gbl_global_lock_acquired +ffffffff826c422c B acpi_gbl_global_lock_handle +ffffffff826c4230 B acpi_gbl_global_lock_pending_lock +ffffffff826c4238 B acpi_gbl_global_lock_semaphore +ffffffff826c4240 B acpi_gbl_global_lock_mutex +ffffffff826c4260 B acpi_gbl_mutex_info +ffffffff826c42f0 B acpi_gbl_integer_nybble_width +ffffffff826c42f1 B acpi_gbl_integer_byte_width +ffffffff826c42f2 B acpi_gbl_integer_bit_width +ffffffff826c42f8 B acpi_gbl_xpm1b_enable +ffffffff826c4308 B acpi_gbl_xpm1b_status +ffffffff826c4318 B acpi_gbl_xpm1a_enable +ffffffff826c4328 B acpi_gbl_xpm1a_status +ffffffff826c4338 B acpi_gbl_FACS +ffffffff826c4340 B acpi_gbl_original_dsdt_header +ffffffff826c4368 B acpi_gbl_DSDT +ffffffff826c4370 B acpi_gbl_root_table_list +ffffffff826c4388 B acpi_gbl_system_awake_and_running +ffffffff826c438c B acpi_current_gpe_count +ffffffff826c43a0 B acpi_gbl_FADT +ffffffff826c44b4 B acpi_gbl_display_debug_timer +ffffffff826c44b8 B acpi_dbg_layer +ffffffff826c44c0 B acpi_gbl_trace_method_name +ffffffff826c44c8 B acpi_gbl_trace_flags +ffffffff826c44cc B acpi_gbl_reduced_hardware +ffffffff826c44cd B acpi_gbl_osi_data +ffffffff826c44ce B acpi_gbl_disable_ssdt_table_install +ffffffff826c44cf B acpi_gbl_disable_auto_repair +ffffffff826c44d0 B acpi_gbl_truncate_io_addresses +ffffffff826c44d1 B acpi_gbl_use32_bit_fadt_addresses +ffffffff826c44d2 B acpi_gbl_parse_table_as_term_list +ffffffff826c44d3 B acpi_gbl_do_not_use_xsdt +ffffffff826c44d4 B acpi_gbl_copy_dsdt_locally +ffffffff826c44d5 B acpi_gbl_enable_aml_debug_object +ffffffff826c44d6 B acpi_gbl_enable_interpreter_slack +ffffffff826c44d8 b acpi_lid_dir +ffffffff826c44e0 b acpi_button_dir +ffffffff826c44e8 b lid_device +ffffffff826c44f0 b count.45065 +ffffffff826c44f4 b __key.45217 +ffffffff826c44f4 b instance +ffffffff826c44f8 b bqc_offset_aml_bug_workaround +ffffffff826c44fc b register_count +ffffffff826c4500 b device_id_scheme +ffffffff826c4501 b allow_duplicates +ffffffff826c4520 b video_caps.39866 +ffffffff826c4528 b init_done.39865 +ffffffff826c4540 b backlight_notify_work +ffffffff826c4560 b backlight_nb +ffffffff826c4578 b backlight_notifier_registered +ffffffff826c457c b hp_online +ffffffff826c4580 b first_run.31776 +ffffffff826c4584 b acpi_processor_registered +ffffffff826c4588 b flat_state_cnt +ffffffff826c458c b c3_lock +ffffffff826c4590 b c3_cpu_count +ffffffff826c4594 b ignore_tpc +ffffffff826c4598 b acpi_thermal_cpufreq_is_init +ffffffff826c459c b is_done.31444 +ffffffff826c45a0 b acpi_processor_ppc_status +ffffffff826c45a8 b acpi_thermal_pm_queue +ffffffff826c45b0 b psv +ffffffff826c45b4 b off +ffffffff826c45b8 b nocrt +ffffffff826c45bc b tzp +ffffffff826c45c0 b crt +ffffffff826c45c4 b act +ffffffff826c45e0 b __key.31911 +ffffffff826c45e0 b __key.31912 +ffffffff826c45e0 b pcc_data +ffffffff826c4de0 B qdf2400_e44_present +ffffffff826c4e00 b opts.33223 +ffffffff826c4e40 b ps_tsk_num +ffffffff826c4e60 b ps_tsks +ffffffff826c4e80 b pad_busy_cpus_bits +ffffffff826c4ea0 b cpu_weight +ffffffff826c4ec0 b tsc_marked_unstable +ffffffff826c4ec1 b tsc_detected_unstable +ffffffff826c4ec8 b power_saving_mwait_eax +ffffffff826c4ed0 B pnp_debug +ffffffff826c4ed4 B pnp_platform_devices +ffffffff826c4ed8 b num +ffffffff826c4ee0 b clk_ignore_unused +ffffffff826c4ee8 b clk_orphan_list +ffffffff826c4ef0 b clk_root_list +ffffffff826c4ef8 b enable_refcnt +ffffffff826c4efc b prepare_refcnt +ffffffff826c4f00 b enable_owner +ffffffff826c4f08 b prepare_owner +ffffffff826c4f10 b enable_lock +ffffffff826c4f20 B tty_class +ffffffff826c4f28 b __key.34415 +ffffffff826c4f28 b __key.34416 +ffffffff826c4f28 b __key.34417 +ffffffff826c4f28 b __key.34418 +ffffffff826c4f28 b __key.34419 +ffffffff826c4f28 b __key.34420 +ffffffff826c4f28 b __key.34421 +ffffffff826c4f28 b __key.34423 +ffffffff826c4f28 b __key.34532 +ffffffff826c4f28 b consdev +ffffffff826c4f40 b console_cdev +ffffffff826c4fc0 b tty_cdev +ffffffff826c5028 b redirect +ffffffff826c5030 b redirect_lock +ffffffff826c5034 b __key.33493 +ffffffff826c5034 b __key.33494 +ffffffff826c5040 b tty_ldiscs +ffffffff826c5130 b tty_ldiscs_lock +ffffffff826c5134 b __key.26304 +ffffffff826c5134 b __key.27057 +ffffffff826c5134 b __key.27058 +ffffffff826c5134 b __key.27059 +ffffffff826c5134 b __key.27060 +ffffffff826c5140 b ptmx_cdev +ffffffff826c51a8 b pts_driver +ffffffff826c51b0 b ptm_driver +ffffffff826c51b8 B vt_dont_switch +ffffffff826c51bc b disable_vt_switch +ffffffff826c51c0 b vt_event_lock +ffffffff826c51c8 b __key.31958 +ffffffff826c51c8 b __key.32094 +ffffffff826c51c8 b vc_class +ffffffff826c51d0 B sel_cons +ffffffff826c51d8 b sel_buffer +ffffffff826c51e0 b sel_buffer_lth +ffffffff826c51e4 b sel_end +ffffffff826c51e8 b use_unicode +ffffffff826c5200 B vt_spawn_con +ffffffff826c5218 b zero.33930 +ffffffff826c5220 b chords.34244 +ffffffff826c5228 b committed.34245 +ffffffff826c5230 b releasestart.34253 +ffffffff826c5238 b committing.34252 +ffffffff826c523c b pressed.34251 +ffffffff826c5240 b keyboard_notifier_list +ffffffff826c5250 b ledioctl +ffffffff826c5254 b shift_state +ffffffff826c5258 b rep +ffffffff826c525c b diacr +ffffffff826c5260 b dead_key_next +ffffffff826c5268 b shift_down +ffffffff826c5280 b key_down +ffffffff826c52e0 b led_lock +ffffffff826c52e4 b kbd_event_lock +ffffffff826c5300 b kbd_table +ffffffff826c5440 B console_driver +ffffffff826c5448 B console_blank_hook +ffffffff826c5450 B last_console +ffffffff826c5454 B fg_console +ffffffff826c5458 B console_blanked +ffffffff826c545c B do_poke_blanked_console +ffffffff826c5460 B vc_cons +ffffffff826c5e38 B conswitchp +ffffffff826c5e40 b __key.34658 +ffffffff826c5e40 b printing_lock.34149 +ffffffff826c5e44 b kmsg_con.34133 +ffffffff826c5e48 b __key.34365 +ffffffff826c5e48 b oldy.33507 +ffffffff826c5e4a b oldx.33506 +ffffffff826c5e4c b old.33505 +ffffffff826c5e50 b vtconsole_class +ffffffff826c5e60 b vc0_cdev +ffffffff826c5ed0 b vt_notifier_list +ffffffff826c5ee0 b tty0dev +ffffffff826c5ee8 b blank_timer_expired +ffffffff826c5eec b blank_state +ffffffff826c5ef0 b scrollback_delta +ffffffff826c5ef8 b master_display_fg +ffffffff826c5f00 b saved_console_blanked +ffffffff826c5f04 b saved_vc_mode +ffffffff826c5f08 b saved_want_console +ffffffff826c5f0c b saved_last_console +ffffffff826c5f10 b saved_fg_console +ffffffff826c5f14 b blankinterval +ffffffff826c5f18 b vesa_off_interval +ffffffff826c5f1c b vesa_blank_mode +ffffffff826c5f20 b ignore_poke +ffffffff826c5f24 b printable +ffffffff826c5f40 b con_driver_map +ffffffff826c6140 b registered_con_driver +ffffffff826c63c0 B funcbufleft +ffffffff826c63c8 b __key.39403 +ffffffff826c63c8 b mem_class +ffffffff826c63e0 B primary_crng +ffffffff826c6430 b previous.40577 +ffffffff826c6438 b previous.40548 +ffffffff826c6440 b bootid_spinlock.40518 +ffffffff826c6448 b previous.40299 +ffffffff826c6450 b last_value.40091 +ffffffff826c6458 b batched_entropy_reset_lock +ffffffff826c6460 b sysctl_bootid +ffffffff826c6470 b min_write_thresh +ffffffff826c6480 b blocking_pool_data +ffffffff826c6500 b input_pool_data +ffffffff826c6700 b crng_init_cnt +ffffffff826c6704 b crng_init +ffffffff826c6708 b random_ready_list_lock +ffffffff826c6710 b fasync +ffffffff826c6718 b __key.25813 +ffffffff826c6718 b misc_class +ffffffff826c6720 b misc_minors +ffffffff826c6728 b __key.37274 +ffffffff826c6728 b last.37255 +ffffffff826c6730 b sysctl_header +ffffffff826c6738 b hpets +ffffffff826c6740 b hpet_lock +ffffffff826c6744 b hpet_nhpet +ffffffff826c6748 b __key.9673 +ffffffff826c6748 b default_quality +ffffffff826c674a b current_quality +ffffffff826c6750 b rng_fillbuf +ffffffff826c6758 b rng_buffer +ffffffff826c6760 b data_avail +ffffffff826c6768 b hwrng_fill +ffffffff826c6770 b cur_rng_set_by_user +ffffffff826c6778 b current_rng +ffffffff826c6780 b __key.34680 +ffffffff826c6780 b __key.34681 +ffffffff826c6780 b iommu_device_lock +ffffffff826c6788 b iommu_group_kset +ffffffff826c6790 b __key.29718 +ffffffff826c6790 b devices_attr +ffffffff826c6798 b iova_cache_users +ffffffff826c67a0 b iova_cache +ffffffff826c67c0 b dmar_table_initialized.40572 +ffffffff826c67e0 b dmar_pci_notify_info_buf +ffffffff826c6820 b dmar_seq_ids +ffffffff826c6840 B intel_iommu_gfx_mapped +ffffffff826c6844 B intel_iommu_enabled +ffffffff826c6848 B dmar_disabled +ffffffff826c684c B intel_iommu_tboot_noforce +ffffffff826c6860 b reserved_iova_list +ffffffff826c6fa8 b iommu_devinfo_cache +ffffffff826c6fb0 b iommu_domain_cache +ffffffff826c6fb8 b device_domain_lock +ffffffff826c6fbc b iommu_identity_mapping +ffffffff826c6fc0 b intel_iommu_pasid28 +ffffffff826c6fc4 b intel_iommu_strict +ffffffff826c6fc8 b dmar_forcedac +ffffffff826c6fcc b g_num_of_iommus +ffffffff826c6fd0 b si_domain +ffffffff826c6fd8 b force_on +ffffffff826c6fdc b rwbf_quirk +ffffffff826c6fe0 b g_iommus +ffffffff826c7000 b irq_2_ir_lock +ffffffff826c7020 b ir_hpet +ffffffff826c70e0 b ir_ioapic +ffffffff826c7ce0 B disable_irq_post +ffffffff826c7ce4 B no_x2apic_optout +ffffffff826c7ce8 B disable_sourceid_checking +ffffffff826c7cec B irq_remap_broken +ffffffff826c7cf0 B irq_remapping_enabled +ffffffff826c7cf8 b remap_ops +ffffffff826c7d00 b disable_irq_remap +ffffffff826c7d04 b __key.42054 +ffffffff826c7d04 b __key.42165 +ffffffff826c7d04 b __key.42300 +ffffffff826c7d04 b __key.42301 +ffffffff826c7d04 b __key.42302 +ffffffff826c7d04 b __key.43348 +ffffffff826c7d04 b __key.43836 +ffffffff826c7d04 b __key.43837 +ffffffff826c7d04 b __key.43838 +ffffffff826c7d04 b __key.43839 +ffffffff826c7d04 b __key.43843 +ffffffff826c7d04 b __key.45177 +ffffffff826c7d04 b __key.9554 +ffffffff826c7d10 B drm_debug +ffffffff826c7d14 b __key.42895 +ffffffff826c7d14 b __key.42896 +ffffffff826c7d14 b __key.42897 +ffffffff826c7d14 b __key.42898 +ffffffff826c7d18 b drm_fs_mnt +ffffffff826c7d20 b drm_fs_cnt +ffffffff826c7d24 b drm_core_init_complete +ffffffff826c7d30 b drm_minors_idr +ffffffff826c7d48 b drm_minor_lock +ffffffff826c7d50 B drm_class +ffffffff826c7d58 b __key.41767 +ffffffff826c7d60 b __key.15913 +ffffffff826c7d60 b glob +ffffffff826c7df0 b __key.42063 +ffffffff826c7df0 b __key.42113 +ffffffff826c7df0 b __key.42220 +ffffffff826c7df0 b __key.42221 +ffffffff826c7df0 b __key.42222 +ffffffff826c7df0 b __key.42223 +ffffffff826c7df0 b __key.42290 +ffffffff826c7df0 b drm_lease_idr_object +ffffffff826c7df8 b __key.30302 +ffffffff826c7df8 b __key.30384 +ffffffff826c7df8 b __key.30416 +ffffffff826c7df8 b __key.31706 +ffffffff826c7df8 b device_released +ffffffff826c7dfc b __key.31174 +ffffffff826c7dfc b __key.31640 +ffffffff826c7e00 b static_buf.32814 +ffffffff826c8e00 b start_pool.32847 +ffffffff826c8e08 b _manager +ffffffff826c8e20 b start_pool.35111 +ffffffff826c8e24 b __key.35170 +ffffffff826c8e40 b static_buf.34769 +ffffffff826c9e40 b _manager +ffffffff826c9e48 b __key.42793 +ffffffff826c9e48 b __key.42810 +ffffffff826c9e48 b __key.42811 +ffffffff826c9e48 b __key.42870 +ffffffff826c9e48 b __key.42888 +ffffffff826c9e48 b __key.42892 +ffffffff826c9e48 b __key.42939 +ffffffff826c9e48 b __key.43003 +ffffffff826c9e48 b __key.43038 +ffffffff826c9e48 b __key.43263 +ffffffff826c9e48 b __key.43720 +ffffffff826c9e48 b __key.43886 +ffffffff826c9e48 b __key.43977 +ffffffff826c9e48 b __key.44065 +ffffffff826c9e48 b __key.44066 +ffffffff826c9e48 b __key.44139 +ffffffff826c9e48 b __key.45867 +ffffffff826c9e48 b __key.9240 +ffffffff826c9e48 b _key.44031 +ffffffff826c9e48 b bar1_lock.43352 +ffffffff826c9e48 b bar1_lock.43460 +ffffffff826c9e48 b bar2_lock.43353 +ffffffff826c9e48 b bar2_lock.43461 +ffffffff826c9e48 b nvkm_subdev_lock_class +ffffffff826c9e50 b nouveau_dsm_priv +ffffffff826c9e80 b __key.54618 +ffffffff826c9e80 b __key.54620 +ffffffff826c9e80 b driver_platform +ffffffff826ca060 b driver_pci +ffffffff826ca238 b nouveau_noaccel +ffffffff826ca240 b nouveau_debug +ffffffff826ca248 b nouveau_config +ffffffff826ca250 B nouveau_hdmimhz +ffffffff826ca254 B nouveau_ignorelid +ffffffff826ca258 B nouveau_tv_disable +ffffffff826ca25c b __key.55306 +ffffffff826ca25c b __key.57620 +ffffffff826ca25c b nouveau_atomic +ffffffff826ca260 B nouveau_nofbaccel +ffffffff826ca264 b nouveau_fbcon_bpp +ffffffff826ca268 B nouveau_vram_pushbuf +ffffffff826ca26c b __key.52927 +ffffffff826ca270 b nouveau_tv_norm +ffffffff826ca278 b cn_already_initialized +ffffffff826ca27c b proc_event_num_listeners +ffffffff826ca280 B devices_kset +ffffffff826ca288 B sysfs_dev_block_kobj +ffffffff826ca290 B sysfs_dev_char_kobj +ffffffff826ca298 B platform_notify_remove +ffffffff826ca2a0 B platform_notify +ffffffff826ca2a8 b virtual_dir.48629 +ffffffff826ca2b0 b __key.48624 +ffffffff826ca2b0 b dev_kobj +ffffffff826ca2b8 b __key.20507 +ffffffff826ca2b8 b bus_kset +ffffffff826ca2c0 b system_kset +ffffffff826ca2c8 b probe_count +ffffffff826ca2cc b driver_deferred_probe_enable +ffffffff826ca2cd b defer_all_probes +ffffffff826ca2ce b initcalls_done +ffffffff826ca2d0 b deferred_trigger_count +ffffffff826ca2d8 b class_kset +ffffffff826ca2e0 B total_cpus +ffffffff826ca2e8 b hotplugable_cpu_attr_groups +ffffffff826ca2f0 b common_cpu_attr_groups +ffffffff826ca2f8 B firmware_kobj +ffffffff826ca300 b __key.17469 +ffffffff826ca300 b cache_dev_map +ffffffff826ca308 b __key.9911 +ffffffff826ca308 b requests +ffffffff826ca310 b req_lock +ffffffff826ca318 b thread +ffffffff826ca320 b power_attrs +ffffffff826ca328 b __key.18865 +ffffffff826ca328 b __key.37056 +ffffffff826ca340 B suspend_stats +ffffffff826ca3d4 b __key.9643 +ffffffff826ca3d4 b async_error +ffffffff826ca3d8 b pm_transition +ffffffff826ca3dc b events_lock +ffffffff826ca3e0 b saved_count +ffffffff826ca3e4 b combined_event_count +ffffffff826ca400 b __key.9789 +ffffffff826ca400 b fw_path_para +ffffffff826ca500 b fw_cache +ffffffff826ca5a0 b __key.25340 +ffffffff826ca5a0 b __key.25342 +ffffffff826ca5a0 b __key.38635 +ffffffff826ca5a0 b __key.38895 +ffffffff826ca5a0 b max_loop +ffffffff826ca5c0 b none_funcs +ffffffff826ca5f0 b part_shift +ffffffff826ca5f4 b max_part +ffffffff826ca600 b __key.30877 +ffffffff826ca600 b __key.30879 +ffffffff826ca600 b __key.31003 +ffffffff826ca600 b db_list +ffffffff826ca630 b dma_fence_context_counter +ffffffff826ca638 B reservation_seqcount_class +ffffffff826ca639 b __key.21733 +ffffffff826ca63c B scsi_use_blk_mq +ffffffff826ca640 B scsi_logging_level +ffffffff826ca644 b __key.38187 +ffffffff826ca644 b __key.38188 +ffffffff826ca644 b __key.38234 +ffffffff826ca644 b tur_command.39519 +ffffffff826ca650 b scsi_sense_isadma_cache +ffffffff826ca658 b scsi_sense_cache +ffffffff826ca660 b scsi_sdb_cache +ffffffff826ca668 b __key.38797 +ffffffff826ca668 b __key.38799 +ffffffff826ca668 b __key.9409 +ffffffff826ca668 b async_scan_lock +ffffffff826ca680 B blank_transport_template +ffffffff826ca7e0 b __key.37654 +ffffffff826ca7e0 b scsi_dev_flags +ffffffff826ca8e0 b scsi_default_dev_flags +ffffffff826ca8e8 b scsi_table_header +ffffffff826ca8f0 b __key.38893 +ffffffff826ca8f0 b sd_cdb_pool +ffffffff826ca8f8 b sd_cdb_cache +ffffffff826ca900 b sd_index_lock +ffffffff826ca908 B libata_allow_tpm +ffffffff826ca90c B libata_noacpi +ffffffff826ca910 B libata_fua +ffffffff826ca914 B ata_print_id +ffffffff826ca918 b __key.51300 +ffffffff826ca918 b lock.51258 +ffffffff826ca91c b __key.51193 +ffffffff826ca91c b __key.51196 +ffffffff826ca91c b __key.51217 +ffffffff826ca91c b __key.9409 +ffffffff826ca91c b atapi_an +ffffffff826ca920 b ata_probe_timeout +ffffffff826ca924 b ata_ignore_hpa +ffffffff826ca928 b atapi_dmadir +ffffffff826ca92c b ata_force_tbl_size +ffffffff826ca930 b ata_force_tbl +ffffffff826ca940 b ata_scsi_rbuf +ffffffff826cb940 b ata_scsi_rbuf_lock +ffffffff826cb948 B ata_scsi_transport_template +ffffffff826cb950 b __print_once.48481 +ffffffff826cb954 b mobile_lpm_policy +ffffffff826cb958 B ahci_ignore_sss +ffffffff826cb95c b ahci_skip_host_reset +ffffffff826cb960 b __key.49598 +ffffffff826cb960 b __key.7324 +ffffffff826cb960 b iwlwifi_opmode_table_mtx +ffffffff826cb980 b __key.48121 +ffffffff826cb980 b __key.55114 +ffffffff826cb980 b __key.55115 +ffffffff826cb980 b __key.55129 +ffffffff826cb980 b __key.55130 +ffffffff826cb980 b __key.74321 +ffffffff826cb980 b __key.74322 +ffffffff826cb980 b __key.74334 +ffffffff826cb980 b __key.74335 +ffffffff826cb980 b buf.74117 +ffffffff826cb9a8 B usb_debug_root +ffffffff826cb9b0 b nousb +ffffffff826cb9b8 b __key.35330 +ffffffff826cb9b8 b highspeed_hubs +ffffffff826cb9bc b old_scheme_first +ffffffff826cb9bd b blinkenlights +ffffffff826cb9c0 b hub_wq +ffffffff826cb9c8 b device_state_lock +ffffffff826cb9d0 B usb_hcds_loaded +ffffffff826cb9d8 b __key.39527 +ffffffff826cb9d8 b __key.39905 +ffffffff826cb9d8 b __key.39906 +ffffffff826cb9d8 b hcd_urb_unlink_lock +ffffffff826cb9dc b hcd_urb_list_lock +ffffffff826cb9e0 b hcd_root_hub_lock +ffffffff826cb9e4 b __key.9952 +ffffffff826cb9e4 b set_config_lock +ffffffff826cba00 b __key.32327 +ffffffff826cba00 b usb_class +ffffffff826cba20 b usb_minors +ffffffff826cc220 b level_warned.33242 +ffffffff826cc240 b __key.40854 +ffffffff826cc240 b usb_device_cdev +ffffffff826cc2a8 b usbfs_memory_usage +ffffffff826cc2b0 b usbfs_snoop +ffffffff826cc2b4 b __key.33203 +ffffffff826cc2b4 b usb_port_block_power_off +ffffffff826cc2c0 b amd_lock +ffffffff826cc2e0 b amd_chipset +ffffffff826cc308 b ignore_oc +ffffffff826cc30c b park +ffffffff826cc310 b log2_irq_thresh +ffffffff826cc314 b __key.40801 +ffffffff826cc314 b quirks +ffffffff826cc318 b link_quirk +ffffffff826cc31c b __key.14013 +ffffffff826cc31c b __key.9952 +ffffffff826cc320 b __key.14088 +ffffffff826cc320 b __key.40192 +ffffffff826cc320 b __key.40193 +ffffffff826cc320 b usb_stor_host_template +ffffffff826cc480 b quirks +ffffffff826cc500 b ignore_ids +ffffffff826cc508 b __key.27481 +ffffffff826cc508 b __key.27742 +ffffffff826cc508 b input_devices_state +ffffffff826cc510 b proc_bus_input_dir +ffffffff826cc518 b __key.24968 +ffffffff826cc518 b __key.29879 +ffffffff826cc518 b __key.29880 +ffffffff826cc518 B rtc_class +ffffffff826cc520 b __key.28208 +ffffffff826cc520 b __key.28211 +ffffffff826cc520 b __key.28283 +ffffffff826cc520 b rtc_devt +ffffffff826cc540 b platform_driver_registered +ffffffff826cc541 b pnp_driver_registered +ffffffff826cc560 b acpi_rtc_info +ffffffff826cc580 b cmos_rtc +ffffffff826cc5e8 B __i2c_first_dynamic_bus_num +ffffffff826cc5f0 b __key.33908 +ffffffff826cc5f0 b __key.9392 +ffffffff826cc5f0 b is_registered +ffffffff826cc600 b i2c_trace_msg +ffffffff826cc610 b bit_test +ffffffff826cc614 b __key.39788 +ffffffff826cc614 b __key.39819 +ffffffff826cc614 b p2sb_spinlock +ffffffff826cc618 b apanel_addr +ffffffff826cc61c b disable_features +ffffffff826cc620 B power_supply_notifier +ffffffff826cc630 B power_supply_class +ffffffff826cc638 b __key.21816 +ffffffff826cc640 b power_supply_dev_type +ffffffff826cc680 b __power_supply_attrs +ffffffff826cc898 b __key.44445 +ffffffff826cc898 b __key.44447 +ffffffff826cc898 b thermal_event_seqnum.44404 +ffffffff826cc89c b __key.44182 +ffffffff826cc89c b __key.44317 +ffffffff826cc8a0 b def_governor +ffffffff826cc8a8 b power_off_triggered +ffffffff826cc8ac b in_suspend +ffffffff826cc8c0 b hci_uart_ldisc.56348 +ffffffff826cc8c0 b rwsem_key.56276 +ffffffff826cc960 b hup +ffffffff826cc9c0 b __key.27291 +ffffffff826cc9c0 b enable_autosuspend +ffffffff826cc9c1 b force_scofix +ffffffff826cc9c2 b disable_scofix +ffffffff826cc9e0 b mc_bus +ffffffff826cd3e0 b edac_mc_owner +ffffffff826cd3e8 b edac_report +ffffffff826cd3ec b device_indexes.35163 +ffffffff826cd3f0 b mci_pdev +ffffffff826cd3f8 b edac_mc_panic_on_ue +ffffffff826cd400 b wq +ffffffff826cd408 b edac_pci_idx +ffffffff826cd40c b pci_indexes +ffffffff826cd410 b edac_pci_sysfs_refcount +ffffffff826cd418 b edac_pci_top_main_kobj +ffffffff826cd420 b pci_nonparity_count +ffffffff826cd424 b pci_parity_count +ffffffff826cd428 b edac_pci_panic_on_pe +ffffffff826cd42c b check_pci_errors +ffffffff826cd440 B cpufreq_global_kobject +ffffffff826cd448 b __key.41128 +ffffffff826cd448 b __key.41130 +ffffffff826cd448 b __key.9643 +ffffffff826cd448 b hp_online +ffffffff826cd44c b cpufreq_fast_switch_count +ffffffff826cd460 b cpufreq_transition_notifier_list +ffffffff826cd618 b cpufreq_suspended +ffffffff826cd620 b cpufreq_driver_lock +ffffffff826cd628 b cpufreq_driver +ffffffff826cd630 b max_highest_perf.44191 +ffffffff826cd638 b global +ffffffff826cd644 b acpi_ppc +ffffffff826cd648 b all_cpu_data +ffffffff826cd650 b enabled_devices +ffffffff826cd658 B cpuidle_driver_lock +ffffffff826cd660 b cpuidle_curr_driver +ffffffff826cd668 B cpuidle_curr_governor +ffffffff826cd670 b __key.12242 +ffffffff826cd670 b sysfs_switch +ffffffff826cd680 B dmi_available +ffffffff826cd688 B dmi_kobj +ffffffff826cd690 b nr.29600 +ffffffff826cd6a0 b dmi_ident +ffffffff826cd740 b dmi_base +ffffffff826cd748 b dmi_memdev_nr +ffffffff826cd750 b dmi_memdev +ffffffff826cd758 b smbios_entry_point_size +ffffffff826cd760 b smbios_entry_point +ffffffff826cd780 b dmi_num +ffffffff826cd784 b dmi_len +ffffffff826cd7a0 b __key.20528 +ffffffff826cd7a0 b dmi_dev +ffffffff826cd7c0 b sys_dmi_attributes +ffffffff826cd880 B efi_kobj +ffffffff826cd8a0 b generic_ops +ffffffff826cd8d0 b generic_efivars +ffffffff826cd8e8 b disable_runtime +ffffffff826cd8f0 b __efivars +ffffffff826cd8f8 b orig_pm_power_off +ffffffff826cd900 b stop_capsules +ffffffff826cd901 b capsule_pending +ffffffff826cd908 b esrt_kset +ffffffff826cd910 b esrt_kobj +ffffffff826cd918 b esrt +ffffffff826cd920 b esrt_data_size +ffffffff826cd928 b esrt_data +ffffffff826cd930 b acpi_pm_good +ffffffff826cd934 B i8253_lock +ffffffff826cd938 B hid_debug +ffffffff826cd93c b __key.30673 +ffffffff826cd93c b __key.30675 +ffffffff826cd93c b id.30664 +ffffffff826cd940 b hid_ignore_special_drivers +ffffffff826cd944 b __key.26503 +ffffffff826cd944 b __key.26504 +ffffffff826cd944 b __key.26506 +ffffffff826cd944 b __key.26507 +ffffffff826cd960 b __key.33630 +ffffffff826cd960 b quirks_param +ffffffff826cd980 b ignoreled +ffffffff826cd984 b hid_jspoll_interval +ffffffff826cd988 b hid_mousepoll_interval +ffffffff826cd98c b __key.30130 +ffffffff826cd98c b __key.30302 +ffffffff826cd98c b __key.30460 +ffffffff826cd98c b __key.30641 +ffffffff826cd98c b __key.30643 +ffffffff826cd98c b debug_dump_wdg +ffffffff826cd98d b debug_event +ffffffff826cd9a0 b acpi_base_addr +ffffffff826cd9c0 b pmc_device +ffffffff826cd9e0 b __key.9392 +ffffffff826cd9e0 b pcc_mbox_ctrl +ffffffff826cda60 b pcc_doorbell_irq +ffffffff826cda68 b pcc_doorbell_ack_vaddr +ffffffff826cda70 b pcc_doorbell_vaddr +ffffffff826cda78 b pcc_mbox_channels +ffffffff826cda80 B ras_debugfs_dir +ffffffff826cda88 B sound_class +ffffffff826cda90 b __key.19558 +ffffffff826cdaa0 B snd_ecards_limit +ffffffff826cdaa4 B snd_major +ffffffff826cdac0 b snd_minors +ffffffff826ce2c0 B snd_cards +ffffffff826ce300 b __key.14088 +ffffffff826ce300 b __key.26296 +ffffffff826ce300 b __key.26299 +ffffffff826ce300 b __key.26300 +ffffffff826ce300 b slots +ffffffff826ce340 b snd_cards_lock +ffffffff826ce348 b shutdown_lock +ffffffff826ce34c b __key.27053 +ffffffff826ce34c b __key.27054 +ffffffff826ce34c b __key.32468 +ffffffff826ce360 b __key.29333 +ffffffff826ce360 b __key.29334 +ffffffff826ce360 b timer_dev +ffffffff826ce628 b slave_active_lock +ffffffff826ce630 b mytimer +ffffffff826ce638 b resolution +ffffffff826ce63c b __key.31210 +ffffffff826ce63c b __key.31229 +ffffffff826ce63c b __key.31230 +ffffffff826ce63c b __key.31292 +ffffffff826ce63c b __key.31293 +ffffffff826ce640 b __key.35746 +ffffffff826ce640 b snd_pcm_link_rwlock +ffffffff826ce648 b __key.28766 +ffffffff826ce648 b __key.29346 +ffffffff826ce648 b __key.29347 +ffffffff826ce648 b __key.34364 +ffffffff826ce648 b __key.35700 +ffffffff826ce648 b __key.35701 +ffffffff826ce648 b __key.36072 +ffffffff826ce648 b __key.36128 +ffffffff826ce648 b __key.36495 +ffffffff826ce648 b static_hdmi_pcm +ffffffff826ce660 b __key.11673 +ffffffff826ce660 b __key.41783 +ffffffff826ce660 b dev.41884 +ffffffff826ce664 b power_save +ffffffff826ce680 b jackpoll_ms +ffffffff826ce6a0 b probe_only +ffffffff826ce6c0 b model +ffffffff826ce700 b id +ffffffff826ce740 b __key.35584 +ffffffff826ce740 b __key.35585 +ffffffff826ce740 b usb_chip +ffffffff826ce780 b quirk_alias +ffffffff826ce7c0 b ignore_ctl_error +ffffffff826ce7e0 b device_setup +ffffffff826ce800 b id +ffffffff826ce840 b __key.22481 +ffffffff826ce840 b __key.29516 +ffffffff826ce840 b __key.29806 +ffffffff826ce840 b __key.29807 +ffffffff826ce840 b __key.30550 +ffffffff826ce840 b pcibios_fw_addr_done +ffffffff826ce844 b pcibios_fwaddrmap_lock +ffffffff826ce848 b pci_mmcfg_arch_init_failed +ffffffff826ce849 b pci_mmcfg_running_state +ffffffff826ce860 b toshiba_line_size +ffffffff826ce880 b quirk_aspm_offset +ffffffff826ce940 b pci_ignore_seg +ffffffff826ce960 b elcr_irq_mask.37985 +ffffffff826ce968 b pirq_router_dev +ffffffff826ce980 b pirq_router +ffffffff826ce9a0 b pirq_table +ffffffff826ce9a8 b acer_tm360_irqrouting +ffffffff826ce9ac b broken_hp_bios_irq9 +ffffffff826ce9b0 B pci_config_lock +ffffffff826ce9b8 B pirq_table_addr +ffffffff826ce9c0 B noioapicreroute +ffffffff826ce9c4 B noioapicquirk +ffffffff826ce9c8 B pci_routeirq +ffffffff826ce9cc B pci_early_dump_regs +ffffffff826ce9d0 b dma_domain_list_lock +ffffffff826ce9d4 b pci_bf_sort +ffffffff826ce9e0 B saved_context +ffffffff826ceb28 b __key.61985 +ffffffff826ceb28 b dlci_ioctl_hook +ffffffff826ceb30 b vlan_ioctl_hook +ffffffff826ceb38 b br_ioctl_hook +ffffffff826ceb40 b net_family_lock +ffffffff826ceb50 B memalloc_socks +ffffffff826ceb60 b __key.60473 +ffffffff826ceb60 b __key.60475 +ffffffff826ceb60 b warned.60142 +ffffffff826ceb70 b warncomm.60143 +ffffffff826ceb80 b proto_inuse_idx +ffffffff826ceb88 b cleanup_list_lock +ffffffff826ceb90 b netns_wq +ffffffff826ceb98 b net_cachep +ffffffff826ceba0 b ___done.56526 +ffffffff826ceba1 b ___done.56537 +ffffffff826ceba2 b ___done.60741 +ffffffff826ceba4 b net_msg_warn +ffffffff826ceba8 b zero +ffffffff826cebc0 B dev_base_lock +ffffffff826cebe0 b default_ethtool_ops +ffffffff826ced98 b netstamp_wanted +ffffffff826ced9c b netstamp_needed_deferred +ffffffff826ceda0 b dev_boot_setup +ffffffff826ceee0 b netdev_chain +ffffffff826ceee8 b devnet_rename_seq +ffffffff826ceeec b napi_hash_lock +ffffffff826ceef0 b offload_lock +ffffffff826ceef4 b ptype_lock +ffffffff826ceef8 b busy.47395 +ffffffff826ceef9 b ___done.47154 +ffffffff826cef00 b md_dst_ops +ffffffff826cefc0 b netevent_notif_chain +ffffffff826cefd0 b zero +ffffffff826cefe0 b rtnl_msg_handlers +ffffffff826cf3f0 b defer_kfree_skb_list +ffffffff826cf3f8 b lweventlist_lock +ffffffff826cf400 b linkwatch_nextevent +ffffffff826cf408 b linkwatch_flags +ffffffff826cf410 b md_dst +ffffffff826cf420 b broadcast_wq +ffffffff826cf428 b inet_rcv_compat +ffffffff826cf440 b sock_diag_handlers +ffffffff826cf5a0 b gifconf_list +ffffffff826cf700 b reuseport_lock +ffffffff826cf710 b fib_chain +ffffffff826cf720 b rps_dev_flow_lock.56688 +ffffffff826cf724 b __key.57267 +ffffffff826cf728 b wireless_attrs +ffffffff826cf730 B nl_table_lock +ffffffff826cf738 b __key.52452 +ffffffff826cf738 b __key.52683 +ffffffff826cf738 b __key.52684 +ffffffff826cf738 b netlink_tap_net_id +ffffffff826cf73c b nl_table_users +ffffffff826cf740 B genl_sk_destructing_cnt +ffffffff826cf760 B nf_hooks_needed +ffffffff826cfb80 b nf_log_sysctl_fhdr +ffffffff826cfba0 b nf_log_sysctl_table +ffffffff826cff20 b nf_log_sysctl_fnames +ffffffff826cff60 b emergency +ffffffff826d0360 b __key.51229 +ffffffff826d0360 b table +ffffffff826d0540 b ___done.58021 +ffffffff826d0560 b conntrack_gc_work +ffffffff826d05c8 b nf_ct_netfilter_header +ffffffff826d05d0 b ___done.57518 +ffffffff826d05e0 b nf_ct_ext_types +ffffffff826d0600 B nft_counters_enabled +ffffffff826d0620 b info +ffffffff826d0640 b chain_type +ffffffff826d0778 b table_handle +ffffffff826d0780 B nft_trace_enabled +ffffffff826d0790 b ___done.55679 +ffffffff826d0794 b ___done.62212 +ffffffff826d0794 b __key.28003 +ffffffff826d0795 b ___done.62092 +ffffffff826d0798 b fnhe_lock +ffffffff826d079c b ip_rt_max_size +ffffffff826d07a0 b ___done.55137 +ffffffff826d07a4 b ip4_frags_secret_interval_unused +ffffffff826d07a8 b zero +ffffffff826d07c0 b ip4_frags +ffffffff826d4840 B ip_ra_chain +ffffffff826d4848 b hint.57522 +ffffffff826d484c b ___done.56996 +ffffffff826d4860 B tcp_sockets_allocated +ffffffff826d4888 B tcp_memory_allocated +ffffffff826d48a0 B tcp_orphan_count +ffffffff826d48c8 b __key.62775 +ffffffff826d48c8 b __key.62777 +ffffffff826d48c8 b challenge_count.58771 +ffffffff826d48cc b challenge_timestamp.58770 +ffffffff826d4900 B tcp_hashinfo +ffffffff826d4b40 b tcp_cong_list_lock +ffffffff826d4b48 b tcpmhash_entries +ffffffff826d4b50 b fastopen_seqlock +ffffffff826d4b58 b tcp_metrics_lock +ffffffff826d4b5c b tcp_ulp_list_lock +ffffffff826d4b60 B raw_v4_hashinfo +ffffffff826d5368 B udp_memory_allocated +ffffffff826d5370 b ___done.62983 +ffffffff826d5371 b ___done.60151 +ffffffff826d5378 b icmp_global +ffffffff826d53a0 b inet_addr_lst +ffffffff826d5ba0 b inetsw_lock +ffffffff826d5bc0 b inetsw +ffffffff826d5c80 b fib_info_devhash +ffffffff826d6480 b fib_info_cnt +ffffffff826d6484 b fib_info_hash_size +ffffffff826d6488 b fib_info_laddrhash +ffffffff826d6490 b fib_info_hash +ffffffff826d6498 b fib_info_lock +ffffffff826d64a0 b tnode_free_size +ffffffff826d64c0 B pingv6_ops +ffffffff826d64f0 b ping_port_rover +ffffffff826d6500 b ping_table +ffffffff826d6710 B ip_tunnel_metadata_cnt +ffffffff826d6720 b ip_ping_group_range_min +ffffffff826d6728 b ip_privileged_port_min +ffffffff826d672c b zero +ffffffff826d6740 B unix_table_lock +ffffffff826d6760 B unix_socket_table +ffffffff826d7760 b __key.52401 +ffffffff826d7760 b __key.52402 +ffffffff826d7760 b __key.52403 +ffffffff826d7760 b unix_nr_socks +ffffffff826d7768 B unix_tot_inflight +ffffffff826d776c b gc_in_progress +ffffffff826d7770 b unix_gc_lock +ffffffff826d7780 b disable_ipv6_mod +ffffffff826d7784 b inetsw6_lock +ffffffff826d77a0 b inetsw6 +ffffffff826d7860 b workspace.61373 +ffffffff826d78a0 b data.61382 +ffffffff826d78e0 b digest.61372 +ffffffff826d78f4 b lock.61370 +ffffffff826d78f8 b addrconf_wq +ffffffff826d7900 b addrconf_hash_lock +ffffffff826d7920 b inet6_addr_lst +ffffffff826d8120 b ___done.61498 +ffffffff826d8120 b __key.33616 +ffffffff826d8124 b rt6_exception_lock +ffffffff826d8128 B ip6_ra_lock +ffffffff826d8130 B ip6_ra_chain +ffffffff826d8140 b warned.56999 +ffffffff826d8150 b warncomm.56998 +ffffffff826d8160 b ___done.59552 +ffffffff826d8161 b ___done.59544 +ffffffff826d8180 B raw_v6_hashinfo +ffffffff826d89a0 b ___done.55305 +ffffffff826d89a8 b ip6_ctl_header +ffffffff826d89b0 b ip6_frags_secret_interval_unused +ffffffff826d89b4 b zero +ffffffff826d89c0 b ip6_frags +ffffffff826dca40 b ip6_sk_fl_lock +ffffffff826dca44 b ip6_fl_lock +ffffffff826dca60 b fl_ht +ffffffff826dd260 b fl_size +ffffffff826dd264 b __key.54640 +ffffffff826dd268 b ip6_header +ffffffff826dd270 b auto_flowlabels_min +ffffffff826dd280 b fake_pinfo.58883 +ffffffff826dd318 b conntrack6_net_id +ffffffff826dd320 b ___done.54520 +ffffffff826dd324 b zero +ffffffff826dd340 b nf_frags +ffffffff826e13c0 B __fib6_flush_trees +ffffffff826e13d0 b inet6addr_chain +ffffffff826e13e0 b ip6_icmp_send +ffffffff826e13e8 b ___done.55573 +ffffffff826e13e9 b ___done.55558 +ffffffff826e13ea b ___done.55219 +ffffffff826e13eb b ___done.55211 +ffffffff826e13ec b __key.58373 +ffffffff826e13ec b __key.58812 +ffffffff826e13ec b fanout_next_id +ffffffff826e1400 B bt_debugfs +ffffffff826e1408 b __key.52070 +ffffffff826e1408 b bt_proto_lock +ffffffff826e1420 b bt_proto +ffffffff826e1460 B hci_dev_list_lock +ffffffff826e1468 b __key.57481 +ffffffff826e1468 b __key.57482 +ffffffff826e1468 b __key.57489 +ffffffff826e1470 b hci_sk_list +ffffffff826e1488 b monitor_promisc +ffffffff826e1490 b __key.53904 +ffffffff826e1490 b bt_class +ffffffff826e1498 B disable_ertm +ffffffff826e1499 b __key.55100 +ffffffff826e1499 b __key.57000 +ffffffff826e1499 b __key.57001 +ffffffff826e14a0 b chan_list_lock +ffffffff826e14b0 b l2cap_sk_list +ffffffff826e14c8 b __key.9240 +ffffffff826e14d0 b sco_sk_list +ffffffff826e14e8 b disable_esco +ffffffff826e14e9 b __key.55019 +ffffffff826e14f0 b __key.55057 +ffffffff826e14f0 b rfcomm_thread +ffffffff826e14f8 b l2cap_ertm +ffffffff826e14f9 b disable_cfc +ffffffff826e1500 b rfcomm_sk_list +ffffffff826e1518 b __key.56499 +ffffffff826e1518 b __key.56507 +ffffffff826e1518 b __key.56508 +ffffffff826e1520 b hidp_sk_list +ffffffff826e1538 B cfg80211_wq +ffffffff826e1540 B cfg80211_rdev_list_generation +ffffffff826e1544 b __key.58568 +ffffffff826e1544 b __key.58867 +ffffffff826e1544 b wiphy_counter.58516 +ffffffff826e1548 b cfg80211_disable_40mhz_24ghz +ffffffff826e1549 b __key.57832 +ffffffff826e1550 B cfg80211_regdomain +ffffffff826e1558 b builtin_regdb_keys +ffffffff826e1560 b regdb +ffffffff826e1568 b reg_crda_timeouts +ffffffff826e156c b user_alpha2 +ffffffff826e1570 b reg_pending_beacons_lock +ffffffff826e1574 b reg_requests_lock +ffffffff826e1578 b reg_is_indoor_portid +ffffffff826e157c b reg_indoor_lock +ffffffff826e1580 b reg_is_indoor +ffffffff826e1588 b reg_pdev +ffffffff826e15a0 b __key.64429 +ffffffff826e15a0 b csa_attrs.65570 +ffffffff826e1dc0 b __key.68097 +ffffffff826e1dc0 b __key.68421 +ffffffff826e1dc0 b __key.69712 +ffffffff826e1dc0 b __key.69713 +ffffffff826e1dc0 b __key.69714 +ffffffff826e1dc0 b __key.69718 +ffffffff826e1dc0 b zero +ffffffff826e1de0 b empty.54583 +ffffffff826e1e20 b net_header +ffffffff826e1e28 b __key.12354 +ffffffff826e1e28 b __key.12416 +ffffffff826e1e28 b simple_ida_lock +ffffffff826e1e2c b klist_remove_lock +ffffffff826e1e30 b kobj_ns_ops_tbl +ffffffff826e1e40 b kobj_ns_type_lock +ffffffff826e1e48 B uevent_seqnum +ffffffff826e1e50 b lock.30324 +ffffffff826e1e58 b backtrace_flag +ffffffff826e1e60 b radix_tree_node_cachep +ffffffff826e2000 B __brk_base +ffffffff826e2000 B __bss_stop +ffffffff826f2000 b .brk.dmi_alloc +ffffffff82702000 b .brk.early_pgt_alloc +ffffffff8270e000 B __brk_limit +ffffffff8270e000 A _end diff --git a/kernle.config/alienware-alpha/config-4.16.0-sgima0f b/kernle.config/alienware-alpha/config-4.16.0-sgima0f new file mode 100755 index 0000000..ce7a2b3 --- /dev/null +++ b/kernle.config/alienware-alpha/config-4.16.0-sgima0f @@ -0,0 +1,3098 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 4.16.0 Kernel Configuration +# +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_MMU=y +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_RWSEM_XCHGADD_ALGORITHM=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ZONE_DMA32=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_HAVE_INTEL_TXT=y +CONFIG_X86_64_SMP=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_PGTABLE_LEVELS=4 +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_EXTABLE_SORT=y +CONFIG_THREAD_INFO_IN_TASK=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +CONFIG_CROSS_COMPILE="" +# CONFIG_COMPILE_TEST is not set +CONFIG_LOCALVERSION="-sgima0f" +CONFIG_LOCALVERSION_AUTO=y +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +# CONFIG_KERNEL_GZIP is not set +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +CONFIG_KERNEL_XZ=y +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_LZ4 is not set +CONFIG_DEFAULT_HOSTNAME="Alpha" +# CONFIG_SWAP is not set +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +# CONFIG_CROSS_MEMORY_ATTACH is not set +# CONFIG_USELIB is not set +# CONFIG_AUDIT is not set +CONFIG_HAVE_ARCH_AUDITSYSCALL=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y +CONFIG_GENERIC_IRQ_RESERVATION_MODE=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_DATA=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +CONFIG_NO_HZ_IDLE=y +# CONFIG_NO_HZ_FULL is not set +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y + +# +# CPU/Task time and stats accounting +# +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +# CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_TASKSTATS=y +CONFIG_TASK_DELAY_ACCT=y +# CONFIG_TASK_XACCT is not set +CONFIG_CPU_ISOLATION=y + +# +# RCU Subsystem +# +CONFIG_PREEMPT_RCU=y +CONFIG_RCU_EXPERT=y +CONFIG_SRCU=y +CONFIG_TREE_SRCU=y +CONFIG_TASKS_RCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_RCU_NEED_SEGCBLIST=y +CONFIG_RCU_FANOUT=64 +CONFIG_RCU_FANOUT_LEAF=16 +# CONFIG_RCU_FAST_NO_HZ is not set +# CONFIG_RCU_BOOST is not set +# CONFIG_RCU_NOCB_CPU is not set +# CONFIG_BUILD_BIN2C is not set +# CONFIG_IKCONFIG is not set +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=17 +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_ARCH_SUPPORTS_INT128=y +CONFIG_CGROUPS=y +# CONFIG_MEMCG is not set +# CONFIG_BLK_CGROUP is not set +CONFIG_CGROUP_SCHED=y +CONFIG_FAIR_GROUP_SCHED=y +CONFIG_CFS_BANDWIDTH=y +# CONFIG_RT_GROUP_SCHED is not set +CONFIG_CGROUP_PIDS=y +# CONFIG_CGROUP_RDMA is not set +# CONFIG_CGROUP_FREEZER is not set +# CONFIG_CPUSETS is not set +# CONFIG_CGROUP_DEVICE is not set +# CONFIG_CGROUP_CPUACCT is not set +# CONFIG_CGROUP_PERF is not set +CONFIG_CGROUP_BPF=y +# CONFIG_CGROUP_DEBUG is not set +CONFIG_SOCK_CGROUP_DATA=y +CONFIG_NAMESPACES=y +CONFIG_UTS_NS=y +CONFIG_IPC_NS=y +CONFIG_USER_NS=y +CONFIG_PID_NS=y +CONFIG_NET_NS=y +CONFIG_SCHED_AUTOGROUP=y +# CONFIG_SYSFS_DEPRECATED is not set +# CONFIG_RELAY is not set +# CONFIG_BLK_DEV_INITRD is not set +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_SYSCTL=y +CONFIG_ANON_INODES=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_BPF=y +CONFIG_EXPERT=y +CONFIG_MULTIUSER=y +# CONFIG_SGETMASK_SYSCALL is not set +# CONFIG_SYSFS_SYSCALL is not set +# CONFIG_SYSCTL_SYSCALL is not set +CONFIG_FHANDLE=y +CONFIG_POSIX_TIMERS=y +CONFIG_PRINTK=y +CONFIG_PRINTK_NMI=y +# CONFIG_BUG is not set +# CONFIG_PCSPKR_PLATFORM is not set +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_ADVISE_SYSCALLS=y +CONFIG_MEMBARRIER=y +CONFIG_CHECKPOINT_RESTORE=y +# CONFIG_KALLSYMS is not set +CONFIG_BPF_SYSCALL=y +# CONFIG_USERFAULTFD is not set +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y +# CONFIG_PC104 is not set + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# CONFIG_VM_EVENT_COUNTERS is not set +# CONFIG_SLUB_DEBUG is not set +# CONFIG_COMPAT_BRK is not set +# CONFIG_SLAB is not set +CONFIG_SLUB=y +# CONFIG_SLOB is not set +# CONFIG_SLAB_MERGE_DEFAULT is not set +# CONFIG_SLAB_FREELIST_RANDOM is not set +# CONFIG_SLAB_FREELIST_HARDENED is not set +CONFIG_SLUB_CPU_PARTIAL=y +CONFIG_SYSTEM_DATA_VERIFICATION=y +# CONFIG_PROFILING is not set +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +CONFIG_JUMP_LABEL=y +# CONFIG_STATIC_KEYS_SELFTEST is not set +# CONFIG_UPROBES is not set +# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_CLK=y +CONFIG_HAVE_DMA_API_DEBUG=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_RCU_TABLE_FREE=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_SECCOMP_FILTER=y +CONFIG_HAVE_GCC_PLUGINS=y +# CONFIG_GCC_PLUGINS is not set +CONFIG_HAVE_CC_STACKPROTECTOR=y +CONFIG_CC_STACKPROTECTOR_NONE=y +# CONFIG_CC_STACKPROTECTOR_REGULAR is not set +# CONFIG_CC_STACKPROTECTOR_STRONG is not set +# CONFIG_CC_STACKPROTECTOR_AUTO is not set +CONFIG_THIN_ARCHIVES=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_HAVE_COPY_THREAD_TLS=y +CONFIG_HAVE_STACK_VALIDATION=y +# CONFIG_HAVE_ARCH_HASH is not set +# CONFIG_ISA_BUS_API is not set +# CONFIG_CPU_NO_EFFICIENT_FFS is not set +CONFIG_HAVE_ARCH_VMAP_STACK=y +# CONFIG_VMAP_STACK is not set +# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set +# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_ARCH_HAS_PHYS_TO_DMA=y +CONFIG_ARCH_HAS_REFCOUNT=y +# CONFIG_REFCOUNT_FULL is not set + +# +# GCOV-based kernel profiling +# +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +# CONFIG_MODULES is not set +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_BLOCK=y +CONFIG_BLK_SCSI_REQUEST=y +CONFIG_BLK_DEV_BSG=y +# CONFIG_BLK_DEV_BSGLIB is not set +# CONFIG_BLK_DEV_INTEGRITY is not set +# CONFIG_BLK_DEV_ZONED is not set +# CONFIG_BLK_CMDLINE_PARSER is not set +CONFIG_BLK_WBT=y +CONFIG_BLK_WBT_SQ=y +# CONFIG_BLK_WBT_MQ is not set +# CONFIG_BLK_SED_OPAL is not set + +# +# Partition Types +# +CONFIG_PARTITION_ADVANCED=y +# CONFIG_ACORN_PARTITION is not set +# CONFIG_AIX_PARTITION is not set +# CONFIG_OSF_PARTITION is not set +# CONFIG_AMIGA_PARTITION is not set +# CONFIG_ATARI_PARTITION is not set +# CONFIG_MAC_PARTITION is not set +CONFIG_MSDOS_PARTITION=y +# CONFIG_BSD_DISKLABEL is not set +# CONFIG_MINIX_SUBPARTITION is not set +# CONFIG_SOLARIS_X86_PARTITION is not set +# CONFIG_UNIXWARE_DISKLABEL is not set +# CONFIG_LDM_PARTITION is not set +# CONFIG_SGI_PARTITION is not set +# CONFIG_ULTRIX_PARTITION is not set +# CONFIG_SUN_PARTITION is not set +# CONFIG_KARMA_PARTITION is not set +CONFIG_EFI_PARTITION=y +# CONFIG_SYSV68_PARTITION is not set +# CONFIG_CMDLINE_PARTITION is not set +CONFIG_BLK_MQ_PCI=y + +# +# IO Schedulers +# +CONFIG_IOSCHED_NOOP=y +# CONFIG_IOSCHED_DEADLINE is not set +CONFIG_IOSCHED_CFQ=y +CONFIG_DEFAULT_CFQ=y +# CONFIG_DEFAULT_NOOP is not set +CONFIG_DEFAULT_IOSCHED="cfq" +# CONFIG_MQ_IOSCHED_DEADLINE is not set +# CONFIG_MQ_IOSCHED_KYBER is not set +# CONFIG_IOSCHED_BFQ is not set +CONFIG_ASN1=y +CONFIG_UNINLINE_SPIN_UNLOCK=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_LOCK_SPIN_ON_OWNER=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_QUEUED_RWLOCKS=y +CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y +CONFIG_FREEZER=y + +# +# Processor type and features +# +CONFIG_ZONE_DMA=y +CONFIG_SMP=y +CONFIG_X86_FEATURE_NAMES=y +CONFIG_X86_FAST_FEATURE_TESTS=y +# CONFIG_X86_X2APIC is not set +# CONFIG_X86_MPPARSE is not set +# CONFIG_GOLDFISH is not set +CONFIG_RETPOLINE=y +# CONFIG_INTEL_RDT is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +# CONFIG_X86_INTEL_LPSS is not set +# CONFIG_X86_AMD_PLATFORM_DEVICE is not set +# CONFIG_IOSF_MBI is not set +CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y +CONFIG_SCHED_OMIT_FRAME_POINTER=y +# CONFIG_HYPERVISOR_GUEST is not set +CONFIG_NO_BOOTMEM=y +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +# CONFIG_MCORE2 is not set +# CONFIG_MATOM is not set +CONFIG_GENERIC_CPU=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_PROCESSOR_SELECT=y +CONFIG_CPU_SUP_INTEL=y +# CONFIG_CPU_SUP_AMD is not set +# CONFIG_CPU_SUP_CENTAUR is not set +CONFIG_HPET_TIMER=y +CONFIG_HPET_EMULATE_RTC=y +CONFIG_DMI=y +# CONFIG_CALGARY_IOMMU is not set +CONFIG_SWIOTLB=y +CONFIG_IOMMU_HELPER=y +# CONFIG_MAXSMP is not set +CONFIG_NR_CPUS_RANGE_BEGIN=2 +CONFIG_NR_CPUS_RANGE_END=512 +CONFIG_NR_CPUS_DEFAULT=64 +CONFIG_NR_CPUS=4 +# CONFIG_SCHED_SMT is not set +CONFIG_SCHED_MC=y +CONFIG_SCHED_MC_PRIO=y +# CONFIG_PREEMPT_NONE is not set +# CONFIG_PREEMPT_VOLUNTARY is not set +CONFIG_PREEMPT=y +CONFIG_PREEMPT_COUNT=y +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y +CONFIG_X86_MCE=y +# CONFIG_X86_MCELOG_LEGACY is not set +CONFIG_X86_MCE_INTEL=y +CONFIG_X86_MCE_THRESHOLD=y +CONFIG_X86_THERMAL_VECTOR=y + +# +# Performance monitoring +# +# CONFIG_PERF_EVENTS_INTEL_UNCORE is not set +# CONFIG_PERF_EVENTS_INTEL_RAPL is not set +# CONFIG_PERF_EVENTS_INTEL_CSTATE is not set +# CONFIG_VM86 is not set +# CONFIG_X86_VSYSCALL_EMULATION is not set +# CONFIG_I8K is not set +CONFIG_MICROCODE=y +CONFIG_MICROCODE_INTEL=y +# CONFIG_MICROCODE_AMD is not set +CONFIG_MICROCODE_OLD_INTERFACE=y +# CONFIG_X86_MSR is not set +# CONFIG_X86_CPUID is not set +# CONFIG_X86_5LEVEL is not set +CONFIG_ARCH_PHYS_ADDR_T_64BIT=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_X86_DIRECT_GBPAGES=y +CONFIG_ARCH_HAS_MEM_ENCRYPT=y +# CONFIG_NUMA is not set +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_MEMBLOCK=y +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_HAVE_GENERIC_GUP=y +CONFIG_ARCH_DISCARD_MEMBLOCK=y +# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +CONFIG_COMPACTION=y +CONFIG_MIGRATION=y +CONFIG_ARCH_ENABLE_THP_MIGRATION=y +CONFIG_PHYS_ADDR_T_64BIT=y +# CONFIG_BOUNCE is not set +CONFIG_VIRT_TO_BUS=y +CONFIG_MMU_NOTIFIER=y +# CONFIG_KSM is not set +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +# CONFIG_MEMORY_FAILURE is not set +CONFIG_TRANSPARENT_HUGEPAGE=y +CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y +# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set +CONFIG_ARCH_WANTS_THP_SWAP=y +CONFIG_THP_SWAP=y +CONFIG_TRANSPARENT_HUGE_PAGECACHE=y +CONFIG_CLEANCACHE=y +# CONFIG_CMA is not set +# CONFIG_MEM_SOFT_DIRTY is not set +# CONFIG_ZPOOL is not set +# CONFIG_ZBUD is not set +# CONFIG_ZSMALLOC is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +# CONFIG_IDLE_PAGE_TRACKING is not set +CONFIG_ARCH_HAS_ZONE_DEVICE=y +CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y +CONFIG_ARCH_HAS_PKEYS=y +# CONFIG_PERCPU_STATS is not set +# CONFIG_GUP_BENCHMARK is not set +# CONFIG_X86_PMEM_LEGACY is not set +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_X86_RESERVE_LOW=640 +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=1 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +CONFIG_X86_SMAP=y +CONFIG_X86_INTEL_UMIP=y +# CONFIG_X86_INTEL_MPX is not set +CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y +CONFIG_EFI=y +CONFIG_EFI_STUB=y +# CONFIG_EFI_MIXED is not set +CONFIG_SECCOMP=y +# CONFIG_HZ_100 is not set +# CONFIG_HZ_250 is not set +# CONFIG_HZ_300 is not set +CONFIG_HZ_1000=y +CONFIG_HZ=1000 +CONFIG_SCHED_HRTICK=y +# CONFIG_KEXEC is not set +# CONFIG_KEXEC_FILE is not set +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_RELOCATABLE=y +CONFIG_RANDOMIZE_BASE=y +CONFIG_X86_NEED_RELOCS=y +CONFIG_PHYSICAL_ALIGN=0x200000 +CONFIG_RANDOMIZE_MEMORY=y +CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0x0 +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +# CONFIG_LEGACY_VSYSCALL_EMULATE is not set +CONFIG_LEGACY_VSYSCALL_NONE=y +CONFIG_CMDLINE_BOOL=y +CONFIG_CMDLINE="root=PARTUUID=132b015a-7736-4078-b556-55797be16b8d rootfstype=btrfs init=/lib64/systemd/systemd" +# CONFIG_CMDLINE_OVERRIDE is not set +# CONFIG_MODIFY_LDT_SYSCALL is not set +CONFIG_HAVE_LIVEPATCH=y +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y + +# +# Power management and ACPI options +# +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +CONFIG_PM_AUTOSLEEP=y +# CONFIG_PM_WAKELOCKS is not set +CONFIG_PM=y +# CONFIG_PM_DEBUG is not set +CONFIG_PM_CLK=y +# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set +CONFIG_ACPI=y +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_SPCR_TABLE=y +CONFIG_ACPI_LPIT=y +CONFIG_ACPI_SLEEP=y +# CONFIG_ACPI_PROCFS_POWER is not set +# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set +# CONFIG_ACPI_EC_DEBUGFS is not set +# CONFIG_ACPI_AC is not set +# CONFIG_ACPI_BATTERY is not set +CONFIG_ACPI_BUTTON=y +CONFIG_ACPI_VIDEO=y +# CONFIG_ACPI_FAN is not set +# CONFIG_ACPI_DOCK is not set +CONFIG_ACPI_CPU_FREQ_PSS=y +CONFIG_ACPI_PROCESSOR_CSTATE=y +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_CPPC_LIB=y +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_HOTPLUG_CPU=y +CONFIG_ACPI_PROCESSOR_AGGREGATOR=y +CONFIG_ACPI_THERMAL=y +# CONFIG_ACPI_CUSTOM_DSDT is not set +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_PCI_SLOT is not set +CONFIG_ACPI_CONTAINER=y +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_SBS is not set +# CONFIG_ACPI_HED is not set +# CONFIG_ACPI_BGRT is not set +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +# CONFIG_ACPI_NFIT is not set +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +# CONFIG_ACPI_APEI is not set +# CONFIG_DPTF_POWER is not set +# CONFIG_ACPI_EXTLOG is not set +# CONFIG_PMIC_OPREGION is not set +# CONFIG_ACPI_CONFIGFS is not set +CONFIG_X86_PM_TIMER=y +# CONFIG_SFI is not set + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +# CONFIG_CPU_FREQ_STAT is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +# CONFIG_CPU_FREQ_GOV_PERFORMANCE is not set +CONFIG_CPU_FREQ_GOV_POWERSAVE=y +# CONFIG_CPU_FREQ_GOV_USERSPACE is not set +# CONFIG_CPU_FREQ_GOV_ONDEMAND is not set +# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set + +# +# CPU frequency scaling drivers +# +CONFIG_X86_INTEL_PSTATE=y +# CONFIG_X86_PCC_CPUFREQ is not set +# CONFIG_X86_ACPI_CPUFREQ is not set +# CONFIG_X86_SPEEDSTEP_CENTRINO is not set +# CONFIG_X86_P4_CLOCKMOD is not set + +# +# shared options +# +# CONFIG_X86_SPEEDSTEP_LIB is not set + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +# CONFIG_CPU_IDLE_GOV_LADDER is not set +CONFIG_CPU_IDLE_GOV_MENU=y +# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set +CONFIG_INTEL_IDLE=y + +# +# Bus options (PCI etc.) +# +CONFIG_PCI=y +CONFIG_PCI_DIRECT=y +CONFIG_PCI_MMCONFIG=y +CONFIG_PCI_DOMAINS=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +CONFIG_PCIEPORTBUS=y +CONFIG_PCIEAER=y +# CONFIG_PCIE_ECRC is not set +# CONFIG_PCIEAER_INJECT is not set +CONFIG_PCIEASPM=y +# CONFIG_PCIEASPM_DEBUG is not set +# CONFIG_PCIEASPM_DEFAULT is not set +CONFIG_PCIEASPM_POWERSAVE=y +# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +CONFIG_PCIE_PME=y +# CONFIG_PCIE_DPC is not set +CONFIG_PCIE_PTM=y +CONFIG_PCI_BUS_ADDR_T_64BIT=y +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_QUIRKS=y +# CONFIG_PCI_DEBUG is not set +# CONFIG_PCI_STUB is not set +CONFIG_PCI_ATS=y +CONFIG_PCI_LOCKLESS_CONFIG=y +# CONFIG_PCI_IOV is not set +# CONFIG_PCI_PRI is not set +CONFIG_PCI_PASID=y +CONFIG_PCI_LABEL=y +# CONFIG_HOTPLUG_PCI is not set + +# +# Cadence PCIe controllers support +# + +# +# DesignWare PCI Core Support +# +# CONFIG_PCIE_DW_PLAT is not set + +# +# PCI host controller drivers +# +# CONFIG_VMD is not set + +# +# PCI Endpoint +# +# CONFIG_PCI_ENDPOINT is not set + +# +# PCI switch controller drivers +# +# CONFIG_PCI_SW_SWITCHTEC is not set +# CONFIG_ISA_BUS is not set +# CONFIG_ISA_DMA_API is not set +# CONFIG_PCCARD is not set +# CONFIG_RAPIDIO is not set +# CONFIG_X86_SYSFB is not set + +# +# Executable file formats / Emulations +# +CONFIG_BINFMT_ELF=y +CONFIG_ELFCORE=y +CONFIG_BINFMT_SCRIPT=y +# CONFIG_HAVE_AOUT is not set +# CONFIG_BINFMT_MISC is not set +# CONFIG_COREDUMP is not set +# CONFIG_IA32_EMULATION is not set +# CONFIG_X86_X32 is not set +CONFIG_X86_DEV_DMA_OPS=y +CONFIG_NET=y +CONFIG_NET_INGRESS=y + +# +# Networking options +# +CONFIG_PACKET=y +# CONFIG_PACKET_DIAG is not set +CONFIG_UNIX=y +# CONFIG_UNIX_DIAG is not set +# CONFIG_TLS is not set +# CONFIG_XFRM_USER is not set +# CONFIG_NET_KEY is not set +CONFIG_INET=y +# CONFIG_IP_MULTICAST is not set +# CONFIG_IP_ADVANCED_ROUTER is not set +# CONFIG_IP_PNP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +# CONFIG_NET_IP_TUNNEL is not set +# CONFIG_SYN_COOKIES is not set +# CONFIG_NET_UDP_TUNNEL is not set +# CONFIG_NET_FOU is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +# CONFIG_INET_XFRM_TUNNEL is not set +# CONFIG_INET_TUNNEL is not set +# CONFIG_INET_XFRM_MODE_TRANSPORT is not set +# CONFIG_INET_XFRM_MODE_TUNNEL is not set +# CONFIG_INET_XFRM_MODE_BEET is not set +# CONFIG_INET_DIAG is not set +CONFIG_TCP_CONG_ADVANCED=y +# CONFIG_TCP_CONG_BIC is not set +# CONFIG_TCP_CONG_CUBIC is not set +# CONFIG_TCP_CONG_WESTWOOD is not set +# CONFIG_TCP_CONG_HTCP is not set +# CONFIG_TCP_CONG_HSTCP is not set +# CONFIG_TCP_CONG_HYBLA is not set +# CONFIG_TCP_CONG_VEGAS is not set +# CONFIG_TCP_CONG_NV is not set +# CONFIG_TCP_CONG_SCALABLE is not set +# CONFIG_TCP_CONG_LP is not set +# CONFIG_TCP_CONG_VENO is not set +# CONFIG_TCP_CONG_YEAH is not set +# CONFIG_TCP_CONG_ILLINOIS is not set +# CONFIG_TCP_CONG_DCTCP is not set +# CONFIG_TCP_CONG_CDG is not set +CONFIG_TCP_CONG_BBR=y +CONFIG_DEFAULT_BBR=y +# CONFIG_DEFAULT_RENO is not set +CONFIG_DEFAULT_TCP_CONG="bbr" +# CONFIG_TCP_MD5SIG is not set +CONFIG_IPV6=y +# CONFIG_IPV6_ROUTER_PREF is not set +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +# CONFIG_IPV6_MIP6 is not set +# CONFIG_IPV6_ILA is not set +# CONFIG_INET6_XFRM_TUNNEL is not set +# CONFIG_INET6_TUNNEL is not set +# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set +# CONFIG_INET6_XFRM_MODE_TUNNEL is not set +# CONFIG_INET6_XFRM_MODE_BEET is not set +# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set +# CONFIG_IPV6_SIT is not set +# CONFIG_IPV6_TUNNEL is not set +# CONFIG_IPV6_FOU is not set +# CONFIG_IPV6_FOU_TUNNEL is not set +# CONFIG_IPV6_MULTIPLE_TABLES is not set +# CONFIG_IPV6_MROUTE is not set +# CONFIG_IPV6_SEG6_LWTUNNEL is not set +# CONFIG_IPV6_SEG6_HMAC is not set +# CONFIG_NETWORK_SECMARK is not set +# CONFIG_NET_PTP_CLASSIFY is not set +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +CONFIG_NETFILTER=y +CONFIG_NETFILTER_ADVANCED=y + +# +# Core Netfilter Configuration +# +CONFIG_NETFILTER_INGRESS=y +CONFIG_NETFILTER_NETLINK=y +# CONFIG_NETFILTER_NETLINK_ACCT is not set +# CONFIG_NETFILTER_NETLINK_QUEUE is not set +# CONFIG_NETFILTER_NETLINK_LOG is not set +CONFIG_NF_CONNTRACK=y +# CONFIG_NF_LOG_NETDEV is not set +# CONFIG_NF_CONNTRACK_MARK is not set +# CONFIG_NF_CONNTRACK_PROCFS is not set +# CONFIG_NF_CONNTRACK_EVENTS is not set +# CONFIG_NF_CONNTRACK_TIMEOUT is not set +# CONFIG_NF_CONNTRACK_TIMESTAMP is not set +# CONFIG_NF_CT_PROTO_DCCP is not set +# CONFIG_NF_CT_PROTO_SCTP is not set +# CONFIG_NF_CT_PROTO_UDPLITE is not set +# CONFIG_NF_CONNTRACK_AMANDA is not set +# CONFIG_NF_CONNTRACK_FTP is not set +# CONFIG_NF_CONNTRACK_H323 is not set +# CONFIG_NF_CONNTRACK_IRC is not set +# CONFIG_NF_CONNTRACK_NETBIOS_NS is not set +# CONFIG_NF_CONNTRACK_SNMP is not set +# CONFIG_NF_CONNTRACK_PPTP is not set +# CONFIG_NF_CONNTRACK_SANE is not set +# CONFIG_NF_CONNTRACK_SIP is not set +# CONFIG_NF_CONNTRACK_TFTP is not set +# CONFIG_NF_CT_NETLINK is not set +# CONFIG_NF_CT_NETLINK_TIMEOUT is not set +CONFIG_NF_TABLES=y +CONFIG_NF_TABLES_INET=y +# CONFIG_NF_TABLES_NETDEV is not set +# CONFIG_NFT_EXTHDR is not set +CONFIG_NFT_META=y +CONFIG_NFT_RT=y +# CONFIG_NFT_NUMGEN is not set +CONFIG_NFT_CT=y +CONFIG_NFT_SET_RBTREE=y +# CONFIG_NFT_SET_HASH is not set +# CONFIG_NFT_SET_BITMAP is not set +CONFIG_NFT_COUNTER=y +CONFIG_NFT_LOG=y +CONFIG_NFT_LIMIT=y +# CONFIG_NFT_NAT is not set +# CONFIG_NFT_OBJREF is not set +# CONFIG_NFT_QUOTA is not set +CONFIG_NFT_REJECT=y +CONFIG_NFT_REJECT_INET=y +CONFIG_NFT_HASH=y +# CONFIG_NF_FLOW_TABLE is not set +# CONFIG_NETFILTER_XTABLES is not set +# CONFIG_IP_SET is not set +# CONFIG_IP_VS is not set + +# +# IP: Netfilter Configuration +# +CONFIG_NF_DEFRAG_IPV4=y +CONFIG_NF_CONNTRACK_IPV4=y +# CONFIG_NF_SOCKET_IPV4 is not set +CONFIG_NF_TABLES_IPV4=y +CONFIG_NFT_CHAIN_ROUTE_IPV4=y +CONFIG_NFT_REJECT_IPV4=y +# CONFIG_NFT_DUP_IPV4 is not set +# CONFIG_NFT_FIB_IPV4 is not set +# CONFIG_NF_TABLES_ARP is not set +# CONFIG_NF_DUP_IPV4 is not set +# CONFIG_NF_LOG_ARP is not set +# CONFIG_NF_LOG_IPV4 is not set +CONFIG_NF_REJECT_IPV4=y +# CONFIG_NF_NAT_IPV4 is not set +# CONFIG_IP_NF_IPTABLES is not set +# CONFIG_IP_NF_ARPTABLES is not set + +# +# IPv6: Netfilter Configuration +# +CONFIG_NF_DEFRAG_IPV6=y +CONFIG_NF_CONNTRACK_IPV6=y +# CONFIG_NF_SOCKET_IPV6 is not set +CONFIG_NF_TABLES_IPV6=y +CONFIG_NFT_CHAIN_ROUTE_IPV6=y +CONFIG_NFT_REJECT_IPV6=y +# CONFIG_NFT_DUP_IPV6 is not set +# CONFIG_NFT_FIB_IPV6 is not set +# CONFIG_NF_DUP_IPV6 is not set +CONFIG_NF_REJECT_IPV6=y +# CONFIG_NF_LOG_IPV6 is not set +# CONFIG_NF_NAT_IPV6 is not set +# CONFIG_IP6_NF_IPTABLES is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +# CONFIG_BRIDGE is not set +CONFIG_HAVE_NET_DSA=y +# CONFIG_NET_DSA is not set +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +# CONFIG_LLC2 is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_6LOWPAN is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_DNS_RESOLVER is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +# CONFIG_NETLINK_DIAG is not set +# CONFIG_MPLS is not set +# CONFIG_NET_NSH is not set +# CONFIG_HSR is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_L3_MASTER_DEV is not set +# CONFIG_NET_NCSI is not set +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +# CONFIG_CGROUP_NET_PRIO is not set +# CONFIG_CGROUP_NET_CLASSID is not set +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +# CONFIG_BPF_STREAM_PARSER is not set +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +CONFIG_BT=y +CONFIG_BT_BREDR=y +CONFIG_BT_RFCOMM=y +# CONFIG_BT_RFCOMM_TTY is not set +# CONFIG_BT_BNEP is not set +CONFIG_BT_HIDP=y +CONFIG_BT_HS=y +# CONFIG_BT_LE is not set +# CONFIG_BT_SELFTEST is not set + +# +# Bluetooth device drivers +# +CONFIG_BT_INTEL=y +CONFIG_BT_HCIBTUSB=y +# CONFIG_BT_HCIBTUSB_AUTOSUSPEND is not set +# CONFIG_BT_HCIBTUSB_BCM is not set +# CONFIG_BT_HCIBTUSB_RTL is not set +CONFIG_BT_HCIUART=y +CONFIG_BT_HCIUART_H4=y +# CONFIG_BT_HCIUART_BCSP is not set +# CONFIG_BT_HCIUART_ATH3K is not set +# CONFIG_BT_HCIUART_3WIRE is not set +# CONFIG_BT_HCIUART_QCA is not set +# CONFIG_BT_HCIUART_AG6XX is not set +# CONFIG_BT_HCIUART_MRVL is not set +# CONFIG_BT_HCIBCM203X is not set +# CONFIG_BT_HCIBPA10X is not set +# CONFIG_BT_HCIBFUSB is not set +# CONFIG_BT_HCIVHCI is not set +# CONFIG_BT_MRVL is not set +# CONFIG_BT_ATH3K is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_AF_KCM is not set +# CONFIG_STREAM_PARSER is not set +CONFIG_WIRELESS=y +CONFIG_CFG80211=y +# CONFIG_NL80211_TESTMODE is not set +# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set +# CONFIG_CFG80211_CERTIFICATION_ONUS is not set +CONFIG_CFG80211_REQUIRE_SIGNED_REGDB=y +CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS=y +# CONFIG_CFG80211_DEFAULT_PS is not set +CONFIG_CFG80211_CRDA_SUPPORT=y +# CONFIG_CFG80211_WEXT is not set +# CONFIG_LIB80211 is not set +CONFIG_MAC80211=y +CONFIG_MAC80211_HAS_RC=y +CONFIG_MAC80211_RC_MINSTREL=y +CONFIG_MAC80211_RC_MINSTREL_HT=y +# CONFIG_MAC80211_RC_MINSTREL_VHT is not set +CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y +CONFIG_MAC80211_RC_DEFAULT="minstrel_ht" +# CONFIG_MAC80211_MESH is not set +# CONFIG_MAC80211_MESSAGE_TRACING is not set +# CONFIG_MAC80211_DEBUG_MENU is not set +CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 +# CONFIG_WIMAX is not set +# CONFIG_RFKILL is not set +# CONFIG_NET_9P is not set +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +# CONFIG_PSAMPLE is not set +# CONFIG_NET_IFE is not set +# CONFIG_LWTUNNEL is not set +# CONFIG_DST_CACHE is not set +# CONFIG_GRO_CELLS is not set +# CONFIG_NET_DEVLINK is not set +CONFIG_MAY_USE_DEVLINK=y +CONFIG_HAVE_EBPF_JIT=y + +# +# Device Drivers +# + +# +# Generic Driver Options +# +# CONFIG_UEVENT_HELPER is not set +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y +CONFIG_FW_LOADER=y +CONFIG_EXTRA_FIRMWARE="iwlwifi-3160-17.ucode intel-ucode/06-3c-03 regulatory.db regulatory.db.p7s" +CONFIG_EXTRA_FIRMWARE_DIR="/lib64/firmware" +# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set +CONFIG_WANT_DEV_COREDUMP=y +# CONFIG_ALLOW_DEV_COREDUMP is not set +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +# CONFIG_SYS_HYPERVISOR is not set +# CONFIG_GENERIC_CPU_DEVICES is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +CONFIG_REGMAP=y +CONFIG_REGMAP_I2C=y +CONFIG_DMA_SHARED_BUFFER=y +# CONFIG_DMA_FENCE_TRACE is not set + +# +# Bus devices +# +CONFIG_CONNECTOR=y +CONFIG_PROC_EVENTS=y +# CONFIG_MTD is not set +# CONFIG_OF is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +# CONFIG_PARPORT is not set +CONFIG_PNP=y +# CONFIG_PNP_DEBUG_MESSAGES is not set + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +# CONFIG_BLK_DEV_NULL_BLK is not set +# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set +# CONFIG_BLK_DEV_DAC960 is not set +# CONFIG_BLK_DEV_UMEM is not set +# CONFIG_BLK_DEV_COW_COMMON is not set +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=0 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set +# CONFIG_BLK_DEV_DRBD is not set +# CONFIG_BLK_DEV_NBD is not set +# CONFIG_BLK_DEV_SKD is not set +# CONFIG_BLK_DEV_SX8 is not set +# CONFIG_BLK_DEV_RAM is not set +# CONFIG_CDROM_PKTCDVD is not set +# CONFIG_ATA_OVER_ETH is not set +# CONFIG_BLK_DEV_RBD is not set +# CONFIG_BLK_DEV_RSXX is not set + +# +# NVME Support +# +# CONFIG_BLK_DEV_NVME is not set +# CONFIG_NVME_FC is not set + +# +# Misc devices +# +# CONFIG_SENSORS_LIS3LV02D is not set +# CONFIG_AD525X_DPOT is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +# CONFIG_SGI_IOC4 is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_USB_SWITCH_FSA9480 is not set +# CONFIG_SRAM is not set +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_MISC_RTSX is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +# CONFIG_EEPROM_AT24 is not set +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_SENSORS_LIS3_I2C is not set +# CONFIG_ALTERA_STAPL is not set +# CONFIG_INTEL_MEI is not set +# CONFIG_INTEL_MEI_ME is not set +# CONFIG_INTEL_MEI_TXE is not set +# CONFIG_VMWARE_VMCI is not set + +# +# Intel MIC & related support +# + +# +# Intel MIC Bus Driver +# +# CONFIG_INTEL_MIC_BUS is not set + +# +# SCIF Bus Driver +# +# CONFIG_SCIF_BUS is not set + +# +# VOP Bus Driver +# +# CONFIG_VOP_BUS is not set + +# +# Intel MIC Host Driver +# + +# +# Intel MIC Card Driver +# + +# +# SCIF Driver +# + +# +# Intel MIC Coprocessor State Management (COSM) Drivers +# + +# +# VOP Driver +# +# CONFIG_GENWQE is not set +# CONFIG_ECHO is not set +# CONFIG_CXL_BASE is not set +# CONFIG_CXL_AFU_DRIVER_OPS is not set +# CONFIG_CXL_LIB is not set +# CONFIG_OCXL_BASE is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_MISC_RTSX_USB is not set +CONFIG_HAVE_IDE=y +# CONFIG_IDE is not set + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# CONFIG_RAID_ATTRS is not set +CONFIG_SCSI=y +CONFIG_SCSI_DMA=y +# CONFIG_SCSI_NETLINK is not set +# CONFIG_SCSI_MQ_DEFAULT is not set +# CONFIG_SCSI_PROC_FS is not set + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=y +# CONFIG_CHR_DEV_ST is not set +# CONFIG_CHR_DEV_OSST is not set +# CONFIG_BLK_DEV_SR is not set +# CONFIG_CHR_DEV_SG is not set +# CONFIG_CHR_DEV_SCH is not set +# CONFIG_SCSI_CONSTANTS is not set +# CONFIG_SCSI_LOGGING is not set +CONFIG_SCSI_SCAN_ASYNC=y + +# +# SCSI Transports +# +# CONFIG_SCSI_SPI_ATTRS is not set +# CONFIG_SCSI_FC_ATTRS is not set +# CONFIG_SCSI_ISCSI_ATTRS is not set +# CONFIG_SCSI_SAS_ATTRS is not set +# CONFIG_SCSI_SAS_LIBSAS is not set +# CONFIG_SCSI_SRP_ATTRS is not set +# CONFIG_SCSI_LOWLEVEL is not set +# CONFIG_SCSI_DH is not set +# CONFIG_SCSI_OSD_INITIATOR is not set +CONFIG_ATA=y +# CONFIG_ATA_NONSTANDARD is not set +# CONFIG_ATA_VERBOSE_ERROR is not set +CONFIG_ATA_ACPI=y +# CONFIG_SATA_ZPODD is not set +# CONFIG_SATA_PMP is not set + +# +# Controllers with non-SFF native interface +# +CONFIG_SATA_AHCI=y +CONFIG_SATA_MOBILE_LPM_POLICY=0 +# CONFIG_SATA_AHCI_PLATFORM is not set +# CONFIG_SATA_INIC162X is not set +# CONFIG_SATA_ACARD_AHCI is not set +# CONFIG_SATA_SIL24 is not set +# CONFIG_ATA_SFF is not set +# CONFIG_MD is not set +# CONFIG_TARGET_CORE is not set +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +# CONFIG_NET_CORE is not set +# CONFIG_ARCNET is not set + +# +# CAIF transport drivers +# + +# +# Distributed Switch Architecture drivers +# +# CONFIG_ETHERNET is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +# CONFIG_MDIO_DEVICE is not set +# CONFIG_MDIO_BUS is not set +# CONFIG_PHYLIB is not set +# CONFIG_PPP is not set +# CONFIG_SLIP is not set +# CONFIG_USB_NET_DRIVERS is not set +CONFIG_WLAN=y +# CONFIG_WIRELESS_WDS is not set +# CONFIG_WLAN_VENDOR_ADMTEK is not set +# CONFIG_WLAN_VENDOR_ATH is not set +# CONFIG_WLAN_VENDOR_ATMEL is not set +# CONFIG_WLAN_VENDOR_BROADCOM is not set +# CONFIG_WLAN_VENDOR_CISCO is not set +CONFIG_WLAN_VENDOR_INTEL=y +# CONFIG_IPW2100 is not set +# CONFIG_IPW2200 is not set +# CONFIG_IWL4965 is not set +# CONFIG_IWL3945 is not set +CONFIG_IWLWIFI=y +# CONFIG_IWLDVM is not set +CONFIG_IWLMVM=y +# CONFIG_IWLWIFI_BCAST_FILTERING is not set +# CONFIG_IWLWIFI_PCIE_RTPM is not set + +# +# Debugging Options +# +# CONFIG_IWLWIFI_DEBUG is not set +# CONFIG_WLAN_VENDOR_INTERSIL is not set +# CONFIG_WLAN_VENDOR_MARVELL is not set +# CONFIG_WLAN_VENDOR_MEDIATEK is not set +# CONFIG_WLAN_VENDOR_RALINK is not set +# CONFIG_WLAN_VENDOR_REALTEK is not set +# CONFIG_WLAN_VENDOR_RSI is not set +# CONFIG_WLAN_VENDOR_ST is not set +# CONFIG_WLAN_VENDOR_TI is not set +# CONFIG_WLAN_VENDOR_ZYDAS is not set +# CONFIG_WLAN_VENDOR_QUANTENNA is not set +# CONFIG_MAC80211_HWSIM is not set +# CONFIG_USB_NET_RNDIS_WLAN is not set + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +# CONFIG_VMXNET3 is not set +# CONFIG_FUJITSU_ES is not set +# CONFIG_ISDN is not set +# CONFIG_NVM is not set + +# +# Input device support +# +CONFIG_INPUT=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_POLLDEV is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +# CONFIG_INPUT_MOUSEDEV is not set +# CONFIG_INPUT_JOYDEV is not set +CONFIG_INPUT_EVDEV=y +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +# CONFIG_INPUT_KEYBOARD is not set +# CONFIG_INPUT_MOUSE is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_TABLET is not set +# CONFIG_INPUT_TOUCHSCREEN is not set +# CONFIG_INPUT_MISC is not set +# CONFIG_RMI4_CORE is not set + +# +# Hardware I/O ports +# +# CONFIG_SERIO is not set +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +# CONFIG_GAMEPORT is not set + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +# CONFIG_CONSOLE_TRANSLATIONS is not set +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +CONFIG_VT_HW_CONSOLE_BINDING=y +CONFIG_UNIX98_PTYS=y +# CONFIG_LEGACY_PTYS is not set +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_NOZOMI is not set +# CONFIG_N_GSM is not set +# CONFIG_TRACE_SINK is not set +# CONFIG_DEVMEM is not set +# CONFIG_DEVKMEM is not set + +# +# Serial drivers +# +# CONFIG_SERIAL_8250 is not set + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_UARTLITE is not set +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_DEV_BUS is not set +# CONFIG_TTY_PRINTK is not set +# CONFIG_IPMI_HANDLER is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +CONFIG_HW_RANDOM_INTEL=y +# CONFIG_HW_RANDOM_AMD is not set +# CONFIG_HW_RANDOM_VIA is not set +# CONFIG_NVRAM is not set +# CONFIG_R3964 is not set +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +# CONFIG_RAW_DRIVER is not set +CONFIG_HPET=y +# CONFIG_HPET_MMAP is not set +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +# CONFIG_DEVPORT is not set +# CONFIG_XILLYBUS is not set + +# +# I2C support +# +CONFIG_I2C=y +# CONFIG_ACPI_I2C_OPREGION is not set +CONFIG_I2C_BOARDINFO=y +# CONFIG_I2C_COMPAT is not set +# CONFIG_I2C_CHARDEV is not set +# CONFIG_I2C_MUX is not set +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_SMBUS=y +CONFIG_I2C_ALGOBIT=y + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +CONFIG_I2C_I801=y +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_ISMT is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EMEV2 is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +# CONFIG_I2C_PXA_PCI is not set +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_DIOLAN_U2C is not set +# CONFIG_I2C_PARPORT_LIGHT is not set +# CONFIG_I2C_ROBOTFUZZ_OSIF is not set +# CONFIG_I2C_TAOS_EVM is not set +# CONFIG_I2C_TINY_USB is not set + +# +# Other I2C/SMBus bus drivers +# +# CONFIG_I2C_MLXCPLD is not set +# CONFIG_I2C_SLAVE is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# CONFIG_SPI is not set +# CONFIG_SPMI is not set +# CONFIG_HSI is not set +# CONFIG_PPS is not set + +# +# PTP clock support +# +# CONFIG_PTP_1588_CLOCK is not set + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# CONFIG_PINCTRL is not set +# CONFIG_GPIOLIB is not set +# CONFIG_W1 is not set +# CONFIG_POWER_AVS is not set +# CONFIG_POWER_RESET is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +# CONFIG_PDA_POWER is not set +# CONFIG_TEST_POWER is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_DS2782 is not set +# CONFIG_BATTERY_SBS is not set +# CONFIG_CHARGER_SBS is not set +# CONFIG_BATTERY_BQ27XXX is not set +# CONFIG_BATTERY_MAX17040 is not set +# CONFIG_BATTERY_MAX17042 is not set +# CONFIG_CHARGER_MAX8903 is not set +# CONFIG_CHARGER_LP8727 is not set +# CONFIG_CHARGER_BQ2415X is not set +# CONFIG_CHARGER_SMB347 is not set +# CONFIG_BATTERY_GAUGE_LTC2941 is not set +# CONFIG_HWMON is not set +CONFIG_THERMAL=y +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +CONFIG_THERMAL_WRITABLE_TRIPS=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set +# CONFIG_THERMAL_GOV_FAIR_SHARE is not set +CONFIG_THERMAL_GOV_STEP_WISE=y +# CONFIG_THERMAL_GOV_BANG_BANG is not set +# CONFIG_THERMAL_GOV_USER_SPACE is not set +# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set +# CONFIG_THERMAL_EMULATION is not set +# CONFIG_INTEL_POWERCLAMP is not set +# CONFIG_X86_PKG_TEMP_THERMAL is not set +# CONFIG_INTEL_SOC_DTS_THERMAL is not set + +# +# ACPI INT340X thermal drivers +# +# CONFIG_INT340X_THERMAL is not set +CONFIG_INTEL_PCH_THERMAL=y +# CONFIG_WATCHDOG is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +# CONFIG_MFD_CORE is not set +# CONFIG_MFD_AS3711 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_BCM590XX is not set +# CONFIG_MFD_BD9571MWV is not set +# CONFIG_MFD_AXP20X_I2C is not set +# CONFIG_MFD_CROS_EC is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_DLN2 is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_INTEL_SOC_PMIC_CHTWC is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX77843 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_MFD_VIPERBOARD is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_RC5T583 is not set +# CONFIG_MFD_SEC_CORE is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SMSC is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TPS68470 is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TMIO is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +# CONFIG_REGULATOR is not set +# CONFIG_RC_CORE is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +# CONFIG_AGP is not set +# CONFIG_VGA_ARB is not set +# CONFIG_VGA_SWITCHEROO is not set +CONFIG_DRM=y +# CONFIG_DRM_DP_AUX_CHARDEV is not set +# CONFIG_DRM_DEBUG_MM is not set +# CONFIG_DRM_DEBUG_MM_SELFTEST is not set +CONFIG_DRM_KMS_HELPER=y +CONFIG_DRM_KMS_FB_HELPER=y +CONFIG_DRM_FBDEV_EMULATION=y +CONFIG_DRM_FBDEV_OVERALLOC=100 +# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set +CONFIG_DRM_TTM=y +CONFIG_DRM_VM=y + +# +# I2C encoder or helper chips +# +# CONFIG_DRM_I2C_CH7006 is not set +# CONFIG_DRM_I2C_SIL164 is not set +# CONFIG_DRM_I2C_NXP_TDA998X is not set +# CONFIG_DRM_RADEON is not set +# CONFIG_DRM_AMDGPU is not set + +# +# ACP (Audio CoProcessor) Configuration +# + +# +# AMD Library routines +# +# CONFIG_CHASH is not set +CONFIG_DRM_NOUVEAU=y +CONFIG_NOUVEAU_DEBUG=3 +CONFIG_NOUVEAU_DEBUG_DEFAULT=3 +# CONFIG_NOUVEAU_DEBUG_MMU is not set +# CONFIG_DRM_NOUVEAU_BACKLIGHT is not set +# CONFIG_DRM_I915 is not set +# CONFIG_DRM_VGEM is not set +# CONFIG_DRM_VMWGFX is not set +# CONFIG_DRM_GMA500 is not set +# CONFIG_DRM_UDL is not set +# CONFIG_DRM_AST is not set +# CONFIG_DRM_MGAG200 is not set +# CONFIG_DRM_CIRRUS_QEMU is not set +# CONFIG_DRM_QXL is not set +# CONFIG_DRM_BOCHS is not set +CONFIG_DRM_PANEL=y + +# +# Display Panels +# +CONFIG_DRM_BRIDGE=y +CONFIG_DRM_PANEL_BRIDGE=y + +# +# Display Interface Bridges +# +# CONFIG_DRM_ANALOGIX_ANX78XX is not set +# CONFIG_DRM_HISI_HIBMC is not set +# CONFIG_DRM_TINYDRM is not set +# CONFIG_DRM_LEGACY is not set +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y +# CONFIG_DRM_LIB_RANDOM is not set + +# +# Frame buffer Devices +# +CONFIG_FB=y +# CONFIG_FIRMWARE_EDID is not set +CONFIG_FB_CMDLINE=y +CONFIG_FB_NOTIFY=y +# CONFIG_FB_DDC is not set +# CONFIG_FB_BOOT_VESA_SUPPORT is not set +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set +CONFIG_FB_SYS_FILLRECT=y +CONFIG_FB_SYS_COPYAREA=y +CONFIG_FB_SYS_IMAGEBLIT=y +# CONFIG_FB_PROVIDE_GET_FB_UNMAPPED_AREA is not set +# CONFIG_FB_FOREIGN_ENDIAN is not set +CONFIG_FB_SYS_FOPS=y +CONFIG_FB_DEFERRED_IO=y +# CONFIG_FB_SVGALIB is not set +# CONFIG_FB_MACMODES is not set +# CONFIG_FB_BACKLIGHT is not set +# CONFIG_FB_MODE_HELPERS is not set +# CONFIG_FB_TILEBLITTING is not set + +# +# Frame buffer hardware drivers +# +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_PM2 is not set +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_ARC is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_IMSTT is not set +# CONFIG_FB_VGA16 is not set +# CONFIG_FB_UVESA is not set +# CONFIG_FB_VESA is not set +# CONFIG_FB_EFI is not set +# CONFIG_FB_N411 is not set +# CONFIG_FB_HGA is not set +# CONFIG_FB_OPENCORES is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_RIVA is not set +# CONFIG_FB_I740 is not set +# CONFIG_FB_LE80578 is not set +# CONFIG_FB_MATROX is not set +# CONFIG_FB_RADEON is not set +# CONFIG_FB_ATY128 is not set +# CONFIG_FB_ATY is not set +# CONFIG_FB_S3 is not set +# CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SIS is not set +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_KYRO is not set +# CONFIG_FB_3DFX is not set +# CONFIG_FB_VOODOO1 is not set +# CONFIG_FB_VT8623 is not set +# CONFIG_FB_TRIDENT is not set +# CONFIG_FB_ARK is not set +# CONFIG_FB_PM3 is not set +# CONFIG_FB_CARMINE is not set +# CONFIG_FB_SMSCUFX is not set +# CONFIG_FB_UDL is not set +# CONFIG_FB_IBM_GXT4500 is not set +# CONFIG_FB_VIRTUAL is not set +# CONFIG_FB_METRONOME is not set +# CONFIG_FB_MB862XX is not set +# CONFIG_FB_BROADSHEET is not set +# CONFIG_FB_AUO_K190X is not set +# CONFIG_FB_SIMPLE is not set +# CONFIG_FB_SM712 is not set +CONFIG_BACKLIGHT_LCD_SUPPORT=y +# CONFIG_LCD_CLASS_DEVICE is not set +CONFIG_BACKLIGHT_CLASS_DEVICE=y +# CONFIG_BACKLIGHT_GENERIC is not set +# CONFIG_BACKLIGHT_APPLE is not set +# CONFIG_BACKLIGHT_PM8941_WLED is not set +# CONFIG_BACKLIGHT_SAHARA is not set +# CONFIG_BACKLIGHT_ADP8860 is not set +# CONFIG_BACKLIGHT_ADP8870 is not set +# CONFIG_BACKLIGHT_LM3639 is not set +# CONFIG_BACKLIGHT_LV5207LP is not set +# CONFIG_BACKLIGHT_BD6107 is not set +# CONFIG_BACKLIGHT_ARCXCNN is not set +# CONFIG_VGASTATE is not set +CONFIG_HDMI=y + +# +# Console display driver support +# +# CONFIG_VGA_CONSOLE is not set +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=240 +CONFIG_DUMMY_CONSOLE_ROWS=68 +CONFIG_FRAMEBUFFER_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set +# CONFIG_LOGO is not set +CONFIG_SOUND=y +# CONFIG_SOUND_OSS_CORE is not set +CONFIG_SND=y +CONFIG_SND_TIMER=y +CONFIG_SND_PCM=y +CONFIG_SND_HWDEP=y +CONFIG_SND_RAWMIDI=y +CONFIG_SND_JACK=y +CONFIG_SND_JACK_INPUT_DEV=y +# CONFIG_SND_OSSEMUL is not set +# CONFIG_SND_PCM_TIMER is not set +CONFIG_SND_HRTIMER=y +# CONFIG_SND_DYNAMIC_MINORS is not set +# CONFIG_SND_SUPPORT_OLD_API is not set +# CONFIG_SND_PROC_FS is not set +# CONFIG_SND_VERBOSE_PRINTK is not set +# CONFIG_SND_DEBUG is not set +CONFIG_SND_VMASTER=y +CONFIG_SND_DMA_SGBUF=y +# CONFIG_SND_SEQUENCER is not set +# CONFIG_SND_OPL3_LIB_SEQ is not set +# CONFIG_SND_OPL4_LIB_SEQ is not set +# CONFIG_SND_DRIVERS is not set +CONFIG_SND_PCI=y +# CONFIG_SND_AD1889 is not set +# CONFIG_SND_ALS300 is not set +# CONFIG_SND_ALI5451 is not set +# CONFIG_SND_ASIHPI is not set +# CONFIG_SND_ATIIXP is not set +# CONFIG_SND_ATIIXP_MODEM is not set +# CONFIG_SND_AU8810 is not set +# CONFIG_SND_AU8820 is not set +# CONFIG_SND_AU8830 is not set +# CONFIG_SND_AW2 is not set +# CONFIG_SND_AZT3328 is not set +# CONFIG_SND_BT87X is not set +# CONFIG_SND_CA0106 is not set +# CONFIG_SND_CMIPCI is not set +# CONFIG_SND_OXYGEN is not set +# CONFIG_SND_CS4281 is not set +# CONFIG_SND_CS46XX is not set +# CONFIG_SND_CTXFI is not set +# CONFIG_SND_DARLA20 is not set +# CONFIG_SND_GINA20 is not set +# CONFIG_SND_LAYLA20 is not set +# CONFIG_SND_DARLA24 is not set +# CONFIG_SND_GINA24 is not set +# CONFIG_SND_LAYLA24 is not set +# CONFIG_SND_MONA is not set +# CONFIG_SND_MIA is not set +# CONFIG_SND_ECHO3G is not set +# CONFIG_SND_INDIGO is not set +# CONFIG_SND_INDIGOIO is not set +# CONFIG_SND_INDIGODJ is not set +# CONFIG_SND_INDIGOIOX is not set +# CONFIG_SND_INDIGODJX is not set +# CONFIG_SND_EMU10K1 is not set +# CONFIG_SND_EMU10K1_SEQ is not set +# CONFIG_SND_EMU10K1X is not set +# CONFIG_SND_ENS1370 is not set +# CONFIG_SND_ENS1371 is not set +# CONFIG_SND_ES1938 is not set +# CONFIG_SND_ES1968 is not set +# CONFIG_SND_FM801 is not set +# CONFIG_SND_HDSP is not set +# CONFIG_SND_HDSPM is not set +# CONFIG_SND_ICE1712 is not set +# CONFIG_SND_ICE1724 is not set +# CONFIG_SND_INTEL8X0 is not set +# CONFIG_SND_INTEL8X0M is not set +# CONFIG_SND_KORG1212 is not set +# CONFIG_SND_LOLA is not set +# CONFIG_SND_LX6464ES is not set +# CONFIG_SND_MAESTRO3 is not set +# CONFIG_SND_MIXART is not set +# CONFIG_SND_NM256 is not set +# CONFIG_SND_PCXHR is not set +# CONFIG_SND_RIPTIDE is not set +# CONFIG_SND_RME32 is not set +# CONFIG_SND_RME96 is not set +# CONFIG_SND_RME9652 is not set +# CONFIG_SND_SE6X is not set +# CONFIG_SND_SONICVIBES is not set +# CONFIG_SND_TRIDENT is not set +# CONFIG_SND_VIA82XX is not set +# CONFIG_SND_VIA82XX_MODEM is not set +# CONFIG_SND_VIRTUOSO is not set +# CONFIG_SND_VX222 is not set +# CONFIG_SND_YMFPCI is not set + +# +# HD-Audio +# +CONFIG_SND_HDA=y +CONFIG_SND_HDA_INTEL=y +# CONFIG_SND_HDA_HWDEP is not set +# CONFIG_SND_HDA_RECONFIG is not set +# CONFIG_SND_HDA_INPUT_BEEP is not set +# CONFIG_SND_HDA_PATCH_LOADER is not set +# CONFIG_SND_HDA_CODEC_REALTEK is not set +# CONFIG_SND_HDA_CODEC_ANALOG is not set +# CONFIG_SND_HDA_CODEC_SIGMATEL is not set +# CONFIG_SND_HDA_CODEC_VIA is not set +CONFIG_SND_HDA_CODEC_HDMI=y +# CONFIG_SND_HDA_CODEC_CIRRUS is not set +# CONFIG_SND_HDA_CODEC_CONEXANT is not set +# CONFIG_SND_HDA_CODEC_CA0110 is not set +# CONFIG_SND_HDA_CODEC_CA0132 is not set +# CONFIG_SND_HDA_CODEC_CMEDIA is not set +# CONFIG_SND_HDA_CODEC_SI3054 is not set +# CONFIG_SND_HDA_GENERIC is not set +CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0 +CONFIG_SND_HDA_CORE=y +CONFIG_SND_HDA_PREALLOC_SIZE=4096 +CONFIG_SND_USB=y +CONFIG_SND_USB_AUDIO=y +# CONFIG_SND_USB_UA101 is not set +# CONFIG_SND_USB_USX2Y is not set +# CONFIG_SND_USB_CAIAQ is not set +# CONFIG_SND_USB_US122L is not set +# CONFIG_SND_USB_6FIRE is not set +# CONFIG_SND_USB_HIFACE is not set +# CONFIG_SND_BCD2000 is not set +# CONFIG_SND_USB_POD is not set +# CONFIG_SND_USB_PODHD is not set +# CONFIG_SND_USB_TONEPORT is not set +# CONFIG_SND_USB_VARIAX is not set +# CONFIG_SND_SOC is not set +# CONFIG_SND_X86 is not set + +# +# HID support +# +CONFIG_HID=y +# CONFIG_HID_BATTERY_STRENGTH is not set +# CONFIG_HIDRAW is not set +CONFIG_UHID=y +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +# CONFIG_HID_A4TECH is not set +# CONFIG_HID_ACCUTOUCH is not set +# CONFIG_HID_ACRUX is not set +# CONFIG_HID_APPLE is not set +# CONFIG_HID_APPLEIR is not set +# CONFIG_HID_AUREAL is not set +# CONFIG_HID_BELKIN is not set +# CONFIG_HID_BETOP_FF is not set +# CONFIG_HID_CHERRY is not set +# CONFIG_HID_CHICONY is not set +# CONFIG_HID_PRODIKEYS is not set +# CONFIG_HID_CMEDIA is not set +# CONFIG_HID_CYPRESS is not set +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_ELO is not set +# CONFIG_HID_EZKEY is not set +# CONFIG_HID_GEMBIRD is not set +# CONFIG_HID_GFRM is not set +# CONFIG_HID_HOLTEK is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_UCLOGIC is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_ITE is not set +# CONFIG_HID_JABRA is not set +# CONFIG_HID_TWINHAN is not set +# CONFIG_HID_KENSINGTON is not set +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LENOVO is not set +# CONFIG_HID_LOGITECH is not set +# CONFIG_HID_MAGICMOUSE is not set +# CONFIG_HID_MAYFLASH is not set +# CONFIG_HID_MICROSOFT is not set +# CONFIG_HID_MONTEREY is not set +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTI is not set +# CONFIG_HID_NTRIG is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PENMOUNT is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PLANTRONICS is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_RETRODE is not set +# CONFIG_HID_ROCCAT is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_RMI is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_UDRAW_PS3 is not set +# CONFIG_HID_WACOM is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set +# CONFIG_HID_ALPS is not set + +# +# USB HID support +# +CONFIG_USB_HID=y +# CONFIG_HID_PID is not set +CONFIG_USB_HIDDEV=y + +# +# I2C HID support +# +# CONFIG_I2C_HID is not set + +# +# Intel ISH HID support +# +# CONFIG_INTEL_ISH_HID is not set +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=y +CONFIG_USB_PCI=y +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_DYNAMIC_MINORS is not set +# CONFIG_USB_OTG is not set +# CONFIG_USB_OTG_WHITELIST is not set +# CONFIG_USB_OTG_BLACKLIST_HUB is not set +# CONFIG_USB_MON is not set +# CONFIG_USB_WUSB_CBAF is not set + +# +# USB Host Controller Drivers +# +# CONFIG_USB_C67X00_HCD is not set +CONFIG_USB_XHCI_HCD=y +# CONFIG_USB_XHCI_DBGCAP is not set +CONFIG_USB_XHCI_PCI=y +# CONFIG_USB_XHCI_PLATFORM is not set +CONFIG_USB_EHCI_HCD=y +CONFIG_USB_EHCI_ROOT_HUB_TT=y +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHCI_PCI=y +# CONFIG_USB_EHCI_HCD_PLATFORM is not set +# CONFIG_USB_OXU210HP_HCD is not set +# CONFIG_USB_ISP116X_HCD is not set +# CONFIG_USB_ISP1362_HCD is not set +# CONFIG_USB_FOTG210_HCD is not set +# CONFIG_USB_OHCI_HCD is not set +# CONFIG_USB_UHCI_HCD is not set +# CONFIG_USB_SL811_HCD is not set +# CONFIG_USB_R8A66597_HCD is not set +# CONFIG_USB_HCD_TEST_MODE is not set + +# +# USB Device Class drivers +# +# CONFIG_USB_ACM is not set +# CONFIG_USB_PRINTER is not set +# CONFIG_USB_WDM is not set +# CONFIG_USB_TMC is not set + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# +CONFIG_USB_STORAGE=y +# CONFIG_USB_STORAGE_DEBUG is not set +# CONFIG_USB_STORAGE_REALTEK is not set +# CONFIG_USB_STORAGE_DATAFAB is not set +# CONFIG_USB_STORAGE_FREECOM is not set +# CONFIG_USB_STORAGE_ISD200 is not set +# CONFIG_USB_STORAGE_USBAT is not set +# CONFIG_USB_STORAGE_SDDR09 is not set +# CONFIG_USB_STORAGE_SDDR55 is not set +# CONFIG_USB_STORAGE_JUMPSHOT is not set +# CONFIG_USB_STORAGE_ALAUDA is not set +# CONFIG_USB_STORAGE_ONETOUCH is not set +# CONFIG_USB_STORAGE_KARMA is not set +# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set +# CONFIG_USB_STORAGE_ENE_UB6250 is not set +# CONFIG_USB_UAS is not set + +# +# USB Imaging devices +# +# CONFIG_USB_MDC800 is not set +# CONFIG_USB_MICROTEK is not set +# CONFIG_USBIP_CORE is not set +# CONFIG_USB_MUSB_HDRC is not set +# CONFIG_USB_DWC3 is not set +# CONFIG_USB_DWC2 is not set +# CONFIG_USB_CHIPIDEA is not set +# CONFIG_USB_ISP1760 is not set + +# +# USB port drivers +# +# CONFIG_USB_SERIAL is not set + +# +# USB Miscellaneous drivers +# +# CONFIG_USB_EMI62 is not set +# CONFIG_USB_EMI26 is not set +# CONFIG_USB_ADUTUX is not set +# CONFIG_USB_SEVSEG is not set +# CONFIG_USB_RIO500 is not set +# CONFIG_USB_LEGOTOWER is not set +# CONFIG_USB_LCD is not set +# CONFIG_USB_CYPRESS_CY7C63 is not set +# CONFIG_USB_CYTHERM is not set +# CONFIG_USB_IDMOUSE is not set +# CONFIG_USB_FTDI_ELAN is not set +# CONFIG_USB_APPLEDISPLAY is not set +# CONFIG_USB_SISUSBVGA is not set +# CONFIG_USB_LD is not set +# CONFIG_USB_TRANCEVIBRATOR is not set +# CONFIG_USB_IOWARRIOR is not set +# CONFIG_USB_TEST is not set +# CONFIG_USB_EHSET_TEST_FIXTURE is not set +# CONFIG_USB_ISIGHTFW is not set +# CONFIG_USB_YUREX is not set +# CONFIG_USB_EZUSB_FX2 is not set +# CONFIG_USB_HUB_USB251XB is not set +# CONFIG_USB_HSIC_USB3503 is not set +# CONFIG_USB_HSIC_USB4604 is not set +# CONFIG_USB_LINK_LAYER_TEST is not set +# CONFIG_USB_CHAOSKEY is not set + +# +# USB Physical Layer drivers +# +# CONFIG_USB_PHY is not set +# CONFIG_NOP_USB_XCEIV is not set +# CONFIG_USB_ISP1301 is not set +# CONFIG_USB_GADGET is not set +# CONFIG_TYPEC is not set +# CONFIG_USB_ULPI_BUS is not set +# CONFIG_UWB is not set +# CONFIG_MMC is not set +# CONFIG_MEMSTICK is not set +# CONFIG_NEW_LEDS is not set +# CONFIG_ACCESSIBILITY is not set +# CONFIG_INFINIBAND is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +CONFIG_EDAC=y +# CONFIG_EDAC_LEGACY_SYSFS is not set +# CONFIG_EDAC_DEBUG is not set +# CONFIG_EDAC_E752X is not set +# CONFIG_EDAC_I82975X is not set +# CONFIG_EDAC_I3000 is not set +# CONFIG_EDAC_I3200 is not set +# CONFIG_EDAC_IE31200 is not set +# CONFIG_EDAC_X38 is not set +# CONFIG_EDAC_I5400 is not set +# CONFIG_EDAC_I7CORE is not set +# CONFIG_EDAC_I5000 is not set +# CONFIG_EDAC_I5100 is not set +# CONFIG_EDAC_I7300 is not set +CONFIG_EDAC_SBRIDGE=y +# CONFIG_EDAC_SKX is not set +# CONFIG_EDAC_PND2 is not set +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +CONFIG_RTC_CLASS=y +# CONFIG_RTC_HCTOSYS is not set +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_SYSTOHC_DEVICE="rtc0" +# CONFIG_RTC_DEBUG is not set +# CONFIG_RTC_NVMEM is not set + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +# CONFIG_RTC_DRV_TEST is not set + +# +# I2C RTC drivers +# +# CONFIG_RTC_DRV_ABB5ZES3 is not set +# CONFIG_RTC_DRV_ABX80X is not set +# CONFIG_RTC_DRV_DS1307 is not set +# CONFIG_RTC_DRV_DS1374 is not set +# CONFIG_RTC_DRV_DS1672 is not set +# CONFIG_RTC_DRV_MAX6900 is not set +# CONFIG_RTC_DRV_RS5C372 is not set +# CONFIG_RTC_DRV_ISL1208 is not set +# CONFIG_RTC_DRV_ISL12022 is not set +# CONFIG_RTC_DRV_X1205 is not set +# CONFIG_RTC_DRV_PCF8523 is not set +# CONFIG_RTC_DRV_PCF85063 is not set +# CONFIG_RTC_DRV_PCF85363 is not set +# CONFIG_RTC_DRV_PCF8563 is not set +# CONFIG_RTC_DRV_PCF8583 is not set +# CONFIG_RTC_DRV_M41T80 is not set +# CONFIG_RTC_DRV_BQ32K is not set +# CONFIG_RTC_DRV_S35390A is not set +# CONFIG_RTC_DRV_FM3130 is not set +# CONFIG_RTC_DRV_RX8010 is not set +# CONFIG_RTC_DRV_RX8581 is not set +# CONFIG_RTC_DRV_RX8025 is not set +# CONFIG_RTC_DRV_EM3027 is not set +# CONFIG_RTC_DRV_RV8803 is not set + +# +# SPI RTC drivers +# +CONFIG_RTC_I2C_AND_SPI=y + +# +# SPI and I2C RTC drivers +# +# CONFIG_RTC_DRV_DS3232 is not set +# CONFIG_RTC_DRV_PCF2127 is not set +# CONFIG_RTC_DRV_RV3029C2 is not set + +# +# Platform RTC drivers +# +CONFIG_RTC_DRV_CMOS=y +# CONFIG_RTC_DRV_DS1286 is not set +# CONFIG_RTC_DRV_DS1511 is not set +# CONFIG_RTC_DRV_DS1553 is not set +# CONFIG_RTC_DRV_DS1685_FAMILY is not set +# CONFIG_RTC_DRV_DS1742 is not set +# CONFIG_RTC_DRV_DS2404 is not set +# CONFIG_RTC_DRV_STK17TA8 is not set +# CONFIG_RTC_DRV_M48T86 is not set +# CONFIG_RTC_DRV_M48T35 is not set +# CONFIG_RTC_DRV_M48T59 is not set +# CONFIG_RTC_DRV_MSM6242 is not set +# CONFIG_RTC_DRV_BQ4802 is not set +# CONFIG_RTC_DRV_RP5C01 is not set +# CONFIG_RTC_DRV_V3020 is not set + +# +# on-CPU RTC drivers +# +# CONFIG_RTC_DRV_FTRTC010 is not set + +# +# HID Sensor RTC drivers +# +# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set +# CONFIG_DMADEVICES is not set + +# +# DMABUF options +# +CONFIG_SYNC_FILE=y +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +# CONFIG_VFIO is not set +# CONFIG_VIRT_DRIVERS is not set +CONFIG_VIRTIO_MENU=y +# CONFIG_VIRTIO_PCI is not set +# CONFIG_VIRTIO_MMIO is not set + +# +# Microsoft Hyper-V guest support +# +# CONFIG_HYPERV_TSCPAGE is not set +# CONFIG_STAGING is not set +CONFIG_X86_PLATFORM_DEVICES=y +# CONFIG_ACER_WIRELESS is not set +# CONFIG_ACERHDF is not set +# CONFIG_ASUS_LAPTOP is not set +# CONFIG_DELL_SMBIOS is not set +# CONFIG_DELL_WMI is not set +# CONFIG_DELL_WMI_AIO is not set +# CONFIG_DELL_SMO8800 is not set +# CONFIG_FUJITSU_LAPTOP is not set +# CONFIG_FUJITSU_TABLET is not set +# CONFIG_GPD_POCKET_FAN is not set +# CONFIG_HP_WIRELESS is not set +# CONFIG_HP_WMI is not set +# CONFIG_PANASONIC_LAPTOP is not set +# CONFIG_THINKPAD_ACPI is not set +# CONFIG_SENSORS_HDAPS is not set +# CONFIG_INTEL_MENLOW is not set +# CONFIG_ASUS_WIRELESS is not set +CONFIG_ACPI_WMI=y +# CONFIG_WMI_BMOF is not set +# CONFIG_INTEL_WMI_THUNDERBOLT is not set +# CONFIG_MSI_WMI is not set +# CONFIG_PEAQ_WMI is not set +# CONFIG_TOPSTAR_LAPTOP is not set +# CONFIG_TOSHIBA_BT_RFKILL is not set +# CONFIG_TOSHIBA_HAPS is not set +# CONFIG_TOSHIBA_WMI is not set +# CONFIG_ACPI_CMPC is not set +# CONFIG_INTEL_HID_EVENT is not set +# CONFIG_INTEL_VBTN is not set +# CONFIG_INTEL_IPS is not set +# CONFIG_INTEL_PMC_CORE is not set +# CONFIG_IBM_RTL is not set +# CONFIG_SAMSUNG_LAPTOP is not set +CONFIG_MXM_WMI=y +# CONFIG_SAMSUNG_Q10 is not set +# CONFIG_APPLE_GMUX is not set +# CONFIG_INTEL_RST is not set +CONFIG_INTEL_SMARTCONNECT=y +# CONFIG_PVPANIC is not set +# CONFIG_INTEL_PMC_IPC is not set +# CONFIG_SURFACE_PRO3_BUTTON is not set +# CONFIG_INTEL_PUNIT_IPC is not set +# CONFIG_MLX_PLATFORM is not set +# CONFIG_INTEL_TURBO_MAX_3 is not set +CONFIG_PMC_ATOM=y +# CONFIG_CHROME_PLATFORMS is not set +# CONFIG_MELLANOX_PLATFORM is not set +CONFIG_CLKDEV_LOOKUP=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Common Clock Framework +# +# CONFIG_COMMON_CLK_SI5351 is not set +# CONFIG_COMMON_CLK_CDCE706 is not set +# CONFIG_COMMON_CLK_CS2000_CP is not set +# CONFIG_COMMON_CLK_NXP is not set +# CONFIG_COMMON_CLK_PXA is not set +# CONFIG_COMMON_CLK_PIC32 is not set +# CONFIG_HWSPINLOCK is not set + +# +# Clock Source drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_CLKBLD_I8253=y +# CONFIG_ATMEL_PIT is not set +# CONFIG_SH_TIMER_CMT is not set +# CONFIG_SH_TIMER_MTU2 is not set +# CONFIG_SH_TIMER_TMU is not set +# CONFIG_EM_TIMER_STI is not set +CONFIG_MAILBOX=y +CONFIG_PCC=y +# CONFIG_ALTERA_MBOX is not set +CONFIG_IOMMU_API=y +CONFIG_IOMMU_SUPPORT=y + +# +# Generic IOMMU Pagetable Support +# +CONFIG_IOMMU_IOVA=y +# CONFIG_AMD_IOMMU is not set +CONFIG_DMAR_TABLE=y +CONFIG_INTEL_IOMMU=y +CONFIG_INTEL_IOMMU_SVM=y +CONFIG_INTEL_IOMMU_DEFAULT_ON=y +CONFIG_INTEL_IOMMU_FLOPPY_WA=y +CONFIG_IRQ_REMAP=y + +# +# Remoteproc drivers +# +# CONFIG_REMOTEPROC is not set + +# +# Rpmsg drivers +# +# CONFIG_RPMSG_QCOM_GLINK_RPM is not set +# CONFIG_RPMSG_VIRTIO is not set +# CONFIG_SOUNDWIRE is not set + +# +# SOC (System On Chip) specific Drivers +# + +# +# Amlogic SoC drivers +# + +# +# Broadcom SoC drivers +# + +# +# i.MX SoC drivers +# + +# +# Qualcomm SoC drivers +# +# CONFIG_SUNXI_SRAM is not set +# CONFIG_SOC_TI is not set + +# +# Xilinx SoC drivers +# +# CONFIG_XILINX_VCU is not set +# CONFIG_PM_DEVFREQ is not set +# CONFIG_EXTCON is not set +# CONFIG_MEMORY is not set +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +# CONFIG_PWM is not set + +# +# IRQ chip support +# +CONFIG_ARM_GIC_MAX_NR=1 +# CONFIG_ARM_GIC_V3_ITS is not set +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set +# CONFIG_FMC is not set + +# +# PHY Subsystem +# +# CONFIG_GENERIC_PHY is not set +# CONFIG_BCM_KONA_USB2_PHY is not set +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_POWERCAP is not set +# CONFIG_MCB is not set + +# +# Performance monitor support +# +CONFIG_RAS=y +# CONFIG_THUNDERBOLT is not set + +# +# Android +# +# CONFIG_ANDROID is not set +# CONFIG_LIBNVDIMM is not set +# CONFIG_DAX is not set +# CONFIG_NVMEM is not set +# CONFIG_STM is not set +# CONFIG_INTEL_TH is not set +# CONFIG_FPGA is not set +# CONFIG_FSI is not set +# CONFIG_UNISYS_VISORBUS is not set +# CONFIG_SIOX is not set +# CONFIG_SLIMBUS is not set + +# +# Firmware Drivers +# +# CONFIG_EDD is not set +# CONFIG_FIRMWARE_MEMMAP is not set +# CONFIG_DELL_RBU is not set +# CONFIG_DCDBAS is not set +CONFIG_DMIID=y +# CONFIG_DMI_SYSFS is not set +CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y +# CONFIG_ISCSI_IBFT_FIND is not set +# CONFIG_FW_CFG_SYSFS is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +# CONFIG_EFI_VARS is not set +CONFIG_EFI_ESRT=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_RUNTIME_WRAPPERS=y +# CONFIG_EFI_CAPSULE_LOADER is not set +# CONFIG_EFI_TEST is not set +# CONFIG_APPLE_PROPERTIES is not set +# CONFIG_RESET_ATTACK_MITIGATION is not set +# CONFIG_EFI_DEV_PATH_PARSER is not set + +# +# Tegra firmware driver +# + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +CONFIG_FS_IOMAP=y +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +CONFIG_EXT4_FS=y +CONFIG_EXT4_USE_FOR_EXT2=y +CONFIG_EXT4_FS_POSIX_ACL=y +# CONFIG_EXT4_FS_SECURITY is not set +# CONFIG_EXT4_ENCRYPTION is not set +# CONFIG_EXT4_DEBUG is not set +CONFIG_JBD2=y +# CONFIG_JBD2_DEBUG is not set +CONFIG_FS_MBCACHE=y +# CONFIG_REISERFS_FS is not set +# CONFIG_JFS_FS is not set +# CONFIG_XFS_FS is not set +# CONFIG_GFS2_FS is not set +CONFIG_BTRFS_FS=y +CONFIG_BTRFS_FS_POSIX_ACL=y +# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set +# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set +# CONFIG_BTRFS_DEBUG is not set +# CONFIG_BTRFS_ASSERT is not set +# CONFIG_BTRFS_FS_REF_VERIFY is not set +# CONFIG_NILFS2_FS is not set +# CONFIG_F2FS_FS is not set +# CONFIG_FS_DAX is not set +CONFIG_FS_POSIX_ACL=y +CONFIG_EXPORTFS=y +# CONFIG_EXPORTFS_BLOCK_OPS is not set +CONFIG_FILE_LOCKING=y +# CONFIG_MANDATORY_FILE_LOCKING is not set +# CONFIG_FS_ENCRYPTION is not set +CONFIG_FSNOTIFY=y +# CONFIG_DNOTIFY is not set +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +# CONFIG_QUOTA is not set +# CONFIG_QUOTACTL is not set +CONFIG_AUTOFS4_FS=y +# CONFIG_FUSE_FS is not set +# CONFIG_OVERLAY_FS is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set + +# +# CD-ROM/DVD Filesystems +# +# CONFIG_ISO9660_FS is not set +# CONFIG_UDF_FS is not set + +# +# DOS/FAT/NT Filesystems +# +CONFIG_FAT_FS=y +# CONFIG_MSDOS_FS is not set +CONFIG_VFAT_FS=y +CONFIG_FAT_DEFAULT_CODEPAGE=936 +CONFIG_FAT_DEFAULT_IOCHARSET="utf8" +CONFIG_FAT_DEFAULT_UTF8=y +CONFIG_NTFS_FS=y +# CONFIG_NTFS_DEBUG is not set +# CONFIG_NTFS_RW is not set + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +# CONFIG_PROC_KCORE is not set +CONFIG_PROC_SYSCTL=y +# CONFIG_PROC_PAGE_MONITOR is not set +CONFIG_PROC_CHILDREN=y +CONFIG_KERNFS=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +# CONFIG_HUGETLBFS is not set +# CONFIG_HUGETLB_PAGE is not set +# CONFIG_CONFIGFS_FS is not set +# CONFIG_EFIVAR_FS is not set +# CONFIG_MISC_FILESYSTEMS is not set +# CONFIG_NETWORK_FILESYSTEMS is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="utf8" +CONFIG_NLS_CODEPAGE_437=y +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +CONFIG_NLS_CODEPAGE_936=y +CONFIG_NLS_CODEPAGE_950=y +CONFIG_NLS_CODEPAGE_932=y +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +CONFIG_NLS_ASCII=y +CONFIG_NLS_ISO8859_1=y +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +CONFIG_NLS_UTF8=y + +# +# Kernel hacking +# +CONFIG_TRACE_IRQFLAGS_SUPPORT=y + +# +# printk and dmesg options +# +# CONFIG_PRINTK_TIME is not set +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=6 +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +# CONFIG_BOOT_PRINTK_DELAY is not set + +# +# Compile-time checks and compiler options +# +# CONFIG_DEBUG_INFO is not set +# CONFIG_ENABLE_WARN_DEPRECATED is not set +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_FRAME_WARN=2048 +CONFIG_STRIP_ASM_SYMS=y +# CONFIG_READABLE_ASM is not set +# CONFIG_UNUSED_SYMBOLS is not set +# CONFIG_PAGE_OWNER is not set +# CONFIG_DEBUG_FS is not set +# CONFIG_HEADERS_CHECK is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set +CONFIG_STACK_VALIDATION=y +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +# CONFIG_MAGIC_SYSRQ is not set +CONFIG_DEBUG_KERNEL=y + +# +# Memory Debugging +# +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_PAGE_POISONING is not set +# CONFIG_DEBUG_RODATA_TEST is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_SLUB_STATS is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_DEBUG_VM is not set +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_HAVE_DEBUG_STACKOVERFLOW=y +# CONFIG_DEBUG_STACKOVERFLOW is not set +CONFIG_HAVE_ARCH_KASAN=y +# CONFIG_KASAN is not set +CONFIG_ARCH_HAS_KCOV=y +# CONFIG_KCOV is not set +# CONFIG_DEBUG_SHIRQ is not set + +# +# Debug Lockups and Hangs +# +# CONFIG_SOFTLOCKUP_DETECTOR is not set +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +# CONFIG_HARDLOCKUP_DETECTOR is not set +# CONFIG_DETECT_HUNG_TASK is not set +# CONFIG_WQ_WATCHDOG is not set +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=30 +# CONFIG_SCHED_DEBUG is not set +CONFIG_SCHED_INFO=y +# CONFIG_SCHEDSTATS is not set +# CONFIG_SCHED_STACK_END_CHECK is not set +# CONFIG_DEBUG_TIMEKEEPING is not set +# CONFIG_DEBUG_PREEMPT is not set + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_PROVE_LOCKING is not set +# CONFIG_LOCK_STAT is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_LOCK_TORTURE_TEST is not set +# CONFIG_WW_MUTEX_SELFTEST is not set +# CONFIG_STACKTRACE is not set +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +# CONFIG_DEBUG_KOBJECT is not set +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_PI_LIST is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_CREDENTIALS is not set + +# +# RCU Debugging +# +# CONFIG_PROVE_RCU is not set +# CONFIG_TORTURE_TEST is not set +# CONFIG_RCU_PERF_TEST is not set +# CONFIG_RCU_TORTURE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +# CONFIG_RCU_TRACE is not set +# CONFIG_RCU_EQS_DEBUG is not set +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_FAULT_INJECTION is not set +# CONFIG_LATENCYTOP is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_DMA_API_DEBUG is not set +CONFIG_RUNTIME_TESTING_MENU=y +# CONFIG_TEST_LIST_SORT is not set +# CONFIG_TEST_SORT is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_RBTREE_TEST is not set +# CONFIG_INTERVAL_TREE_TEST is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_UUID is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_HASH is not set +# CONFIG_FIND_BIT_BENCHMARK is not set +# CONFIG_TEST_FIRMWARE is not set +# CONFIG_TEST_SYSCTL is not set +# CONFIG_TEST_UDELAY is not set +# CONFIG_MEMTEST is not set +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +# CONFIG_SAMPLES is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_KGDB is not set +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set +# CONFIG_UBSAN is not set +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +# CONFIG_X86_VERBOSE_BOOTUP is not set +# CONFIG_EARLY_PRINTK is not set +# CONFIG_X86_PTDUMP_CORE is not set +# CONFIG_X86_PTDUMP is not set +# CONFIG_EFI_PGT_DUMP is not set +# CONFIG_DEBUG_WX is not set +# CONFIG_DOUBLEFAULT is not set +# CONFIG_DEBUG_TLBFLUSH is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +CONFIG_IO_DELAY_TYPE_0X80=0 +CONFIG_IO_DELAY_TYPE_0XED=1 +CONFIG_IO_DELAY_TYPE_UDELAY=2 +CONFIG_IO_DELAY_TYPE_NONE=3 +# CONFIG_IO_DELAY_0X80 is not set +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +CONFIG_IO_DELAY_NONE=y +CONFIG_DEFAULT_IO_DELAY_TYPE=3 +# CONFIG_CPA_DEBUG is not set +# CONFIG_OPTIMIZE_INLINING is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +# CONFIG_X86_DEBUG_FPU is not set +# CONFIG_PUNIT_ATOM_DEBUG is not set +CONFIG_UNWINDER_ORC=y +# CONFIG_UNWINDER_FRAME_POINTER is not set +# CONFIG_UNWINDER_GUESS is not set + +# +# Security options +# +CONFIG_KEYS=y +# CONFIG_PERSISTENT_KEYRINGS is not set +# CONFIG_BIG_KEYS is not set +# CONFIG_ENCRYPTED_KEYS is not set +# CONFIG_KEY_DH_OPERATIONS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITY is not set +# CONFIG_SECURITYFS is not set +# CONFIG_PAGE_TABLE_ISOLATION is not set +# CONFIG_INTEL_TXT is not set +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +# CONFIG_HARDENED_USERCOPY is not set +# CONFIG_FORTIFY_SOURCE is not set +# CONFIG_STATIC_USERMODEHELPER is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_DEFAULT_SECURITY="" +CONFIG_XOR_BLOCKS=y +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +# CONFIG_CRYPTO_FIPS is not set +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_BLKCIPHER=y +CONFIG_CRYPTO_BLKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_RNG_DEFAULT=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_AKCIPHER=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_KPP=y +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_RSA=y +# CONFIG_CRYPTO_DH is not set +CONFIG_CRYPTO_ECDH=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +# CONFIG_CRYPTO_USER is not set +# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set +CONFIG_CRYPTO_GF128MUL=y +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +# CONFIG_CRYPTO_PCRYPT is not set +CONFIG_CRYPTO_WORKQUEUE=y +CONFIG_CRYPTO_CRYPTD=y +# CONFIG_CRYPTO_MCRYPTD is not set +CONFIG_CRYPTO_AUTHENC=y +CONFIG_CRYPTO_SIMD=y +CONFIG_CRYPTO_GLUE_HELPER_X86=y + +# +# Authenticated Encryption with Associated Data +# +CONFIG_CRYPTO_CCM=y +CONFIG_CRYPTO_GCM=y +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +CONFIG_CRYPTO_SEQIV=y +# CONFIG_CRYPTO_ECHAINIV is not set + +# +# Block modes +# +# CONFIG_CRYPTO_CBC is not set +CONFIG_CRYPTO_CTR=y +# CONFIG_CRYPTO_CTS is not set +CONFIG_CRYPTO_ECB=y +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_PCBC is not set +# CONFIG_CRYPTO_XTS is not set +# CONFIG_CRYPTO_KEYWRAP is not set + +# +# Hash modes +# +CONFIG_CRYPTO_CMAC=y +CONFIG_CRYPTO_HMAC=y +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=y +CONFIG_CRYPTO_CRC32C_INTEL=y +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_CRCT10DIF is not set +CONFIG_CRYPTO_GHASH=y +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_MD4 is not set +# CONFIG_CRYPTO_MD5 is not set +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD128 is not set +# CONFIG_CRYPTO_RMD160 is not set +# CONFIG_CRYPTO_RMD256 is not set +# CONFIG_CRYPTO_RMD320 is not set +CONFIG_CRYPTO_SHA1=y +CONFIG_CRYPTO_SHA1_SSSE3=y +CONFIG_CRYPTO_SHA256_SSSE3=y +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +# CONFIG_CRYPTO_SHA1_MB is not set +# CONFIG_CRYPTO_SHA256_MB is not set +# CONFIG_CRYPTO_SHA512_MB is not set +CONFIG_CRYPTO_SHA256=y +# CONFIG_CRYPTO_SHA512 is not set +# CONFIG_CRYPTO_SHA3 is not set +# CONFIG_CRYPTO_SM3 is not set +# CONFIG_CRYPTO_TGR192 is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_TI is not set +CONFIG_CRYPTO_AES_X86_64=y +CONFIG_CRYPTO_AES_NI_INTEL=y +# CONFIG_CRYPTO_ANUBIS is not set +CONFIG_CRYPTO_ARC4=y +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +CONFIG_CRYPTO_DES=y +CONFIG_CRYPTO_DES3_EDE_X86_64=y +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_KHAZAD is not set +# CONFIG_CRYPTO_SALSA20 is not set +# CONFIG_CRYPTO_SALSA20_X86_64 is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_SEED is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_TEA is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +# CONFIG_CRYPTO_DEFLATE is not set +# CONFIG_CRYPTO_LZO is not set +# CONFIG_CRYPTO_842 is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +CONFIG_CRYPTO_DRBG_MENU=y +CONFIG_CRYPTO_DRBG_HMAC=y +# CONFIG_CRYPTO_DRBG_HASH is not set +# CONFIG_CRYPTO_DRBG_CTR is not set +CONFIG_CRYPTO_DRBG=y +CONFIG_CRYPTO_JITTERENTROPY=y +CONFIG_CRYPTO_USER_API=y +CONFIG_CRYPTO_USER_API_HASH=y +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +# CONFIG_CRYPTO_USER_API_RNG is not set +# CONFIG_CRYPTO_USER_API_AEAD is not set +CONFIG_CRYPTO_HASH_INFO=y +# CONFIG_CRYPTO_HW is not set +CONFIG_ASYMMETRIC_KEY_TYPE=y +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y +CONFIG_X509_CERTIFICATE_PARSER=y +CONFIG_PKCS7_MESSAGE_PARSER=y +# CONFIG_PKCS7_TEST_KEY is not set +# CONFIG_SIGNED_PE_FILE_VERIFICATION is not set + +# +# Certificates for signature checking +# +CONFIG_SYSTEM_TRUSTED_KEYRING=y +CONFIG_SYSTEM_TRUSTED_KEYS="" +# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set +# CONFIG_SECONDARY_TRUSTED_KEYRING is not set +# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set +CONFIG_HAVE_KVM=y +# CONFIG_VIRTUALIZATION is not set +# CONFIG_BINARY_PRINTF is not set + +# +# Library routines +# +CONFIG_RAID6_PQ=y +CONFIG_BITREVERSE=y +# CONFIG_HAVE_ARCH_BITREVERSE is not set +CONFIG_RATIONAL=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +# CONFIG_CRC_CCITT is not set +CONFIG_CRC16=y +# CONFIG_CRC_T10DIF is not set +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC4 is not set +# CONFIG_CRC7 is not set +# CONFIG_LIBCRC32C is not set +# CONFIG_CRC8 is not set +CONFIG_XXHASH=y +# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_ZLIB_INFLATE=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_ZSTD_COMPRESS=y +CONFIG_ZSTD_DECOMPRESS=y +# CONFIG_XZ_DEC is not set +# CONFIG_XZ_DEC_BCJ is not set +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_RADIX_TREE_MULTIORDER=y +CONFIG_ASSOCIATIVE_ARRAY=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAS_DMA=y +CONFIG_SGL_ALLOC=y +# CONFIG_DMA_DIRECT_OPS is not set +# CONFIG_DMA_VIRT_OPS is not set +CONFIG_CHECK_SIGNATURE=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +CONFIG_NLATTR=y +CONFIG_CLZ_TAB=y +# CONFIG_CORDIC is not set +# CONFIG_DDR is not set +# CONFIG_IRQ_POLL is not set +CONFIG_MPILIB=y +CONFIG_OID_REGISTRY=y +CONFIG_UCS2_STRING=y +CONFIG_FONT_SUPPORT=y +# CONFIG_FONTS is not set +CONFIG_FONT_8x8=y +CONFIG_FONT_8x16=y +# CONFIG_SG_SPLIT is not set +CONFIG_SG_POOL=y +CONFIG_ARCH_HAS_SG_CHAIN=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_SBITMAP=y +# CONFIG_STRING_SELFTEST is not set diff --git a/kernle.config/msi-ZH77A-G43/config-3.14.14-gentoo b/kernle.config/msi-ZH77A-G43/config-3.14.14-gentoo new file mode 100755 index 0000000..573fcd0 --- /dev/null +++ b/kernle.config/msi-ZH77A-G43/config-3.14.14-gentoo @@ -0,0 +1,2557 @@ +# +# Automatically generated file; DO NOT EDIT. +# Linux/x86 3.14.14-gentoo Kernel Configuration +# + +# +# Gentoo Linux +# +CONFIG_GENTOO_LINUX=y +CONFIG_GENTOO_LINUX_UDEV=y + +# +# Support for init systems, system and service managers +# +# CONFIG_GENTOO_LINUX_INIT_SCRIPT is not set +CONFIG_GENTOO_LINUX_INIT_SYSTEMD=y +CONFIG_64BIT=y +CONFIG_X86_64=y +CONFIG_X86=y +CONFIG_INSTRUCTION_DECODER=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_HAVE_LATENCYTOP_SUPPORT=y +CONFIG_MMU=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_GENERIC_ISA_DMA=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_ARCH_MAY_HAVE_PC_FDC=y +CONFIG_RWSEM_XCHGADD_ALGORITHM=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_CPU_AUTOPROBE=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ZONE_DMA32=y +CONFIG_AUDIT_ARCH=y +CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_HAVE_INTEL_TXT=y +CONFIG_X86_64_SMP=y +CONFIG_X86_HT=y +CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-rdi -fcall-saved-rsi -fcall-saved-rdx -fcall-saved-rcx -fcall-saved-r8 -fcall-saved-r9 -fcall-saved-r10 -fcall-saved-r11" +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" +CONFIG_IRQ_WORK=y +CONFIG_BUILDTIME_EXTABLE_SORT=y + +# +# General setup +# +CONFIG_INIT_ENV_ARG_LIMIT=32 +CONFIG_CROSS_COMPILE="" +# CONFIG_COMPILE_TEST is not set +CONFIG_LOCALVERSION="" +CONFIG_LOCALVERSION_AUTO=y +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_LZ4=y +# CONFIG_KERNEL_GZIP is not set +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZMA is not set +# CONFIG_KERNEL_XZ is not set +# CONFIG_KERNEL_LZO is not set +CONFIG_KERNEL_LZ4=y +CONFIG_DEFAULT_HOSTNAME="lee" +# CONFIG_SWAP is not set +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +CONFIG_FHANDLE=y +CONFIG_AUDIT=y +CONFIG_AUDITSYSCALL=y +CONFIG_AUDIT_WATCH=y +CONFIG_AUDIT_TREE=y + +# +# IRQ subsystem +# +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_SPARSE_IRQ=y +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_ARCH_CLOCKSOURCE_DATA=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y + +# +# Timers subsystem +# +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_HZ_PERIODIC is not set +# CONFIG_NO_HZ_IDLE is not set +CONFIG_NO_HZ_FULL=y +CONFIG_NO_HZ_FULL_ALL=y +# CONFIG_NO_HZ_FULL_SYSIDLE is not set +# CONFIG_NO_HZ is not set +CONFIG_HIGH_RES_TIMERS=y + +# +# CPU/Task time and stats accounting +# +CONFIG_VIRT_CPU_ACCOUNTING=y +CONFIG_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_TASKSTATS=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_XACCT=y +CONFIG_TASK_IO_ACCOUNTING=y + +# +# RCU Subsystem +# +CONFIG_TREE_PREEMPT_RCU=y +CONFIG_PREEMPT_RCU=y +CONFIG_RCU_STALL_COMMON=y +CONFIG_CONTEXT_TRACKING=y +CONFIG_RCU_USER_QS=y +CONFIG_CONTEXT_TRACKING_FORCE=y +CONFIG_RCU_FANOUT=64 +CONFIG_RCU_FANOUT_LEAF=16 +# CONFIG_RCU_FANOUT_EXACT is not set +CONFIG_RCU_FAST_NO_HZ=y +# CONFIG_TREE_RCU_TRACE is not set +CONFIG_RCU_BOOST=y +CONFIG_RCU_BOOST_PRIO=1 +CONFIG_RCU_BOOST_DELAY=500 +CONFIG_RCU_NOCB_CPU=y +CONFIG_RCU_NOCB_CPU_ALL=y +# CONFIG_IKCONFIG is not set +CONFIG_LOG_BUF_SHIFT=18 +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_SUPPORTS_INT128=y +CONFIG_ARCH_WANTS_PROT_NUMA_PROT_NONE=y +# CONFIG_NUMA_BALANCING is not set +CONFIG_CGROUPS=y +# CONFIG_CGROUP_DEBUG is not set +CONFIG_CGROUP_FREEZER=y +# CONFIG_CGROUP_DEVICE is not set +CONFIG_CPUSETS=y +# CONFIG_PROC_PID_CPUSET is not set +CONFIG_CGROUP_CPUACCT=y +CONFIG_RESOURCE_COUNTERS=y +# CONFIG_MEMCG is not set +# CONFIG_CGROUP_HUGETLB is not set +# CONFIG_CGROUP_PERF is not set +CONFIG_CGROUP_SCHED=y +CONFIG_FAIR_GROUP_SCHED=y +# CONFIG_CFS_BANDWIDTH is not set +# CONFIG_RT_GROUP_SCHED is not set +# CONFIG_BLK_CGROUP is not set +# CONFIG_CHECKPOINT_RESTORE is not set +CONFIG_NAMESPACES=y +CONFIG_UTS_NS=y +CONFIG_IPC_NS=y +# CONFIG_USER_NS is not set +CONFIG_PID_NS=y +CONFIG_NET_NS=y +# CONFIG_SCHED_AUTOGROUP is not set +# CONFIG_SYSFS_DEPRECATED is not set +CONFIG_RELAY=y +# CONFIG_BLK_DEV_INITRD is not set +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_SYSCTL=y +CONFIG_ANON_INODES=y +CONFIG_HAVE_UID16=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +# CONFIG_EXPERT is not set +CONFIG_UID16=y +# CONFIG_SYSCTL_SYSCALL is not set +CONFIG_KALLSYMS=y +CONFIG_PRINTK=y +CONFIG_BUG=y +CONFIG_ELF_CORE=y +CONFIG_PCSPKR_PLATFORM=y +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y +CONFIG_SHMEM=y +CONFIG_AIO=y +CONFIG_PCI_QUIRKS=y +# CONFIG_EMBEDDED is not set +CONFIG_HAVE_PERF_EVENTS=y + +# +# Kernel Performance Events And Counters +# +CONFIG_PERF_EVENTS=y +CONFIG_VM_EVENT_COUNTERS=y +CONFIG_SLUB_DEBUG=y +# CONFIG_COMPAT_BRK is not set +# CONFIG_SLAB is not set +CONFIG_SLUB=y +CONFIG_SLUB_CPU_PARTIAL=y +# CONFIG_PROFILING is not set +CONFIG_HAVE_OPROFILE=y +CONFIG_OPROFILE_NMI_TIMER=y +CONFIG_KPROBES=y +CONFIG_JUMP_LABEL=y +# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_KRETPROBES=y +CONFIG_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_DMA_ATTRS=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_CLK=y +CONFIG_HAVE_DMA_API_DEBUG=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y +CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_SECCOMP_FILTER=y +CONFIG_HAVE_CC_STACKPROTECTOR=y +# CONFIG_CC_STACKPROTECTOR is not set +CONFIG_CC_STACKPROTECTOR_NONE=y +# CONFIG_CC_STACKPROTECTOR_REGULAR is not set +# CONFIG_CC_STACKPROTECTOR_STRONG is not set +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_MODULES_USE_ELF_RELA=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_OLD_SIGSUSPEND3=y +CONFIG_COMPAT_OLD_SIGACTION=y + +# +# GCOV-based kernel profiling +# +# CONFIG_GCOV_KERNEL is not set +# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set +CONFIG_SLABINFO=y +CONFIG_RT_MUTEXES=y +CONFIG_BASE_SMALL=0 +CONFIG_MODULES=y +# CONFIG_MODULE_FORCE_LOAD is not set +CONFIG_MODULE_UNLOAD=y +CONFIG_MODULE_FORCE_UNLOAD=y +# CONFIG_MODVERSIONS is not set +# CONFIG_MODULE_SRCVERSION_ALL is not set +# CONFIG_MODULE_SIG is not set +CONFIG_STOP_MACHINE=y +CONFIG_BLOCK=y +CONFIG_BLK_DEV_BSG=y +# CONFIG_BLK_DEV_BSGLIB is not set +# CONFIG_BLK_DEV_INTEGRITY is not set +# CONFIG_BLK_CMDLINE_PARSER is not set + +# +# Partition Types +# +CONFIG_PARTITION_ADVANCED=y +# CONFIG_ACORN_PARTITION is not set +# CONFIG_AIX_PARTITION is not set +# CONFIG_OSF_PARTITION is not set +# CONFIG_AMIGA_PARTITION is not set +# CONFIG_ATARI_PARTITION is not set +# CONFIG_MAC_PARTITION is not set +# CONFIG_MSDOS_PARTITION is not set +# CONFIG_LDM_PARTITION is not set +# CONFIG_SGI_PARTITION is not set +# CONFIG_ULTRIX_PARTITION is not set +# CONFIG_SUN_PARTITION is not set +# CONFIG_KARMA_PARTITION is not set +CONFIG_EFI_PARTITION=y +# CONFIG_SYSV68_PARTITION is not set +# CONFIG_CMDLINE_PARTITION is not set +CONFIG_BLOCK_COMPAT=y + +# +# IO Schedulers +# +CONFIG_IOSCHED_NOOP=y +CONFIG_IOSCHED_DEADLINE=y +CONFIG_IOSCHED_CFQ=y +# CONFIG_DEFAULT_DEADLINE is not set +CONFIG_DEFAULT_CFQ=y +# CONFIG_DEFAULT_NOOP is not set +CONFIG_DEFAULT_IOSCHED="cfq" +CONFIG_PREEMPT_NOTIFIERS=y +CONFIG_UNINLINE_SPIN_UNLOCK=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_FREEZER=y + +# +# Processor type and features +# +CONFIG_ZONE_DMA=y +CONFIG_SMP=y +# CONFIG_X86_MPPARSE is not set +# CONFIG_X86_EXTENDED_PLATFORM is not set +CONFIG_X86_INTEL_LPSS=y +CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y +CONFIG_SCHED_OMIT_FRAME_POINTER=y +# CONFIG_HYPERVISOR_GUEST is not set +CONFIG_NO_BOOTMEM=y +# CONFIG_MEMTEST is not set +# CONFIG_MK8 is not set +# CONFIG_MPSC is not set +CONFIG_MCORE2=y +# CONFIG_MATOM is not set +# CONFIG_GENERIC_CPU is not set +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_INTEL_USERCOPY=y +CONFIG_X86_USE_PPRO_CHECKSUM=y +CONFIG_X86_P6_NOP=y +CONFIG_X86_TSC=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_HPET_TIMER=y +CONFIG_HPET_EMULATE_RTC=y +CONFIG_DMI=y +CONFIG_GART_IOMMU=y +# CONFIG_CALGARY_IOMMU is not set +CONFIG_SWIOTLB=y +CONFIG_IOMMU_HELPER=y +CONFIG_NR_CPUS=4 +# CONFIG_SCHED_SMT is not set +CONFIG_SCHED_MC=y +# CONFIG_PREEMPT_NONE is not set +# CONFIG_PREEMPT_VOLUNTARY is not set +CONFIG_PREEMPT=y +CONFIG_PREEMPT_COUNT=y +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set +CONFIG_X86_MCE=y +CONFIG_X86_MCE_INTEL=y +# CONFIG_X86_MCE_AMD is not set +CONFIG_X86_MCE_THRESHOLD=y +# CONFIG_X86_MCE_INJECT is not set +CONFIG_X86_THERMAL_VECTOR=y +# CONFIG_I8K is not set +# CONFIG_MICROCODE is not set +# CONFIG_MICROCODE_INTEL_EARLY is not set +# CONFIG_MICROCODE_AMD_EARLY is not set +# CONFIG_X86_MSR is not set +# CONFIG_X86_CPUID is not set +CONFIG_ARCH_PHYS_ADDR_T_64BIT=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_DIRECT_GBPAGES=y +CONFIG_NUMA=y +# CONFIG_AMD_NUMA is not set +CONFIG_X86_64_ACPI_NUMA=y +CONFIG_NODES_SPAN_OTHER_NODES=y +# CONFIG_NUMA_EMU is not set +CONFIG_NODES_SHIFT=8 +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM=y +CONFIG_NEED_MULTIPLE_NODES=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_HAVE_MEMBLOCK=y +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_ARCH_DISCARD_MEMBLOCK=y +# CONFIG_MOVABLE_NODE is not set +# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set +# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_PAGEFLAGS_EXTENDED=y +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +CONFIG_BALLOON_COMPACTION=y +CONFIG_COMPACTION=y +CONFIG_MIGRATION=y +CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_ZONE_DMA_FLAG=1 +CONFIG_BOUNCE=y +CONFIG_VIRT_TO_BUS=y +CONFIG_MMU_NOTIFIER=y +CONFIG_KSM=y +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +# CONFIG_MEMORY_FAILURE is not set +CONFIG_TRANSPARENT_HUGEPAGE=y +CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y +# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set +CONFIG_CROSS_MEMORY_ATTACH=y +# CONFIG_CLEANCACHE is not set +# CONFIG_CMA is not set +# CONFIG_ZBUD is not set +# CONFIG_ZSMALLOC is not set +CONFIG_X86_CHECK_BIOS_CORRUPTION=y +CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y +CONFIG_X86_RESERVE_LOW=64 +CONFIG_MTRR=y +# CONFIG_MTRR_SANITIZER is not set +CONFIG_X86_PAT=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_RANDOM=y +CONFIG_X86_SMAP=y +CONFIG_EFI=y +CONFIG_EFI_STUB=y +CONFIG_SECCOMP=y +# CONFIG_HZ_100 is not set +# CONFIG_HZ_250 is not set +# CONFIG_HZ_300 is not set +CONFIG_HZ_1000=y +CONFIG_HZ=1000 +CONFIG_SCHED_HRTICK=y +# CONFIG_KEXEC is not set +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x1000000 +# CONFIG_RELOCATABLE is not set +CONFIG_PHYSICAL_ALIGN=0x1000000 +CONFIG_HOTPLUG_CPU=y +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +# CONFIG_COMPAT_VDSO is not set +CONFIG_CMDLINE_BOOL=y +CONFIG_CMDLINE="root=PARTUUID=0bdaa466-d339-4679-980e-d8412ad3dda6 init=/usr/lib64/systemd/systemd" +# CONFIG_CMDLINE_OVERRIDE is not set +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_USE_PERCPU_NUMA_NODE_ID=y + +# +# Power management and ACPI options +# +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +# CONFIG_PM_AUTOSLEEP is not set +# CONFIG_PM_WAKELOCKS is not set +# CONFIG_PM_RUNTIME is not set +CONFIG_PM=y +CONFIG_PM_DEBUG=y +# CONFIG_PM_ADVANCED_DEBUG is not set +# CONFIG_PM_TEST_SUSPEND is not set +CONFIG_PM_SLEEP_DEBUG=y +CONFIG_PM_TRACE=y +CONFIG_PM_TRACE_RTC=y +CONFIG_PM_CLK=y +# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set +CONFIG_ACPI=y +CONFIG_ACPI_SLEEP=y +CONFIG_ACPI_PROCFS=y +# CONFIG_ACPI_PROCFS_POWER is not set +# CONFIG_ACPI_EC_DEBUGFS is not set +CONFIG_ACPI_AC=y +CONFIG_ACPI_BATTERY=y +CONFIG_ACPI_BUTTON=y +CONFIG_ACPI_VIDEO=y +CONFIG_ACPI_FAN=y +CONFIG_ACPI_DOCK=y +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_HOTPLUG_CPU=y +# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set +CONFIG_ACPI_THERMAL=y +CONFIG_ACPI_NUMA=y +# CONFIG_ACPI_CUSTOM_DSDT is not set +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_PCI_SLOT is not set +CONFIG_X86_PM_TIMER=y +CONFIG_ACPI_CONTAINER=y +# CONFIG_ACPI_SBS is not set +# CONFIG_ACPI_HED is not set +# CONFIG_ACPI_CUSTOM_METHOD is not set +# CONFIG_ACPI_BGRT is not set +# CONFIG_ACPI_APEI is not set +# CONFIG_ACPI_EXTLOG is not set +# CONFIG_SFI is not set + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +CONFIG_CPU_FREQ_GOV_COMMON=y +# CONFIG_CPU_FREQ_STAT is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set +CONFIG_CPU_FREQ_GOV_USERSPACE=y +CONFIG_CPU_FREQ_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set + +# +# x86 CPU frequency scaling drivers +# +CONFIG_X86_INTEL_PSTATE=y +# CONFIG_X86_PCC_CPUFREQ is not set +CONFIG_X86_ACPI_CPUFREQ=y +# CONFIG_X86_ACPI_CPUFREQ_CPB is not set +# CONFIG_X86_POWERNOW_K8 is not set +# CONFIG_X86_AMD_FREQ_SENSITIVITY is not set +# CONFIG_X86_SPEEDSTEP_CENTRINO is not set +# CONFIG_X86_P4_CLOCKMOD is not set + +# +# shared options +# +# CONFIG_X86_SPEEDSTEP_LIB is not set + +# +# CPU Idle +# +CONFIG_CPU_IDLE=y +# CONFIG_CPU_IDLE_MULTIPLE_DRIVERS is not set +CONFIG_CPU_IDLE_GOV_LADDER=y +CONFIG_CPU_IDLE_GOV_MENU=y +# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set +# CONFIG_INTEL_IDLE is not set + +# +# Memory power savings +# +# CONFIG_I7300_IDLE is not set + +# +# Bus options (PCI etc.) +# +CONFIG_PCI=y +CONFIG_PCI_DIRECT=y +CONFIG_PCI_MMCONFIG=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCIEPORTBUS=y +CONFIG_PCIEAER=y +# CONFIG_PCIE_ECRC is not set +# CONFIG_PCIEAER_INJECT is not set +CONFIG_PCIEASPM=y +# CONFIG_PCIEASPM_DEBUG is not set +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_PERFORMANCE is not set +CONFIG_PCI_MSI=y +# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set +# CONFIG_PCI_STUB is not set +CONFIG_HT_IRQ=y +# CONFIG_PCI_IOV is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_PASID is not set +# CONFIG_PCI_IOAPIC is not set +CONFIG_PCI_LABEL=y + +# +# PCI host controller drivers +# +CONFIG_ISA_DMA_API=y +CONFIG_AMD_NB=y +# CONFIG_PCCARD is not set +# CONFIG_HOTPLUG_PCI is not set +# CONFIG_RAPIDIO is not set +# CONFIG_X86_SYSFB is not set + +# +# Executable file formats / Emulations +# +CONFIG_BINFMT_ELF=y +CONFIG_COMPAT_BINFMT_ELF=y +CONFIG_ARCH_BINFMT_ELF_RANDOMIZE_PIE=y +# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set +CONFIG_BINFMT_SCRIPT=y +# CONFIG_HAVE_AOUT is not set +# CONFIG_BINFMT_MISC is not set +CONFIG_COREDUMP=y +CONFIG_IA32_EMULATION=y +# CONFIG_IA32_AOUT is not set +# CONFIG_X86_X32 is not set +CONFIG_COMPAT=y +CONFIG_COMPAT_FOR_U64_ALIGNMENT=y +CONFIG_SYSVIPC_COMPAT=y +CONFIG_X86_DEV_DMA_OPS=y +CONFIG_NET=y + +# +# Networking options +# +CONFIG_PACKET=y +# CONFIG_PACKET_DIAG is not set +CONFIG_UNIX=y +# CONFIG_UNIX_DIAG is not set +CONFIG_XFRM=y +CONFIG_XFRM_ALGO=y +CONFIG_XFRM_USER=y +# CONFIG_XFRM_SUB_POLICY is not set +# CONFIG_XFRM_MIGRATE is not set +# CONFIG_XFRM_STATISTICS is not set +# CONFIG_NET_KEY is not set +CONFIG_INET=y +# CONFIG_IP_MULTICAST is not set +# CONFIG_IP_ADVANCED_ROUTER is not set +# CONFIG_IP_PNP is not set +# CONFIG_NET_IPIP is not set +# CONFIG_NET_IPGRE_DEMUX is not set +CONFIG_NET_IP_TUNNEL=m +# CONFIG_SYN_COOKIES is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +# CONFIG_INET_XFRM_TUNNEL is not set +CONFIG_INET_TUNNEL=m +# CONFIG_INET_XFRM_MODE_TRANSPORT is not set +# CONFIG_INET_XFRM_MODE_TUNNEL is not set +# CONFIG_INET_XFRM_MODE_BEET is not set +CONFIG_INET_LRO=y +# CONFIG_INET_DIAG is not set +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_TCP_MD5SIG is not set +CONFIG_IPV6=m +# CONFIG_IPV6_ROUTER_PREF is not set +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +# CONFIG_IPV6_MIP6 is not set +# CONFIG_INET6_XFRM_TUNNEL is not set +# CONFIG_INET6_TUNNEL is not set +CONFIG_INET6_XFRM_MODE_TRANSPORT=m +CONFIG_INET6_XFRM_MODE_TUNNEL=m +CONFIG_INET6_XFRM_MODE_BEET=m +# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set +# CONFIG_IPV6_VTI is not set +CONFIG_IPV6_SIT=m +# CONFIG_IPV6_SIT_6RD is not set +CONFIG_IPV6_NDISC_NODETYPE=y +# CONFIG_IPV6_TUNNEL is not set +# CONFIG_IPV6_GRE is not set +# CONFIG_IPV6_MULTIPLE_TABLES is not set +# CONFIG_IPV6_MROUTE is not set +# CONFIG_NETWORK_SECMARK is not set +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +# CONFIG_NETFILTER is not set +# CONFIG_IP_DCCP is not set +CONFIG_IP_SCTP=m +# CONFIG_NET_SCTPPROBE is not set +# CONFIG_SCTP_DBG_OBJCNT is not set +# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set +CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y +# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set +# CONFIG_SCTP_COOKIE_HMAC_MD5 is not set +CONFIG_SCTP_COOKIE_HMAC_SHA1=y +# CONFIG_RDS is not set +# CONFIG_TIPC is not set +# CONFIG_ATM is not set +# CONFIG_L2TP is not set +CONFIG_STP=m +CONFIG_BRIDGE=m +# CONFIG_BRIDGE_IGMP_SNOOPING is not set +CONFIG_HAVE_NET_DSA=y +# CONFIG_VLAN_8021Q is not set +# CONFIG_DECNET is not set +CONFIG_LLC=m +# CONFIG_LLC2 is not set +# CONFIG_IPX is not set +# CONFIG_ATALK is not set +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_PHONET is not set +# CONFIG_IEEE802154 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_DCB is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_OPENVSWITCH is not set +# CONFIG_VSOCKETS is not set +# CONFIG_NETLINK_MMAP is not set +# CONFIG_NETLINK_DIAG is not set +# CONFIG_NET_MPLS_GSO is not set +# CONFIG_HSR is not set +CONFIG_RPS=y +CONFIG_RFS_ACCEL=y +CONFIG_XPS=y +# CONFIG_CGROUP_NET_PRIO is not set +# CONFIG_CGROUP_NET_CLASSID is not set +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_BQL=y +# CONFIG_BPF_JIT is not set +CONFIG_NET_FLOW_LIMIT=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +# CONFIG_NET_TCPPROBE is not set +# CONFIG_HAMRADIO is not set +# CONFIG_CAN is not set +# CONFIG_IRDA is not set +# CONFIG_BT is not set +# CONFIG_AF_RXRPC is not set +# CONFIG_WIRELESS is not set +# CONFIG_WIMAX is not set +# CONFIG_RFKILL is not set +# CONFIG_NET_9P is not set +# CONFIG_CAIF is not set +# CONFIG_CEPH_LIB is not set +# CONFIG_NFC is not set +CONFIG_HAVE_BPF_JIT=y + +# +# Device Drivers +# + +# +# Generic Driver Options +# +CONFIG_UEVENT_HELPER_PATH="" +CONFIG_DEVTMPFS=y +# CONFIG_DEVTMPFS_MOUNT is not set +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y +CONFIG_FW_LOADER=y +CONFIG_FIRMWARE_IN_KERNEL=y +CONFIG_EXTRA_FIRMWARE="" +# CONFIG_FW_LOADER_USER_HELPER is not set +# CONFIG_SYS_HYPERVISOR is not set +# CONFIG_GENERIC_CPU_DEVICES is not set +CONFIG_DMA_SHARED_BUFFER=y + +# +# Bus devices +# +CONFIG_CONNECTOR=y +CONFIG_PROC_EVENTS=y +# CONFIG_MTD is not set +# CONFIG_PARPORT is not set +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +CONFIG_PNP=y +CONFIG_PNP_DEBUG_MESSAGES=y + +# +# Protocols +# +CONFIG_PNPACPI=y +CONFIG_BLK_DEV=y +# CONFIG_BLK_DEV_NULL_BLK is not set +# CONFIG_BLK_DEV_FD is not set +# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set +# CONFIG_BLK_CPQ_CISS_DA is not set +# CONFIG_BLK_DEV_DAC960 is not set +# CONFIG_BLK_DEV_UMEM is not set +# CONFIG_BLK_DEV_COW_COMMON is not set +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 +# CONFIG_BLK_DEV_CRYPTOLOOP is not set +# CONFIG_BLK_DEV_DRBD is not set +# CONFIG_BLK_DEV_NBD is not set +# CONFIG_BLK_DEV_NVME is not set +# CONFIG_BLK_DEV_SKD is not set +# CONFIG_BLK_DEV_SX8 is not set +# CONFIG_BLK_DEV_RAM is not set +# CONFIG_CDROM_PKTCDVD is not set +# CONFIG_ATA_OVER_ETH is not set +# CONFIG_VIRTIO_BLK is not set +# CONFIG_BLK_DEV_HD is not set +# CONFIG_BLK_DEV_RBD is not set +# CONFIG_BLK_DEV_RSXX is not set + +# +# Misc devices +# +# CONFIG_SENSORS_LIS3LV02D is not set +# CONFIG_AD525X_DPOT is not set +# CONFIG_ATMEL_PWM is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_IBM_ASM is not set +# CONFIG_PHANTOM is not set +# CONFIG_SGI_IOC4 is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_ICS932S401 is not set +# CONFIG_ATMEL_SSC is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_HP_ILO is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SENSORS_BH1780 is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_HMC6352 is not set +# CONFIG_DS1682 is not set +# CONFIG_BMP085_I2C is not set +# CONFIG_PCH_PHUB is not set +# CONFIG_USB_SWITCH_FSA9480 is not set +# CONFIG_SRAM is not set +# CONFIG_C2PORT is not set + +# +# EEPROM support +# +# CONFIG_EEPROM_AT24 is not set +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_CB710_CORE is not set + +# +# Texas Instruments shared transport line discipline +# +# CONFIG_SENSORS_LIS3_I2C is not set + +# +# Altera FPGA firmware download module +# +# CONFIG_ALTERA_STAPL is not set +# CONFIG_VMWARE_VMCI is not set + +# +# Intel MIC Host Driver +# +# CONFIG_INTEL_MIC_HOST is not set + +# +# Intel MIC Card Driver +# +# CONFIG_INTEL_MIC_CARD is not set +# CONFIG_GENWQE is not set +CONFIG_HAVE_IDE=y +# CONFIG_IDE is not set + +# +# SCSI device support +# +CONFIG_SCSI_MOD=y +# CONFIG_RAID_ATTRS is not set +CONFIG_SCSI=y +CONFIG_SCSI_DMA=y +# CONFIG_SCSI_TGT is not set +# CONFIG_SCSI_NETLINK is not set +# CONFIG_SCSI_PROC_FS is not set + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=y +# CONFIG_CHR_DEV_ST is not set +# CONFIG_CHR_DEV_OSST is not set +CONFIG_BLK_DEV_SR=y +CONFIG_BLK_DEV_SR_VENDOR=y +CONFIG_CHR_DEV_SG=y +# CONFIG_CHR_DEV_SCH is not set +# CONFIG_SCSI_MULTI_LUN is not set +# CONFIG_SCSI_CONSTANTS is not set +# CONFIG_SCSI_LOGGING is not set +# CONFIG_SCSI_SCAN_ASYNC is not set + +# +# SCSI Transports +# +CONFIG_SCSI_SPI_ATTRS=y +# CONFIG_SCSI_FC_ATTRS is not set +# CONFIG_SCSI_ISCSI_ATTRS is not set +# CONFIG_SCSI_SAS_ATTRS is not set +# CONFIG_SCSI_SAS_LIBSAS is not set +# CONFIG_SCSI_SRP_ATTRS is not set +# CONFIG_SCSI_LOWLEVEL is not set +# CONFIG_SCSI_DH is not set +# CONFIG_SCSI_OSD_INITIATOR is not set +CONFIG_ATA=y +# CONFIG_ATA_NONSTANDARD is not set +# CONFIG_ATA_VERBOSE_ERROR is not set +CONFIG_ATA_ACPI=y +# CONFIG_SATA_ZPODD is not set +CONFIG_SATA_PMP=y + +# +# Controllers with non-SFF native interface +# +CONFIG_SATA_AHCI=y +# CONFIG_SATA_AHCI_PLATFORM is not set +# CONFIG_SATA_INIC162X is not set +# CONFIG_SATA_ACARD_AHCI is not set +# CONFIG_SATA_SIL24 is not set +CONFIG_ATA_SFF=y + +# +# SFF controllers with custom DMA interface +# +# CONFIG_PDC_ADMA is not set +# CONFIG_SATA_QSTOR is not set +# CONFIG_SATA_SX4 is not set +CONFIG_ATA_BMDMA=y + +# +# SATA SFF controllers with BMDMA +# +CONFIG_ATA_PIIX=y +# CONFIG_SATA_HIGHBANK is not set +# CONFIG_SATA_MV is not set +# CONFIG_SATA_NV is not set +# CONFIG_SATA_PROMISE is not set +# CONFIG_SATA_RCAR is not set +# CONFIG_SATA_SIL is not set +# CONFIG_SATA_SIS is not set +# CONFIG_SATA_SVW is not set +# CONFIG_SATA_ULI is not set +# CONFIG_SATA_VIA is not set +# CONFIG_SATA_VITESSE is not set + +# +# PATA SFF controllers with BMDMA +# +# CONFIG_PATA_ALI is not set +# CONFIG_PATA_AMD is not set +# CONFIG_PATA_ARASAN_CF is not set +# CONFIG_PATA_ARTOP is not set +# CONFIG_PATA_ATIIXP is not set +# CONFIG_PATA_ATP867X is not set +# CONFIG_PATA_CMD64X is not set +# CONFIG_PATA_CS5520 is not set +# CONFIG_PATA_CS5530 is not set +# CONFIG_PATA_CS5536 is not set +# CONFIG_PATA_CYPRESS is not set +# CONFIG_PATA_EFAR is not set +# CONFIG_PATA_HPT366 is not set +# CONFIG_PATA_HPT37X is not set +# CONFIG_PATA_HPT3X2N is not set +# CONFIG_PATA_HPT3X3 is not set +# CONFIG_PATA_IT8213 is not set +# CONFIG_PATA_IT821X is not set +# CONFIG_PATA_JMICRON is not set +# CONFIG_PATA_MARVELL is not set +# CONFIG_PATA_NETCELL is not set +# CONFIG_PATA_NINJA32 is not set +# CONFIG_PATA_NS87415 is not set +# CONFIG_PATA_OLDPIIX is not set +# CONFIG_PATA_OPTIDMA is not set +# CONFIG_PATA_PDC2027X is not set +# CONFIG_PATA_PDC_OLD is not set +# CONFIG_PATA_RADISYS is not set +# CONFIG_PATA_RDC is not set +# CONFIG_PATA_SC1200 is not set +CONFIG_PATA_SCH=y +# CONFIG_PATA_SERVERWORKS is not set +# CONFIG_PATA_SIL680 is not set +# CONFIG_PATA_SIS is not set +# CONFIG_PATA_TOSHIBA is not set +# CONFIG_PATA_TRIFLEX is not set +# CONFIG_PATA_VIA is not set +# CONFIG_PATA_WINBOND is not set + +# +# PIO-only SFF controllers +# +# CONFIG_PATA_CMD640_PCI is not set +# CONFIG_PATA_MPIIX is not set +# CONFIG_PATA_NS87410 is not set +# CONFIG_PATA_OPTI is not set +# CONFIG_PATA_RZ1000 is not set + +# +# Generic fallback / legacy drivers +# +# CONFIG_PATA_ACPI is not set +# CONFIG_ATA_GENERIC is not set +# CONFIG_PATA_LEGACY is not set +# CONFIG_MD is not set +# CONFIG_TARGET_CORE is not set +# CONFIG_FUSION is not set + +# +# IEEE 1394 (FireWire) support +# +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# CONFIG_I2O is not set +# CONFIG_MACINTOSH_DRIVERS is not set +CONFIG_NETDEVICES=y +CONFIG_MII=m +CONFIG_NET_CORE=y +# CONFIG_BONDING is not set +# CONFIG_DUMMY is not set +# CONFIG_EQUALIZER is not set +# CONFIG_NET_FC is not set +# CONFIG_NET_TEAM is not set +# CONFIG_MACVLAN is not set +# CONFIG_VXLAN is not set +# CONFIG_NETCONSOLE is not set +# CONFIG_NETPOLL is not set +# CONFIG_NET_POLL_CONTROLLER is not set +CONFIG_TUN=m +# CONFIG_VETH is not set +# CONFIG_VIRTIO_NET is not set +# CONFIG_NLMON is not set +# CONFIG_ARCNET is not set + +# +# CAIF transport drivers +# +CONFIG_VHOST_NET=m +CONFIG_VHOST_RING=m +CONFIG_VHOST=m + +# +# Distributed Switch Architecture drivers +# +# CONFIG_NET_DSA_MV88E6XXX is not set +# CONFIG_NET_DSA_MV88E6060 is not set +# CONFIG_NET_DSA_MV88E6XXX_NEED_PPU is not set +# CONFIG_NET_DSA_MV88E6131 is not set +# CONFIG_NET_DSA_MV88E6123_61_65 is not set +CONFIG_ETHERNET=y +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_CADENCE is not set +# CONFIG_NET_VENDOR_BROADCOM is not set +# CONFIG_NET_VENDOR_BROCADE is not set +# CONFIG_NET_CALXEDA_XGMAC is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +# CONFIG_DNET is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EXAR is not set +# CONFIG_NET_VENDOR_HP is not set +# CONFIG_NET_VENDOR_INTEL is not set +# CONFIG_IP1000 is not set +# CONFIG_JME is not set +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MELLANOX is not set +# CONFIG_NET_VENDOR_MICREL is not set +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_FEALNX is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_ETHOC is not set +# CONFIG_NET_PACKET_ENGINE is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +CONFIG_NET_VENDOR_REALTEK=y +# CONFIG_8139CP is not set +# CONFIG_8139TOO is not set +CONFIG_R8169=m +# CONFIG_SH_ETH is not set +# CONFIG_NET_VENDOR_RDC is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_SFC is not set +# CONFIG_NET_VENDOR_SMSC is not set +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +# CONFIG_FDDI is not set +# CONFIG_HIPPI is not set +# CONFIG_NET_SB1000 is not set +# CONFIG_PHYLIB is not set +# CONFIG_PPP is not set +# CONFIG_SLIP is not set + +# +# USB Network Adapters +# +# CONFIG_USB_CATC is not set +# CONFIG_USB_KAWETH is not set +# CONFIG_USB_PEGASUS is not set +# CONFIG_USB_RTL8150 is not set +# CONFIG_USB_RTL8152 is not set +# CONFIG_USB_USBNET is not set +# CONFIG_USB_IPHETH is not set +# CONFIG_WLAN is not set + +# +# Enable WiMAX (Networking options) to see the WiMAX drivers +# +# CONFIG_WAN is not set +# CONFIG_VMXNET3 is not set +# CONFIG_ISDN is not set + +# +# Input device support +# +CONFIG_INPUT=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_POLLDEV is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_MATRIXKMAP is not set + +# +# Userland interfaces +# +# CONFIG_INPUT_MOUSEDEV is not set +# CONFIG_INPUT_JOYDEV is not set +CONFIG_INPUT_EVDEV=y +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +# CONFIG_INPUT_KEYBOARD is not set +# CONFIG_INPUT_MOUSE is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_TABLET is not set +# CONFIG_INPUT_TOUCHSCREEN is not set +# CONFIG_INPUT_MISC is not set + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=y +# CONFIG_SERIO_CT82C710 is not set +# CONFIG_SERIO_PCIPS2 is not set +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +# CONFIG_SERIO_ALTERA_PS2 is not set +# CONFIG_SERIO_PS2MULT is not set +# CONFIG_SERIO_ARC_PS2 is not set +# CONFIG_GAMEPORT is not set + +# +# Character devices +# +CONFIG_TTY=y +CONFIG_VT=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_HW_CONSOLE=y +CONFIG_VT_HW_CONSOLE_BINDING=y +CONFIG_UNIX98_PTYS=y +# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set +# CONFIG_LEGACY_PTYS is not set +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_NOZOMI is not set +# CONFIG_N_GSM is not set +# CONFIG_TRACE_SINK is not set + +# +# KCopy +# +CONFIG_KCOPY=y +# CONFIG_DEVKMEM is not set + +# +# Serial drivers +# +# CONFIG_SERIAL_8250 is not set +CONFIG_FIX_EARLYCON_MEM=y + +# +# Non-8250 serial port support +# +# CONFIG_SERIAL_MFD_HSU is not set +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_TIMBERDALE is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_PCH_UART is not set +# CONFIG_SERIAL_ARC is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_VIRTIO_CONSOLE is not set +# CONFIG_IPMI_HANDLER is not set +CONFIG_HW_RANDOM=y +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +CONFIG_HW_RANDOM_INTEL=y +# CONFIG_HW_RANDOM_AMD is not set +# CONFIG_HW_RANDOM_ATMEL is not set +# CONFIG_HW_RANDOM_VIA is not set +# CONFIG_HW_RANDOM_VIRTIO is not set +# CONFIG_HW_RANDOM_EXYNOS is not set +CONFIG_NVRAM=y +# CONFIG_R3964 is not set +# CONFIG_APPLICOM is not set +# CONFIG_MWAVE is not set +# CONFIG_RAW_DRIVER is not set +CONFIG_HPET=y +# CONFIG_HPET_MMAP is not set +# CONFIG_HANGCHECK_TIMER is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TELCLOCK is not set +CONFIG_DEVPORT=y +CONFIG_I2C=y +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_COMPAT=y +# CONFIG_I2C_CHARDEV is not set +# CONFIG_I2C_MUX is not set +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_ALGOBIT=y + +# +# I2C Hardware Bus support +# + +# +# PC SMBus host controller drivers +# +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +CONFIG_I2C_I801=y +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_ISMT is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set + +# +# ACPI drivers +# +# CONFIG_I2C_SCMI is not set + +# +# I2C system bus drivers (mostly embedded / system-on-chip) +# +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_EG20T is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +# CONFIG_I2C_PXA_PCI is not set +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_XILINX is not set + +# +# External I2C/SMBus adapter drivers +# +# CONFIG_I2C_DIOLAN_U2C is not set +# CONFIG_I2C_PARPORT_LIGHT is not set +# CONFIG_I2C_ROBOTFUZZ_OSIF is not set +# CONFIG_I2C_TAOS_EVM is not set +# CONFIG_I2C_TINY_USB is not set + +# +# Other I2C/SMBus bus drivers +# +# CONFIG_I2C_STUB is not set +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# CONFIG_SPI is not set +# CONFIG_HSI is not set + +# +# PPS support +# +CONFIG_PPS=y +# CONFIG_PPS_DEBUG is not set +# CONFIG_NTP_PPS is not set + +# +# PPS clients support +# +# CONFIG_PPS_CLIENT_KTIMER is not set +# CONFIG_PPS_CLIENT_LDISC is not set +# CONFIG_PPS_CLIENT_GPIO is not set + +# +# PPS generators support +# + +# +# PTP clock support +# +CONFIG_PTP_1588_CLOCK=y + +# +# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. +# +# CONFIG_PTP_1588_CLOCK_PCH is not set +CONFIG_PINCTRL=y + +# +# Pin controllers +# +# CONFIG_PINMUX is not set +# CONFIG_PINCONF is not set +CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y +# CONFIG_GPIOLIB is not set +# CONFIG_W1 is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +# CONFIG_PDA_POWER is not set +# CONFIG_TEST_POWER is not set +# CONFIG_BATTERY_DS2780 is not set +# CONFIG_BATTERY_DS2781 is not set +# CONFIG_BATTERY_DS2782 is not set +# CONFIG_BATTERY_SBS is not set +# CONFIG_BATTERY_BQ27x00 is not set +# CONFIG_BATTERY_MAX17040 is not set +# CONFIG_BATTERY_MAX17042 is not set +# CONFIG_CHARGER_MAX8903 is not set +# CONFIG_CHARGER_LP8727 is not set +# CONFIG_CHARGER_BQ2415X is not set +# CONFIG_CHARGER_SMB347 is not set +# CONFIG_POWER_RESET is not set +# CONFIG_POWER_AVS is not set +# CONFIG_HWMON is not set +CONFIG_THERMAL=y +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +# CONFIG_THERMAL_GOV_FAIR_SHARE is not set +CONFIG_THERMAL_GOV_STEP_WISE=y +# CONFIG_THERMAL_GOV_USER_SPACE is not set +# CONFIG_THERMAL_EMULATION is not set +# CONFIG_INTEL_POWERCLAMP is not set +# CONFIG_X86_PKG_TEMP_THERMAL is not set +# CONFIG_ACPI_INT3403_THERMAL is not set + +# +# Texas Instruments thermal drivers +# +# CONFIG_WATCHDOG is not set +CONFIG_SSB_POSSIBLE=y + +# +# Sonics Silicon Backplane +# +# CONFIG_SSB is not set +CONFIG_BCMA_POSSIBLE=y + +# +# Broadcom specific AMBA +# +# CONFIG_BCMA is not set + +# +# Multifunction device drivers +# +# CONFIG_MFD_CORE is not set +# CONFIG_MFD_CS5535 is not set +# CONFIG_MFD_AS3711 is not set +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_MFD_CROS_EC is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_MFD_DA9052_I2C is not set +# CONFIG_MFD_DA9055 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77686 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_VIPERBOARD is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RTSX_PCI is not set +# CONFIG_MFD_RC5T583 is not set +# CONFIG_MFD_SEC_CORE is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SMSC is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_MFD_STMPE is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_LP8788 is not set +# CONFIG_MFD_PALMAS is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS6507X is not set +# CONFIG_MFD_TPS65090 is not set +# CONFIG_MFD_TPS65217 is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS80031 is not set +# CONFIG_TWL4030_CORE is not set +# CONFIG_TWL6040_CORE is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_TC3589X is not set +# CONFIG_MFD_TMIO is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_WM8400 is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +# CONFIG_REGULATOR is not set +# CONFIG_MEDIA_SUPPORT is not set + +# +# Graphics support +# +CONFIG_AGP=y +# CONFIG_AGP_AMD64 is not set +CONFIG_AGP_INTEL=y +# CONFIG_AGP_SIS is not set +# CONFIG_AGP_VIA is not set +CONFIG_INTEL_GTT=y +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=1 +# CONFIG_VGA_SWITCHEROO is not set +CONFIG_DRM=y +CONFIG_DRM_KMS_HELPER=y +CONFIG_DRM_KMS_FB_HELPER=y +# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set +CONFIG_DRM_TTM=m + +# +# I2C encoder or helper chips +# +# CONFIG_DRM_I2C_CH7006 is not set +# CONFIG_DRM_I2C_SIL164 is not set +# CONFIG_DRM_I2C_NXP_TDA998X is not set +# CONFIG_DRM_TDFX is not set +# CONFIG_DRM_R128 is not set +# CONFIG_DRM_RADEON is not set +# CONFIG_DRM_NOUVEAU is not set +CONFIG_DRM_I915=y +CONFIG_DRM_I915_KMS=y +CONFIG_DRM_I915_FBDEV=y +# CONFIG_DRM_I915_PRELIMINARY_HW_SUPPORT is not set +# CONFIG_DRM_I915_UMS is not set +# CONFIG_DRM_MGA is not set +# CONFIG_DRM_SIS is not set +# CONFIG_DRM_VIA is not set +# CONFIG_DRM_SAVAGE is not set +# CONFIG_DRM_VMWGFX is not set +CONFIG_DRM_GMA500=m +# CONFIG_DRM_GMA600 is not set +# CONFIG_DRM_GMA3600 is not set +# CONFIG_DRM_UDL is not set +# CONFIG_DRM_AST is not set +# CONFIG_DRM_MGAG200 is not set +# CONFIG_DRM_CIRRUS_QEMU is not set +# CONFIG_DRM_QXL is not set +# CONFIG_DRM_BOCHS is not set +# CONFIG_VGASTATE is not set +CONFIG_VIDEO_OUTPUT_CONTROL=y +CONFIG_HDMI=y +CONFIG_FB=y +# CONFIG_FIRMWARE_EDID is not set +# CONFIG_FB_DDC is not set +# CONFIG_FB_BOOT_VESA_SUPPORT is not set +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set +# CONFIG_FB_SYS_FILLRECT is not set +# CONFIG_FB_SYS_COPYAREA is not set +# CONFIG_FB_SYS_IMAGEBLIT is not set +# CONFIG_FB_FOREIGN_ENDIAN is not set +# CONFIG_FB_SYS_FOPS is not set +# CONFIG_FB_SVGALIB is not set +# CONFIG_FB_MACMODES is not set +# CONFIG_FB_BACKLIGHT is not set +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_TILEBLITTING=y + +# +# Frame buffer hardware drivers +# +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_PM2 is not set +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_ARC is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_IMSTT is not set +# CONFIG_FB_VGA16 is not set +# CONFIG_FB_UVESA is not set +# CONFIG_FB_VESA is not set +CONFIG_FB_EFI=y +# CONFIG_FB_N411 is not set +# CONFIG_FB_HGA is not set +# CONFIG_FB_OPENCORES is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_RIVA is not set +# CONFIG_FB_I740 is not set +# CONFIG_FB_LE80578 is not set +# CONFIG_FB_MATROX is not set +# CONFIG_FB_RADEON is not set +# CONFIG_FB_ATY128 is not set +# CONFIG_FB_ATY is not set +# CONFIG_FB_S3 is not set +# CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SIS is not set +# CONFIG_FB_VIA is not set +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_KYRO is not set +# CONFIG_FB_3DFX is not set +# CONFIG_FB_VOODOO1 is not set +# CONFIG_FB_VT8623 is not set +# CONFIG_FB_TRIDENT is not set +# CONFIG_FB_ARK is not set +# CONFIG_FB_PM3 is not set +# CONFIG_FB_CARMINE is not set +# CONFIG_FB_SMSCUFX is not set +# CONFIG_FB_UDL is not set +# CONFIG_FB_GOLDFISH is not set +# CONFIG_FB_VIRTUAL is not set +# CONFIG_FB_METRONOME is not set +# CONFIG_FB_MB862XX is not set +# CONFIG_FB_BROADSHEET is not set +# CONFIG_FB_AUO_K190X is not set +# CONFIG_FB_SIMPLE is not set +# CONFIG_EXYNOS_VIDEO is not set +CONFIG_BACKLIGHT_LCD_SUPPORT=y +# CONFIG_LCD_CLASS_DEVICE is not set +CONFIG_BACKLIGHT_CLASS_DEVICE=y +# CONFIG_BACKLIGHT_GENERIC is not set +# CONFIG_BACKLIGHT_APPLE is not set +# CONFIG_BACKLIGHT_SAHARA is not set +# CONFIG_BACKLIGHT_ADP8860 is not set +# CONFIG_BACKLIGHT_ADP8870 is not set +# CONFIG_BACKLIGHT_LM3630A is not set +# CONFIG_BACKLIGHT_LM3639 is not set +# CONFIG_BACKLIGHT_LP855X is not set +# CONFIG_BACKLIGHT_LV5207LP is not set +# CONFIG_BACKLIGHT_BD6107 is not set + +# +# Console display driver support +# +CONFIG_VGA_CONSOLE=y +CONFIG_VGACON_SOFT_SCROLLBACK=y +CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64 +CONFIG_DUMMY_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set +# CONFIG_LOGO is not set +CONFIG_SOUND=m +CONFIG_SOUND_OSS_CORE=y +CONFIG_SOUND_OSS_CORE_PRECLAIM=y +CONFIG_SND=m +CONFIG_SND_TIMER=m +CONFIG_SND_PCM=m +CONFIG_SND_HWDEP=m +CONFIG_SND_SEQUENCER=m +CONFIG_SND_SEQ_DUMMY=m +CONFIG_SND_OSSEMUL=y +CONFIG_SND_MIXER_OSS=m +CONFIG_SND_PCM_OSS=m +CONFIG_SND_PCM_OSS_PLUGINS=y +CONFIG_SND_SEQUENCER_OSS=y +CONFIG_SND_HRTIMER=m +CONFIG_SND_SEQ_HRTIMER_DEFAULT=y +CONFIG_SND_DYNAMIC_MINORS=y +CONFIG_SND_MAX_CARDS=32 +# CONFIG_SND_SUPPORT_OLD_API is not set +# CONFIG_SND_VERBOSE_PROCFS is not set +# CONFIG_SND_VERBOSE_PRINTK is not set +# CONFIG_SND_DEBUG is not set +CONFIG_SND_VMASTER=y +CONFIG_SND_KCTL_JACK=y +CONFIG_SND_DMA_SGBUF=y +# CONFIG_SND_RAWMIDI_SEQ is not set +# CONFIG_SND_OPL3_LIB_SEQ is not set +# CONFIG_SND_OPL4_LIB_SEQ is not set +# CONFIG_SND_SBAWE_SEQ is not set +# CONFIG_SND_EMU10K1_SEQ is not set +# CONFIG_SND_DRIVERS is not set +CONFIG_SND_PCI=y +# CONFIG_SND_AD1889 is not set +# CONFIG_SND_ALS300 is not set +# CONFIG_SND_ALS4000 is not set +# CONFIG_SND_ALI5451 is not set +# CONFIG_SND_ASIHPI is not set +# CONFIG_SND_ATIIXP is not set +# CONFIG_SND_ATIIXP_MODEM is not set +# CONFIG_SND_AU8810 is not set +# CONFIG_SND_AU8820 is not set +# CONFIG_SND_AU8830 is not set +# CONFIG_SND_AW2 is not set +# CONFIG_SND_AZT3328 is not set +# CONFIG_SND_BT87X is not set +# CONFIG_SND_CA0106 is not set +# CONFIG_SND_CMIPCI is not set +# CONFIG_SND_OXYGEN is not set +# CONFIG_SND_CS4281 is not set +# CONFIG_SND_CS46XX is not set +# CONFIG_SND_CS5530 is not set +# CONFIG_SND_CS5535AUDIO is not set +# CONFIG_SND_CTXFI is not set +# CONFIG_SND_DARLA20 is not set +# CONFIG_SND_GINA20 is not set +# CONFIG_SND_LAYLA20 is not set +# CONFIG_SND_DARLA24 is not set +# CONFIG_SND_GINA24 is not set +# CONFIG_SND_LAYLA24 is not set +# CONFIG_SND_MONA is not set +# CONFIG_SND_MIA is not set +# CONFIG_SND_ECHO3G is not set +# CONFIG_SND_INDIGO is not set +# CONFIG_SND_INDIGOIO is not set +# CONFIG_SND_INDIGODJ is not set +# CONFIG_SND_INDIGOIOX is not set +# CONFIG_SND_INDIGODJX is not set +# CONFIG_SND_EMU10K1 is not set +# CONFIG_SND_EMU10K1X is not set +# CONFIG_SND_ENS1370 is not set +# CONFIG_SND_ENS1371 is not set +# CONFIG_SND_ES1938 is not set +# CONFIG_SND_ES1968 is not set +# CONFIG_SND_FM801 is not set +CONFIG_SND_HDA_INTEL=m +CONFIG_SND_HDA_PREALLOC_SIZE=64 +CONFIG_SND_HDA_HWDEP=y +# CONFIG_SND_HDA_RECONFIG is not set +# CONFIG_SND_HDA_INPUT_BEEP is not set +# CONFIG_SND_HDA_INPUT_JACK is not set +# CONFIG_SND_HDA_PATCH_LOADER is not set +CONFIG_SND_HDA_CODEC_REALTEK=m +CONFIG_SND_HDA_CODEC_ANALOG=m +CONFIG_SND_HDA_CODEC_SIGMATEL=m +CONFIG_SND_HDA_CODEC_VIA=m +CONFIG_SND_HDA_CODEC_HDMI=m +CONFIG_SND_HDA_I915=y +CONFIG_SND_HDA_CODEC_CIRRUS=m +CONFIG_SND_HDA_CODEC_CONEXANT=m +CONFIG_SND_HDA_CODEC_CA0110=m +CONFIG_SND_HDA_CODEC_CA0132=m +# CONFIG_SND_HDA_CODEC_CA0132_DSP is not set +CONFIG_SND_HDA_CODEC_CMEDIA=m +CONFIG_SND_HDA_CODEC_SI3054=m +CONFIG_SND_HDA_GENERIC=m +CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0 +# CONFIG_SND_HDSP is not set +# CONFIG_SND_HDSPM is not set +# CONFIG_SND_ICE1712 is not set +# CONFIG_SND_ICE1724 is not set +# CONFIG_SND_INTEL8X0 is not set +# CONFIG_SND_INTEL8X0M is not set +# CONFIG_SND_KORG1212 is not set +# CONFIG_SND_LOLA is not set +# CONFIG_SND_LX6464ES is not set +# CONFIG_SND_MAESTRO3 is not set +# CONFIG_SND_MIXART is not set +# CONFIG_SND_NM256 is not set +# CONFIG_SND_PCXHR is not set +# CONFIG_SND_RIPTIDE is not set +# CONFIG_SND_RME32 is not set +# CONFIG_SND_RME96 is not set +# CONFIG_SND_RME9652 is not set +# CONFIG_SND_SONICVIBES is not set +# CONFIG_SND_TRIDENT is not set +# CONFIG_SND_VIA82XX is not set +# CONFIG_SND_VIA82XX_MODEM is not set +# CONFIG_SND_VIRTUOSO is not set +# CONFIG_SND_VX222 is not set +# CONFIG_SND_YMFPCI is not set +# CONFIG_SND_USB is not set +# CONFIG_SND_SOC is not set +# CONFIG_SOUND_PRIME is not set + +# +# HID support +# +CONFIG_HID=y +# CONFIG_HID_BATTERY_STRENGTH is not set +# CONFIG_HIDRAW is not set +# CONFIG_UHID is not set +CONFIG_HID_GENERIC=y + +# +# Special HID drivers +# +CONFIG_HID_A4TECH=y +# CONFIG_HID_ACRUX is not set +CONFIG_HID_APPLE=y +# CONFIG_HID_APPLEIR is not set +# CONFIG_HID_AUREAL is not set +CONFIG_HID_BELKIN=y +CONFIG_HID_CHERRY=y +CONFIG_HID_CHICONY=y +# CONFIG_HID_PRODIKEYS is not set +CONFIG_HID_CYPRESS=y +# CONFIG_HID_DRAGONRISE is not set +# CONFIG_HID_EMS_FF is not set +# CONFIG_HID_ELECOM is not set +# CONFIG_HID_ELO is not set +CONFIG_HID_EZKEY=y +# CONFIG_HID_HOLTEK is not set +# CONFIG_HID_HUION is not set +# CONFIG_HID_KEYTOUCH is not set +# CONFIG_HID_KYE is not set +# CONFIG_HID_UCLOGIC is not set +# CONFIG_HID_WALTOP is not set +# CONFIG_HID_GYRATION is not set +# CONFIG_HID_ICADE is not set +# CONFIG_HID_TWINHAN is not set +CONFIG_HID_KENSINGTON=y +# CONFIG_HID_LCPOWER is not set +# CONFIG_HID_LENOVO_TPKBD is not set +CONFIG_HID_LOGITECH=y +# CONFIG_LOGITECH_FF is not set +# CONFIG_LOGIRUMBLEPAD2_FF is not set +# CONFIG_LOGIG940_FF is not set +# CONFIG_LOGIWHEELS_FF is not set +# CONFIG_HID_MAGICMOUSE is not set +CONFIG_HID_MICROSOFT=y +CONFIG_HID_MONTEREY=y +# CONFIG_HID_MULTITOUCH is not set +# CONFIG_HID_NTRIG is not set +# CONFIG_HID_ORTEK is not set +# CONFIG_HID_PANTHERLORD is not set +# CONFIG_HID_PETALYNX is not set +# CONFIG_HID_PICOLCD is not set +# CONFIG_HID_PRIMAX is not set +# CONFIG_HID_ROCCAT is not set +# CONFIG_HID_SAITEK is not set +# CONFIG_HID_SAMSUNG is not set +# CONFIG_HID_SPEEDLINK is not set +# CONFIG_HID_STEELSERIES is not set +# CONFIG_HID_SUNPLUS is not set +# CONFIG_HID_GREENASIA is not set +# CONFIG_HID_SMARTJOYPLUS is not set +# CONFIG_HID_TIVO is not set +# CONFIG_HID_TOPSEED is not set +# CONFIG_HID_THRUSTMASTER is not set +# CONFIG_HID_XINMO is not set +# CONFIG_HID_ZEROPLUS is not set +# CONFIG_HID_ZYDACRON is not set +# CONFIG_HID_SENSOR_HUB is not set + +# +# USB HID support +# +CONFIG_USB_HID=y +# CONFIG_HID_PID is not set +# CONFIG_USB_HIDDEV is not set + +# +# I2C HID support +# +# CONFIG_I2C_HID is not set +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_SUPPORT=y +CONFIG_USB_COMMON=y +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB=y +# CONFIG_USB_DEBUG is not set +CONFIG_USB_ANNOUNCE_NEW_DEVICES=y + +# +# Miscellaneous USB options +# +CONFIG_USB_DEFAULT_PERSIST=y +# CONFIG_USB_DYNAMIC_MINORS is not set +# CONFIG_USB_MON is not set +# CONFIG_USB_WUSB_CBAF is not set + +# +# USB Host Controller Drivers +# +# CONFIG_USB_C67X00_HCD is not set +CONFIG_USB_XHCI_HCD=y +CONFIG_USB_EHCI_HCD=y +# CONFIG_USB_EHCI_ROOT_HUB_TT is not set +# CONFIG_USB_EHCI_TT_NEWSCHED is not set +CONFIG_USB_EHCI_PCI=y +# CONFIG_USB_EHCI_HCD_PLATFORM is not set +# CONFIG_USB_OXU210HP_HCD is not set +# CONFIG_USB_ISP116X_HCD is not set +# CONFIG_USB_ISP1760_HCD is not set +# CONFIG_USB_ISP1362_HCD is not set +# CONFIG_USB_FUSBH200_HCD is not set +# CONFIG_USB_FOTG210_HCD is not set +CONFIG_USB_OHCI_HCD=y +CONFIG_USB_OHCI_HCD_PCI=y +# CONFIG_USB_OHCI_HCD_PLATFORM is not set +CONFIG_USB_UHCI_HCD=y +# CONFIG_USB_SL811_HCD is not set +# CONFIG_USB_R8A66597_HCD is not set +# CONFIG_USB_HCD_TEST_MODE is not set + +# +# USB Device Class drivers +# +# CONFIG_USB_ACM is not set +# CONFIG_USB_PRINTER is not set +# CONFIG_USB_WDM is not set +# CONFIG_USB_TMC is not set + +# +# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may +# + +# +# also be needed; see USB_STORAGE Help for more info +# +CONFIG_USB_STORAGE=y +# CONFIG_USB_STORAGE_DEBUG is not set +# CONFIG_USB_STORAGE_REALTEK is not set +# CONFIG_USB_STORAGE_DATAFAB is not set +# CONFIG_USB_STORAGE_FREECOM is not set +# CONFIG_USB_STORAGE_ISD200 is not set +# CONFIG_USB_STORAGE_USBAT is not set +# CONFIG_USB_STORAGE_SDDR09 is not set +# CONFIG_USB_STORAGE_SDDR55 is not set +# CONFIG_USB_STORAGE_JUMPSHOT is not set +# CONFIG_USB_STORAGE_ALAUDA is not set +# CONFIG_USB_STORAGE_ONETOUCH is not set +# CONFIG_USB_STORAGE_KARMA is not set +# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set +# CONFIG_USB_STORAGE_ENE_UB6250 is not set + +# +# USB Imaging devices +# +# CONFIG_USB_MDC800 is not set +# CONFIG_USB_MICROTEK is not set +# CONFIG_USB_MUSB_HDRC is not set +# CONFIG_USB_DWC3 is not set +# CONFIG_USB_DWC2 is not set +# CONFIG_USB_CHIPIDEA is not set + +# +# USB port drivers +# +# CONFIG_USB_SERIAL is not set + +# +# USB Miscellaneous drivers +# +# CONFIG_USB_EMI62 is not set +# CONFIG_USB_EMI26 is not set +# CONFIG_USB_ADUTUX is not set +# CONFIG_USB_SEVSEG is not set +# CONFIG_USB_RIO500 is not set +# CONFIG_USB_LEGOTOWER is not set +# CONFIG_USB_LCD is not set +# CONFIG_USB_LED is not set +# CONFIG_USB_CYPRESS_CY7C63 is not set +# CONFIG_USB_CYTHERM is not set +# CONFIG_USB_IDMOUSE is not set +# CONFIG_USB_FTDI_ELAN is not set +# CONFIG_USB_APPLEDISPLAY is not set +# CONFIG_USB_SISUSBVGA is not set +# CONFIG_USB_LD is not set +# CONFIG_USB_TRANCEVIBRATOR is not set +# CONFIG_USB_IOWARRIOR is not set +# CONFIG_USB_TEST is not set +# CONFIG_USB_EHSET_TEST_FIXTURE is not set +# CONFIG_USB_ISIGHTFW is not set +# CONFIG_USB_YUREX is not set +# CONFIG_USB_EZUSB_FX2 is not set +# CONFIG_USB_HSIC_USB3503 is not set + +# +# USB Physical Layer drivers +# +# CONFIG_USB_PHY is not set +# CONFIG_USB_OTG_FSM is not set +# CONFIG_NOP_USB_XCEIV is not set +# CONFIG_SAMSUNG_USB2PHY is not set +# CONFIG_SAMSUNG_USB3PHY is not set +# CONFIG_USB_ISP1301 is not set +# CONFIG_USB_RCAR_PHY is not set +# CONFIG_USB_GADGET is not set +# CONFIG_UWB is not set +# CONFIG_MMC is not set +# CONFIG_MEMSTICK is not set +# CONFIG_NEW_LEDS is not set +# CONFIG_ACCESSIBILITY is not set +# CONFIG_INFINIBAND is not set +CONFIG_EDAC=y +CONFIG_EDAC_LEGACY_SYSFS=y +# CONFIG_EDAC_DEBUG is not set +# CONFIG_EDAC_MM_EDAC is not set +CONFIG_RTC_LIB=y +CONFIG_RTC_CLASS=y +# CONFIG_RTC_HCTOSYS is not set +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +# CONFIG_RTC_DEBUG is not set + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +# CONFIG_RTC_DRV_TEST is not set + +# +# I2C RTC drivers +# +# CONFIG_RTC_DRV_DS1307 is not set +# CONFIG_RTC_DRV_DS1374 is not set +# CONFIG_RTC_DRV_DS1672 is not set +# CONFIG_RTC_DRV_DS3232 is not set +# CONFIG_RTC_DRV_MAX6900 is not set +# CONFIG_RTC_DRV_RS5C372 is not set +# CONFIG_RTC_DRV_ISL1208 is not set +# CONFIG_RTC_DRV_ISL12022 is not set +# CONFIG_RTC_DRV_ISL12057 is not set +# CONFIG_RTC_DRV_X1205 is not set +# CONFIG_RTC_DRV_PCF2127 is not set +# CONFIG_RTC_DRV_PCF8523 is not set +# CONFIG_RTC_DRV_PCF8563 is not set +# CONFIG_RTC_DRV_PCF8583 is not set +# CONFIG_RTC_DRV_M41T80 is not set +# CONFIG_RTC_DRV_BQ32K is not set +# CONFIG_RTC_DRV_S35390A is not set +# CONFIG_RTC_DRV_FM3130 is not set +# CONFIG_RTC_DRV_RX8581 is not set +# CONFIG_RTC_DRV_RX8025 is not set +# CONFIG_RTC_DRV_EM3027 is not set +# CONFIG_RTC_DRV_RV3029C2 is not set + +# +# SPI RTC drivers +# + +# +# Platform RTC drivers +# +CONFIG_RTC_DRV_CMOS=y +# CONFIG_RTC_DRV_DS1286 is not set +# CONFIG_RTC_DRV_DS1511 is not set +# CONFIG_RTC_DRV_DS1553 is not set +# CONFIG_RTC_DRV_DS1742 is not set +# CONFIG_RTC_DRV_STK17TA8 is not set +# CONFIG_RTC_DRV_M48T86 is not set +# CONFIG_RTC_DRV_M48T35 is not set +# CONFIG_RTC_DRV_M48T59 is not set +# CONFIG_RTC_DRV_MSM6242 is not set +# CONFIG_RTC_DRV_BQ4802 is not set +# CONFIG_RTC_DRV_RP5C01 is not set +# CONFIG_RTC_DRV_V3020 is not set +# CONFIG_RTC_DRV_DS2404 is not set + +# +# on-CPU RTC drivers +# +# CONFIG_RTC_DRV_MOXART is not set + +# +# HID Sensor RTC drivers +# +# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set + +# +# DMA Devices +# +# CONFIG_INTEL_MID_DMAC is not set +# CONFIG_INTEL_IOATDMA is not set +# CONFIG_DW_DMAC_CORE is not set +# CONFIG_DW_DMAC is not set +# CONFIG_DW_DMAC_PCI is not set +# CONFIG_TIMB_DMA is not set +# CONFIG_PCH_DMA is not set +CONFIG_DMA_ACPI=y +# CONFIG_AUXDISPLAY is not set +# CONFIG_UIO is not set +CONFIG_VFIO_IOMMU_TYPE1=m +CONFIG_VFIO=m +CONFIG_VFIO_PCI=m +# CONFIG_VFIO_PCI_VGA is not set +CONFIG_VIRT_DRIVERS=y +CONFIG_VIRTIO=m + +# +# Virtio drivers +# +CONFIG_VIRTIO_PCI=m +CONFIG_VIRTIO_BALLOON=m +# CONFIG_VIRTIO_MMIO is not set + +# +# Microsoft Hyper-V guest support +# +# CONFIG_STAGING is not set +# CONFIG_X86_PLATFORM_DEVICES is not set +# CONFIG_CHROME_PLATFORMS is not set +CONFIG_CLKDEV_LOOKUP=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_COMMON_CLK=y + +# +# Common Clock Framework +# +# CONFIG_COMMON_CLK_SI5351 is not set + +# +# Hardware Spinlock drivers +# +CONFIG_CLKEVT_I8253=y +CONFIG_I8253_LOCK=y +CONFIG_CLKBLD_I8253=y +# CONFIG_MAILBOX is not set +CONFIG_IOMMU_API=y +CONFIG_IOMMU_SUPPORT=y +# CONFIG_AMD_IOMMU is not set +CONFIG_DMAR_TABLE=y +CONFIG_INTEL_IOMMU=y +CONFIG_INTEL_IOMMU_DEFAULT_ON=y +CONFIG_INTEL_IOMMU_FLOPPY_WA=y +# CONFIG_IRQ_REMAP is not set + +# +# Remoteproc drivers +# +# CONFIG_STE_MODEM_RPROC is not set + +# +# Rpmsg drivers +# +# CONFIG_PM_DEVFREQ is not set +# CONFIG_EXTCON is not set +# CONFIG_MEMORY is not set +# CONFIG_IIO is not set +# CONFIG_NTB is not set +# CONFIG_VME_BUS is not set +# CONFIG_PWM is not set +# CONFIG_IPACK_BUS is not set +# CONFIG_RESET_CONTROLLER is not set +# CONFIG_FMC is not set + +# +# PHY Subsystem +# +# CONFIG_GENERIC_PHY is not set +# CONFIG_PHY_EXYNOS_MIPI_VIDEO is not set +# CONFIG_POWERCAP is not set + +# +# Firmware Drivers +# +# CONFIG_EDD is not set +CONFIG_FIRMWARE_MEMMAP=y +# CONFIG_DELL_RBU is not set +# CONFIG_DCDBAS is not set +CONFIG_DMIID=y +# CONFIG_DMI_SYSFS is not set +CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y +# CONFIG_ISCSI_IBFT_FIND is not set +# CONFIG_GOOGLE_FIRMWARE is not set + +# +# EFI (Extensible Firmware Interface) Support +# +# CONFIG_EFI_VARS is not set + +# +# File systems +# +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +CONFIG_EXT4_FS=y +CONFIG_EXT4_USE_FOR_EXT23=y +CONFIG_EXT4_FS_POSIX_ACL=y +CONFIG_EXT4_FS_SECURITY=y +# CONFIG_EXT4_DEBUG is not set +CONFIG_JBD2=y +# CONFIG_JBD2_DEBUG is not set +CONFIG_FS_MBCACHE=y +# CONFIG_REISERFS_FS is not set +# CONFIG_JFS_FS is not set +# CONFIG_XFS_FS is not set +# CONFIG_GFS2_FS is not set +# CONFIG_BTRFS_FS is not set +# CONFIG_NILFS2_FS is not set +CONFIG_FS_POSIX_ACL=y +CONFIG_EXPORTFS=y +CONFIG_FILE_LOCKING=y +CONFIG_FSNOTIFY=y +CONFIG_DNOTIFY=y +CONFIG_INOTIFY_USER=y +CONFIG_FANOTIFY=y +# CONFIG_QUOTA is not set +# CONFIG_QUOTACTL is not set +CONFIG_AUTOFS4_FS=y +# CONFIG_FUSE_FS is not set + +# +# Caches +# +# CONFIG_FSCACHE is not set + +# +# CD-ROM/DVD Filesystems +# +CONFIG_ISO9660_FS=m +# CONFIG_JOLIET is not set +# CONFIG_ZISOFS is not set +# CONFIG_UDF_FS is not set + +# +# DOS/FAT/NT Filesystems +# +CONFIG_FAT_FS=y +# CONFIG_MSDOS_FS is not set +CONFIG_VFAT_FS=y +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +CONFIG_NTFS_FS=m +# CONFIG_NTFS_DEBUG is not set +CONFIG_NTFS_RW=y + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +# CONFIG_PROC_KCORE is not set +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +CONFIG_HUGETLBFS=y +CONFIG_HUGETLB_PAGE=y +# CONFIG_CONFIGFS_FS is not set +# CONFIG_MISC_FILESYSTEMS is not set +# CONFIG_NETWORK_FILESYSTEMS is not set +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="utf8" +CONFIG_NLS_CODEPAGE_437=y +# CONFIG_NLS_CODEPAGE_737 is not set +# CONFIG_NLS_CODEPAGE_775 is not set +# CONFIG_NLS_CODEPAGE_850 is not set +# CONFIG_NLS_CODEPAGE_852 is not set +# CONFIG_NLS_CODEPAGE_855 is not set +# CONFIG_NLS_CODEPAGE_857 is not set +# CONFIG_NLS_CODEPAGE_860 is not set +# CONFIG_NLS_CODEPAGE_861 is not set +# CONFIG_NLS_CODEPAGE_862 is not set +# CONFIG_NLS_CODEPAGE_863 is not set +# CONFIG_NLS_CODEPAGE_864 is not set +# CONFIG_NLS_CODEPAGE_865 is not set +# CONFIG_NLS_CODEPAGE_866 is not set +# CONFIG_NLS_CODEPAGE_869 is not set +CONFIG_NLS_CODEPAGE_936=y +CONFIG_NLS_CODEPAGE_950=y +CONFIG_NLS_CODEPAGE_932=y +# CONFIG_NLS_CODEPAGE_949 is not set +# CONFIG_NLS_CODEPAGE_874 is not set +# CONFIG_NLS_ISO8859_8 is not set +# CONFIG_NLS_CODEPAGE_1250 is not set +# CONFIG_NLS_CODEPAGE_1251 is not set +CONFIG_NLS_ASCII=y +CONFIG_NLS_ISO8859_1=y +# CONFIG_NLS_ISO8859_2 is not set +# CONFIG_NLS_ISO8859_3 is not set +# CONFIG_NLS_ISO8859_4 is not set +# CONFIG_NLS_ISO8859_5 is not set +# CONFIG_NLS_ISO8859_6 is not set +# CONFIG_NLS_ISO8859_7 is not set +# CONFIG_NLS_ISO8859_9 is not set +# CONFIG_NLS_ISO8859_13 is not set +# CONFIG_NLS_ISO8859_14 is not set +# CONFIG_NLS_ISO8859_15 is not set +# CONFIG_NLS_KOI8_R is not set +# CONFIG_NLS_KOI8_U is not set +# CONFIG_NLS_MAC_ROMAN is not set +# CONFIG_NLS_MAC_CELTIC is not set +# CONFIG_NLS_MAC_CENTEURO is not set +# CONFIG_NLS_MAC_CROATIAN is not set +# CONFIG_NLS_MAC_CYRILLIC is not set +# CONFIG_NLS_MAC_GAELIC is not set +# CONFIG_NLS_MAC_GREEK is not set +# CONFIG_NLS_MAC_ICELAND is not set +# CONFIG_NLS_MAC_INUIT is not set +# CONFIG_NLS_MAC_ROMANIAN is not set +# CONFIG_NLS_MAC_TURKISH is not set +CONFIG_NLS_UTF8=y + +# +# Kernel hacking +# +CONFIG_TRACE_IRQFLAGS_SUPPORT=y + +# +# printk and dmesg options +# +CONFIG_PRINTK_TIME=y +CONFIG_DEFAULT_MESSAGE_LOGLEVEL=3 +# CONFIG_DYNAMIC_DEBUG is not set + +# +# Compile-time checks and compiler options +# +# CONFIG_ENABLE_WARN_DEPRECATED is not set +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_FRAME_WARN=2048 +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_UNUSED_SYMBOLS is not set +CONFIG_DEBUG_FS=y +# CONFIG_HEADERS_CHECK is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_ARCH_WANT_FRAME_POINTERS=y +# CONFIG_FRAME_POINTER is not set +# CONFIG_MAGIC_SYSRQ is not set +# CONFIG_DEBUG_KERNEL is not set + +# +# Memory Debugging +# +# CONFIG_SLUB_DEBUG_ON is not set +# CONFIG_SLUB_STATS is not set +CONFIG_HAVE_DEBUG_KMEMLEAK=y +CONFIG_DEBUG_MEMORY_INIT=y +CONFIG_HAVE_DEBUG_STACKOVERFLOW=y +CONFIG_HAVE_ARCH_KMEMCHECK=y + +# +# Debug Lockups and Hangs +# +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 + +# +# Lock Debugging (spinlocks, mutexes, etc...) +# +CONFIG_DEBUG_BUGVERBOSE=y + +# +# RCU Debugging +# +# CONFIG_SPARSE_RCU_POINTER is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +# CONFIG_RCU_CPU_STALL_VERBOSE is not set +CONFIG_ARCH_HAS_DEBUG_STRICT_USER_COPY_CHECKS=y +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=y +CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_TRACING_SUPPORT=y +# CONFIG_FTRACE is not set + +# +# Runtime Testing +# +# CONFIG_LKDTM is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_DMA_API_DEBUG is not set +# CONFIG_TEST_MODULE is not set +# CONFIG_TEST_USER_COPY is not set +CONFIG_SAMPLES=y +# CONFIG_SAMPLE_KOBJECT is not set +# CONFIG_SAMPLE_KPROBES is not set +# CONFIG_SAMPLE_HW_BREAKPOINT is not set +# CONFIG_SAMPLE_KFIFO is not set +CONFIG_HAVE_ARCH_KGDB=y +# CONFIG_STRICT_DEVMEM is not set +# CONFIG_X86_VERBOSE_BOOTUP is not set +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_EARLY_PRINTK_EFI is not set +# CONFIG_DEBUG_SET_MODULE_RONX is not set +CONFIG_DOUBLEFAULT=y +# CONFIG_IOMMU_STRESS is not set +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +CONFIG_IO_DELAY_TYPE_0X80=0 +CONFIG_IO_DELAY_TYPE_0XED=1 +CONFIG_IO_DELAY_TYPE_UDELAY=2 +CONFIG_IO_DELAY_TYPE_NONE=3 +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_DELAY_NONE is not set +CONFIG_DEFAULT_IO_DELAY_TYPE=0 +# CONFIG_OPTIMIZE_INLINING is not set + +# +# Security options +# +# CONFIG_KEYS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +# CONFIG_SECURITY is not set +# CONFIG_SECURITYFS is not set +# CONFIG_INTEL_TXT is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_DEFAULT_SECURITY="" +CONFIG_CRYPTO=y + +# +# Crypto core or helper +# +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_BLKCIPHER=y +CONFIG_CRYPTO_BLKCIPHER2=y +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_PCOMP2=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +# CONFIG_CRYPTO_USER is not set +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +# CONFIG_CRYPTO_GF128MUL is not set +# CONFIG_CRYPTO_NULL is not set +# CONFIG_CRYPTO_PCRYPT is not set +CONFIG_CRYPTO_WORKQUEUE=y +# CONFIG_CRYPTO_CRYPTD is not set +CONFIG_CRYPTO_AUTHENC=y +# CONFIG_CRYPTO_TEST is not set + +# +# Authenticated Encryption with Associated Data +# +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_GCM is not set +# CONFIG_CRYPTO_SEQIV is not set + +# +# Block modes +# +CONFIG_CRYPTO_CBC=y +# CONFIG_CRYPTO_CTR is not set +# CONFIG_CRYPTO_CTS is not set +# CONFIG_CRYPTO_ECB is not set +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_PCBC is not set +# CONFIG_CRYPTO_XTS is not set + +# +# Hash modes +# +# CONFIG_CRYPTO_CMAC is not set +CONFIG_CRYPTO_HMAC=y +# CONFIG_CRYPTO_XCBC is not set +# CONFIG_CRYPTO_VMAC is not set + +# +# Digest +# +CONFIG_CRYPTO_CRC32C=y +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32 is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +# CONFIG_CRYPTO_CRCT10DIF is not set +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_MD4 is not set +CONFIG_CRYPTO_MD5=y +# CONFIG_CRYPTO_MICHAEL_MIC is not set +# CONFIG_CRYPTO_RMD128 is not set +# CONFIG_CRYPTO_RMD160 is not set +# CONFIG_CRYPTO_RMD256 is not set +# CONFIG_CRYPTO_RMD320 is not set +CONFIG_CRYPTO_SHA1=y +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +# CONFIG_CRYPTO_SHA256_SSSE3 is not set +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +# CONFIG_CRYPTO_SHA256 is not set +# CONFIG_CRYPTO_SHA512 is not set +# CONFIG_CRYPTO_TGR192 is not set +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set + +# +# Ciphers +# +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_X86_64 is not set +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_ANUBIS is not set +CONFIG_CRYPTO_ARC4=y +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +CONFIG_CRYPTO_DES=y +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_KHAZAD is not set +# CONFIG_CRYPTO_SALSA20 is not set +# CONFIG_CRYPTO_SALSA20_X86_64 is not set +# CONFIG_CRYPTO_SEED is not set +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_TEA is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set + +# +# Compression +# +# CONFIG_CRYPTO_DEFLATE is not set +# CONFIG_CRYPTO_ZLIB is not set +# CONFIG_CRYPTO_LZO is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set + +# +# Random Number Generation +# +# CONFIG_CRYPTO_ANSI_CPRNG is not set +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +CONFIG_CRYPTO_HW=y +# CONFIG_CRYPTO_DEV_PADLOCK is not set +# CONFIG_CRYPTO_DEV_CCP is not set +CONFIG_HAVE_KVM=y +CONFIG_HAVE_KVM_IRQCHIP=y +CONFIG_HAVE_KVM_IRQ_ROUTING=y +CONFIG_HAVE_KVM_EVENTFD=y +CONFIG_KVM_APIC_ARCHITECTURE=y +CONFIG_KVM_MMIO=y +CONFIG_KVM_ASYNC_PF=y +CONFIG_HAVE_KVM_MSI=y +CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y +CONFIG_KVM_VFIO=y +CONFIG_VIRTUALIZATION=y +CONFIG_KVM=m +CONFIG_KVM_INTEL=m +# CONFIG_KVM_AMD is not set +# CONFIG_KVM_DEVICE_ASSIGNMENT is not set +# CONFIG_BINARY_PRINTF is not set + +# +# Library routines +# +CONFIG_BITREVERSE=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_GENERIC_IO=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +# CONFIG_CRC_CCITT is not set +CONFIG_CRC16=y +# CONFIG_CRC_T10DIF is not set +# CONFIG_CRC_ITU_T is not set +CONFIG_CRC32=y +# CONFIG_CRC32_SELFTEST is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC32_SLICEBY4 is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC7 is not set +CONFIG_LIBCRC32C=y +# CONFIG_CRC8 is not set +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_X86=y +# CONFIG_XZ_DEC_POWERPC is not set +# CONFIG_XZ_DEC_IA64 is not set +# CONFIG_XZ_DEC_ARM is not set +# CONFIG_XZ_DEC_ARMTHUMB is not set +# CONFIG_XZ_DEC_SPARC is not set +CONFIG_XZ_DEC_BCJ=y +# CONFIG_XZ_DEC_TEST is not set +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT=y +CONFIG_HAS_DMA=y +CONFIG_CHECK_SIGNATURE=y +CONFIG_CPU_RMAP=y +CONFIG_DQL=y +CONFIG_NLATTR=y +CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y +CONFIG_AVERAGE=y +# CONFIG_CORDIC is not set +# CONFIG_DDR is not set +CONFIG_UCS2_STRING=y +CONFIG_FONT_SUPPORT=y +# CONFIG_FONTS is not set +CONFIG_FONT_8x8=y +CONFIG_FONT_8x16=y